diff --git a/.lift.toml b/.lift.toml new file mode 100644 index 00000000..f31e9cd6 --- /dev/null +++ b/.lift.toml @@ -0,0 +1,4 @@ +build = "gradle" +jdkVersion = "15" + +ignoreRules = ["PATH_TRAVERSAL_IN", "YodaCondition"] \ No newline at end of file diff --git a/build.gradle b/build.gradle index 6b511aee..5803a4b4 100644 --- a/build.gradle +++ b/build.gradle @@ -34,9 +34,6 @@ plugins { // https://github.com/openjfx/javafx-gradle-plugin id 'org.openjfx.javafxplugin' version '0.0.13' - // Generate Java code from XSD - id 'org.unbroken-dome.xjc' version '2.0.0' - id 'checkstyle' // https://github.com/qoomon/gradle-git-versioning-plugin @@ -90,16 +87,16 @@ repositories { maven { url "https://repo1.maven.org/maven2/" } - mavenLocal() + // mavenLocal() // Staging repository maven { url 'https://s01.oss.sonatype.org/content/groups/staging/' } - // maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' } + maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' } } dependencies { // Provides christophedelory.playlist.* - implementation 'io.github.borewit:lizzy:1.2.0' + implementation 'io.github.borewit:lizzy:2.0.0-SNAPSHOT' // https://mvnrepository.com/artifact/com.jgoodies/jgoodies-common implementation 'com.jgoodies:jgoodies-common:1.8.1' @@ -110,9 +107,6 @@ dependencies { // This dependency is used by the application. implementation 'com.google.guava:guava:31.1-jre' - // https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api - implementation 'javax.xml.bind:jaxb-api:2.3.1' - // https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core implementation 'org.apache.logging.log4j:log4j-core:2.20.0' @@ -120,6 +114,8 @@ dependencies { // https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j2-impl runtimeOnly 'org.apache.logging.log4j:log4j-slf4j2-impl:2.20.0' + implementation 'jakarta.activation:jakarta.activation-api:2.1.1'; + // Required for log4j yaml configuration files // https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.2' @@ -163,7 +159,7 @@ def generatedImages = "$generatedResources/images" sourceSets { main { java { - srcDirs = ['src/main/java', "$generatedSources/xjc/java/main"] + srcDirs = ['src/main/java'] } resources { srcDirs = ['src/main/resources', generatedResources] @@ -218,10 +214,6 @@ task makeIcon (type: Svg2IcoTask) { destination = file('website/favicon.ico') } -tasks.withType(JavaCompile).configureEach { - compileTask -> compileTask.dependsOn xjcGenerate -} - tasks.withType(Checkstyle).configureEach { exclude 'listfix/model/playlists/winamp/generated/**.java' } diff --git a/simplelog.properties b/simplelog.properties index 7470de2c..c7a55109 100644 --- a/simplelog.properties +++ b/simplelog.properties @@ -17,7 +17,7 @@ # Uncomment this line if you want to log the reports of the content metadata providers when connecting to the individual media files/URLs. #org.apache.commons.logging.simplelog.log.christophedelory.content.ContentMetadataCenter=debug -#org.apache.commons.logging.simplelog.log.christophedelory.lizzy.FetchContentMetadata=debug +#org.apache.commons.logging.simplelog.log.io.github.borewit.lizzy.FetchContentMetadata=debug #org.apache.commons.logging.simplelog.log.christophedelory.playlist.Playlist=debug diff --git a/src/main/java/listfix/io/WinampHelper.java b/src/main/java/listfix/io/WinampHelper.java deleted file mode 100644 index 2e040c53..00000000 --- a/src/main/java/listfix/io/WinampHelper.java +++ /dev/null @@ -1,124 +0,0 @@ -package listfix.io; - -import listfix.config.IMediaLibrary; -import listfix.model.BatchRepair; -import listfix.model.BatchRepairItem; -import listfix.model.playlists.winamp.generated.Playlist; -import listfix.model.playlists.winamp.generated.Playlists; -import listfix.util.OperatingSystem; -import listfix.view.support.IProgressObserver; -import listfix.view.support.ProgressAdapter; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -import javax.xml.bind.JAXBContext; -import javax.xml.bind.JAXBException; -import javax.xml.bind.Unmarshaller; -import java.io.File; -import java.io.IOException; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.StandardCopyOption; -import java.util.Collections; -import java.util.List; - -/** - * Provides convenience methods for interacting w/ the Winamp Media Library and determining if Winamp is installed. - */ -public class WinampHelper -{ - private static final String HOME_PATH = System.getenv("APPDATA"); - private static final String WINAMP_PATH1 = HOME_PATH + "\\Winamp\\Plugins\\ml\\playlists\\"; - private static final String WINAMP_PATH2 = HOME_PATH + "\\Winamp\\Plugins\\ml\\"; - private static final Logger _logger = LogManager.getLogger(WinampHelper.class); - - private static String WINAMP_PATH = ""; - - static - { - File tester = new File(WINAMP_PATH1); - if (tester.exists()) - { - WINAMP_PATH = WINAMP_PATH1; - } - else - { - tester = new File(WINAMP_PATH2); - if (tester.exists()) - { - WINAMP_PATH = WINAMP_PATH2; - } - } - } - - /** - * Generates an exact match batch repair for the cryptically named playlists in Winamp. - * - * @param mediaLibrary Media-library - * @return A BatchRepair instance - * @see BatchRepair - */ - public static BatchRepair getWinampBatchRepair(IMediaLibrary mediaLibrary, IPlaylistOptions filePathOptions) - { - try - { - final BatchRepair br = new BatchRepair(mediaLibrary, new File(WINAMP_PATH)); - br.setDescription("Batch Repair: Winamp Playlists"); - List winLists = getWinampPlaylists(); - for (Playlist list : winLists) - { - br.add(new BatchRepairItem(new File(WINAMP_PATH + list.getFilename()), filePathOptions)); - } - return br; - } - catch (JAXBException ex) - { - _logger.error("Error while repairing Winamp playlist", ex); - return null; - } - } - - public static void extractPlaylists(File destDir, IProgressObserver observer) throws JAXBException, IOException - { - // avoid resetting total if part of batch operation - ProgressAdapter progress = ProgressAdapter.make(observer); - - if (!destDir.exists()) - { - if (!destDir.mkdir()) - { - throw new IOException(String.format("Failed to create directory \"%s\"", destDir)); - } - } - - List winLists = getWinampPlaylists(); - progress.setTotal(winLists.size()); - for (Playlist list : winLists) - { - Path sourceFile = Path.of(WINAMP_PATH, list.getFilename()); - Path targetPath = Path.of(destDir.getPath(), FileUtils.replaceInvalidWindowsFileSystemCharsWithChar(list.getTitle(), '_') + ".m3u8"); - Files.copy(sourceFile, targetPath, StandardCopyOption.REPLACE_EXISTING); - - progress.stepCompleted(); - } - } - - public static boolean isWinampInstalled() - { - return OperatingSystem.isWindows() && !WINAMP_PATH.isEmpty(); - } - - private static List getWinampPlaylists() throws JAXBException - { - String playlistPath = WINAMP_PATH + "playlists.xml"; - File listsFile = new File(playlistPath); - if (listsFile.canRead()) - { - JAXBContext context = JAXBContext.newInstance("listfix.model.playlists.winamp.generated"); - Unmarshaller unmarshaller = context.createUnmarshaller(); - Playlists lists = (Playlists) unmarshaller.unmarshal(listsFile); - return lists.getPlaylist(); - } - return Collections.emptyList(); - } -} diff --git a/src/main/java/listfix/io/datatransfer/PlaylistTransferObject.java b/src/main/java/listfix/io/datatransfer/PlaylistTransferObject.java index 8f26cf6b..1663712c 100644 --- a/src/main/java/listfix/io/datatransfer/PlaylistTransferObject.java +++ b/src/main/java/listfix/io/datatransfer/PlaylistTransferObject.java @@ -1,11 +1,14 @@ package listfix.io.datatransfer; -import christophedelory.playlist.SpecificPlaylist; -import listfix.io.playlists.LizzyPlaylistConversion; +import io.github.borewit.lizzy.playlist.Playlist; +import io.github.borewit.lizzy.playlist.PlaylistFormat; +import io.github.borewit.lizzy.playlist.SpecificPlaylist; +import listfix.io.playlists.LizzyPlaylistUtil; import java.awt.datatransfer.DataFlavor; -import java.io.*; -import java.util.List; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; /** * Used to serialize / deserialize playlist to memory from drag and drop @@ -14,11 +17,11 @@ public class PlaylistTransferObject { public static DataFlavor M3uPlaylistDataFlavor = new DataFlavor("audio/mpegurl", "M3U Playlist"); - private static final String playlistType = ".m3u"; // ToDo: use MIME + private static final PlaylistFormat playlistFormat = PlaylistFormat.m3u; - public static void serialize(List entryList, OutputStream outputStream) throws IOException + public static void serialize(Playlist playlist, OutputStream outputStream) throws IOException { - SpecificPlaylist specificPlaylist = LizzyPlaylistConversion.toPlaylist(playlistType, entryList); + SpecificPlaylist specificPlaylist = LizzyPlaylistUtil.toPlaylist(playlistFormat, playlist); try { specificPlaylist.writeTo(outputStream, null); @@ -29,9 +32,9 @@ public static void serialize(List entryList, OutputStream outputStream) } } - public static List deserialize(InputStream input) + public static Playlist deserialize(InputStream input) { - SpecificPlaylist playlist = LizzyPlaylistConversion.readPlaylistFromInputStream(".m3u", input); // ToDo: use MIME - return LizzyPlaylistConversion.toListOfFiles(playlist.toPlaylist()); + SpecificPlaylist playlist = LizzyPlaylistUtil.readPlaylistFromInputStream(playlistFormat, input); + return playlist.toPlaylist(); } } diff --git a/src/main/java/listfix/io/playlists/IPlaylistReader.java b/src/main/java/listfix/io/playlists/IPlaylistReader.java deleted file mode 100644 index 98c4d7ab..00000000 --- a/src/main/java/listfix/io/playlists/IPlaylistReader.java +++ /dev/null @@ -1,24 +0,0 @@ -package listfix.io.playlists; - -import listfix.model.enums.PlaylistType; -import listfix.model.playlists.PlaylistEntry; -import listfix.view.support.IProgressObserver; - -import java.io.IOException; -import java.nio.charset.Charset; -import java.util.List; - -/** - * Represents an entity capable of reading in a playlist file and returning - * a List containing PlaylistEntries that represent the files & URIs in that playlist. - */ -public interface IPlaylistReader -{ - Charset getEncoding(); - - PlaylistType getPlaylistType(); - - List readPlaylist(IProgressObserver input) throws IOException; - - List readPlaylist() throws IOException; -} diff --git a/src/main/java/listfix/io/playlists/IPlaylistWriter.java b/src/main/java/listfix/io/playlists/IPlaylistWriter.java deleted file mode 100644 index 0ec270a5..00000000 --- a/src/main/java/listfix/io/playlists/IPlaylistWriter.java +++ /dev/null @@ -1,19 +0,0 @@ -package listfix.io.playlists; - -import listfix.model.playlists.Playlist; -import listfix.view.support.ProgressAdapter; - -/** - * Generic contract for a class that can save a playlist to disk. - */ -public interface IPlaylistWriter -{ - /** - * The primary method a playlist writer needs, save. - * - * @param list The list to persist to disk. - * @param saveRelative Specifies if the playlist should be written out relatively or not. - * @param adapter An optionally null progress adapter which lets other code monitor the progress of this operation. - */ - void save(Playlist list, boolean saveRelative, ProgressAdapter adapter) throws Exception; -} diff --git a/src/main/java/listfix/io/playlists/LizzyPlaylistConversion.java b/src/main/java/listfix/io/playlists/LizzyPlaylistConversion.java deleted file mode 100644 index 1df61a06..00000000 --- a/src/main/java/listfix/io/playlists/LizzyPlaylistConversion.java +++ /dev/null @@ -1,99 +0,0 @@ -package listfix.io.playlists; - -import christophedelory.content.Content; -import christophedelory.playlist.*; - -import java.io.InputStream; -import java.util.Arrays; -import java.util.Collection; -import java.util.List; -import java.util.Objects; -import java.util.stream.Collectors; - -public class LizzyPlaylistConversion -{ - private static final SpecificPlaylistFactory specificPlaylistFactory = SpecificPlaylistFactory.getInstance(); - - /** - * Converts a collection of files to a Lizzy Playlist - * - * @param targetPlaylistType Target type, e.g. ".mp3" - * @param listOfFile Collection of files - * @return Lizzy Playlist - */ - public static SpecificPlaylist toPlaylist(String targetPlaylistType, Collection listOfFile) - { - SpecificPlaylistProvider playlistProvider = specificPlaylistFactory.findProviderByExtension(targetPlaylistType); - try - { - return playlistProvider.toSpecificPlaylist(convertToPlaylist(listOfFile)); - } - catch (Exception e) - { - throw new RuntimeException(e); - } - } - - /** - * Converts Lizzy playlist to list of files - * - * @param playlist Lizzy playlist - * @return List of files - */ - public static List toListOfFiles(Playlist playlist) - { - return Arrays.stream(playlist.getRootSequence().getComponents()).map(component -> { - if (component instanceof Media) - { - Media media = (Media) component; - Content content = media.getSource(); - return content == null ? null : content.toString(); - } - return null; - }).filter(Objects::nonNull) - .collect(Collectors.toList()); - } - - /** - * Read playlist from InputStream - * Does not close the inputStream! - * - * @param sourcePlaylistType Source playlist type, e.g. ".mp3" - * @param inputStream Stream to read from - * @return Lizzy Playlist - */ - public static SpecificPlaylist readPlaylistFromInputStream(String sourcePlaylistType, InputStream inputStream) - { - SpecificPlaylistProvider playlistProvider = specificPlaylistFactory.findProviderByExtension(sourcePlaylistType); - try - { - return playlistProvider.readFrom(inputStream, null); - } - catch (Exception e) - { - throw new RuntimeException(e); - } - } - - /** - * Convert list of files to Lizzy Playlist - * - * @param listOfFile List of path as strings - * @return Lizzy Playlist - */ - private static Playlist convertToPlaylist(Collection listOfFile) - { - Playlist playlist = new Playlist(); - - listOfFile.stream() - .map(filePath -> { - final Media media = new Media(); - final Content content = new Content(filePath); - media.setSource(content); - return media; - }) - .forEach(media -> playlist.getRootSequence().addComponent(media)); - - return playlist; - } -} diff --git a/src/main/java/listfix/io/playlists/LizzyPlaylistUtil.java b/src/main/java/listfix/io/playlists/LizzyPlaylistUtil.java new file mode 100644 index 00000000..9cfa56eb --- /dev/null +++ b/src/main/java/listfix/io/playlists/LizzyPlaylistUtil.java @@ -0,0 +1,84 @@ +package listfix.io.playlists; + +import io.github.borewit.lizzy.playlist.*; + +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.nio.file.Files; +import java.nio.file.OpenOption; +import java.nio.file.Path; + +public class LizzyPlaylistUtil +{ + private static final SpecificPlaylistFactory specificPlaylistFactory = SpecificPlaylistFactory.getInstance(); + + /** + * Converts a collection of files to a Lizzy Playlist + * + * @param playlistFormat Lizzy playlist format ID + * @param playlist Collection of files + * @return Lizzy Playlist + */ + public static SpecificPlaylist toPlaylist(PlaylistFormat playlistFormat, Playlist playlist) + { + SpecificPlaylistProvider playlistProvider = specificPlaylistFactory.getProvider(playlistFormat); + if (playlistProvider == null) + throw new RuntimeException("Cannot not find provider "); + try + { + return playlistProvider.toSpecificPlaylist(playlist); + } + catch (Exception e) + { + throw new RuntimeException(e); + } + } + + /** + * Read playlist from InputStream + * Does not close the inputStream! + * + * @param playlistFormat Source playlist type, e.g. "mp3" + * @param inputStream Stream to read from + * @return Lizzy Playlist + */ + public static SpecificPlaylist readPlaylistFromInputStream(PlaylistFormat playlistFormat, InputStream inputStream) + { + SpecificPlaylistProvider specificPlaylistProvider = specificPlaylistFactory.getProvider(playlistFormat); + try + { + SpecificPlaylist specificPlaylist = specificPlaylistProvider.readFrom(inputStream); + if (specificPlaylist == null) + { + throw new IOException("Failed to load playlist"); + } + return specificPlaylist; + + } + catch (Exception e) + { + throw new RuntimeException(e); + } + } + + public static SpecificPlaylist readPlaylist(Path playlistPath) throws IOException + { + return specificPlaylistFactory.readFrom(playlistPath); + } + + public static SpecificPlaylist writeNewPlaylist(Playlist playlist, Path path, PlaylistFormat playlistFormat, OpenOption... options) throws IOException + { + try (OutputStream outputStream = Files.newOutputStream(path, options)) + { + SpecificPlaylist specificPlaylist = specificPlaylistFactory.getProvider(playlistFormat).toSpecificPlaylist(playlist); + specificPlaylist.writeTo(outputStream, null); + return specificPlaylist; + } + } + + public static String getPreferredExtensionFor(PlaylistFormat playlistFormat) + { + return specificPlaylistFactory.getProvider(playlistFormat).getContentTypes()[0].getExtensions()[0]; + } +} diff --git a/src/main/java/listfix/io/playlists/PlaylistReader.java b/src/main/java/listfix/io/playlists/PlaylistReader.java deleted file mode 100644 index 0c3bb6d0..00000000 --- a/src/main/java/listfix/io/playlists/PlaylistReader.java +++ /dev/null @@ -1,188 +0,0 @@ -package listfix.io.playlists; - -import listfix.io.BufferedProgressReader; -import listfix.io.Constants; -import listfix.io.IPlaylistOptions; -import listfix.model.playlists.FilePlaylistEntry; -import listfix.model.playlists.PlaylistEntry; -import listfix.model.playlists.UriPlaylistEntry; -import listfix.util.ArrayFunctions; -import listfix.util.OperatingSystem; -import listfix.view.GUIScreen; -import org.apache.commons.io.ByteOrderMark; -import org.apache.commons.io.input.BOMInputStream; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -import java.io.File; -import java.io.FileInputStream; -import java.io.IOException; -import java.io.InputStreamReader; -import java.net.URI; -import java.net.URISyntaxException; -import java.nio.charset.Charset; -import java.nio.charset.StandardCharsets; -import java.nio.file.Path; -import java.util.List; -import java.util.StringTokenizer; - -public abstract class PlaylistReader implements IPlaylistReader -{ - protected final IPlaylistOptions playListOptions; - protected final Path playlistPath; - protected Charset encoding; - - private final Logger logger = LogManager.getLogger(GUIScreen.class); - - public PlaylistReader(IPlaylistOptions playListOptions, Path playlistPath) - { - this.playListOptions = playListOptions; - this.playlistPath = playlistPath; - } - - public Path getPath() - { - return this.playlistPath; - } - - @Override - public Charset getEncoding() - { - return this.encoding; - } - - public BufferedProgressReader openBufferedReader(Path textFile) throws IOException - { - final BOMInputStream bomInputStream = new BOMInputStream(new FileInputStream(textFile.toFile()), - ByteOrderMark.UTF_8, - ByteOrderMark.UTF_16BE, - ByteOrderMark.UTF_16LE, - ByteOrderMark.UTF_32BE, - ByteOrderMark.UTF_32LE - ); - final String charsetName = bomInputStream.getBOMCharsetName(); - this.encoding = charsetName == null ? StandardCharsets.UTF_8 : Charset.forName(charsetName); - - this.logger.info(String.format("Detected playlist file encoding for \"%s\": %s", textFile.getFileName().toString(), this.encoding.name())); - return new BufferedProgressReader(new InputStreamReader(bomInputStream, this.encoding)); - } - - protected void processEntry(List results, String L2, String cid, String tid) - { - StringTokenizer pathTokenizer = null; - StringBuilder path = new StringBuilder(); - if (OperatingSystem.isLinux()) // OS Specific Hack - { - if (!L2.startsWith("\\\\") && !L2.startsWith(".") && !L2.startsWith(Constants.FS)) - { - // Need to append ./ on relative entries to load them properly - path.append("./"); - } - pathTokenizer = new StringTokenizer(L2, ":\\/"); - } - else if (Constants.FS.equalsIgnoreCase(":")) // OS Specific Hack - { - pathTokenizer = new StringTokenizer(L2, ":\\/"); - } - else if (Constants.FS.equalsIgnoreCase("\\")) // OS Specific Hack - { - pathTokenizer = new StringTokenizer(L2, "\\/"); - if (!L2.startsWith("\\\\") && L2.startsWith("\\")) - { - path.append("\\"); - } - } - - if (pathTokenizer != null) - { - String fileName = ""; - String extInf = ""; - if (L2.startsWith("\\\\")) - { - path.append("\\\\"); - } - else if (L2.startsWith(Constants.FS)) - { - // We're about to lose this when we parse, so add it back... - path.append(Constants.FS); - } - - String firstToken = ""; - String secondToken = ""; - int tokenNumber = 0; - File firstPathToExist = null; - while (pathTokenizer.hasMoreTokens()) - { - String word = pathTokenizer.nextToken(); - String tempPath = path + word + Constants.FS; - if (tokenNumber == 0) - { - firstToken = word; - } - if (tokenNumber == 1) - { - secondToken = word; - } - if (tokenNumber == 0 && !L2.startsWith("\\\\") && !PlaylistEntry.NonExistentDirectories.contains(word + Constants.FS)) - { - // This token is the closest thing we have to the notion of a 'drive' on any OS... - // make a file out of this and see if it has any files. - File testFile = new File(tempPath); - if (!(testFile.exists() && testFile.isDirectory() && testFile.list().length > 0) && testFile.isAbsolute()) - { - PlaylistEntry.NonExistentDirectories.add(tempPath); - } - } - else if (L2.startsWith("\\\\") && pathTokenizer.countTokens() >= 1 - && !PlaylistEntry.NonExistentDirectories.contains("\\\\" + firstToken + Constants.FS) - && !ArrayFunctions.containsStringPrefixingAnotherString(PlaylistEntry.ExistingDirectories, tempPath, true) - && !ArrayFunctions.containsStringPrefixingAnotherString(PlaylistEntry.NonExistentDirectories, tempPath, true)) - { - // Handle UNC paths specially - File testFile = new File(tempPath); - boolean exists = testFile.exists(); - if (exists) - { - PlaylistEntry.ExistingDirectories.add(tempPath); - if (firstPathToExist == null) - { - firstPathToExist = testFile; - } - } - if (!exists && pathTokenizer.countTokens() == 1) - { - PlaylistEntry.NonExistentDirectories.add(tempPath); - } - if (pathTokenizer.countTokens() == 1 && firstPathToExist == null) - { - // don't want to knock out the whole drive, as other folders might be accessible there... - PlaylistEntry.NonExistentDirectories.add("\\\\" + firstToken + Constants.FS + secondToken + Constants.FS); - } - } - if (pathTokenizer.hasMoreTokens()) - { - path.append(word); - path.append(Constants.FS); - } - else - { - fileName = word; - } - tokenNumber++; - } - results.add(new FilePlaylistEntry(Path.of(path.toString(), fileName), extInf, this.playlistPath, cid, tid)); - } - else - { - try - { - results.add(new UriPlaylistEntry(new URI(L2.trim()), "", cid, tid)); - } - catch (URISyntaxException e) - { - this.logger.warn("While adding URI entry to playlist", e); - throw new RuntimeException(e); - } - } - } -} diff --git a/src/main/java/listfix/io/playlists/PlaylistReaderFactory.java b/src/main/java/listfix/io/playlists/PlaylistReaderFactory.java deleted file mode 100644 index e81217a1..00000000 --- a/src/main/java/listfix/io/playlists/PlaylistReaderFactory.java +++ /dev/null @@ -1,31 +0,0 @@ -package listfix.io.playlists; - -import listfix.io.IPlaylistOptions; -import listfix.io.playlists.itunes.ITunesXMLReader; -import listfix.io.playlists.m3u.M3UReader; -import listfix.io.playlists.pls.PLSReader; -import listfix.io.playlists.wpl.WPLReader; -import listfix.io.playlists.xspf.XSPFReader; -import listfix.model.enums.PlaylistType; -import listfix.model.playlists.Playlist; - -import java.io.IOException; -import java.nio.file.Path; - -public class PlaylistReaderFactory -{ - - public static IPlaylistReader getPlaylistReader(Path inputFile, IPlaylistOptions playListOptions) throws IOException - { - PlaylistType type = Playlist.determinePlaylistTypeFromExtension(inputFile); - return switch (type) - { - case M3U -> new M3UReader(playListOptions, inputFile); - case PLS -> new PLSReader(playListOptions, inputFile); - case XSPF -> new XSPFReader(playListOptions, inputFile); - case WPL -> new WPLReader(playListOptions, inputFile); - case ITUNES -> new ITunesXMLReader(playListOptions, inputFile); - default -> throw new IOException("Unsupported playlist type"); - }; - } -} diff --git a/src/main/java/listfix/io/playlists/PlaylistWriter.java b/src/main/java/listfix/io/playlists/PlaylistWriter.java deleted file mode 100644 index 9a90796f..00000000 --- a/src/main/java/listfix/io/playlists/PlaylistWriter.java +++ /dev/null @@ -1,128 +0,0 @@ -package listfix.io.playlists; - -import listfix.io.FileUtils; -import listfix.io.IPlaylistOptions; -import listfix.io.UNCFile; -import listfix.model.playlists.FilePlaylistEntry; -import listfix.model.playlists.Playlist; -import listfix.model.playlists.PlaylistEntry; -import listfix.util.OperatingSystem; -import listfix.view.support.ProgressAdapter; - -import javax.annotation.Nullable; -import java.io.File; -import java.io.IOException; -import java.nio.file.Path; - -public abstract class PlaylistWriter implements IPlaylistWriter -{ - protected final IPlaylistOptions playListOptions; - - public PlaylistWriter(IPlaylistOptions playListOptions) - { - this.playListOptions = playListOptions; - } - - protected static void normalizeEntry(IPlaylistOptions playListOptions, Playlist playlist, PlaylistEntry entry) throws IOException - { - final boolean saveRelative = playListOptions.getSavePlaylistsWithRelativePaths(); - - if (entry instanceof FilePlaylistEntry) - { - FilePlaylistEntry filePlaylistEntry = (FilePlaylistEntry) entry; - if (!saveRelative && entry.isRelative()) - { - // replace existing relative entry with a new absolute one - File absolute = filePlaylistEntry.getAbsolutePath().toFile().getCanonicalFile(); - - // Switch to UNC representation if selected in the options - if (playListOptions.getAlwaysUseUNCPaths()) - { - UNCFile temp = new UNCFile(absolute); - absolute = new File(temp.getUNCPath()); - } - ((FilePlaylistEntry) entry).setTrackPath(absolute.toPath()); - } - else - { - if (saveRelative && entry.isFound()) - { - // replace existing entry with a new relative one - Path relativePath = FileUtils.getRelativePath(filePlaylistEntry.getAbsolutePath(), playlist.getPath()); - if (!OperatingSystem.isWindows() && !relativePath.toString().contains("/")) - { - relativePath = Path.of(".").resolve(relativePath); // ToDo: is this required? - } - - // make a new file out of this relative path, and see if it's really relative... - // if it's absolute, we have to perform the UNC check and convert if necessary. - File temp = relativePath.toFile(); - if (temp.isAbsolute()) - { - // Switch to UNC representation if selected in the options - if (playListOptions.getAlwaysUseUNCPaths()) - { - UNCFile uncFile = new UNCFile(temp); - temp = new File(uncFile.getUNCPath()); - } - } - // make the entry and addAt it - ((FilePlaylistEntry) entry).setTrackPath(temp.toPath()); - } - } - } - - } - - /** - * Saves the playlist to disk. - * - * @param playlist The list to persist to disk. - * @param saveRelative Specifies if the playlist should be written out relatively or not. - * @param adapter An optionally null progress adapter which lets other code monitor the progress of this operation. - * @throws Exception If the playlist failed to save - */ - @Override - public void save(Playlist playlist, boolean saveRelative, @Nullable ProgressAdapter adapter) throws Exception - { - if (adapter == null) - { - // Create a dummy progress-adapter - adapter = ProgressAdapter.make(null); - } - - final int totalSteps = playlist.getEntries().size() + 3; - adapter.setTotal(totalSteps); - C collector = this.initCollector(); - adapter.stepCompleted(); // Extra step 1/3 - - this.writeHeader(collector, playlist); - adapter.stepCompleted(); // Extra step 2/3 - - int index = 0; - for (PlaylistEntry entry : playlist.getEntries()) - { - normalizeEntry(this.playListOptions, playlist, entry); - this.writeEntry(collector, entry, index++); - if (adapter.getCancelled()) - { - break; - } - adapter.stepCompleted(); - } - - this.finalize(collector, playlist); - adapter.setCompleted(totalSteps); // Extra step 3/3 - } - - protected abstract C initCollector() throws Exception; - - protected void writeHeader(C collector, Playlist playlist) throws Exception - { - } - - protected abstract void writeEntry(C collector, PlaylistEntry entry, int index) throws Exception; - - protected abstract void finalize(C collector, Playlist playlist) throws Exception; - -} diff --git a/src/main/java/listfix/io/playlists/PlaylistWriterFactory.java b/src/main/java/listfix/io/playlists/PlaylistWriterFactory.java deleted file mode 100644 index 081104ca..00000000 --- a/src/main/java/listfix/io/playlists/PlaylistWriterFactory.java +++ /dev/null @@ -1,30 +0,0 @@ -package listfix.io.playlists; - -import listfix.io.IPlaylistOptions; -import listfix.io.playlists.itunes.ITunesXMLWriter; -import listfix.io.playlists.m3u.M3UWriter; -import listfix.io.playlists.pls.PLSWriter; -import listfix.io.playlists.wpl.WPLWriter; -import listfix.io.playlists.xspf.XSPFWriter; -import listfix.model.enums.PlaylistType; -import listfix.model.playlists.Playlist; - -import java.io.File; -import java.io.IOException; - -public class PlaylistWriterFactory -{ - public static IPlaylistWriter getPlaylistWriter(File inputFile, IPlaylistOptions playListOptions) throws IOException - { - PlaylistType type = Playlist.determinePlaylistTypeFromExtension(inputFile); - return switch (type) - { - case M3U -> new M3UWriter(playListOptions); - case PLS -> new PLSWriter(playListOptions); - case XSPF -> new XSPFWriter(playListOptions); - case WPL -> new WPLWriter(playListOptions); - case ITUNES -> new ITunesXMLWriter(playListOptions); - default -> throw new IOException("Unsupported playlist type"); - }; - } -} diff --git a/src/main/java/listfix/io/playlists/itunes/ITunesXMLReader.java b/src/main/java/listfix/io/playlists/itunes/ITunesXMLReader.java deleted file mode 100644 index 6ade9af4..00000000 --- a/src/main/java/listfix/io/playlists/itunes/ITunesXMLReader.java +++ /dev/null @@ -1,113 +0,0 @@ -package listfix.io.playlists.itunes; - -import christophedelory.playlist.SpecificPlaylist; -import christophedelory.playlist.SpecificPlaylistFactory; -import christophedelory.playlist.plist.PlistPlaylist; -import listfix.io.IPlaylistOptions; -import listfix.io.playlists.PlaylistReader; -import listfix.model.enums.PlaylistType; -import listfix.model.playlists.PlaylistEntry; -import listfix.model.playlists.itunes.ITunesFilePlaylistEntry; -import listfix.model.playlists.itunes.ITunesMediaLibrary; -import listfix.model.playlists.itunes.ITunesTrack; -import listfix.model.playlists.itunes.ITunesUriPlaylistEntry; -import listfix.util.UnicodeUtils; -import listfix.view.support.IProgressObserver; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -import java.io.IOException; -import java.net.URI; -import java.net.URISyntaxException; -import java.nio.file.Path; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.stream.Collectors; - -public class ITunesXMLReader extends PlaylistReader -{ - private static final Logger _logger = LogManager.getLogger(ITunesXMLReader.class); - - private ITunesMediaLibrary _library; - - public ITunesXMLReader(IPlaylistOptions playListOptions, Path itunesXmlFile) - { - super(playListOptions, itunesXmlFile); - encoding = UnicodeUtils.getEncoding(playlistPath); - } - - @Override - public PlaylistType getPlaylistType() - { - return PlaylistType.ITUNES; - } - - @Override - public List readPlaylist(IProgressObserver input) throws IOException - { - List results = new ArrayList<>(); - SpecificPlaylist playlist = SpecificPlaylistFactory.getInstance().readFrom(playlistPath.toFile()); - if (playlist != null) - { - return getPlaylistEntries(results, (PlistPlaylist) playlist); - } - else - { - throw new IOException("Source XML file did not contain a playlist"); - } - } - - private List getPlaylistEntries(List results, PlistPlaylist playlist) - { - _library = new ITunesMediaLibrary(playlist); - Map tracks = getLibrary().getTracks(); - - results.addAll( - getLibrary().getTracks().keySet().stream() - .map(id -> iTunesTrackToPlaylistEntry(tracks.get(id))) - .filter(Objects::nonNull) - .collect(Collectors.toList()) - ); - return results; - } - - @Override - public List readPlaylist() throws IOException - { - List results = new ArrayList<>(); - SpecificPlaylist playlist = SpecificPlaylistFactory.getInstance().readFrom(playlistPath.toFile()); - return getPlaylistEntries(results, (PlistPlaylist) playlist); - } - - private PlaylistEntry iTunesTrackToPlaylistEntry(ITunesTrack track) - { - try - { - if (track.getTrackType().equals(ITunesTrack.URL)) - { - // result.setTrackId(track.getTrackId()); - return new ITunesUriPlaylistEntry(new URI(track.getLocation()), track); - } - else - { - // result.setTrackId(track.getTrackId()); - return new ITunesFilePlaylistEntry(Path.of(new URI(track.getLocation()).getPath()), track.getArtist() + " - " + track.getName(), track.getDuration(), playlistPath, track); - } - } - catch (URISyntaxException ex) - { - _logger.error("[ITunesXMLReader] - Failed to create a PlaylistEntry from a ITunesTrack, see exception for details.", ex); - return null; - } - } - - /** - * Returns the _library. - */ - public ITunesMediaLibrary getLibrary() - { - return _library; - } -} diff --git a/src/main/java/listfix/io/playlists/itunes/ITunesXMLWriter.java b/src/main/java/listfix/io/playlists/itunes/ITunesXMLWriter.java deleted file mode 100644 index be628a0f..00000000 --- a/src/main/java/listfix/io/playlists/itunes/ITunesXMLWriter.java +++ /dev/null @@ -1,147 +0,0 @@ -package listfix.io.playlists.itunes; - -import listfix.io.IPlaylistOptions; -import listfix.io.playlists.PlaylistWriter; -import listfix.model.playlists.FilePlaylistEntry; -import listfix.model.playlists.Playlist; -import listfix.model.playlists.PlaylistEntry; -import listfix.model.playlists.UriPlaylistEntry; -import listfix.model.playlists.itunes.IITunesPlaylistEntry; -import listfix.model.playlists.itunes.ITunesPlaylist; -import listfix.model.playlists.itunes.ITunesTrack; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -import java.io.*; -import java.net.URI; -import java.net.URISyntaxException; -import java.util.Map; -import java.util.TreeMap; - -import static java.nio.charset.StandardCharsets.UTF_8; - - -public class ITunesXMLWriter extends PlaylistWriter> -{ - private static final Logger _logger = LogManager.getLogger(ITunesXMLWriter.class); - - private static final String HEADER = "\n" + - ""; - - public ITunesXMLWriter(IPlaylistOptions playListOptions) - { - super(playListOptions); - } - - @Override - protected Map initCollector() - { - return new TreeMap(); - } - - @Override - protected void writeEntry(Map collector, PlaylistEntry entry, int index) throws Exception - { - final ITunesTrack iTunesTrack = ((IITunesPlaylistEntry) entry).getTrack(); - - URI mediaURI; - if (entry.isURL()) - { - mediaURI = ((UriPlaylistEntry) entry).getURI(); - } - else - { - FilePlaylistEntry fileEntry = (FilePlaylistEntry) entry; - mediaURI = fileEntry.getAbsolutePath().toUri(); - } - - mediaURI = normalizeFileUri(mediaURI); - - iTunesTrack.setLocation(mediaURI.toString()); - collector.put(iTunesTrack.getTrackId(), iTunesTrack); - } - - @Override - protected void finalize(Map trackMap, Playlist playlist) throws Exception - { - ITunesPlaylist iList = (ITunesPlaylist) playlist; - iList.getLibrary().setTracks(trackMap); - - try - { - try (FileOutputStream stream = new FileOutputStream(playlist.getFile())) - { - iList.getLibrary().getPlist().writeTo(stream, "UTF-8"); - } - - //FileWriter second argument is for append if its true than FileWriter will - //write bytes at the end of File (append) rather than beginning of file - insertStringInFile(playlist.getFile(), 1, HEADER); - } - catch (Exception ex) - { - _logger.error("Error writing library", ex); - throw ex; - } - } - - private void insertStringInFile(File inFile, int lineno, String lineToBeInserted) throws Exception - { - // temp file - File outFile = File.createTempFile("temp", ".txt"); - - // input - FileInputStream fis = new FileInputStream(inFile); - try (BufferedReader in = new BufferedReader(new InputStreamReader(fis, UTF_8))) - { - FileOutputStream fos = new FileOutputStream(outFile); - try (PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(fos, UTF_8)))) - { - String thisLine; - int i = 1; - while ((thisLine = in.readLine()) != null) - { - if (i == lineno) - { - out.println(lineToBeInserted); - } - out.println(thisLine); - i++; - } - out.flush(); - } - } - - inFile.delete(); - outFile.renameTo(inFile); - } - - // Files not on UNC drives need to have file:// as the prefix. // UNCs need file:///. - private URI normalizeFileUri(URI mediaURI) throws URISyntaxException - { - // What do we do w/ UNC? Does iTunes even support this? - if (!mediaURI.toString().startsWith("file://") && mediaURI.toString().startsWith("file:/")) - { - try - { - mediaURI = new URI(mediaURI.toString().replace("file:/", "file://localhost/")); - } - catch (URISyntaxException ex) - { - throw new RuntimeException(ex); - } - } - else if (mediaURI.toString().startsWith("file:////")) - { - try - { - mediaURI = new URI(mediaURI.toString().replace("file:////", "file://localhost//")); - } - catch (URISyntaxException ex) - { - throw new RuntimeException(ex); - } - } - return mediaURI; - } -} diff --git a/src/main/java/listfix/io/playlists/m3u/M3UReader.java b/src/main/java/listfix/io/playlists/m3u/M3UReader.java deleted file mode 100644 index c17f190d..00000000 --- a/src/main/java/listfix/io/playlists/m3u/M3UReader.java +++ /dev/null @@ -1,161 +0,0 @@ -package listfix.io.playlists.m3u; - -import listfix.io.BufferedProgressReader; -import listfix.io.IPlaylistOptions; -import listfix.io.playlists.PlaylistReader; -import listfix.model.enums.PlaylistType; -import listfix.model.playlists.PlaylistEntry; -import listfix.view.support.IProgressObserver; -import listfix.view.support.ProgressAdapter; - -import java.io.IOException; -import java.nio.charset.Charset; -import java.nio.file.Files; -import java.nio.file.Path; -import java.util.ArrayList; -import java.util.List; - -/** - * Reads in a M3U/M3U8 file and returns a List containing PlaylistEntries that represent the files & URIs in the playlist. - */ -public class M3UReader extends PlaylistReader -{ - private final List results = new ArrayList<>(); - private static final PlaylistType type = PlaylistType.M3U; - - public M3UReader(IPlaylistOptions playListOptions, Path m3uPath) throws IOException - { - super(playListOptions, m3uPath); - } - - @Override - public Charset getEncoding() - { - return encoding; - } - - @Override - public PlaylistType getPlaylistType() - { - return type; - } - - @Override - public List readPlaylist(IProgressObserver observer) throws IOException - { - long fileLength = Files.size(this.playlistPath); - - try (BufferedProgressReader buffer = openBufferedReader(this.playlistPath)) - { - // See http://gonze.com/playlists/playlist-format-survey.html#M3U for the format of an M3U file. - // Line1 holds the metadata about the file that we just hang on to, line2 represents the file reference. - - //Initialize the progress adapter if we're given an observer. - ProgressAdapter progress = ProgressAdapter.make(observer); - progress.setTotal(fileLength); - - String line1 = buffer.readLine(); - String line2; - if (line1 != null) - { - // Ignore the standard M3U header and random mediamonkey crap. - while (line1.contains("#EXTM3U") || line1.startsWith("#EXTINFUTF8") || line1.isEmpty()) - { - line1 = buffer.readLine(); - if (line1 == null) - { - // needed to handle empty playlists - return results; - } - } - - // If after skipping that line the line doesn't start w/ a #, then we already have the file reference. Stuff that into line2. - if (!line1.startsWith("#")) - { - line2 = line1; - line1 = ""; - } - else - { - // Otherwise, read in the next line which should be our file reference. - line2 = buffer.readLine(); - while (line2.startsWith("#")) - { - // throw away non-standard metadata added by mediamonkey... - line2 = buffer.readLine(); - } - } - - while (line1 != null) - { - // If we have an observer and the user cancelled, bail out. - if (observer != null) - { - if (observer.getCancelled()) - { - return null; - } - } - - // Process the two strings we have into a playlist entry - processEntry(line2, line1); - - // We just processed an entry, update the progress bar w/ the % of the file we've read if we have an observer. - long bytesRead = Math.min(fileLength, buffer.getCharactersRead()); - progress.setCompleted(bytesRead); - - // Start processing the next entry. - line1 = buffer.readLine(); - if (line1 != null) - { - // WMP produces M3Us with spaces between entries... have to read in an extra line to avoid this if line1 is empty. - // Let's also handle an arbitrary number of spaces between the entries while we're at it. - while (line1.isEmpty()) - { - line1 = buffer.readLine(); - - // And of course WMP ends the file w/ several blank lines, so if we find a null here return what we have... - if (line1 == null) - { - // Fill the progress bar - progress.setCompleted(fileLength); - - return results; - } - } - - if (!line1.startsWith("#")) - { - line2 = line1; - line1 = ""; - } - else - { - line2 = buffer.readLine(); - while (line2.startsWith("#")) - { - // throw away non-standard metadata added by mediamonkey... - line2 = buffer.readLine(); - } - } - } - } - } - progress.setCompleted(fileLength); - return results; - } - } - - @Override - public List readPlaylist() throws IOException - { - readPlaylist(null); - return results; - } - - - private void processEntry(String L2, String extInf) - { - super.processEntry(this.results, L2, extInf, null); - } -} diff --git a/src/main/java/listfix/io/playlists/m3u/M3UWriter.java b/src/main/java/listfix/io/playlists/m3u/M3UWriter.java deleted file mode 100644 index b0a737be..00000000 --- a/src/main/java/listfix/io/playlists/m3u/M3UWriter.java +++ /dev/null @@ -1,93 +0,0 @@ -package listfix.io.playlists.m3u; - -import listfix.io.Constants; -import listfix.io.IPlaylistOptions; -import listfix.io.playlists.PlaylistWriter; -import listfix.model.playlists.Playlist; -import listfix.model.playlists.PlaylistEntry; -import listfix.util.OperatingSystem; -import listfix.util.UnicodeUtils; - -import java.io.*; -import java.nio.charset.StandardCharsets; - -import static java.nio.charset.StandardCharsets.UTF_8; - -/** - * A playlist writer capable of saving to M3U or M3U8 format. - */ -public class M3UWriter extends PlaylistWriter -{ - public M3UWriter(IPlaylistOptions options) - { - super(options); - } - - @Override - protected StringBuilder initCollector() - { - return new StringBuilder(); - } - - @Override - protected void writeHeader(StringBuilder buffer, Playlist playlist) - { - buffer.append("#EXTM3U").append(Constants.BR); - } - - @Override - protected void writeEntry(StringBuilder buffer, PlaylistEntry entry, int index) - { - buffer.append(serializeEntry(entry)).append(Constants.BR); - } - - private String serializeEntry(PlaylistEntry entry) - { - StringBuilder result = new StringBuilder(); - if (!(entry.getExtInf() == null) && !entry.getExtInf().equals("")) - { - result.append(entry.getExtInf()); - result.append(Constants.BR); - } - result.append(entry.trackPathToString()); - return result.toString(); - } - - @Override - protected void finalize(StringBuilder buffer, Playlist playlist) throws IOException - { - final File playListFile = playlist.getFile(); - - final File dirToSaveIn = playListFile.getParentFile().getAbsoluteFile(); - if (!dirToSaveIn.exists()) - { - dirToSaveIn.mkdirs(); - } - - FileOutputStream outputStream = new FileOutputStream(playListFile); - if (playlist.isUtfFormat() || playListFile.getName().toLowerCase().endsWith("m3u8")) - { - Writer osw = new OutputStreamWriter(outputStream, StandardCharsets.UTF_8); - try (BufferedWriter output = new BufferedWriter(osw)) - { - if (OperatingSystem.isWindows()) - { - // For some reason, linux players seem to choke on this header when I addAt it... perhaps the stream classes do it automatically. - output.write(UnicodeUtils.getBOM("UTF-8")); - } - output.write(buffer.toString()); - } - outputStream.close(); - playlist.setUtfFormat(true); - } - else - { - try (BufferedOutputStream output = new BufferedOutputStream(outputStream)) - { - output.write(buffer.toString().getBytes(UTF_8)); - } - outputStream.close(); - playlist.setUtfFormat(false); - } - } -} diff --git a/src/main/java/listfix/io/playlists/pls/PLSProperties.java b/src/main/java/listfix/io/playlists/pls/PLSProperties.java deleted file mode 100644 index 1143b23f..00000000 --- a/src/main/java/listfix/io/playlists/pls/PLSProperties.java +++ /dev/null @@ -1,932 +0,0 @@ -/* - * @(#)Properties.java 1.96 06/08/07 - * - * Copyright 2006 Sun Microsystems, Inc. All rights reserved. - * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. - */ - -package listfix.io.playlists.pls; - -import java.io.*; -import java.nio.charset.StandardCharsets; -import java.util.Date; -import java.util.Enumeration; -import java.util.Hashtable; - -/** - * The Properties class represents a persistent set of - * properties. The Properties can be saved to a stream - * or loaded from a stream. Each key and its corresponding value in - * the property list is a string. - *

- * A property list can contain another property list as its - * "defaults"; this second property list is searched if - * the property key is not found in the original property list. - *

- *

- * Because Properties inherits from Hashtable, the - * put and putAll methods can be applied to a - * Properties object. Their use is strongly discouraged as they - * allow the caller to insert entries whose keys or values are not - * Strings. The setProperty method should be used - * instead. If the store or save method is called - * on a "compromised" Properties object that contains a - * non-String key or value, the call will fail. Similarly, - * the call to the propertyNames or list method - * will fail if it is called on a "compromised" Properties - * object that contains a non-String key. - *

- *

- * The {@link #load(java.io.Reader) load(Reader)} - * {@link #store(java.io.Writer, java.lang.String) store(Writer, String)} - * methods load and store properties from and to a character based stream - * in a simple line-oriented format specified below. - *

- * The {@link #load(java.io.InputStream) load(InputStream)} - * {@link #store(java.io.OutputStream, java.lang.String) store(OutputStream, String)} - * methods work the same way as the load(Reader)/store(Writer, String) pair, except - * the input/output stream is encoded in ISO 8859-1 character encoding. - * Characters that cannot be directly represented in this encoding can be written using - * Unicode escapes - * ; only a single 'u' character is allowed in an escape - * sequence. The native2ascii tool can be used to convert property files to and - * from other character encodings. - *

- *

- * The {@link #load(InputStream)} and {@link #store(OutputStream, String)} - * store(OutputStream, String) methods load and store properties - * in a simple XML format. By default the UTF-8 character encoding is used, - * however a specific encoding may be specified if required. An XML properties - * document has the following DOCTYPE declaration: - *

- * - *
- * <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
- * 
- * Note that the system URI (http://java.sun.com/dtd/properties.dtd) is - * not accessed when exporting or importing properties; it merely - * serves as a string to uniquely identify the DTD, which is: - *
- *    <?xml version="1.0" encoding="UTF-8"?>
- *    <!-- DTD for properties -->
- *    <!ELEMENT properties ( comment?, entry* ) >
- *    <!ATTLIST properties version CDATA #FIXED "1.0">
- *    <!ELEMENT comment (#PCDATA) >
- *    <!ELEMENT entry (#PCDATA) >
- *    <!ATTLIST entry key CDATA #REQUIRED>
- * 
- * - * @author Arthur van Hoff - * @author Michael McCloskey - * @author Xueming Shen - * @version 1.96, 08/07/06 - * @see native2ascii tool for Solaris - * @see native2ascii tool for Windows - * - *

This class is thread-safe: multiple threads can share a single - * Properties object without the need for external synchronization. - * @since JDK1.0 - *

- *

- * JCaron - 2011.03.13 - This straight-up copy/paste was needed to change the way Java's Properties class - * loads and saves characters such as : and #. The escaping it performs seriously jacks w/ playback of - * file paths by media players... - *

- *

- * You can override private methods, but you can't call private methods in the parent class :( - *

- */ -public class PLSProperties extends Hashtable -{ - /** - * use serialVersionUID from JDK 1.1.X for interoperability - */ - private static final long serialVersionUID = 4112578634029874840L; - /** - * A property list that contains default values for any keys not - * found in this property list. - * - * @serial - */ - private final PLSProperties defaults; - - /** - * Creates an empty property list with no default values. - */ - public PLSProperties() - { - this(null); - } - - /** - * Creates an empty property list with the specified defaults. - * - * @param defaults the defaults. - */ - public PLSProperties(PLSProperties defaults) - { - this.defaults = defaults; - } - - /** - * Calls the Hashtable method put. Provided for - * parallelism with the getProperty method. Enforces use of - * strings for property keys and values. The value returned is the - * result of the Hashtable call to put. - * - * @param key the key to be placed into this property list. - * @param value the value corresponding to key. - * @return the previous value of the specified key in this property list, - * or null if it did not have one. - * @see #getProperty - * @since 1.2 - */ - public synchronized Object setProperty(String key, String value) - { - return put(key, value); - } - - /** - * Reads a property list (key and element pairs) from the input - * character stream in a simple line-oriented format. - *

- * Properties are processed in terms of lines. There are two - * kinds of line, natural lines and logical lines. - * A natural line is defined as a line of - * characters that is terminated either by a set of line terminator - * characters (\n or \r or \r\n) - * or by the end of the stream. A natural line may be either a blank line, - * a comment line, or hold all or some of a key-element pair. A logical - * line holds all the data of a key-element pair, which may be spread - * out across several adjacent natural lines by escaping - * the line terminator sequence with a backslash character - * \. Note that a comment line cannot be extended - * in this manner; every natural line that is a comment must have - * its own comment indicator, as described below. Lines are read from - * input until the end of the stream is reached. - * - *

- * A natural line that contains only white space characters is - * considered blank and is ignored. A comment line has an ASCII - * '#' or '!' as its first non-white - * space character; comment lines are also ignored and do not - * encode key-element information. In addition to line - * terminators, this format considers the characters space - * (' ', '\u0020'), tab - * ('\t', '\u0009'), and form feed - * ('\f', '\u000C') to be white - * space. - * - *

- * If a logical line is spread across several natural lines, the - * backslash escaping the line terminator sequence, the line - * terminator sequence, and any white space at the start of the - * following line have no affect on the key or element values. - * The remainder of the discussion of key and element parsing - * (when loading) will assume all the characters constituting - * the key and element appear on a single natural line after - * line continuation characters have been removed. Note that - * it is not sufficient to only examine the character - * preceding a line terminator sequence to decide if the line - * terminator is escaped; there must be an odd number of - * contiguous backslashes for the line terminator to be escaped. - * Since the input is processed from left to right, a - * non-zero even number of 2n contiguous backslashes - * before a line terminator (or elsewhere) encodes n - * backslashes after escape processing. - * - *

- * The key contains all of the characters in the line starting - * with the first non-white space character and up to, but not - * including, the first unescaped '=', - * ':', or white space character other than a line - * terminator. All of these key termination characters may be - * included in the key by escaping them with a preceding backslash - * character; for example,

- * - * \:\=

- *

- * would be the two-character key ":=". Line - * terminator characters can be included using \r and - * \n escape sequences. Any white space after the - * key is skipped; if the first non-white space character after - * the key is '=' or ':', then it is - * ignored and any white space characters after it are also - * skipped. All remaining characters on the line become part of - * the associated element string; if there are no remaining - * characters, the element is the empty string - * "". Once the raw character sequences - * constituting the key and element are identified, escape - * processing is performed as described above. - * - *

- * As an example, each of the following three lines specifies the key - * "Truth" and the associated element value - * "Beauty": - *

- *

-   * Truth = Beauty
-   *  Truth:Beauty
-   * Truth      :Beauty
-   * 
- * As another example, the following three lines specify a single - * property: - *

- *

-   * fruits                           apple, banana, pear, \
-   *                                  cantaloupe, watermelon, \
-   *                                  kiwi, mango
-   * 
- * The key is "fruits" and the associated element is: - *

- *

"apple, banana, pear, cantaloupe, watermelon, kiwi, mango"
- * Note that a space appears before each \ so that a space - * will appear after each comma in the final result; the \, - * line terminator, and leading white space on the continuation line are - * merely discarded and are not replaced by one or more other - * characters. - *

- * As a third example, the line: - *

- *

cheeses
-   * 
- * specifies that the key is "cheeses" and the associated - * element is the empty string "".

- *

- *

- * Characters in keys and elements can be represented in escape - * sequences similar to those used for character and string literals - * (see §3.3 - * and §3.10.6 - * of the Java Language Specification). - *

- * The differences from the character escape sequences and Unicode - * escapes used for characters and strings are: - * - *

    - *
  • Octal escapes are not recognized. - * - *
  • The character sequence \b does not - * represent a backspace character. - * - *
  • The method does not treat a backslash character, - * \, before a non-valid escape character as an - * error; the backslash is silently dropped. For example, in a - * Java string the sequence "\z" would cause a - * compile time error. In contrast, this method silently drops - * the backslash. Therefore, this method treats the two character - * sequence "\b" as equivalent to the single - * character 'b'. - * - *
  • Escapes are not necessary for single and double quotes; - * however, by the rule above, single and double quote characters - * preceded by a backslash still yield single and double quote - * characters, respectively. - * - *
  • Only a single 'u' character is allowed in a Uniocde escape - * sequence. - * - *
- *

- * The specified stream remains open after this method returns. - * - * @param reader the input character stream. - * @throws IOException if an error occurred when reading from the - * input stream. - * @throws IllegalArgumentException if a malformed Unicode escape - * appears in the input. - * @since 1.6 - */ - public synchronized void load(Reader reader) throws IOException - { - load0(new LineReader(reader)); - } - - /** - * Reads a property list (key and element pairs) from the input - * byte stream. The input stream is in a simple line-oriented - * format as specified in - * {@link #load(java.io.Reader) load(Reader)} and is assumed to use - * the ISO 8859-1 character encoding; that is each byte is one Latin1 - * character. Characters not in Latin1, and certain special characters, - * are represented in keys and elements using - * Unicode escapes. - *

- * The specified stream remains open after this method returns. - * - * @param inStream the input stream. - * @throws IOException if an error occurred when reading from the - * input stream. - * @throws IllegalArgumentException if the input stream contains a - * malformed Unicode escape sequence. - * @since 1.2 - */ - public synchronized void load(InputStream inStream) throws IOException - { - load0(new LineReader(inStream)); - } - - private void load0(LineReader lr) throws IOException - { - char[] convtBuf = new char[1024]; - int limit; - int keyLen; - int valueStart; - char c; - boolean hasSep; - boolean precedingBackslash; - - while ((limit = lr.readLine()) >= 0) - { - keyLen = 0; - valueStart = limit; - hasSep = false; - - precedingBackslash = false; - while (keyLen < limit) - { - c = lr.lineBuf[keyLen]; - //need check if escaped. - if ((c == '=' || c == ':') && !precedingBackslash) - { - valueStart = keyLen + 1; - hasSep = true; - break; - } - else if ((c == ' ' || c == '\t' || c == '\f') && !precedingBackslash) - { - valueStart = keyLen + 1; - break; - } - if (c == '\\') - { - precedingBackslash = !precedingBackslash; - } - else - { - precedingBackslash = false; - } - keyLen++; - } - while (valueStart < limit) - { - c = lr.lineBuf[valueStart]; - if (c != ' ' && c != '\t' && c != '\f') - { - if (!hasSep && (c == '=' || c == ':')) - { - hasSep = true; - } - else - { - break; - } - } - valueStart++; - } - String key = loadConvert(lr.lineBuf, 0, keyLen, convtBuf); - String value = loadConvert(lr.lineBuf, valueStart, limit - valueStart, convtBuf); - put(key, value); - } - } - - /* Read in a "logical line" from an InputStream/Reader, skip all comment - * and blank lines and filter out those leading whitespace characters - * ( , \u0009 and \u000c) from the beginning of a "natural line". - * Method returns the char length of the "logical line" and stores - * the line in "lineBuf". - */ - static class LineReader - { - LineReader(InputStream inStream) - { - this.inStream = inStream; - inByteBuf = new byte[8192]; - } - - LineReader(Reader reader) - { - this.reader = reader; - inCharBuf = new char[8192]; - } - - private byte[] inByteBuf; - private char[] inCharBuf; - private char[] lineBuf = new char[1024]; - private int inLimit = 0; - private int inOff = 0; - private InputStream inStream; - private Reader reader; - - int readLine() throws IOException - { - int len = 0; - char c; - - boolean skipWhiteSpace = true; - boolean isCommentLine = false; - boolean isNewLine = true; - boolean appendedLineBegin = false; - boolean precedingBackslash = false; - boolean skipLF = false; - - while (true) - { - if (inOff >= inLimit) - { - inLimit = (inStream == null) ? reader.read(inCharBuf) : inStream.read(inByteBuf); - inOff = 0; - if (inLimit <= 0) - { - if (len == 0 || isCommentLine) - { - return -1; - } - return len; - } - } - if (inStream != null) - { - //The line below is equivalent to calling a - //ISO8859-1 decoder. - c = (char) (0xff & inByteBuf[inOff++]); - } - else - { - c = inCharBuf[inOff++]; - } - if (skipLF) - { - skipLF = false; - if (c == '\n') - { - continue; - } - } - if (skipWhiteSpace) - { - if (c == ' ' || c == '\t' || c == '\f') - { - continue; - } - if (!appendedLineBegin && (c == '\r' || c == '\n')) - { - continue; - } - skipWhiteSpace = false; - appendedLineBegin = false; - } - if (isNewLine) - { - isNewLine = false; - if (c == '#' || c == '!') - { - isCommentLine = true; - continue; - } - } - - if (c != '\n' && c != '\r') - { - lineBuf[len++] = c; - if (len == lineBuf.length) - { - int newLength = lineBuf.length * 2; - if (newLength < 0) - { - newLength = Integer.MAX_VALUE; - } - char[] buf = new char[newLength]; - System.arraycopy(lineBuf, 0, buf, 0, lineBuf.length); - lineBuf = buf; - } - //flip the preceding backslash flag - if (c == '\\') - { - precedingBackslash = !precedingBackslash; - } - else - { - precedingBackslash = false; - } - } - else - { - // reached EOL - if (isCommentLine || len == 0) - { - isCommentLine = false; - isNewLine = true; - skipWhiteSpace = true; - len = 0; - continue; - } - if (inOff >= inLimit) - { - inLimit = (inStream == null) - ? reader.read(inCharBuf) - : inStream.read(inByteBuf); - inOff = 0; - if (inLimit <= 0) - { - return len; - } - } - if (precedingBackslash) - { - len -= 1; - //skip the leading whitespace characters in following line - skipWhiteSpace = true; - appendedLineBegin = true; - precedingBackslash = false; - if (c == '\r') - { - skipLF = true; - } - } - else - { - return len; - } - } - } - } - } - - /* - * Converts encoded \uxxxx to unicode chars - * and changes special saved chars to their original forms - */ - private String loadConvert(char[] in, int off, int len, char[] convtBuf) - { - if (convtBuf.length < len) - { - int newLen = len * 2; - if (newLen < 0) - { - newLen = Integer.MAX_VALUE; - } - convtBuf = new char[newLen]; - } - char aChar; - char[] out = convtBuf; - int outLen = 0; - int end = off + len; - - while (off < end) - { - aChar = in[off++]; - if (aChar == '\\') - { - aChar = in[off++]; - if (aChar == 'u') - { - // Read the xxxx - int value = 0; - for (int i = 0; i < 4; i++) - { - aChar = in[off++]; - switch (aChar) - { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - value = (value << 4) + aChar - '0'; - break; - case 'a': - case 'b': - case 'c': - case 'd': - case 'e': - case 'f': - value = (value << 4) + 10 + aChar - 'a'; - break; - case 'A': - case 'B': - case 'C': - case 'D': - case 'E': - case 'F': - value = (value << 4) + 10 + aChar - 'A'; - break; - default: - // this was crashing out on folders w/ \\u in the path. - // throw new IllegalArgumentException("Malformed \\uxxxx encoding."); - out[outLen++] = '\\'; - out[outLen++] = 'u'; - value = aChar; - break; - } - } - out[outLen++] = (char) value; - } - else - { - out[outLen++] = '\\'; - out[outLen++] = aChar; - } - } - else - { - out[outLen++] = aChar; - } - } - return new String(out, 0, outLen); - } - - /* - * Converts unicodes to encoded \uxxxx and escapes - * special characters with a preceding slash - */ - private String saveConvert(String theString, - boolean escapeUnicode) - { - int len = theString.length(); - int bufLen = len * 2; - if (bufLen < 0) - { - bufLen = Integer.MAX_VALUE; - } - StringBuilder outBuffer = new StringBuilder(bufLen); - - for (int x = 0; x < len; x++) - { - char aChar = theString.charAt(x); - // Handle common case first, selecting largest block that - // avoids the specials below - if ((aChar > 61) && (aChar < 127)) - { - if (aChar == '\\') - { - outBuffer.append('\\'); - outBuffer.append('\\'); - continue; - } - outBuffer.append(aChar); - continue; - } - if (((aChar < 0x0020) || (aChar > 0x007e)) && escapeUnicode) - { - outBuffer.append('\\'); - outBuffer.append('u'); - outBuffer.append(toHex((aChar >> 12) & 0xF)); - outBuffer.append(toHex((aChar >> 8) & 0xF)); - outBuffer.append(toHex((aChar >> 4) & 0xF)); - outBuffer.append(toHex(aChar & 0xF)); - } - else - { - outBuffer.append(aChar); - } - - } - return outBuffer.toString(); - } - - private static void writeComments(BufferedWriter bw, String comments) - throws IOException - { - bw.write("#"); - int len = comments.length(); - int current = 0; - int last = 0; - char[] uu = new char[6]; - uu[0] = '\\'; - uu[1] = 'u'; - while (current < len) - { - char c = comments.charAt(current); - if (c > '\u00ff' || c == '\n' || c == '\r') - { - if (last != current) - { - bw.write(comments.substring(last, current)); - } - if (c > '\u00ff') - { - uu[2] = toHex((c >> 12) & 0xf); - uu[3] = toHex((c >> 8) & 0xf); - uu[4] = toHex((c >> 4) & 0xf); - uu[5] = toHex(c & 0xf); - bw.write(new String(uu)); - } - else - { - bw.newLine(); - if (c == '\r' - && current != len - 1 - && comments.charAt(current + 1) == '\n') - { - current++; - } - if (current == len - 1 - || (comments.charAt(current + 1) != '#' - && comments.charAt(current + 1) != '!')) - { - bw.write("#"); - } - } - last = current + 1; - } - current++; - } - if (last != current) - { - bw.write(comments.substring(last, current)); - } - bw.newLine(); - } - - /** - * Writes this property list (key and element pairs) in this - * Properties table to the output character stream in a - * format suitable for using the {@link #load(java.io.Reader) load(Reader)} - * method. - *

- * Properties from the defaults table of this Properties - * table (if any) are not written out by this method. - *

- * If the comments argument is not null, then an ASCII # - * character, the comments string, and a line separator are first written - * to the output stream. Thus, the comments can serve as an - * identifying comment. Any one of a line feed ('\n'), a carriage - * return ('\r'), or a carriage return followed immediately by a line feed - * in comments is replaced by a line separator generated by the Writer - * and if the next character in comments is not character # or - * character ! then an ASCII # is written out - * after that line separator. - *

- * Next, a comment line is always written, consisting of an ASCII - * # character, the current date and time (as if produced - * by the toString method of Date for the - * current time), and a line separator as generated by the Writer. - *

- * Then every entry in this Properties table is - * written out, one per line. For each entry the key string is - * written, then an ASCII =, then the associated - * element string. For the key, all space characters are - * written with a preceding \ character. For the - * element, leading space characters, but not embedded or trailing - * space characters, are written with a preceding \ - * character. The key and element characters #, - * !, =, and : are written - * with a preceding backslash to ensure that they are properly loaded. - *

- * After the entries have been written, the output stream is flushed. - * The output stream remains open after this method returns. - *

- * - * @param writer an output character stream writer. - * @param comments a description of the property list. - * @throws IOException if writing this property list to the specified - * output stream throws an IOException. - * @throws ClassCastException if this Properties object - * contains any keys or values that are not Strings. - * @throws NullPointerException if writer is null. - * @since 1.6 - */ - public void store(Writer writer, String comments) - throws IOException - { - store0((writer instanceof BufferedWriter) ? (BufferedWriter) writer - : new BufferedWriter(writer), - comments, - false); - } - - /** - * Writes this property list (key and element pairs) in this - * Properties table to the output stream in a format suitable - * for loading into a Properties table using the - * {@link #load(InputStream) load(InputStream)} method. - *

- * Properties from the defaults table of this Properties - * table (if any) are not written out by this method. - *

- * This method outputs the comments, properties keys and values in - * the same format as specified in - * {@link #store(java.io.Writer, java.lang.String) store(Writer)}, - * with the following differences: - *

    - *
  • The stream is written using the ISO 8859-1 character encoding. - * - *
  • Characters not in Latin-1 in the comments are written as - * \uxxxx for their appropriate unicode - * hexadecimal value xxxx. - * - *
  • Characters less than \u0020 and characters greater - * than \u007E in property keys or values are written - * as \uxxxx for the appropriate hexadecimal - * value xxxx. - *
- *

- * After the entries have been written, the output stream is flushed. - * The output stream remains open after this method returns. - *

- * - * @param out an output stream. - * @param comments a description of the property list. - * @throws IOException if writing this property list to the specified - * output stream throws an IOException. - * @throws ClassCastException if this Properties object - * contains any keys or values that are not Strings. - * @throws NullPointerException if out is null. - * @since 1.2 - */ - public void store(OutputStream out, String comments) - throws IOException - { - store0(new BufferedWriter(new OutputStreamWriter(out, StandardCharsets.ISO_8859_1)), - comments, - true); - } - - private void store0(BufferedWriter bw, String comments, boolean escUnicode) - throws IOException - { - if (comments != null) - { - writeComments(bw, comments); - } - bw.write("#" + new Date()); - bw.newLine(); - synchronized (this) - { - for (Enumeration e = keys(); e.hasMoreElements(); ) - { - String key = e.nextElement(); - String val = this.get(key); - key = saveConvert(key, escUnicode); - /* No need to escape embedded and trailing spaces for value, hence - * pass false to flag. - */ - val = saveConvert(val, escUnicode); - bw.write(key + "=" + val); - bw.newLine(); - } - } - bw.flush(); - } - - /** - * Searches for the property with the specified key in this property list. - * If the key is not found in this property list, the default property list, - * and its defaults, recursively, are then checked. The method returns - * null if the property is not found. - * - * @param key the property key. - * @return the value in this property list with the specified key value. - * @see #setProperty - * @see #defaults - */ - public String getProperty(String key) - { - String strValue = super.get(key); - return ((strValue == null) && (defaults != null)) ? defaults.getProperty(key) : strValue; - } - - /** - * Searches for the property with the specified key in this property list. - * If the key is not found in this property list, the default property list, - * and its defaults, recursively, are then checked. The method returns the - * default value argument if the property is not found. - * - * @param key the hashtable key. - * @param defaultValue a default value. - * @return the value in this property list with the specified key value. - * @see #setProperty - * @see #defaults - */ - public String getProperty(String key, String defaultValue) - { - String val = getProperty(key); - return (val == null) ? defaultValue : val; - } - - /** - * Convert a nibble to a hex character - * - * @param nibble the nibble to convert. - */ - private static char toHex(int nibble) - { - return hexDigit[(nibble & 0xF)]; - } - - /** - * A table of hex digits - */ - private static final char[] hexDigit = - { - '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' - }; -} diff --git a/src/main/java/listfix/io/playlists/pls/PLSReader.java b/src/main/java/listfix/io/playlists/pls/PLSReader.java deleted file mode 100644 index 69946af4..00000000 --- a/src/main/java/listfix/io/playlists/pls/PLSReader.java +++ /dev/null @@ -1,141 +0,0 @@ -package listfix.io.playlists.pls; - -import listfix.io.Constants; -import listfix.io.IPlaylistOptions; -import listfix.io.playlists.PlaylistReader; -import listfix.model.enums.PlaylistType; -import listfix.model.playlists.FilePlaylistEntry; -import listfix.model.playlists.PlaylistEntry; -import listfix.model.playlists.UriPlaylistEntry; -import listfix.util.OperatingSystem; -import listfix.util.UnicodeUtils; -import listfix.view.support.IProgressObserver; -import listfix.view.support.ProgressAdapter; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.IOException; -import java.io.InputStreamReader; -import java.net.URI; -import java.net.URISyntaxException; -import java.nio.charset.StandardCharsets; -import java.nio.file.Path; -import java.util.ArrayList; -import java.util.List; - -/** - * Reads in a PLS file and returns a List containing PlaylistEntries that represent the files & URIs in the playlist. - */ -public class PLSReader extends PlaylistReader -{ - private final List results = new ArrayList<>(); - private static final PlaylistType type = PlaylistType.PLS; - private static final Logger _logger = LogManager.getLogger(PLSReader.class); - - public PLSReader(IPlaylistOptions playListOptions, Path plsFile) throws FileNotFoundException - { - super(playListOptions, plsFile); - try - { - this.encoding = UnicodeUtils.getEncoding(plsFile); - } - catch (Exception e) - { - throw new RuntimeException(e); - } - } - - @Override - public List readPlaylist(IProgressObserver observer) throws IOException - { - // Definition of the PLS format can be found @ http://gonze.com/playlists/playlist-format-survey.html#PLS - - // Init a progress adapter if we have a progress observer. - ProgressAdapter progress = ProgressAdapter.make(observer); - - // Load the PLS file into memory (it's basically a glorified INI | java properties file). - PLSProperties propBag = new PLSProperties(); - if (encoding.equals(StandardCharsets.UTF_8)) - { - propBag.load(new InputStreamReader(new FileInputStream(playlistPath.toFile()), StandardCharsets.UTF_8)); - } - else - { - propBag.load(new FileInputStream(playlistPath.toFile())); - } - - // Find out how many entries we have to process. - int entries = Integer.parseInt(propBag.getProperty("NumberOfEntries", "0")); - - // Set the total if we have an observer. - progress.setTotal(entries); - - // Loop over the entries and process each in turn. - for (int i = 1; i <= entries; i++) - { - if (observer != null) - { - if (observer.getCancelled()) - { - // Bail out if the user cancelled. - return null; - } - } - processEntry(propBag, i); - // Step forward if we have an observer. - progress.setCompleted(i); - } - return results; - } - - @Override - public List readPlaylist() throws IOException - { - readPlaylist(null); - return results; - } - - private void processEntry(PLSProperties propBag, int index) - { - String file = propBag.getProperty("File" + index, ""); - String title = propBag.getProperty("Title" + index, ""); - String length = propBag.getProperty("Length" + index, ""); - - long duration = Long.parseLong(length) * 1000L; - - if (file.contains("://")) - { - try - { - results.add(new UriPlaylistEntry(new URI(file), title, duration)); - } - catch (URISyntaxException ex) - { - _logger.error(ex); - } - } - else - { - // We have to perform FS conversion here... - // if there are no FS instances in this string, look for the one from the other file system - if (!file.contains(Constants.FS)) - if (OperatingSystem.isLinux() || OperatingSystem.isMac()) - { - file = file.replace("\\", Constants.FS); - } - else if (OperatingSystem.isWindows()) - { - file = file.replace("/", Constants.FS); - } - results.add(new FilePlaylistEntry(Path.of(file), title, duration, playlistPath)); - } - } - - @Override - public PlaylistType getPlaylistType() - { - return type; - } -} diff --git a/src/main/java/listfix/io/playlists/pls/PLSWriter.java b/src/main/java/listfix/io/playlists/pls/PLSWriter.java deleted file mode 100644 index d79a83d5..00000000 --- a/src/main/java/listfix/io/playlists/pls/PLSWriter.java +++ /dev/null @@ -1,104 +0,0 @@ -package listfix.io.playlists.pls; - -import listfix.io.Constants; -import listfix.io.IPlaylistOptions; -import listfix.io.playlists.PlaylistWriter; -import listfix.model.playlists.Playlist; -import listfix.model.playlists.PlaylistEntry; -import listfix.util.UnicodeUtils; - -import java.io.*; - -import static java.nio.charset.StandardCharsets.UTF_8; - -/** - * A playlist writer capable of saving to PLS format. - */ -public class PLSWriter extends PlaylistWriter -{ - - public PLSWriter(IPlaylistOptions options) - { - super(options); - } - - @Override - protected StringBuilder initCollector() throws Exception - { - return new StringBuilder(); - } - - @Override - protected void writeHeader(StringBuilder buffer, Playlist playlist) - { - buffer.append("[playlist]").append(Constants.BR); - } - - @Override - protected void writeEntry(StringBuilder buffer, PlaylistEntry entry, int index) - { - buffer.append(serializeEntry(entry, index + 1)); - } - - private String serializeEntry(PlaylistEntry entry, int index) - { - StringBuilder result = new StringBuilder(); - - // set the file - if (!entry.isURL()) - { - result.append("File").append(index).append("="); - result.append(entry.trackPathToString()); - } - else - { - result.append("File").append(index).append("=").append(result.append(entry.trackPathToString())); - } - result.append(Constants.BR); - - // set the _title - result.append("Title").append(index).append("=").append(entry.getTitle()).append(Constants.BR); - - // set the _length - long lengthToSeconds = entry.getLength() == -1 ? entry.getLength() : entry.getLength() / 1000L; - result.append("Length").append(index).append("=").append(lengthToSeconds).append(Constants.BR); - - return result.toString(); - } - - @Override - protected void finalize(StringBuilder buffer, Playlist playlist) throws IOException - { - buffer.append("NumberOfEntries=").append(playlist.getEntries().size()).append(Constants.BR); - buffer.append("Version=2"); - - final File playlistFile = playlist.getFile(); - - File dirToSaveIn = playlistFile.getParentFile().getAbsoluteFile(); - if (!dirToSaveIn.exists()) - { - dirToSaveIn.mkdirs(); - } - - if (playlist.isUtfFormat()) - { - try (FileOutputStream outputStream = new FileOutputStream(playlistFile)) - { - Writer osw = new OutputStreamWriter(outputStream, UTF_8); - try (BufferedWriter output = new BufferedWriter(osw)) - { - output.write(UnicodeUtils.getBOM("UTF-8") + buffer); - } - } - playlist.setUtfFormat(true); - } - else - { - try (FileOutputStream outputStream = new FileOutputStream(playlistFile); BufferedOutputStream output = new BufferedOutputStream(outputStream)) - { - output.write(buffer.toString().getBytes(UTF_8)); - } - playlist.setUtfFormat(false); - } - } -} diff --git a/src/main/java/listfix/io/playlists/wpl/WPLReader.java b/src/main/java/listfix/io/playlists/wpl/WPLReader.java deleted file mode 100644 index e0fb2a61..00000000 --- a/src/main/java/listfix/io/playlists/wpl/WPLReader.java +++ /dev/null @@ -1,145 +0,0 @@ -package listfix.io.playlists.wpl; - -import listfix.io.IPlaylistOptions; -import listfix.io.UnicodeInputStream; -import listfix.io.playlists.PlaylistReader; -import listfix.model.enums.PlaylistType; -import listfix.model.playlists.PlaylistEntry; -import listfix.view.support.IProgressObserver; -import listfix.view.support.ProgressAdapter; - -import java.io.*; -import java.nio.charset.Charset; -import java.nio.charset.StandardCharsets; -import java.nio.file.Path; -import java.util.ArrayList; -import java.util.List; - -import static java.nio.charset.StandardCharsets.UTF_8; - -/** - * Reads in a WPL file and returns a List containing PlaylistEntries that represent the files & URIs in the playlist. - */ -public class WPLReader extends PlaylistReader -{ - private final BufferedReader _buffer; - private final List results = new ArrayList<>(); - private final long fileLength; - private static final PlaylistType type = PlaylistType.WPL; - private StringBuilder _cache; - - public WPLReader(IPlaylistOptions playListOptions, Path wplFile) throws FileNotFoundException - { - super(playListOptions, wplFile); - final Charset defaultEncoding = StandardCharsets.UTF_8; - _buffer = new BufferedReader(new InputStreamReader(new UnicodeInputStream(new FileInputStream(wplFile.toFile()), defaultEncoding), defaultEncoding)); - encoding = StandardCharsets.UTF_8; - fileLength = wplFile.toFile().length(); - } - - private String XMLDecode(String s) - { - s = s.replaceAll("'", "'"); - s = s.replaceAll("<", "<"); - s = s.replaceAll(">", ">"); - s = s.replaceAll("&", "&"); - return s; - } - - @Override - public PlaylistType getPlaylistType() - { - return type; - } - - @Override - public List readPlaylist(IProgressObserver observer) throws IOException - { - ProgressAdapter progress = ProgressAdapter.make(observer); - progress.setTotal(fileLength); - - _cache = new StringBuilder(); - String line = readLine(); - String path = ""; - String cid = ""; - String tid = ""; - - int cacheSize = _cache.toString().getBytes(UTF_8).length; - if (cacheSize < fileLength) - { - progress.setCompleted(cacheSize); - } - - while (line != null) - { - if (observer != null) - { - if (observer.getCancelled()) - { - return null; - } - } - cacheSize = _cache.toString().getBytes(UTF_8).length; - if (cacheSize < fileLength) - { - progress.setCompleted(cacheSize); - } - line = readLine(); - if (line == null) - { - break; - } - line = XMLDecode(line); - - if (line.trim().startsWith(" readPlaylist() throws IOException - { - readPlaylist(null); - return results; - } - - private String readLine() throws IOException - { - String line = _buffer.readLine(); - if (_cache != null) - { - _cache.append(line); - } - return line; - } - - private void processEntry(String L2, String cid, String tid) - { - super.processEntry(this.results, L2, cid, tid); - } -} diff --git a/src/main/java/listfix/io/playlists/wpl/WPLWriter.java b/src/main/java/listfix/io/playlists/wpl/WPLWriter.java deleted file mode 100644 index d242b3e4..00000000 --- a/src/main/java/listfix/io/playlists/wpl/WPLWriter.java +++ /dev/null @@ -1,135 +0,0 @@ -package listfix.io.playlists.wpl; - -import listfix.io.Constants; -import listfix.io.IPlaylistOptions; -import listfix.io.UnicodeInputStream; -import listfix.io.playlists.PlaylistWriter; -import listfix.model.playlists.Playlist; -import listfix.model.playlists.PlaylistEntry; - -import java.io.*; -import java.nio.charset.StandardCharsets; - -/** - * A playlist writer capable of saving to WPL format. - */ -public class WPLWriter extends PlaylistWriter -{ - public WPLWriter(IPlaylistOptions options) - { - super(options); - } - - @Override - protected StringBuilder initCollector() throws Exception - { - return new StringBuilder(); - } - - @Override - protected void writeHeader(StringBuilder buffer, Playlist playlist) throws Exception - { - final File playlistFile = playlist.getFile(); - buffer.append(getWPLHead(playlistFile)); - } - - @Override - protected void writeEntry(StringBuilder buffer, PlaylistEntry entry, int index) throws Exception - { - String media = "\t\t\t", ">"); - return s; - } - - // WPL Helper Method - private String getWPLHead(File listFile) throws IOException - { - String head = ""; - boolean newHead = false; - try - { - try (BufferedReader buffer = new BufferedReader(new InputStreamReader(new UnicodeInputStream(new FileInputStream(listFile), "UTF-8"), StandardCharsets.UTF_8))) - { - String line = buffer.readLine(); - while (line != null) - { - if (line.trim().startsWith("\r\n\r\n\t\r\n\t\t\r\n"; - } - return head; - } - - // WPL Helper Method - private String getWPLFoot() throws IOException - { - return "\t\t\r\n\t\r\n"; - } - - private String serializeEntry(PlaylistEntry entry) - { - return entry.trackPathToString(); - } -} diff --git a/src/main/java/listfix/io/playlists/xspf/XSPFReader.java b/src/main/java/listfix/io/playlists/xspf/XSPFReader.java deleted file mode 100644 index 486a09f2..00000000 --- a/src/main/java/listfix/io/playlists/xspf/XSPFReader.java +++ /dev/null @@ -1,134 +0,0 @@ -package listfix.io.playlists.xspf; - -import christophedelory.playlist.SpecificPlaylist; -import christophedelory.playlist.SpecificPlaylistFactory; -import christophedelory.playlist.xspf.Playlist; -import christophedelory.playlist.xspf.Track; -import listfix.io.Constants; -import listfix.io.FileUtils; -import listfix.io.IPlaylistOptions; -import listfix.io.playlists.PlaylistReader; -import listfix.model.enums.PlaylistType; -import listfix.model.playlists.FilePlaylistEntry; -import listfix.model.playlists.PlaylistEntry; -import listfix.model.playlists.UriPlaylistEntry; -import listfix.util.UnicodeUtils; -import listfix.view.support.IProgressObserver; -import listfix.view.support.ProgressAdapter; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -import java.io.IOException; -import java.net.URI; -import java.nio.file.Path; -import java.util.ArrayList; -import java.util.List; - -/** - * Reads in a XSPF file and returns a List containing PlaylistEntries that represent the files ↦ URIs in the playlist. - */ -public class XSPFReader extends PlaylistReader -{ - private static final PlaylistType type = PlaylistType.XSPF; - private static final Logger _logger = LogManager.getLogger(XSPFReader.class); - - - public XSPFReader(IPlaylistOptions playListOptions, Path xspfFile) - { - super(playListOptions, xspfFile); - encoding = UnicodeUtils.getEncoding(xspfFile); - } - - - @Override - public PlaylistType getPlaylistType() - { - return type; - } - - @Override - public List readPlaylist(IProgressObserver observer) throws IOException - { - // Init a progress adapter if we have a progress observer. - ProgressAdapter progress = ProgressAdapter.make(observer); - - List entriesList = new ArrayList<>(); - SpecificPlaylist loadedList = SpecificPlaylistFactory.getInstance().readFrom(playlistPath.toFile()); - if (loadedList.getProvider().getId().equals("xspf")) - { - Playlist xspfList = (Playlist) SpecificPlaylistFactory.getInstance().readFrom(playlistPath.toFile()); - - // Set the total if we have an observer. - progress.setTotal(xspfList.getTracks().size()); - - int trackCount = 0; - for (Track track : xspfList.getTracks()) - { - if (observer.getCancelled()) - { - // Bail out if the user cancelled. - return null; - } - - try - { - if (FileUtils.isURL(track.getStringContainers().get(0).getText())) - { - entriesList.add(new UriPlaylistEntry(new URI(track.getStringContainers().get(0).getText()), track.getTitle(), track.getDuration() != null ? track.getDuration().longValue() : -1)); - } - else - { - URI uri = new URI(track.getStringContainers().get(0).getText()); - - Path trackFile = Path.of(uri.getSchemeSpecificPart()); - if (trackFile.toString().startsWith(Constants.FS + Constants.FS) && !trackFile.toString().startsWith("\\\\")) - { - // This was a relative, non-UNC entry... - entriesList.add(new FilePlaylistEntry(Path.of(trackFile.toString().substring(2)), track.getTitle(), track.getDuration() != null ? track.getDuration().longValue() : -1, playlistPath)); - } - else - { - // Regular entry... - entriesList.add(new FilePlaylistEntry(trackFile, getTitle(track), track.getDuration() != null ? track.getDuration().longValue() : -1, playlistPath)); - } - } - } - catch (Exception ex) - { - _logger.error("[XSPFReader] - Could not convert lizzy entry to PlaylistEntry - " + ex, ex); - } - - // Step forward if we have an observer. - progress.setCompleted(trackCount++); - } - return entriesList; - } - else - { - throw new IOException("XSPF file was not in XSPF format!!"); - } - } - - @Override - public List readPlaylist() throws IOException - { - return readPlaylist(null); - } - - private String getTitle(Track track) - { - if (track.getCreator() != null && track.getTitle() != null) - { - return track.getCreator() + " - " + track.getTitle(); - } - else if (track.getCreator() == null && track.getTitle() != null) - { - return track.getTitle(); - } - else if (track.getCreator() != null && track.getTitle() == null) - { - return track.getCreator(); - } - return ""; - } -} diff --git a/src/main/java/listfix/io/playlists/xspf/XSPFWriter.java b/src/main/java/listfix/io/playlists/xspf/XSPFWriter.java deleted file mode 100644 index f9ed5afb..00000000 --- a/src/main/java/listfix/io/playlists/xspf/XSPFWriter.java +++ /dev/null @@ -1,171 +0,0 @@ -package listfix.io.playlists.xspf; - -import christophedelory.content.Content; -import christophedelory.playlist.*; -import christophedelory.playlist.xspf.Track; -import listfix.io.IPlaylistOptions; -import listfix.io.UNCFile; -import listfix.io.playlists.PlaylistWriter; -import listfix.model.playlists.FilePlaylistEntry; -import listfix.model.playlists.Playlist; -import listfix.model.playlists.PlaylistEntry; -import listfix.model.playlists.UriPlaylistEntry; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -import java.io.FileOutputStream; -import java.io.IOException; -import java.net.URI; -import java.net.URISyntaxException; - -/** - * A playlist writer capable of saving to XSPF ("spiff") format. - */ -public class XSPFWriter extends PlaylistWriter -{ - private static final Logger _logger = LogManager.getLogger(XSPFWriter.class); - private Media _trackToAdd; - - public XSPFWriter(IPlaylistOptions playListOptions) - { - super(playListOptions); - } - - @Override - protected christophedelory.playlist.Playlist initCollector() - { - return new christophedelory.playlist.Playlist(); - } - - @Override - protected void writeEntry(christophedelory.playlist.Playlist lizzyList, PlaylistEntry entry, int index) throws IOException - { - lizzyList.getRootSequence().addComponent(getMedia(entry)); - } - - @Override - protected void finalize(christophedelory.playlist.Playlist lizzyList, Playlist playlist) throws Exception - { - SpecificPlaylistProvider spp = SpecificPlaylistFactory.getInstance().findProviderByExtension(playlist.getFilename()); - try - { - SpecificPlaylist specificPlaylist = spp.toSpecificPlaylist(lizzyList); - addXspfMetadata(specificPlaylist, playlist); - try (FileOutputStream stream = new FileOutputStream(playlist.getFile())) - { - specificPlaylist.writeTo(stream, "UTF8"); - } - } - catch (Exception ex) - { - _logger.error("Failed to write XSPF", ex); - throw ex; - } - } - - private AbstractPlaylistComponent getMedia(PlaylistEntry entry) throws IOException - { - _trackToAdd = new Media(); - _trackToAdd.setSource(getContent(entry)); - return _trackToAdd; - } - - private Content getContent(PlaylistEntry entry) throws IOException - { - - URI mediaURI; - if (entry.isURL()) - { - mediaURI = ((UriPlaylistEntry) entry).getURI(); - } - else - { - FilePlaylistEntry filePlaylistEntry = (FilePlaylistEntry) entry; - if (filePlaylistEntry.isRelative()) - { - // replace existing entry with a new relative one - String relativePath = filePlaylistEntry.getTrackPath().toString(); - - // repoint entry object to a new one? - UNCFile file = new UNCFile(relativePath); - filePlaylistEntry.setTrackPath(file.toPath()); - - if (file.isInUNCFormat()) - { - relativePath = "file:" + filePlaylistEntry.getTrackPath().toString(); - } - else - { - relativePath = "file://" + filePlaylistEntry.getTrackPath().toString(); - } - - return new Content(relativePath.replace(" ", "%20")); - } - else - { - mediaURI = ((FilePlaylistEntry) entry).getTrackPath().toUri(); - } - } - try - { - mediaURI = normalizeFileUri(mediaURI); - } - catch (URISyntaxException e) - { - throw new RuntimeException(e); - } - //repoint entry object to a new one? - return new Content(mediaURI); - } - - private void addXspfMetadata(SpecificPlaylist specificPlaylist, Playlist list) - { - if (specificPlaylist.toPlaylist().getRootSequence().getComponentsNumber() == list.size()) - { - christophedelory.playlist.xspf.Playlist castedList = (christophedelory.playlist.xspf.Playlist) specificPlaylist; - Track track; - for (int i = 0; i < castedList.getTracks().size(); i++) - { - track = castedList.getTracks().get(i); - track.setTitle(list.getEntries().get(i).getTitle()); - long duration = list.getEntries().get(i).getLength(); - if (duration > 0) - { - track.setDuration((int) duration); - } - } - } - } - - // Files not on UNC drives need to have file:// as the prefix. // UNCs need file:///. - private URI normalizeFileUri(URI mediaURI) throws URISyntaxException - { - // By default, UNC URIs have file:/ - need to convert to file:///. - if (!mediaURI.toString().startsWith("file://") && mediaURI.toString().startsWith("file:/")) - { - try - { - mediaURI = new URI(mediaURI.toString().replace("file:/", "file:///")); - } - catch (URISyntaxException ex) - { - _logger.error(ex, ex); - } - } - - // Non-UNCs have file:////, two of the slashes need to be removed. - if (mediaURI.toString().contains("////")) - { - try - { - mediaURI = new URI(mediaURI.toString().replace("////", "//")); - } - catch (URISyntaxException ex) - { - _logger.error(ex, ex); - throw ex; - } - } - return mediaURI; - } -} diff --git a/src/main/java/listfix/model/BatchRepair.java b/src/main/java/listfix/model/BatchRepair.java index 75aea91a..4347c211 100644 --- a/src/main/java/listfix/model/BatchRepair.java +++ b/src/main/java/listfix/model/BatchRepair.java @@ -258,7 +258,7 @@ public void save(IPlaylistOptions filePathOptions, boolean isClosestMatchesSave, { item.getPlaylist().applyClosestMatchSelections(item.getClosestMatches()); } - item.getPlaylist().save(filePathOptions.getSavePlaylistsWithRelativePaths(), null); // ToDo nest observer + item.getPlaylist().save(null); // ToDo nest observer } } } diff --git a/src/main/java/listfix/model/MatchedFileTableModel.java b/src/main/java/listfix/model/MatchedFileTableModel.java index 512bd0bd..14451b4d 100644 --- a/src/main/java/listfix/model/MatchedFileTableModel.java +++ b/src/main/java/listfix/model/MatchedFileTableModel.java @@ -44,7 +44,7 @@ public final void updateData(List input) for (int i = 0; i < n; i++) { PotentialPlaylistEntryMatch entry = input.get(i); - tempData[i][0] = entry.getPlaylistFile().getTrackFileName(); + tempData[i][0] = entry.getTrack().getFileName().toString(); tempData[i][1] = entry.getScore() + ""; } data = tempData; diff --git a/src/main/java/listfix/model/enums/PlaylistType.java b/src/main/java/listfix/model/enums/PlaylistType.java deleted file mode 100644 index f61e7f4d..00000000 --- a/src/main/java/listfix/model/enums/PlaylistType.java +++ /dev/null @@ -1,11 +0,0 @@ -package listfix.model.enums; - -public enum PlaylistType -{ - M3U, - PLS, - ITUNES, - WPL, - XSPF, - UNKNOWN -} diff --git a/src/main/java/listfix/model/playlists/FilePlaylistEntry.java b/src/main/java/listfix/model/playlists/FilePlaylistEntry.java index a96c242c..e8bb2529 100644 --- a/src/main/java/listfix/model/playlists/FilePlaylistEntry.java +++ b/src/main/java/listfix/model/playlists/FilePlaylistEntry.java @@ -1,5 +1,7 @@ package listfix.model.playlists; +import io.github.borewit.lizzy.content.Content; +import io.github.borewit.lizzy.playlist.Media; import listfix.config.IMediaLibrary; import listfix.io.FileUtils; import listfix.model.enums.PlaylistEntryStatus; @@ -18,14 +20,11 @@ public class FilePlaylistEntry extends PlaylistEntry protected Path trackPath; protected Path playlistPath; - protected FilePlaylistEntry() + public FilePlaylistEntry(Playlist playlist, Media media) { - } - - public FilePlaylistEntry(Path trackPath, Path playlistPath) - { - this.trackPath = convertPath(trackPath); - this.playlistPath = playlistPath; + super(playlist, media); + this.trackPath = convertPath(Path.of(media.getSource().toString())); + this.playlistPath = playlist.getPath(); // should we skip the exists check? if (this.skipExistsCheck()) { @@ -93,20 +92,6 @@ private static Path convertPath(Path path) return Path.of(pathAsString); } - /** - * Construct an M3U path & file-name based entry. - * - * @param trackPath Actual track path, as it appears in the playlist - * @param extra M3U #EXTINF Track information - * @param playlistPath Playlist path - */ - public FilePlaylistEntry(Path trackPath, String extra, Path playlistPath) - { - this(trackPath, playlistPath); - _extInf = extra; - parseExtraInfo(extra); - } - /** * Update the filename portion of the track path * @@ -118,26 +103,6 @@ public void setFileName(String filename) this.recheckFoundStatus(); } - /** - * WPL constructor to hang on to random WPL-specific bits - */ - public FilePlaylistEntry(Path trackPath, String extra, Path playlistPath, String cid, String tid) - { - this(trackPath, extra, playlistPath); - _cid = cid; - _tid = tid; - } - - /** - * PLS constructor, which has file references, a title, and a length - */ - public FilePlaylistEntry(Path trackPath, String title, long length, Path playlistPath) - { - this(trackPath, "#EXTINF:" + convertDurationToSeconds(length) + "," + title, playlistPath); - _title = title; - _length = length; - } - /** * Todo: rename to resolved path * @@ -211,6 +176,13 @@ public Path getPlaylistPath() return this.playlistPath; } + public void update(Path track) + { + this.trackPath = track; + Content content = new Content(track.toString()); + this.media.setSource(content); + } + @Override protected boolean exists() { @@ -232,7 +204,7 @@ protected void copyTo(PlaylistEntry target) @Override public FilePlaylistEntry clone() { - FilePlaylistEntry clone = new FilePlaylistEntry(); + FilePlaylistEntry clone = new FilePlaylistEntry(this.playlist, this.media); this.copyTo(clone); return clone; } diff --git a/src/main/java/listfix/model/playlists/Playlist.java b/src/main/java/listfix/model/playlists/Playlist.java index 7cd519db..04b9d7a2 100644 --- a/src/main/java/listfix/model/playlists/Playlist.java +++ b/src/main/java/listfix/model/playlists/Playlist.java @@ -1,16 +1,15 @@ package listfix.model.playlists; +import io.github.borewit.lizzy.content.Content; +import io.github.borewit.lizzy.playlist.*; import listfix.config.IMediaLibrary; import listfix.io.FileLauncher; import listfix.io.FileUtils; import listfix.io.IPlaylistOptions; -import listfix.io.UNCFile; -import listfix.io.playlists.IPlaylistReader; -import listfix.io.playlists.IPlaylistWriter; -import listfix.io.playlists.PlaylistReaderFactory; -import listfix.io.playlists.PlaylistWriterFactory; +import listfix.io.playlists.LizzyPlaylistUtil; import listfix.model.BatchMatchItem; -import listfix.model.enums.PlaylistType; +import listfix.util.ObservableInputStream; +import listfix.util.ObservableOutputStream; import listfix.view.support.IPlaylistModifiedListener; import listfix.view.support.IProgressObserver; import listfix.view.support.ProgressAdapter; @@ -22,10 +21,12 @@ import java.io.File; import java.io.IOException; -import java.nio.charset.StandardCharsets; +import java.io.InputStream; +import java.io.OutputStream; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.StandardCopyOption; +import java.nio.file.StandardOpenOption; import java.util.*; import java.util.stream.Collectors; import java.util.stream.Stream; @@ -37,7 +38,6 @@ public class Playlist */ public static final HashSet playlistExtensions = Stream.of("m3u", "m3u8", "pls", "wpl", "xspf", "xml") .collect(Collectors.toCollection(HashSet::new)); - private static final String FS = System.getProperty("file.separator"); private static final String HOME_DIR = System.getProperty("user.home"); public static final Set mediaExtensions = Stream.of("mp3", "wma", "flac", "ogg", "wav", "midi", "cda", "mpg", "mpeg", "m2v", "avi", "m4v", "flv", "mid", "mp2", "mp1", "aac", "asx", "m4a", "mp4", "m4v", "nsv", "aiff", "au", "wmv", "asf", "mpc") .collect(Collectors.toCollection(HashSet::new)); @@ -47,11 +47,10 @@ public class Playlist private static final Marker markerPlaylist = MarkerManager.getMarker("Playlist"); private static final Marker markerPlaylistRepair = MarkerManager.getMarker("Playlist-Repair").setParents(markerPlaylist); - private File _file; + private Path playlistPath; + private SpecificPlaylist specificPlaylist; private final List _entries = new ArrayList<>(); private final List _originalEntries = new ArrayList<>(); - private boolean _utfFormat = false; - private PlaylistType _type = PlaylistType.UNKNOWN; private int _fixedCount; private int _urlCount; private int _missingCount; @@ -63,64 +62,66 @@ public class Playlist private final List _listeners = new ArrayList<>(); + private static final PlaylistFormat defaultPlaylistFormat = PlaylistFormat.m3u; - /** - * This constructor creates a temp-file backed playlist from a list of entries, only intended to be used for playback. - */ - public Playlist(IPlaylistOptions playListOptions, List sublist) throws Exception + public static Playlist load(Path playlistPath, IProgressObserver observer, IPlaylistOptions playListOptions) throws IOException { - this.playListOptions = playListOptions; - _utfFormat = true; - _file = File.createTempFile("yay", ".m3u8"); - _file.deleteOnExit(); - - setEntries(sublist); + SpecificPlaylist specificPlaylist = LizzyPlaylistUtil.readPlaylist(playlistPath); + Playlist playlist = new Playlist(playlistPath, playListOptions, specificPlaylist); + playlist.load(observer); + playlist._isNew = false; + return playlist; + } - _type = PlaylistType.M3U; + private void load(IProgressObserver observer) throws IOException + { + final List playlistEntries = new ArrayList<>(); + this.loadPlaylistEntries(playlistEntries, playlistPath, observer); + this.setEntries(playlistEntries); this.isModified = false; - refreshStatus(); - quickSave(); + this.refreshStatus(); + } - /** - * Initializes a playlist with an externally created set of entries. - * Currently used when reading playlists with external code. - */ - public Playlist(IPlaylistOptions playListOptions, File listFile, PlaylistType type, List entries) + public static Playlist makeTemporaryPlaylist(IPlaylistOptions playListOptions, io.github.borewit.lizzy.playlist.Playlist playlist) throws IOException { - this.playListOptions = playListOptions; - _utfFormat = true; - _file = listFile; - _type = type; - this.isModified = false; - setEntries(entries); - refreshStatus(); + String extension = LizzyPlaylistUtil.getPreferredExtensionFor(defaultPlaylistFormat); + + // Create temporary file + Path tempFile = Files.createTempFile("yay", extension); + + // Generate empty playlist file, which will be deleted upon exiting application + SpecificPlaylist specificPlaylist = LizzyPlaylistUtil.writeNewPlaylist(playlist, tempFile, defaultPlaylistFormat, + StandardOpenOption.DELETE_ON_CLOSE); + + Playlist newPlaylist = new Playlist(tempFile, playListOptions, specificPlaylist); + newPlaylist.isModified = false; + newPlaylist.refreshStatus(); + newPlaylist.quickSave(); + return newPlaylist; } - /** - * Initializes a playlist using internal listFix() I/O model. - */ - public Playlist(IPlaylistOptions playListOptions, File playlist, IProgressObserver observer) throws IOException + public static Playlist makeNewPersistentPlaylist(IPlaylistOptions playListOptions) throws IOException { - this.playListOptions = playListOptions; - init(playlist, observer); + final Path path = getNewPlaylistFilename(); + final io.github.borewit.lizzy.playlist.Playlist playlist = new io.github.borewit.lizzy.playlist.Playlist(); + SpecificPlaylist specificPlaylist = LizzyPlaylistUtil.writeNewPlaylist(playlist, path, defaultPlaylistFormat); + Playlist newPlaylist = new Playlist(path, playListOptions, specificPlaylist); + return newPlaylist; } /** - * Creates an empty, untitled playlist. The name of the list is auto-generated, - * Untitled-#.m3u8 by default, where # is the number of lists you have created with this - * method in the current session. + * Initializes a playlist with an externally created set of entries. + * Currently used when reading playlists with external code. */ - public Playlist(IPlaylistOptions playListOptions) throws IOException + public Playlist(Path playlistPath, IPlaylistOptions playListOptions, SpecificPlaylist playlist) { + assert playlistPath != null; + this.playlistPath = playlistPath; this.playListOptions = playListOptions; - NEW_LIST_COUNT++; - _file = new File(HOME_DIR + FS + "Untitled-" + NEW_LIST_COUNT + ".m3u8"); - _file.deleteOnExit(); - _utfFormat = true; - _type = PlaylistType.M3U; + this.specificPlaylist = playlist; this.isModified = false; - _isNew = true; + toPlaylistEntries(this._entries, playlist.toPlaylist().getRootSequence()); refreshStatus(); } @@ -140,42 +141,87 @@ public static boolean isPlaylist(Path path) return false; } - public final IPlaylistOptions getPlayListOptions() + private List getEntriesForFiles(Collection files, IProgressObserver observer) throws IOException { - return this.playListOptions; - } + ProgressAdapter progress = ProgressAdapter.make(observer); + progress.setTotal(files.size()); - private void init(File playlist, IProgressObserver observer) throws IOException - { - _file = playlist; - IPlaylistReader playlistProcessor = PlaylistReaderFactory.getPlaylistReader(playlist.toPath(), playListOptions); - if (observer != null) + final List ents = new ArrayList<>(); + for (Path file : files) { - List tempEntries = playlistProcessor.readPlaylist(observer); - if (tempEntries != null) + if (observer == null || !observer.getCancelled()) { - this.setEntries(tempEntries); + if (Playlist.isPlaylist(file)) + { + // playlist file + loadPlaylistEntries(ents, file, null); // ToDo: nest observable + } + else + { + _logger.warn(String.format("Ignoring file %s", file)); + } } else { - return; + return null; + } + + if (progress.getCompleted() != progress.getTotal()) + { + progress.stepCompleted(); } } - else - { - this.setEntries(playlistProcessor.readPlaylist()); - } - _utfFormat = playlistProcessor.getEncoding().equals(StandardCharsets.UTF_8); - _type = playlistProcessor.getPlaylistType(); - if (_type == PlaylistType.PLS) + + return ents; + } + + private void loadPlaylistEntries(List playlistEntries, Path playlistPath, IProgressObserver observer) throws IOException + { + List specificPlaylistProviders = SpecificPlaylistFactory.getInstance().findProvidersByExtension(playlistPath.toString()); + + for (SpecificPlaylistProvider specificPlaylistProvider : specificPlaylistProviders) { - // let's override our previous determination in the PLS case so we don't end up saving it out incorrectly - _utfFormat = false; + try (InputStream is = Files.newInputStream(playlistPath)) + { + final InputStream observableInputStream = observer == null ? is : new ObservableInputStream(is, Files.size(playlistPath), observer); + try + { + this.specificPlaylist = specificPlaylistProvider.readFrom(observableInputStream, null); + if (this.specificPlaylist != null) + { + toPlaylistEntries(playlistEntries, this.specificPlaylist.toPlaylist().getRootSequence()); + break; + } + } + catch (Exception e) + { + throw new IOException(String.format("Failed to read from %s", playlistPath.getFileName()), e); + } + } } - this.isModified = false; - refreshStatus(); } + private void toPlaylistEntries(List playlistEntries, Sequence sequence) + { + sequence.getComponents().forEach(component -> { + if (component instanceof Media) + { + Media media = (Media) component; + PlaylistEntry playlistEntry = PlaylistEntry.makePlaylistEntry(this, media); + playlistEntries.add(playlistEntry); + } + else if (component instanceof Sequence) + { + toPlaylistEntries(playlistEntries, (Sequence) component); + } + else + { + _logger.warn(String.format("Unsupport playlist entry type %s", component.getClass().getName())); + } + }); + } + + public List getEntries() { return _entries; @@ -251,12 +297,15 @@ public enum SortIx public Playlist getSublist(int[] rows) throws Exception { - List tempList = new ArrayList<>(); + final io.github.borewit.lizzy.playlist.Playlist newPlaylist = new io.github.borewit.lizzy.playlist.Playlist(); + final Sequence rootSequence = newPlaylist.getRootSequence(); for (int i : rows) { - tempList.add(_entries.get(i)); + Media media = _entries.get(i).getMedia(); + rootSequence.addComponent(media); } - return new Playlist(this.playListOptions, tempList); + + return makeTemporaryPlaylist(this.playListOptions, newPlaylist); } public List getSelectedEntries(int[] rows) throws IOException @@ -269,32 +318,25 @@ public List getSelectedEntries(int[] rows) throws IOException return tempList; } - public PlaylistType getType() + public PlaylistFormat getType() { - return _type; - } - - public void setType(PlaylistType type) - { - _type = type; + return PlaylistFormat.valueOf(this.specificPlaylist.getProvider().getId()); } public File getFile() { - return _file; + return this.playlistPath.toFile(); } public Path getPath() { - return _file.toPath(); + return this.playlistPath; } - public void setFile(File file) + public void setPath(Path playlistPath) { - UNCFile uncFile = new UNCFile(file); - // if we're in "use UNC" mode, flip the file to a UNC representation - String fileName = this.playListOptions.getAlwaysUseUNCPaths() ? uncFile.getUNCPath() : uncFile.getDrivePath(); - this._file = new File(fileName); + assert playlistPath != null; + this.playlistPath = playlistPath; } public void addModifiedListener(IPlaylistModifiedListener listener) @@ -313,11 +355,6 @@ public void removeModifiedListener(IPlaylistModifiedListener listener) _listeners.remove(listener); } - public List getModifiedListeners() - { - return _listeners; - } - private void firePlaylistModified() { for (IPlaylistModifiedListener listener : _listeners) @@ -331,11 +368,6 @@ private void firePlaylistModified() private void setEntries(List aEntries) { - for (PlaylistEntry entry : aEntries) - { - entry.setPlaylist(this); - } - replaceEntryListContents(aEntries, _originalEntries); replaceEntryListContents(aEntries, _entries); } @@ -360,9 +392,9 @@ public void updateModifiedStatus() this.isModified = !_entries.equals(_originalEntries); // if this playlist refers to a file on disk, and aren't a new file, make sure that file still exists... - if (_file != null && !isNew()) + if (this.playlistPath != null && !isNew()) { - this.isModified = this.isModified || !_file.exists(); + this.isModified = this.isModified || !Files.exists(this.playlistPath); } // notify the listeners if we have changed... @@ -420,11 +452,7 @@ public boolean isModified() public String getFilename() { - if (this._file == null) - { - return ""; - } - return this._file.getName(); + return this.playlistPath == null ? "" : this.playlistPath.getFileName().toString(); } public boolean isEmpty() @@ -437,25 +465,15 @@ public void play() { try { - _logger.debug(String.format("Launching file: %s", _file)); - FileLauncher.launch(this._file); + _logger.debug(String.format("Launching file: %s", this.playlistPath)); + FileLauncher.launch(this.playlistPath.toFile()); } catch (IOException | InterruptedException e) { - _logger.warn(String.format("Launching file: %s", _file), e); + _logger.warn(String.format("Launching file: %s", this.playlistPath), e); } } - public boolean isUtfFormat() - { - return _utfFormat; - } - - public void setUtfFormat(boolean utfFormat) - { - this._utfFormat = utfFormat; - } - public boolean isNew() { return this._isNew; @@ -549,42 +567,6 @@ public int addAt(int ix, Collection files, IProgressObserver obser } } - private List getEntriesForFiles(Collection files, IProgressObserver observer) throws IOException - { - ProgressAdapter progress = ProgressAdapter.make(observer); - progress.setTotal(files.size()); - - List ents = new ArrayList<>(); - for (Path file : files) - { - if (observer == null || !observer.getCancelled()) - { - if (Playlist.isPlaylist(file)) - { - // playlist file - IPlaylistReader reader = PlaylistReaderFactory.getPlaylistReader(file, this.playListOptions); - ents.addAll(reader.readPlaylist(null)); // ToDo: nest this progress in overall progress - } - else - { - // regular file - ents.add(new FilePlaylistEntry(file, null, this._file.toPath())); - } - } - else - { - return null; - } - - if (progress.getCompleted() != progress.getTotal()) - { - progress.stepCompleted(); - } - } - - return ents; - } - public void changeEntryFileName(int ix, String newName) { PlaylistEntry entry = this._entries.get(ix); @@ -750,7 +732,15 @@ public List applyClosestMatchSelections(List items) if (item.getSelectedIx() >= 0) { int ix = item.getEntryIx(); - _entries.set(ix, item.getSelectedMatch().getPlaylistFile()); + PlaylistEntry playlistEntry = _entries.get(ix); + if (playlistEntry instanceof FilePlaylistEntry) + { + ((FilePlaylistEntry) playlistEntry).update(item.getSelectedMatch().getTrack()); + } + else + { + throw new UnsupportedOperationException("ToDo"); + } PlaylistEntry tempEntry = _entries.get(ix); tempEntry.recheckFoundStatus(); tempEntry.markFixedIfFound(); @@ -923,23 +913,56 @@ public int removeMissing() return removed; } - public void saveAs(File destination, IProgressObserver observer) throws Exception + public void saveAs(Path destination, IProgressObserver observer) throws Exception { // 2014.12.08 - JCaron - Need to make this assignment, // so we can determine relativity correctly when saving out entries. - setFile(destination); - _type = determinePlaylistTypeFromExtension(destination); - this.save(this.playListOptions.getSavePlaylistsWithRelativePaths(), observer); + setPath(destination); + this.save(observer); } - public final void save(boolean saveRelative, IProgressObserver observer) throws Exception + /** + * Sync all changes tot his.specificPlaylist + */ + protected void syncEntriesToSpecificPlaylist() throws IOException { + io.github.borewit.lizzy.playlist.Playlist playlist = new io.github.borewit.lizzy.playlist.Playlist(); + Sequence sequence = playlist.getRootSequence(); + this._entries.forEach(entry -> { + Media media = entry.getMedia(); + if (entry.isURL()) + { + media.setSource(new Content(((UriPlaylistEntry) entry).getURI())); + } + else + { + media.setSource(new Content(((FilePlaylistEntry) entry).trackPath.toString())); + } + sequence.addComponent(media); + }); + this.specificPlaylist = this.specificPlaylist.getProvider().toSpecificPlaylist(playlist); + } + + public final void save(IProgressObserver observer) throws IOException + { + this.syncEntriesToSpecificPlaylist(); + _logger.debug(String.format("Writing playlist to %s", this.playlistPath)); // avoid resetting total if part of batch operation - ProgressAdapter progress = ProgressAdapter.make(observer); - progress.setTotal(_entries.size()); - IPlaylistWriter writer = PlaylistWriterFactory.getPlaylistWriter(_file, this.playListOptions); - writer.save(this, saveRelative, progress); + // Guess the future file length, to have progress indication + long currentFileSize = Files.isRegularFile(this.playlistPath) ? Files.size(this.playlistPath) : this._entries.size() * 65L; + try (OutputStream os = Files.newOutputStream(this.playlistPath)) + { + OutputStream observableOutputStream = observer == null ? os : new ObservableOutputStream(os, currentFileSize, observer); + try + { + this.specificPlaylist.writeTo(observableOutputStream, null); + } + catch (Exception e) + { + throw new IOException(String.format("Failed to save \"%s\"", this.playlistPath), e); + } + } resetInternalStateAfterSave(observer); @@ -947,29 +970,25 @@ public final void save(boolean saveRelative, IProgressObserver observer) firePlaylistModified(); } - private void quickSave() throws Exception + private void quickSave() throws IOException { - IPlaylistWriter writer = PlaylistWriterFactory.getPlaylistWriter(_file, this.playListOptions); - _logger.debug(String.format("Writing playlist to %s", _file.getName())); - writer.save(this, false, null); + this.save(null); } public void reload(IProgressObserver observer) throws IOException { if (_isNew) { - _file = new File(HOME_DIR + FS + "Untitled-" + NEW_LIST_COUNT + ".m3u8"); - _file.deleteOnExit(); - _utfFormat = true; - _type = PlaylistType.M3U; + this.playlistPath = getNewPlaylistFilename(); + this.playlistPath.toFile().deleteOnExit(); this.isModified = false; _isNew = true; _entries.clear(); _originalEntries.clear(); } - else if (_file.exists()) + else if (Files.exists(this.playlistPath)) { - init(_file, observer); + this.load(observer); } else { @@ -978,29 +997,16 @@ else if (_file.exists()) refreshStatus(); } - public static PlaylistType determinePlaylistTypeFromExtension(File file) - { - return determinePlaylistTypeFromExtension(file.toPath()); - } - - public static PlaylistType determinePlaylistTypeFromExtension(Path file) + public static synchronized Path getNewPlaylistFilename() { - if (file != null) + Path path; + do { - String extension = FileUtils.getFileExtension(file.getFileName().toString()); - if (extension != null) - { - return switch (extension.toLowerCase()) - { - case "m3u", "m3u8" -> PlaylistType.M3U; - case "pls" -> PlaylistType.PLS; - case "wpl" -> PlaylistType.WPL; - case "xspf" -> PlaylistType.XSPF; - case "xml" -> PlaylistType.ITUNES; - default -> PlaylistType.UNKNOWN; - }; - } + ++NEW_LIST_COUNT; + path = Path.of(HOME_DIR, "Untitled-" + NEW_LIST_COUNT + ".m3u8"); } - return PlaylistType.UNKNOWN; + while (Files.exists(path)); + return path; } + } diff --git a/src/main/java/listfix/model/playlists/PlaylistEntry.java b/src/main/java/listfix/model/playlists/PlaylistEntry.java index 904c0b0a..151a3b0b 100644 --- a/src/main/java/listfix/model/playlists/PlaylistEntry.java +++ b/src/main/java/listfix/model/playlists/PlaylistEntry.java @@ -1,6 +1,7 @@ package listfix.model.playlists; -import com.google.common.base.Splitter; +import io.github.borewit.lizzy.content.Content; +import io.github.borewit.lizzy.playlist.Media; import listfix.comparators.MatchedPlaylistEntryComparator; import listfix.io.IPlaylistOptions; import listfix.model.enums.PlaylistEntryStatus; @@ -9,9 +10,12 @@ import listfix.view.support.ProgressAdapter; import java.io.File; +import java.net.URI; +import java.net.URISyntaxException; import java.util.ArrayList; import java.util.Collection; import java.util.List; +import java.util.Objects; import java.util.regex.Pattern; @@ -23,20 +27,6 @@ public abstract class PlaylistEntry implements Cloneable */ public static List NonExistentDirectories = new ArrayList<>(); - /** - * A list of folders we know DO exist. - */ - public static List ExistingDirectories = new ArrayList<>(); - - // This entry's extra info. - protected String _extInf = ""; - - // The _title of the entry - protected String _title = ""; - - // The _length of the track - protected long _length = -1; - // Status of this item. protected PlaylistEntryStatus _status = PlaylistEntryStatus.Exists; @@ -44,15 +34,11 @@ public abstract class PlaylistEntry implements Cloneable protected boolean _isFixed; // The file this entry belongs to. - protected Playlist _playlist; - - // WPL - protected String _cid = ""; - protected String _tid = ""; + protected final Playlist playlist; + protected final Media media; private static final Pattern APOS_PATTERN = Pattern.compile("'"); private static final Pattern CAMEL_CASE_PATTERN = Pattern.compile("(([a-z])([A-Z]))"); - protected String _trackId; /** * Returns the _status. @@ -64,16 +50,14 @@ public PlaylistEntryStatus getStatus() // Construct an M3U URL entry. - protected PlaylistEntry() + protected PlaylistEntry(Playlist playlist, Media media) { + this.playlist = playlist; + this.media = media; } protected void copyTo(PlaylistEntry target) { - target._extInf = this._extInf; - target._title = this._title; - target._length = this._length; - target._playlist = this._playlist; target._status = this._status; } @@ -85,24 +69,14 @@ public void markFixedIfFound() } } - public abstract String getTrackFolder(); - - public abstract String getTrackFileName(); - - public String getExtInf() + public Media getMedia() { - return _extInf; + return this.media; } - public String getCID() - { - return _cid; - } + public abstract String getTrackFolder(); - public String getTID() - { - return _tid; - } + public abstract String getTrackFileName(); // check the file system for existence if we don't already know the file exists. protected abstract boolean exists(); @@ -137,13 +111,14 @@ public void setFixed(boolean fixed) public void play(IPlaylistOptions playListOptions) throws Exception { - if (this.isFound() || this.isURL()) - { - List tempList = new ArrayList<>(); - tempList.add(this); - Playlist playlist = new Playlist(playListOptions, tempList); - playlist.play(); - } + // ToDo +// if (this.isFound() || this.isURL()) +// { +// List tempList = new ArrayList<>(); +// tempList.add(this); +// Playlist playlist = new Playlist(playListOptions, tempList); +// playlist.play(); +// } } public List findClosestMatches(Collection mediaFiles, IProgressObserver observer, IPlaylistOptions playListOptions) @@ -175,13 +150,13 @@ public List findClosestMatches(Collection m // about when people run your software on ancient PCs in Africa =]) if (matches.size() < playListOptions.getMaxClosestResults()) { - matches.add(new PotentialPlaylistEntryMatch(mediaFile.toPath(), score, _playlist.getFile().toPath(), _playlist.getPlayListOptions())); + matches.add(new PotentialPlaylistEntryMatch(mediaFile.toPath(), score)); } else { if (matches.get(playListOptions.getMaxClosestResults() - 1).getScore() < score) { - matches.set(playListOptions.getMaxClosestResults() - 1, new PotentialPlaylistEntryMatch(mediaFile.toPath(), score, _playlist.getFile().toPath(), _playlist.getPlayListOptions())); + matches.set(playListOptions.getMaxClosestResults() - 1, new PotentialPlaylistEntryMatch(mediaFile.toPath(), score)); } } matches.sort(new MatchedPlaylistEntryComparator()); @@ -198,84 +173,21 @@ public List findClosestMatches(Collection m @Override public abstract Object clone(); - /** - * Returns the title. - */ - public String getTitle() - { - return _title; - } - - /** - * Returns the length, in milliseconds. - */ - public long getLength() - { - return _length; - } - - protected void parseExtraInfo(String extra) + public static PlaylistEntry makePlaylistEntry(Playlist playlist, Media media) { - if (extra != null && extra.length() > 0) + Content content = media.getSource(); + try { - extra = extra.replaceFirst("#EXTINF:", ""); - if (extra.contains(",")) + URI uri = content.getURI(); + if (!Objects.equals(uri.getScheme(), "file")) { - List split = Splitter.on(',').splitToList(extra); - if (split.size() > 1) - { - try - { - // extra info comes from M3Us, so this comes in a seconds - // and needs conversion to milliseconds. - _length = Long.parseLong(split.get(0)) * 1000L; - } - catch (Exception e) - { - // ignore and move on... - } - _title = split.get(1); - } - else if (split.size() == 1) - { - // assume it's a _title? - _title = split.get(0); - } - } - else - { - _title = extra; + return new UriPlaylistEntry(playlist, media); } } - } - - public void setPlaylist(Playlist list) - { - _playlist = list; - } - - /** - * Some playlist types support this notion, and it must be tracked up until the list is saved in another format if so. - * - * @return the _trackId - */ - public String getTrackId() - { - return _trackId; - } - - /** - * Some playlist types support this notion, and it must be tracked up until the list is saved in another format if so. - * - * @param trackId the _trackId to set - */ - public void setTrackId(String trackId) - { - this._trackId = trackId; - } - - protected static int convertDurationToSeconds(long length) - { - return length <= 0 ? (int) length : (int) (length / 1000L); + catch (URISyntaxException e) + { + // ignore + } + return new FilePlaylistEntry(playlist, media); } } diff --git a/src/main/java/listfix/model/playlists/PlaylistFactory.java b/src/main/java/listfix/model/playlists/PlaylistFactory.java index 6f265986..47344f67 100644 --- a/src/main/java/listfix/model/playlists/PlaylistFactory.java +++ b/src/main/java/listfix/model/playlists/PlaylistFactory.java @@ -1,38 +1,21 @@ package listfix.model.playlists; import listfix.io.IPlaylistOptions; -import listfix.io.playlists.IPlaylistReader; -import listfix.io.playlists.PlaylistReaderFactory; -import listfix.io.playlists.itunes.ITunesXMLReader; -import listfix.model.enums.PlaylistType; -import listfix.model.playlists.itunes.ITunesPlaylist; import listfix.view.support.IProgressObserver; import java.io.File; import java.io.IOException; import java.nio.file.Path; -import java.util.List; - public class PlaylistFactory { - public static Playlist getPlaylist(File playlistFile, IProgressObserver observer, IPlaylistOptions filePathOptions) throws IOException + public static Playlist getPlaylist(File playlistFile, IProgressObserver observer, IPlaylistOptions filePathOptions) throws IOException { return getPlaylist(playlistFile.toPath(), observer, filePathOptions); } - public static Playlist getPlaylist(Path playlistPath, IProgressObserver observer, IPlaylistOptions filePathOptions) throws IOException + public static Playlist getPlaylist(Path playlistPath, IProgressObserver observer, IPlaylistOptions playListOptions) throws IOException { - IPlaylistReader playlistProcessor = PlaylistReaderFactory.getPlaylistReader(playlistPath, filePathOptions); - List entries = playlistProcessor.readPlaylist(observer); - - if (playlistProcessor.getPlaylistType() == PlaylistType.ITUNES) - { - return new ITunesPlaylist(playlistPath.toFile(), entries, ((ITunesXMLReader) playlistProcessor).getLibrary(), filePathOptions); - } - else - { - return new Playlist(filePathOptions, playlistPath.toFile(), playlistProcessor.getPlaylistType(), entries); - } + return Playlist.load(playlistPath, observer, playListOptions); } } diff --git a/src/main/java/listfix/model/playlists/PotentialPlaylistEntryMatch.java b/src/main/java/listfix/model/playlists/PotentialPlaylistEntryMatch.java index d999b33f..deb098bd 100644 --- a/src/main/java/listfix/model/playlists/PotentialPlaylistEntryMatch.java +++ b/src/main/java/listfix/model/playlists/PotentialPlaylistEntryMatch.java @@ -1,26 +1,25 @@ package listfix.model.playlists; -import listfix.io.IPlaylistOptions; - import java.nio.file.Path; /** - * Serves to model a closest match on a single playlist entry. + * Serves to model the closest match on a single playlist entry. * * @author jcaron */ public class PotentialPlaylistEntryMatch { - private final PlaylistEntry thisEntry; - private final IPlaylistOptions playlistOptions; + private final Path track; + private final String trackFolder; + private final String trackFilename; private final int _score; - public PotentialPlaylistEntryMatch(Path track, int score, Path playlist, IPlaylistOptions playlistOptions) + public PotentialPlaylistEntryMatch(Path track, int score) { - this.thisEntry = new FilePlaylistEntry(track, playlist); - this.playlistOptions = playlistOptions; - this.thisEntry.setFixed(true); + this.track = track; + this.trackFilename = track.getFileName().toString(); + this.trackFolder = track.getParent() == null ? "" : track.getParent().toString(); this._score = score; } @@ -29,14 +28,9 @@ public int getScore() return _score; } - public PlaylistEntry getPlaylistFile() - { - return thisEntry; - } - - public IPlaylistOptions getPlaylistOptions() + public Path getTrack() { - return playlistOptions; + return this.track; } /** @@ -47,6 +41,11 @@ public IPlaylistOptions getPlaylistOptions() @Override public String toString() { - return String.format("%d: %s", this._score, thisEntry.getTrackFileName()); + return String.format("%d: %s", this._score, trackFilename); + } + + public String getTrackFolder() + { + return this.trackFolder; } } diff --git a/src/main/java/listfix/model/playlists/UriPlaylistEntry.java b/src/main/java/listfix/model/playlists/UriPlaylistEntry.java index f4f67a0d..c828b55b 100644 --- a/src/main/java/listfix/model/playlists/UriPlaylistEntry.java +++ b/src/main/java/listfix/model/playlists/UriPlaylistEntry.java @@ -1,56 +1,27 @@ package listfix.model.playlists; +import io.github.borewit.lizzy.playlist.Media; import listfix.model.enums.PlaylistEntryStatus; import java.net.URI; +import java.net.URISyntaxException; public class UriPlaylistEntry extends PlaylistEntry { // The entry's URI (for URLs). private final URI uri; - /** - * Copy constructor for a URI entry - */ - public UriPlaylistEntry(URI uri, String title, long length, Playlist list) + public UriPlaylistEntry(Playlist playlist, Media media) { - this(uri); - _length = length; - _extInf = "#EXTINF:" + convertDurationToSeconds(length) + "," + title; - _playlist = list; - } - - /** - * Construct a PLS/XSPF URL entry. - */ - public UriPlaylistEntry(URI uri, String title, long length) - { - this(uri); - _title = title; - _length = length; - _extInf = "#EXTINF:" + convertDurationToSeconds(length) + "," + title; - } - - /** - * Construct a WPL URL entry - */ - public UriPlaylistEntry(URI uri, String extra, String cid, String tid) - { - this(uri, extra); - _cid = cid; - _tid = tid; - } - - public UriPlaylistEntry(URI uri, String extra) - { - this(uri); - this.parseExtraInfo(extra); - _extInf = extra; - } - - protected UriPlaylistEntry(URI uri) - { - this.uri = uri; + super(playlist, media); + try + { + this.uri = media.getSource().getURI(); + } + catch (URISyntaxException e) + { + throw new RuntimeException(e); + } } public URI getURI() @@ -61,7 +32,7 @@ public URI getURI() @Override public UriPlaylistEntry clone() { - UriPlaylistEntry urlPlayListEntry = new UriPlaylistEntry(this.uri); + UriPlaylistEntry urlPlayListEntry = new UriPlaylistEntry(this.playlist, this.media); this.copyTo(urlPlayListEntry); return urlPlayListEntry; } diff --git a/src/main/java/listfix/model/playlists/itunes/DictionaryParser.java b/src/main/java/listfix/model/playlists/itunes/DictionaryParser.java deleted file mode 100644 index e9971c6d..00000000 --- a/src/main/java/listfix/model/playlists/itunes/DictionaryParser.java +++ /dev/null @@ -1,58 +0,0 @@ -package listfix.model.playlists.itunes; - -import christophedelory.plist.Array; -import christophedelory.plist.Dict; -import christophedelory.plist.PlistObject; - -/** - * The ghetto-tastic format used by iTunes (plist in lizzy-speak) has - * an awkward in-memory structure; this class provides helper methods - * for reading the data out of one of these objects based on the - * datatype stored under the given key. - * - * @author jcaron - */ -public class DictionaryParser -{ - /** - * Wraps - * @throws ClassCastException Thrown when the datatype of the given key is not a christophedelory.plist.Dict. - */ - public static Dict getKeyValueAsDict(Dict dict, String key) throws ClassCastException - { - return (Dict) dict.getDictionary().get(new christophedelory.plist.Key(key)); - } - - public static void setKeyValue(Dict dict, String key, PlistObject value) throws ClassCastException - { - dict.getDictionary().put(new christophedelory.plist.Key(key), value); - } - - /** - * Read an Array from the key-value-pair dict - * @throws ClassCastException Thrown when the datatype of the given key is not a christophedelory.plist.Array. - */ - public static Array getKeyValueAsArray(Dict dict, String key) throws ClassCastException - { - return (Array) dict.getDictionary().get(new christophedelory.plist.Key(key)); - } - - /** - * Read an Integer from the key-value-pair dict - * @throws ClassCastException Thrown when the datatype of the given key is not a christophedelory.plist.Integer. - */ - public static christophedelory.plist.Integer getKeyValueAsInteger(Dict dict, String key) throws ClassCastException - { - return (christophedelory.plist.Integer) dict.getDictionary().get(new christophedelory.plist.Key(key)); - } - - /** - * Read a String from the key-value-pair dict - * @throws ClassCastException Thrown when the datatype of the given key is not a String. - */ - public static String getKeyValueAsString(Dict dict, String keyName) throws ClassCastException - { - Object value = dict.getDictionary().get(new christophedelory.plist.Key(keyName)); - return value == null ? null : ((christophedelory.plist.String) value).getValue(); - } -} diff --git a/src/main/java/listfix/model/playlists/itunes/IITunesPlaylistEntry.java b/src/main/java/listfix/model/playlists/itunes/IITunesPlaylistEntry.java deleted file mode 100644 index 550c5a16..00000000 --- a/src/main/java/listfix/model/playlists/itunes/IITunesPlaylistEntry.java +++ /dev/null @@ -1,6 +0,0 @@ -package listfix.model.playlists.itunes; - -public interface IITunesPlaylistEntry -{ - ITunesTrack getTrack(); -} diff --git a/src/main/java/listfix/model/playlists/itunes/ITunesFilePlaylistEntry.java b/src/main/java/listfix/model/playlists/itunes/ITunesFilePlaylistEntry.java deleted file mode 100644 index 17d5948d..00000000 --- a/src/main/java/listfix/model/playlists/itunes/ITunesFilePlaylistEntry.java +++ /dev/null @@ -1,35 +0,0 @@ -package listfix.model.playlists.itunes; - -import listfix.model.playlists.FilePlaylistEntry; - -import java.nio.file.Path; - - -public class ITunesFilePlaylistEntry extends FilePlaylistEntry implements IITunesPlaylistEntry -{ - private final ITunesTrack _track; - - public ITunesFilePlaylistEntry(Path input, String title, long length, Path playlistPath, ITunesTrack track) - { - super(input, title, length, playlistPath); - _track = track; - } - - /** - * @return the _track - */ - @Override - public ITunesTrack getTrack() - { - return _track; - } - - - @Override - public ITunesFilePlaylistEntry clone() - { - ITunesFilePlaylistEntry clone = new ITunesFilePlaylistEntry(this.trackPath, this._title, this._length, this.playlistPath, _track); - super.copyTo(clone); - return clone; - } -} diff --git a/src/main/java/listfix/model/playlists/itunes/ITunesMediaLibrary.java b/src/main/java/listfix/model/playlists/itunes/ITunesMediaLibrary.java deleted file mode 100644 index 125ce896..00000000 --- a/src/main/java/listfix/model/playlists/itunes/ITunesMediaLibrary.java +++ /dev/null @@ -1,116 +0,0 @@ -package listfix.model.playlists.itunes; - -import christophedelory.playlist.plist.PlistPlaylist; -import christophedelory.plist.Integer; -import christophedelory.plist.*; - -import java.util.*; - -/** - * Wraps a lizzy PlistPlaylist to provide easy access to the important/relevant sections of an iTunes XML (plist) file. - * Unlike other playlist formats supported by listFix(), iTunes XML files can contain one or more playlists. This means that when opening - * an iTunes XML file, we may be handling a single exported playlist, or the entire media library for iTunes; there's really no way to know - * since the structure is identical in both cases (some metadata followed by a tracks section, and then a playlists section). - *

- * It is possible for a track in the Tracks section of the library to be an orphaned, as in no playlist in the library references it. - * Playlists themselves are just a name (string) and list of track IDs from the tracks section. - * - * @author jcaron - * @see ITunesTrackList - * @see ITunesTrack - */ -public class ITunesMediaLibrary -{ - private final PlistPlaylist _plist; - - /** - * Constructor that accepts a PlistPlaylist to be wrapped. - * - * @param plist The PlistPlaylist to be wrapped. - * @see PlistPlaylist - */ - public ITunesMediaLibrary(PlistPlaylist plist) - { - _plist = plist; - } - - /** - * Returns the "Tracks" section of an iTunes library/playlist file as a map of Track IDs to ITunesTracks. - * @see ITunesTrack - */ - public Map getTracks() - { - Map result = new HashMap<>(); - Dict rootDict = ((Dict) _plist.getPlist().getPlistObject()); - Dict tracksDict = DictionaryParser.getKeyValueAsDict(rootDict, "Tracks"); - Dictionary tracksDictionary = tracksDict.getDictionary(); - Enumeration keys = tracksDictionary.keys(); - christophedelory.plist.Key key; - while (keys.hasMoreElements()) - { - key = keys.nextElement(); - ITunesTrack track = new ITunesTrack((Dict) tracksDictionary.get(key)); - result.put(key.getValue(), track); - } - return result; - } - - public void setTracks(Map trackMap) - { - Dict rootDict = ((Dict) _plist.getPlist().getPlistObject()); - Dict tracksDict = DictionaryParser.getKeyValueAsDict(rootDict, "Tracks"); - assert tracksDict != null; - Dictionary tracksDictionary = tracksDict.getDictionary(); - Key plistKey; - for (java.lang.String key : trackMap.keySet()) - { - plistKey = new Key(key); - tracksDictionary.remove(plistKey); - tracksDictionary.put(plistKey, trackMap.get(key).getTrackDict()); - } - } - - /** - * Gets the Playlists section of an iTunes library/playlist file as a list of ITunesTrackList objects. - * - * @return The Playlists section of an iTunes library/playlist file as a list of ITunesTrackList objects. - * @see ITunesTrackList - */ - public List getPlaylists() - { - List result = new ArrayList<>(); - Dict rootDict = ((Dict) _plist.getPlist().getPlistObject()); - Array playlistsArray = DictionaryParser.getKeyValueAsArray(rootDict, "Playlists"); - Map tracks = getTracks(); - Dict playlistDict; - Array playlistItems; - Dict innerDict; - Integer trackId; - for (PlistObject object : playlistsArray.getPlistObjects()) - { - List contents = new ArrayList<>(); - playlistDict = (Dict) object; - playlistItems = DictionaryParser.getKeyValueAsArray(playlistDict, "Playlist Items"); - if (playlistItems != null) - { - for (PlistObject innerObj : playlistItems.getPlistObjects()) - { - // now each thing is a dict of "Track ID" to Integer. - innerDict = (Dict) innerObj; - trackId = DictionaryParser.getKeyValueAsInteger(innerDict, "Track ID"); - contents.add(tracks.get(trackId.getValue())); - } - } - result.add(new ITunesTrackList(DictionaryParser.getKeyValueAsString(playlistDict, "Name"), contents)); - } - return result; - } - - /** - * Returns the _plist. - */ - public PlistPlaylist getPlist() - { - return _plist; - } -} diff --git a/src/main/java/listfix/model/playlists/itunes/ITunesPlaylist.java b/src/main/java/listfix/model/playlists/itunes/ITunesPlaylist.java deleted file mode 100644 index ddb416bc..00000000 --- a/src/main/java/listfix/model/playlists/itunes/ITunesPlaylist.java +++ /dev/null @@ -1,29 +0,0 @@ -package listfix.model.playlists.itunes; - -import listfix.io.IPlaylistOptions; -import listfix.model.enums.PlaylistType; -import listfix.model.playlists.Playlist; -import listfix.model.playlists.PlaylistEntry; - -import java.io.File; -import java.util.List; - - -public class ITunesPlaylist extends Playlist -{ - private final ITunesMediaLibrary _library; - - public ITunesPlaylist(File listFile, List entries, ITunesMediaLibrary library, IPlaylistOptions filePathOptions) - { - super(filePathOptions, listFile, PlaylistType.ITUNES, entries); - _library = library; - } - - /** - * Returns the _library. - */ - public ITunesMediaLibrary getLibrary() - { - return _library; - } -} diff --git a/src/main/java/listfix/model/playlists/itunes/ITunesTrack.java b/src/main/java/listfix/model/playlists/itunes/ITunesTrack.java deleted file mode 100644 index 647caaff..00000000 --- a/src/main/java/listfix/model/playlists/itunes/ITunesTrack.java +++ /dev/null @@ -1,110 +0,0 @@ -package listfix.model.playlists.itunes; - -import christophedelory.plist.Dict; - -import java.util.Hashtable; - -/** - * Wrapper around a christophedelory.plist.Dict to provide easy access to the information about a track - * in an iTunes library/playlist file for the purposes of conversion to a listFix() PlaylistEntry object. - * - * @author jcaron - */ -public class ITunesTrack -{ - private final Dict _trackDict; - - public static final String FILE = "File"; - public static final String URL = "URL"; - - /** - * Constructor that takes a christophedelory.plist.Dict object. - * - * @param trackDict The christophedelory.plist.Dict object containing information about the track. - */ - public ITunesTrack(Dict trackDict) - { - _trackDict = trackDict; - } - - /** - * Returns the _location. - */ - public String getLocation() - { - return DictionaryParser.getKeyValueAsString(_trackDict, "Location"); - } - - public void setLocation(String location) - { - DictionaryParser.setKeyValue(_trackDict, "Location", new christophedelory.plist.String(location)); - } - - /** - * Returns the _artist. - */ - public String getArtist() - { - return DictionaryParser.getKeyValueAsString(_trackDict, "Artist"); - } - - /** - * Returns the _name. - */ - public String getName() - { - return DictionaryParser.getKeyValueAsString(_trackDict, "Name"); - } - - /** - * Returns the _album. - */ - public String getAlbum() - { - return DictionaryParser.getKeyValueAsString(_trackDict, "Album"); - } - - /** - * Returns the _albumArtist. - */ - public String getAlbumArtist() - { - return DictionaryParser.getKeyValueAsString(_trackDict, "Album Artist"); - } - - public String getTrackType() - { - return DictionaryParser.getKeyValueAsString(_trackDict, "Track Type"); - } - - /** - * Returns the _duration. - */ - public long getDuration() - { - long result = -1; - christophedelory.plist.Integer timeInt = ((christophedelory.plist.Integer) ((Hashtable) getTrackDict().getDictionary()).get(new christophedelory.plist.Key("Total Time"))); - if (timeInt != null) - { - String timeText = timeInt.getValue(); - result = Long.parseLong(timeText); - } - return result; - } - - /** - * Returns the _trackId. - */ - public String getTrackId() - { - return DictionaryParser.getKeyValueAsInteger(_trackDict, "Track ID").getValue(); - } - - /** - * Returns the _trackDict. - */ - public Dict getTrackDict() - { - return _trackDict; - } -} diff --git a/src/main/java/listfix/model/playlists/itunes/ITunesTrackList.java b/src/main/java/listfix/model/playlists/itunes/ITunesTrackList.java deleted file mode 100644 index b159bdee..00000000 --- a/src/main/java/listfix/model/playlists/itunes/ITunesTrackList.java +++ /dev/null @@ -1,65 +0,0 @@ -package listfix.model.playlists.itunes; - -import java.util.List; - -/** - * A thin wrapper meant to represent an internal iTunes "playlist". - * iTunes XML files can contain one or more playlists. As such, the name of the playlist - * is not the name of the file it's found in, so the name must be tracked here. - * Also maintains a list of the ITunesTracks that make up this list. - *

- * In the iTunes model, the tracks are stored in a separate section of the XML file, each - * with an ID, and the playlist is then just a list of the track ids making up the list. - * Our internal representation denormalizes this so to speak, as ITunesTrack actually has - * information about the track from the tracks section of the XML. - * - * @author jcaron - * @see ITunesTrack - */ -public class ITunesTrackList -{ - private String _name; - private List _tracks; - - /** - * Constructs a new ITunesTrackList object. - */ - public ITunesTrackList(String name, List tracks) - { - _name = name; - _tracks = tracks; - } - - /** - * Returns the _name. - */ - public String getName() - { - return _name; - } - - /** - * @param name the _name to set - */ - public void setName(String name) - { - this._name = name; - } - - /** - * Returns the _tracks. - */ - public List getTracks() - { - return _tracks; - } - - /** - * @param tracks the _tracks to set - */ - public void setTracks(List tracks) - { - this._tracks = tracks; - } - -} diff --git a/src/main/java/listfix/model/playlists/itunes/ITunesUriPlaylistEntry.java b/src/main/java/listfix/model/playlists/itunes/ITunesUriPlaylistEntry.java deleted file mode 100644 index 565ec583..00000000 --- a/src/main/java/listfix/model/playlists/itunes/ITunesUriPlaylistEntry.java +++ /dev/null @@ -1,35 +0,0 @@ -package listfix.model.playlists.itunes; - -import listfix.model.playlists.UriPlaylistEntry; - -import java.net.URI; - - -public class ITunesUriPlaylistEntry extends UriPlaylistEntry implements IITunesPlaylistEntry -{ - private final ITunesTrack _track; - - public ITunesUriPlaylistEntry(URI input, ITunesTrack track) - { - super(input, ""); - _track = track; - } - - /** - * @return the _track - */ - @Override - public ITunesTrack getTrack() - { - return _track; - } - - - @Override - public ITunesUriPlaylistEntry clone() - { - ITunesUriPlaylistEntry clone = new ITunesUriPlaylistEntry(this.getURI(), this._track); - super.copyTo(clone); - return clone; - } -} diff --git a/src/main/java/listfix/util/ObservableInputStream.java b/src/main/java/listfix/util/ObservableInputStream.java new file mode 100644 index 00000000..882cf8f9 --- /dev/null +++ b/src/main/java/listfix/util/ObservableInputStream.java @@ -0,0 +1,69 @@ +package listfix.util; + +import listfix.view.support.IProgressObserver; + +import java.io.IOException; +import java.io.InputStream; + +public class ObservableInputStream extends InputStream +{ + + private InputStream inputStream; + private final long length; + private long sumRead; + private final IProgressObserver observer; + private double percent; + + public ObservableInputStream(InputStream inputStream, long length, IProgressObserver observer) + { + this.inputStream = inputStream; + this.observer = observer; + sumRead = 0; + this.length = length; + } + + @Override + public int read(byte[] b) throws IOException + { + int readCount = inputStream.read(b); + evaluatePercent(readCount); + return readCount; + } + + @Override + public int read(byte[] b, int off, int len) throws IOException + { + int readCount = inputStream.read(b, off, len); + evaluatePercent(readCount); + return readCount; + } + + @Override + public long skip(long n) throws IOException + { + long skip = inputStream.skip(n); + evaluatePercent(skip); + return skip; + } + + @Override + public int read() throws IOException + { + int read = inputStream.read(); + if (read != -1) + { + evaluatePercent(1); + } + return read; + } + + private void evaluatePercent(long readCount) + { + if (readCount != -1) + { + sumRead += readCount; + percent = sumRead * 1.0 / length; + } + this.observer.reportProgress((int) Math.round(percent)); + } +} diff --git a/src/main/java/listfix/util/ObservableOutputStream.java b/src/main/java/listfix/util/ObservableOutputStream.java new file mode 100644 index 00000000..c1bb1491 --- /dev/null +++ b/src/main/java/listfix/util/ObservableOutputStream.java @@ -0,0 +1,56 @@ +package listfix.util; + +import listfix.view.support.IProgressObserver; + +import java.io.IOException; +import java.io.OutputStream; + +public class ObservableOutputStream extends OutputStream +{ + + private OutputStream outputStream; + private final long length; + private long sumWrite; + private final IProgressObserver observer; + private double percent; + + public ObservableOutputStream(OutputStream outputStream, long length, IProgressObserver observer) + { + this.outputStream = outputStream; + this.observer = observer; + sumWrite = 0; + this.length = length == 0 ? 10000 : length; + } + + @Override + public void write(int i) throws IOException + { + this.outputStream.write(i); + } + + public void write(byte[] b, int off, int len) throws IOException { + this.outputStream.write(b, off, len); + evaluatePercent(len); + } + + private void evaluatePercent(long writeCount){ + if (writeCount != -1) + { + sumWrite += writeCount; + percent = sumWrite * 1.0 / length; + } + this.observer.reportProgress(Math.min((int)Math.round(percent), 100)); + } + + @Override + public void flush() throws IOException { + this.outputStream.flush(); + } + + @Override + public void close() throws IOException { + this.outputStream.close(); + } + + +} diff --git a/src/main/java/listfix/view/GUIScreen.java b/src/main/java/listfix/view/GUIScreen.java index 72b83a5a..9a28d5d8 100644 --- a/src/main/java/listfix/view/GUIScreen.java +++ b/src/main/java/listfix/view/GUIScreen.java @@ -15,7 +15,7 @@ import listfix.model.BatchRepair; import listfix.model.BatchRepairItem; import listfix.model.PlaylistHistory; -import listfix.model.enums.PlaylistType; + import listfix.model.playlists.Playlist; import listfix.model.playlists.PlaylistFactory; import listfix.swing.IDocumentChangeListener; @@ -40,7 +40,6 @@ import javax.swing.plaf.FontUIResource; import javax.swing.tree.DefaultTreeModel; import javax.swing.tree.TreePath; -import javax.xml.bind.JAXBException; import java.awt.*; import java.awt.event.*; import java.io.File; @@ -61,7 +60,7 @@ public final class GUIScreen extends JFrame implements IListFixGui private final JFileChooser _jSaveFileChooser = new JFileChooser(); private final FolderChooser _jMediaDirChooser = new FolderChooser(); private final List _openPlaylists = new ArrayList<>(); - private final Image applicationIcon = new ImageIcon(Objects.requireNonNull(getClass().getResource("/images/icon.png"))).getImage(); + private final Image applicationIcon = this.getImageIcon("icon.png").getImage(); private final listfix.view.support.SplashScreen splashScreen = new listfix.view.support.SplashScreen("images/listfixSplashScreen.png"); private ListFixController _listFixController = null; @@ -149,26 +148,6 @@ private void postInitComponents() initPlaylistListener(); - if (!WinampHelper.isWinampInstalled()) - { - _batchRepairWinampMenuItem.setVisible(false); - _extractPlaylistsMenuItem.setVisible(false); - } - - // drag-n-drop support for the playlist directory tree - _playlistDirectoryTree.setTransferHandler(new PlaylistFolderTransferHandler(_playlistDirectoryTree, this)); - _playlistDirectoryTree.setRootVisible(false); - // Show tooltips - ToolTipManager.sharedInstance().registerComponent(_playlistDirectoryTree); - _playlistDirectoryTree.setCellRenderer(new TreeTooltipRenderer()); - - _playlistDirectoryTree.getSelectionModel().addTreeSelectionListener(e -> { - boolean hasSelected = _playlistDirectoryTree.getSelectionCount() > 0; - _btnOpenSelected.setEnabled(hasSelected); - _btnQuickRepair.setEnabled(hasSelected); - _btnDeepRepair.setEnabled(hasSelected); - }); - // addAt popup menu to playlist tree on right-click _playlistDirectoryTree.addMouseListener(createPlaylistTreeMouseListener()); @@ -217,11 +196,11 @@ public void treeStructureChanged(TreeModelEvent e) _logger.info("post init"); EventQueue.invokeLater(() -> - // Restore previous opened playlists - _listFixController.getApplicationConfiguration().getConfig().getApplicationState().getPlaylistsOpened().stream() - .map(Path::of) - .filter(Files::exists) - .forEach(GUIScreen.this::openPlaylist)); + // Restore previous opened playlists + _listFixController.getApplicationConfiguration().getConfig().getApplicationState().getPlaylistsOpened().stream() + .map(Path::of) + .filter(Files::exists) + .forEach(GUIScreen.this::openPlaylist)); } private void recheckStatusOfOpenPlaylists() @@ -456,9 +435,9 @@ private void initComponents() JPanel _playlistsDirectoryButtonPanel = new JPanel(); JButton _btnSetPlaylistsDir = new JButton(); JButton _btnRefresh = new JButton(); - _btnOpenSelected = new JButton(); - _btnQuickRepair = new JButton(); - _btnDeepRepair = new JButton(); + JButton _btnOpenSelected = new JButton(); + JButton _btnQuickRepair = new JButton(); + JButton _btnDeepRepair = new JButton(); _playlistPanel = new JPanel(); JPanel _gettingStartedPanel = new JPanel(); JPanel _verticalPanel = new JPanel(); @@ -492,8 +471,6 @@ private void initComponents() JMenuItem _miBatchRepair = new JMenuItem(); JMenuItem _miExactMatchRepairOpenPlaylists = new JMenuItem(); JMenuItem _miClosestMatchRepairOpenPlaylists = new JMenuItem(); - _batchRepairWinampMenuItem = new JMenuItem(); - _extractPlaylistsMenuItem = new JMenuItem(); JMenu _helpMenu = new JMenu(); JMenuItem _helpMenuItem = new JMenuItem(); JMenuItem _updateCheckMenuItem = new JMenuItem(); @@ -886,19 +863,6 @@ public void keyPressed(KeyEvent evt) _miClosestMatchRepairOpenPlaylists.addActionListener(evt -> this.runClosestMatchOnAllTabs()); _repairMenu.add(_miClosestMatchRepairOpenPlaylists); - _batchRepairWinampMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_W, InputEvent.ALT_DOWN_MASK | InputEvent.CTRL_DOWN_MASK)); - _batchRepairWinampMenuItem.setMnemonic('B'); - _batchRepairWinampMenuItem.setText("Batch Repair Winamp Media Library Playlists..."); - _batchRepairWinampMenuItem.addActionListener(evt -> _batchRepairWinampMenuItemActionPerformed()); - _repairMenu.add(_batchRepairWinampMenuItem); - - _extractPlaylistsMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_E, InputEvent.CTRL_DOWN_MASK)); - _extractPlaylistsMenuItem.setMnemonic('W'); - _extractPlaylistsMenuItem.setText("Extract Winamp Media Library Playlists"); - _extractPlaylistsMenuItem.setToolTipText("Extract Winamp Media Library Playlists"); - _extractPlaylistsMenuItem.addActionListener(evt -> _extractPlaylistsMenuItemActionPerformed()); - _repairMenu.add(_extractPlaylistsMenuItem); - _mainMenuBar.add(_repairMenu); _helpMenu.setMnemonic('H'); @@ -1362,8 +1326,6 @@ public void openPlaylist(final Path playlistPath) JDocumentComponent tempComp = _playlistTabbedPane.getDocument(playlistPath); if (tempComp == null) { - PlaylistType type = Playlist.determinePlaylistTypeFromExtension(playlistPath); - ProgressWorker worker = new ProgressWorker<>() { @Override @@ -1417,7 +1379,7 @@ protected void done() } }; - boolean textOnly = type == PlaylistType.ITUNES || type == PlaylistType.XSPF; + boolean textOnly = false; // ToDo, was: type == PlaylistType.ITUNES || type == PlaylistType.XSPF; // Can't show a progress dialog for these as we have no way to track them at present. final String filename = playlistPath.getFileName().toString(); ProgressDialog pd = new ProgressDialog(this, true, worker, "Loading '" + (filename.length() > 70 ? filename.substring(0, 70) : filename) + "'...", textOnly, true); @@ -1541,12 +1503,11 @@ private void handlePlaylistSave(final Playlist list) throws HeadlessException @Override protected Void doInBackground() throws Exception { - boolean saveRelative = ListFixController.getInstance().getAppOptions().getSavePlaylistsWithRelativePaths(); - list.save(saveRelative, this); + list.save(this); return null; } }; - ProgressDialog pd = new ProgressDialog(this, true, worker, "Saving...", list.getType() == PlaylistType.ITUNES || list.getType() == PlaylistType.XSPF, false); + ProgressDialog pd = new ProgressDialog(this, true, worker, "Saving...", false, false); pd.setMessage("Please wait while your playlist is saved to disk."); pd.setVisible(true); worker.get(); @@ -1586,7 +1547,7 @@ public boolean showPlaylistSaveAsDialog(Playlist playlist) } } - this.savePlaylistAs(playlist, newPlaylistFile); + this.savePlaylist(playlist, newPlaylistFile); return true; } @@ -1611,25 +1572,29 @@ public boolean showPlaylistSaveAsDialog(Playlist playlist) @Override public void savePlaylist(Playlist playlist) throws InterruptedException, IOException, ExecutionException { - this.savePlaylistAs(playlist, playlist.getFile()); + this.savePlaylist(playlist, playlist.getFile()); } @Override - public void savePlaylistAs(Playlist playlist, File saveAsFile) throws InterruptedException, IOException, ExecutionException + public void savePlaylist(Playlist playlist, File saveAsFile) throws InterruptedException, IOException, ExecutionException + { + this.savePlaylist(playlist, saveAsFile.toPath()); + } + + public void savePlaylist(Playlist playlist, Path saveAsPath) throws InterruptedException, IOException, ExecutionException { final Path originalPlaylistPath = playlist.getPath(); - final Path saveAsPath = saveAsFile.toPath(); ProgressWorker worker = new ProgressWorker<>() { @Override protected Void doInBackground() throws Exception { - playlist.saveAs(saveAsFile, this); + playlist.saveAs(saveAsPath, this); return null; } }; - ProgressDialog pd = new ProgressDialog(this, true, worker, "Saving...", playlist.getType() == PlaylistType.ITUNES || playlist.getType() == PlaylistType.XSPF, false); + ProgressDialog pd = new ProgressDialog(this, true, worker, "Saving...", false, false); pd.setMessage("Please wait while your playlist is saved to disk."); pd.setVisible(true); @@ -1759,7 +1724,7 @@ public boolean tryCloseTab(JDocumentComponent ctrl) protected Boolean doInBackground() throws Exception { boolean saveRelative = ListFixController.getInstance().getAppOptions().getSavePlaylistsWithRelativePaths(); - playlist.save(saveRelative, this); + playlist.save(this); return true; } }; @@ -1830,8 +1795,8 @@ private void confirmCloseApp() // Store open playlists List openPlaylists = this._playlistTabbedPane.getAllEmbeddedMainComponent().stream() - .map(playlistEditCtrl -> playlistEditCtrl.getPlaylist().getPath().toString()) - .collect(Collectors.toList()); + .map(playlistEditCtrl -> playlistEditCtrl.getPlaylist().getPath().toString()) + .collect(Collectors.toList()); Set playlistPaths = this._listFixController.getApplicationConfiguration().getConfig().getApplicationState().getPlaylistsOpened(); playlistPaths.clear(); @@ -2041,30 +2006,6 @@ private void launchListFixUpdateUrl() BrowserLauncher.launch("https://github.com/Borewit/listFix/releases"); } - private void _batchRepairWinampMenuItemActionPerformed() - { - final BatchRepair br = WinampHelper.getWinampBatchRepair(_listFixController.getMediaLibrary(), this.getOptions()); - if (br == null || br.isEmpty()) - { - JOptionPane.showMessageDialog(this, new JTransparentTextArea("Could not find any WinAmp Media Library playlists")); - return; - } - - BatchExactMatchesResultsDialog dlg = new BatchExactMatchesResultsDialog(this, true, br, this); - if (!dlg.getUserCancelled()) - { - if (br.isEmpty()) - { - JOptionPane.showMessageDialog(this, new JTransparentTextArea("There was nothing to fix in the list(s) that were processed.")); - } - else - { - dlg.setLocationRelativeTo(this); - dlg.setVisible(true); - } - } - } - private void onMenuBatchRepairActionPerformed() { JFileChooser dlg = new JFileChooser(); @@ -2161,7 +2102,7 @@ private void _newIconButtonActionPerformed() { try { - _currentPlaylist = new Playlist(this.getOptions()); + _currentPlaylist = Playlist.makeNewPersistentPlaylist(this.getOptions()); Path path = _currentPlaylist.getPath(); PlaylistEditCtrl editor = new PlaylistEditCtrl(this); editor.setPlaylist(_currentPlaylist); @@ -2195,39 +2136,6 @@ private void _newIconButtonActionPerformed() } - private void _extractPlaylistsMenuItemActionPerformed() - { - final JFileChooser dlg = new JFileChooser(); - dlg.setDialogTitle("Extract to..."); - dlg.setAcceptAllFileFilterUsed(true); - dlg.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); - dlg.setMultiSelectionEnabled(false); - int response = dlg.showOpenDialog(this); - - if (response == JFileChooser.APPROVE_OPTION) - { - ProgressWorker worker = new ProgressWorker<>() - { - @Override - protected Void doInBackground() - { - try - { - WinampHelper.extractPlaylists(dlg.getSelectedFile(), this); - } - catch (JAXBException | IOException ex) - { - JOptionPane.showMessageDialog(GUIScreen.this, new JTransparentTextArea("Sorry, there was a problem extracting your playlists. The error was: " + ex.getMessage()), "Extraction Error", JOptionPane.ERROR_MESSAGE); - _logger.warn(ex); - } - return null; - } - }; - ProgressDialog pd = new ProgressDialog(this, true, worker, "Extracting...", false, true); - pd.setVisible(true); - } - } - private void _closeMenuItemActionPerformed() { if (_playlistTabbedPane.getDocumentCount() > 0) @@ -2541,12 +2449,7 @@ private ImageIcon getImageIcon(String imageFilename) return new ImageIcon(url); } - private JMenuItem _batchRepairWinampMenuItem; - private JButton _btnDeepRepair; - private JButton _btnOpenSelected; - private JButton _btnQuickRepair; private JDocumentTabbedPane _playlistTabbedPane; - private JMenuItem _extractPlaylistsMenuItem; private JSplitPane _leftSplitPane; private JList _lstMediaLibraryDirs; private JMenuItem _miClosestMatchesSearch; diff --git a/src/main/java/listfix/view/IListFixGui.java b/src/main/java/listfix/view/IListFixGui.java index 4d7c7e82..fb973063 100644 --- a/src/main/java/listfix/view/IListFixGui.java +++ b/src/main/java/listfix/view/IListFixGui.java @@ -27,7 +27,7 @@ public interface IListFixGui void savePlaylist(Playlist playlist) throws InterruptedException, IOException, ExecutionException; - void savePlaylistAs(Playlist playlist, File saveAsPath) throws InterruptedException, IOException, ExecutionException; + void savePlaylist(Playlist playlist, File saveAsPath) throws InterruptedException, IOException, ExecutionException; boolean showPlaylistSaveAsDialog(Playlist list); diff --git a/src/main/java/listfix/view/PlaylistFolderTransferHandler.java b/src/main/java/listfix/view/PlaylistFolderTransferHandler.java index ffbbaa0f..e5a8ec89 100644 --- a/src/main/java/listfix/view/PlaylistFolderTransferHandler.java +++ b/src/main/java/listfix/view/PlaylistFolderTransferHandler.java @@ -79,6 +79,6 @@ protected Transferable createTransferable(JComponent c) return FileTreeNodeGenerator.treePathToFileSystemPath(selPath).toFile(); }).collect(Collectors.toList()); - return PlaylistTransferHandler.toTransferableFromFiles(fileList); + return null; // ToDO? } } diff --git a/src/main/java/listfix/view/PlaylistTransferHandler.java b/src/main/java/listfix/view/PlaylistTransferHandler.java index fad40010..e5acccb9 100644 --- a/src/main/java/listfix/view/PlaylistTransferHandler.java +++ b/src/main/java/listfix/view/PlaylistTransferHandler.java @@ -1,10 +1,10 @@ package listfix.view; +import io.github.borewit.lizzy.playlist.Playlist; import listfix.io.datatransfer.PlaylistTransferObject; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; -import javax.activation.DataHandler; import javax.swing.*; import java.awt.datatransfer.DataFlavor; import java.awt.datatransfer.Transferable; @@ -12,9 +12,8 @@ import java.io.File; import java.io.IOException; import java.io.InputStream; -import java.nio.file.Path; -import java.util.*; -import java.util.stream.Collectors; +import java.util.Arrays; +import java.util.List; public class PlaylistTransferHandler extends TransferHandler { @@ -51,8 +50,6 @@ public boolean importData(TransferHandler.TransferSupport support) throw new RuntimeException(e); } } - List mediaList = extractPlaylistsTransfer(transferable); - // ToDo: Add M3U List } catch (IOException e) { @@ -61,7 +58,7 @@ public boolean importData(TransferHandler.TransferSupport support) return false; } - public static List extractPlaylistsTransfer(Transferable transferable) throws IOException + public static Playlist extractPlaylistsTransfer(Transferable transferable) throws IOException { try { @@ -90,16 +87,7 @@ public static List extractPlaylistsTransfer(Transferable transferable) t logger.warn("Trying to extract M3U flavor transfer failed", ufe); } // No results - return Collections.emptyList(); - } - - public static Transferable toTransferableFromPaths(Collection droppedFiles) { - return toTransferableFromFiles(droppedFiles.stream().map(Path::toFile).collect(Collectors.toList())); - } - - public static Transferable toTransferableFromFiles(Collection droppedFiles) { - List immutable = new ArrayList<>(droppedFiles); - return new DataHandler(immutable, DataFlavor.javaJVMLocalObjectMimeType); + return null; } } diff --git a/src/main/java/listfix/view/controls/ClosestMatchesSearchScrollableResultsPanel.java b/src/main/java/listfix/view/controls/ClosestMatchesSearchScrollableResultsPanel.java index b36fafc1..5241ee3e 100644 --- a/src/main/java/listfix/view/controls/ClosestMatchesSearchScrollableResultsPanel.java +++ b/src/main/java/listfix/view/controls/ClosestMatchesSearchScrollableResultsPanel.java @@ -151,7 +151,7 @@ public String getToolTipText(@Nonnull MouseEvent event) PotentialPlaylistEntryMatch match = item.getSelectedMatch(); if (match != null) { - return match.getPlaylistFile().getTrackFolder(); + return match.getTrackFolder(); } } } @@ -220,11 +220,8 @@ public void actionPerformed(ActionEvent e) try { - match.getPlaylistFile().play(match.getPlaylistOptions()); - } - catch (InterruptedException ex) - { - // ignore, these happen when people cancel - should not be logged either. + // ToDo match.getTrack().play(match.getPlaylistOptions()); + throw new UnsupportedOperationException("ToDo"); } catch (Exception ex) { @@ -304,7 +301,7 @@ public Object getValueAt(int rowIndex, int columnIndex) case 1 -> item.getEntry().getTrackFileName(); case 2 -> ""; case 3 -> - item.getSelectedMatch() == null ? "< skip >" : item.getSelectedMatch().getPlaylistFile().getTrackFileName(); + item.getSelectedMatch() == null ? "< skip >" : item.getSelectedMatch().getTrack().getFileName().toString(); default -> null; }; } @@ -389,7 +386,7 @@ public Component getListCellRendererComponent(JList list, Object value, int inde { if (index > 0) { - list.setToolTipText(((PotentialPlaylistEntryMatch) value).getPlaylistFile().getTrackFolder()); + list.setToolTipText(((PotentialPlaylistEntryMatch) value).getTrackFolder()); } } @@ -462,7 +459,7 @@ private void openClickedMatchedPlayListEntryLocation() if (match != null) { _logger.debug(String.format("Selected: %s", match)); - Path path = ((FilePlaylistEntry) match.getPlaylistFile()).getAbsolutePath(); + Path path = ((FilePlaylistEntry) match.getTrack()).getAbsolutePath(); if (path.getParent() != null) { try diff --git a/src/main/java/listfix/view/controls/PlaylistEditCtrl.java b/src/main/java/listfix/view/controls/PlaylistEditCtrl.java index ec617aaf..aae67c10 100644 --- a/src/main/java/listfix/view/controls/PlaylistEditCtrl.java +++ b/src/main/java/listfix/view/controls/PlaylistEditCtrl.java @@ -1,7 +1,8 @@ package listfix.view.controls; +import io.github.borewit.lizzy.content.Content; +import io.github.borewit.lizzy.playlist.Media; import listfix.config.IMediaLibrary; -import listfix.view.PlaylistTransferHandler; import listfix.io.datatransfer.PlaylistTransferObject; import listfix.io.Constants; import listfix.io.FileUtils; @@ -11,7 +12,7 @@ import listfix.model.BatchMatchItem; import listfix.model.EditFilenameResult; import listfix.model.PlaylistEntryList; -import listfix.model.enums.PlaylistType; + import listfix.model.playlists.*; import listfix.util.ArrayFunctions; import listfix.util.ExStack; @@ -510,12 +511,13 @@ private void replaceSelectedEntries() JOptionPane.showMessageDialog(getParentFrame(), new JTransparentTextArea("You cannot replace a file with a playlist file. Use \"Add File\" instead."), "Replace File Error", JOptionPane.ERROR_MESSAGE); return; } - PlaylistEntry newEntry = new FilePlaylistEntry(file.toPath(), null, _playlist.getFile().toPath()); + Media media = new Media(); + media.setSource(new Content(file.getPath())); + PlaylistEntry newEntry = new FilePlaylistEntry(_playlist, media); _playlist.replace(rowIx, newEntry); getTableModel().fireTableRowsUpdated(rowIx, rowIx); } } - } private void removeDuplicates() @@ -938,11 +940,6 @@ protected void done() } }; - boolean textOnly = _playlist.getType() == PlaylistType.ITUNES || _playlist.getType() == PlaylistType.XSPF; - // Can't show a progress dialog for these as we have no way to track them at present. - ProgressDialog pd = new ProgressDialog(this.getParentFrame(), true, worker, "Reloading '" + _playlist.getFilename() + "'...", textOnly, true); - pd.setVisible(true); - showWaitCursor(false); } } @@ -951,7 +948,7 @@ protected void done() private void _uiTableKeyPressed(KeyEvent evt) { int keyVal = evt.getKeyCode(); - if (keyVal == KeyEvent.VK_DELETE && _playlist.getType() != PlaylistType.ITUNES) + if (keyVal == KeyEvent.VK_DELETE) { deleteSelectedRows(); } @@ -1120,7 +1117,7 @@ private void _miNewPlaylistFromSelectedActionPerformed() // Creating the playlist and copying the entries gives us a new list w/ the "Untitled-X" style name. try { - Playlist sublist = new Playlist(this.getPlaylistOptions()); + Playlist sublist = Playlist.makeNewPersistentPlaylist(this.getPlaylistOptions()); sublist.addAllAt(0, _playlist.getSublist(rows).getEntries()); this.listFixGui.openNewTabForPlaylist(sublist); } @@ -1174,12 +1171,12 @@ public void setPlaylist(Playlist list, boolean force) boolean hasPlaylist = _playlist != null; - _btnAdd.setEnabled(hasPlaylist && _playlist.getType() != PlaylistType.ITUNES); + _btnAdd.setEnabled(hasPlaylist); _btnLocate.setEnabled(hasPlaylist); _btnMagicFix.setEnabled(hasPlaylist); - _btnReorder.setEnabled(hasPlaylist && _playlist.getType() != PlaylistType.ITUNES && _playlist.size() > 1); + _btnReorder.setEnabled(hasPlaylist && _playlist.size() > 1); _btnReload.setEnabled(hasPlaylist && _playlist.isModified()); - _btnPlay.setEnabled(hasPlaylist && _playlist.getType() != PlaylistType.ITUNES); + _btnPlay.setEnabled(hasPlaylist); _btnNextMissing.setEnabled(hasPlaylist && _playlist.getMissingCount() > 0); _btnPrevMissing.setEnabled(hasPlaylist && _playlist.getMissingCount() > 0); _btnSave.setEnabled(_playlist != null); @@ -1194,7 +1191,7 @@ public void setPlaylist(Playlist list, boolean force) _playlist.addModifiedListener(listener); } - _uiTable.setDragEnabled(_playlist.getType() != PlaylistType.ITUNES); + _uiTable.setDragEnabled(true); } private void showWaitCursor(boolean isWaiting) @@ -1366,15 +1363,15 @@ private void initPlaylistTable() } boolean hasSelected = _uiTable.getSelectedRowCount() > 0; - _btnDelete.setEnabled(hasSelected && _playlist.getType() != PlaylistType.ITUNES); - _btnUp.setEnabled(_isSortedByFileIx && hasSelected && _playlist.getType() != PlaylistType.ITUNES && _uiTable.getSelectedRow() > 0); - _btnDown.setEnabled(_isSortedByFileIx && hasSelected && _playlist.getType() != PlaylistType.ITUNES && _uiTable.getSelectedRow() < _uiTable.getRowCount() - 1); - _btnPlay.setEnabled(_playlist != null && _playlist.getType() != PlaylistType.ITUNES && (_uiTable.getSelectedRow() < 0 || (_uiTable.getSelectedRows().length > 0 && selectedRowsContainFoundEntry()))); + _btnDelete.setEnabled(hasSelected); + _btnUp.setEnabled(_isSortedByFileIx && hasSelected && _uiTable.getSelectedRow() > 0); + _btnDown.setEnabled(_isSortedByFileIx && hasSelected && _uiTable.getSelectedRow() < _uiTable.getRowCount() - 1); + _btnPlay.setEnabled(_playlist != null && (_uiTable.getSelectedRow() < 0 || (_uiTable.getSelectedRows().length > 0 && selectedRowsContainFoundEntry()))); _btnReload.setEnabled(_playlist != null && _playlist.isModified()); _btnSave.setEnabled(_playlist != null); _btnNextMissing.setEnabled(_playlist != null && _playlist.getMissingCount() > 0); _btnPrevMissing.setEnabled(_playlist != null && _playlist.getMissingCount() > 0); - _btnReorder.setEnabled(_playlist != null && _playlist.getType() != PlaylistType.ITUNES && _playlist.size() > 1); + _btnReorder.setEnabled(_playlist != null && _playlist.size() > 1); _btnInvert.setEnabled(hasSelected); if (_isSortedByFileIx) { @@ -1527,11 +1524,6 @@ else if (info.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) // This is the flavor we handle when the user drags any file in from a Windows OS return this.handleFileListFlavor(info, dl, PlaylistEditCtrl.this.listFixGui); } - else if (info.isDataFlavorSupported(DataFlavor.stringFlavor)) - { - // This is the flavor we handle when the user drags playlists over from the playlist panel, or when dragging in any file from linux - return handleStringFlavor(info, dl, PlaylistEditCtrl.this.listFixGui); - } return false; } @@ -1697,47 +1689,6 @@ protected void done() return _playlist.size() - plistSize; } - private boolean handleStringFlavor(TransferSupport transferSupport, final JTable.DropLocation dl, IListFixGui parent) - { - List entryList; - try - { - entryList = PlaylistTransferHandler.extractPlaylistsTransfer(transferSupport.getTransferable()); - } - catch (IOException e) - { - _logger.error("Failed to process dropped text transfer", e); - return false; - } - if (entryList.size() == 0) return false; - - int result = JOptionPane.showOptionDialog(getParentFrame(), new JTransparentTextArea("You dragged one or more playlists into this list, would you like to insert them or open them for repair?"), - "Insert or Open?", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.INFORMATION_MESSAGE, null, new String[]{"Insert", "Open", "Cancel"}, "Insert"); - - // ToDo: are we sure these are all files? - List pathList = entryList.stream().map(Path::of).collect(Collectors.toList()); - if (result == JOptionPane.YES_OPTION) - { - Collections.sort(entryList); - // ToDo: are we sure these are all files? - try - { - this.processPathListDrop(pathList, dl); - return true; - } - catch (IOException e) - { - throw new RuntimeException("Failed to add pasted text entries to playlist", e); - } - } - else if (result == JOptionPane.NO_OPTION && parent != null) - { - parent.openPathListDrop(pathList); - return true; - } - return false; - } - @Override public int getSourceActions(JComponent c) { diff --git a/src/main/schema/WinampMediaLibraryPlaylists.xjb b/src/main/schema/WinampMediaLibraryPlaylists.xjb deleted file mode 100644 index f07fec27..00000000 --- a/src/main/schema/WinampMediaLibraryPlaylists.xjb +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/src/main/schema/WinampMediaLibraryPlaylists.xsd b/src/main/schema/WinampMediaLibraryPlaylists.xsd deleted file mode 100644 index 823a1477..00000000 --- a/src/main/schema/WinampMediaLibraryPlaylists.xsd +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/test/java/listfix/io/datatransfer/PlaylistTransferObjectTests.java b/src/test/java/listfix/io/datatransfer/PlaylistTransferObjectTests.java deleted file mode 100644 index 16d60250..00000000 --- a/src/test/java/listfix/io/datatransfer/PlaylistTransferObjectTests.java +++ /dev/null @@ -1,35 +0,0 @@ -package listfix.io.datatransfer; - -import org.junit.jupiter.api.Test; - -import java.io.ByteArrayOutputStream; -import java.io.ByteArrayInputStream; -import java.io.IOException; -import java.util.List; - -import static org.junit.jupiter.api.Assertions.assertEquals; - -public class PlaylistTransferObjectTests -{ - @Test - public void serializeAndDeserializeFileList() throws IOException - { - List entryList = List.of(new String[] { - "C:\\Users\\borewit\\Music\\track01.mp3", - "C:\\Users\\borewit\\Music\\Artist - song.flac" - }); - - try(ByteArrayOutputStream bufferOutputStream = new ByteArrayOutputStream()) { - // Serialize list to buffer - PlaylistTransferObject.serialize(entryList, bufferOutputStream); - - System.out.println(String.format("M3U:\n%s", new String(bufferOutputStream.toByteArray()))); - - try(ByteArrayInputStream inputStream = new ByteArrayInputStream(bufferOutputStream.toByteArray())) { - List deserializedEntryList = PlaylistTransferObject.deserialize(inputStream); - assertEquals(entryList, deserializedEntryList); - } - } - } -} - diff --git a/src/test/java/listfix/io/playlists/m3u/M3UReaderTests.java b/src/test/java/listfix/io/playlists/m3u/M3UReaderTests.java deleted file mode 100644 index dd32bf52..00000000 --- a/src/test/java/listfix/io/playlists/m3u/M3UReaderTests.java +++ /dev/null @@ -1,67 +0,0 @@ -package listfix.io.playlists.m3u; - -import listfix.io.IPlaylistOptions; -import listfix.json.JsonAppOptions; -import listfix.model.playlists.PlaylistEntry; -import listfix.util.TestUtil; -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; - -import java.io.File; -import java.io.IOException; -import java.nio.charset.StandardCharsets; -import java.util.List; - -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertNotNull; - -public class M3UReaderTests -{ - private IPlaylistOptions playlistOptions; - - @BeforeEach - public void initOptions() - { - this.playlistOptions = new JsonAppOptions(); - } - - private M3UReader buildM3uReader(String playlist) throws IOException - { - File m3uPlaylistFile = TestUtil.createFileFromResource(this, "/playlists/m3u/" + playlist); - return new M3UReader(this.playlistOptions, m3uPlaylistFile.toPath()); - } - - @Test - @DisplayName("Read MP3U Playlist UTF-8 no BOM") - public void readPlaylistM3uUtf8NoBom() throws IOException - { - M3UReader m3UReader = buildM3uReader("playlist-utf8.m3u"); - List m3uPlaylist = m3UReader.readPlaylist(); - assertNotNull(m3uPlaylist, "PlaylistFactory should read and construct M3U playlist"); - assertEquals(2, m3uPlaylist.size(), "M3U playlist contains 2 tracks"); - assertEquals(StandardCharsets.UTF_8, m3UReader.getEncoding()); - } - - @Test - @DisplayName("Read MP3U Playlist UTF-16-BE with BOM") - public void readPlaylistM3uUtf16BeWithBom() throws IOException - { - M3UReader m3UReader = buildM3uReader("playlist-utf16be-bom.m3u"); - List m3uPlaylist = m3UReader.readPlaylist(); - assertNotNull(m3uPlaylist, "PlaylistFactory should read and construct M3U playlist"); - assertEquals(2, m3uPlaylist.size(), "M3U playlist contains 2 tracks"); - assertEquals(StandardCharsets.UTF_16BE, m3UReader.getEncoding()); - } - - @Test - @DisplayName("Read MP3U Playlist UTF-16-LE with BOM") - public void readPlaylistM3uUtf16LeWithBom() throws IOException - { - M3UReader m3UReader = buildM3uReader("playlist-utf16le-bom.m3u"); - List m3uPlaylist = m3UReader.readPlaylist(); - assertNotNull(m3uPlaylist, "PlaylistFactory should read and construct M3U playlist"); - assertEquals(2, m3uPlaylist.size(), "M3U playlist contains 2 tracks"); - assertEquals(StandardCharsets.UTF_16LE, m3UReader.getEncoding()); - } -} diff --git a/src/test/java/listfix/io/playlists/wpl/WPLReaderTests.java b/src/test/java/listfix/io/playlists/wpl/WPLReaderTests.java deleted file mode 100644 index 5eb1136c..00000000 --- a/src/test/java/listfix/io/playlists/wpl/WPLReaderTests.java +++ /dev/null @@ -1,56 +0,0 @@ -package listfix.io.playlists.wpl; - -import listfix.io.IPlaylistOptions; -import listfix.json.JsonAppOptions; -import listfix.model.playlists.PlaylistEntry; -import listfix.util.TestUtil; -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; - -import java.io.File; -import java.io.IOException; -import java.nio.charset.StandardCharsets; -import java.util.List; - -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertNotNull; - -public class WPLReaderTests -{ - private IPlaylistOptions playlistOptions; - - @BeforeEach - public void initOptions() - { - this.playlistOptions = new JsonAppOptions(); - } - - private WPLReader buildWplReader(String playlist) throws IOException - { - File m3uPlaylistFile = TestUtil.createFileFromResource(this, "/playlists/wpl/" + playlist); - return new WPLReader(this.playlistOptions, m3uPlaylistFile.toPath()); - } - - @Test - @DisplayName("Read WPL Playlist: 2seq.wpl") - public void read_2seq() throws IOException - { - WPLReader wplReader = buildWplReader("2seq.wpl"); - List wplPlaylist = wplReader.readPlaylist(); - assertNotNull(wplPlaylist, "PlaylistFactory should read and construct M3U playlist"); - assertEquals(4, wplPlaylist.size(), "M3U playlist contains 2 tracks"); - assertEquals(StandardCharsets.UTF_8, wplReader.getEncoding()); - } - - @Test - @DisplayName("Read WPL Playlist: playlist.wpl") - public void read_playlist() throws IOException - { - WPLReader wplReader = buildWplReader("playlist.wpl"); - List wplPlaylist = wplReader.readPlaylist(); - assertNotNull(wplPlaylist, "PlaylistFactory should read and construct M3U playlist"); - assertEquals(2, wplPlaylist.size(), "M3U playlist contains 2 tracks"); - assertEquals(StandardCharsets.UTF_8, wplReader.getEncoding()); - } -} diff --git a/src/test/java/listfix/model/playlists/LizzyPlaylistUtilTests.java b/src/test/java/listfix/model/playlists/LizzyPlaylistUtilTests.java new file mode 100644 index 00000000..86761294 --- /dev/null +++ b/src/test/java/listfix/model/playlists/LizzyPlaylistUtilTests.java @@ -0,0 +1,14 @@ +package listfix.model.playlists; + +import io.github.borewit.lizzy.playlist.PlaylistFormat; +import listfix.io.playlists.LizzyPlaylistUtil; +import org.junit.jupiter.api.Test; +import static org.junit.jupiter.api.Assertions.*; + +public class LizzyPlaylistUtilTests +{ + @Test + public void resolvePlaylistExtension() { + assertEquals(".m3u", LizzyPlaylistUtil.getPreferredExtensionFor(PlaylistFormat.m3u)); + } +} diff --git a/src/test/java/listfix/model/playlists/PlaylistEntryTests.java b/src/test/java/listfix/model/playlists/PlaylistEntryTests.java deleted file mode 100644 index 18f9029e..00000000 --- a/src/test/java/listfix/model/playlists/PlaylistEntryTests.java +++ /dev/null @@ -1,39 +0,0 @@ -package listfix.model.playlists; - - -import listfix.util.OperatingSystem; -import org.junit.jupiter.api.Test; - -import java.io.File; -import java.nio.file.Path; - -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertTrue; - -public class PlaylistEntryTests -{ - @Test - public void test() - { - final Path trackPath = new File("..\\_World Music\\12. Yuri Buenaventura - Bésame Mucho.flac").toPath(); - final String extra = ""; - - final Path playlistFile = OperatingSystem.isWindows() ? - Path.of("\\\\DiskStation\\music\\_playlists\\Broken.m3u8") : - Path.of("/volume1/music/_playlists/Broken.m3u8"); - - FilePlaylistEntry filePlaylistEntry = new FilePlaylistEntry(trackPath, extra, playlistFile); - assertEquals(Path.of("..", "_World Music").toString(), filePlaylistEntry.getTrackFolder()); - assertEquals("12. Yuri Buenaventura - Bésame Mucho.flac", filePlaylistEntry.getTrackFileName()); - assertTrue(filePlaylistEntry.isRelative()); - assertEquals(Path.of("..", "_World Music", "12. Yuri Buenaventura - Bésame Mucho.flac"), filePlaylistEntry.getTrackPath()); - if (OperatingSystem.isWindows()) - { - assertEquals("\\\\DiskStation\\music\\_World Music\\12. Yuri Buenaventura - Bésame Mucho.flac", filePlaylistEntry.getAbsolutePath().toString()); - } - else - { - assertEquals("/volume1/music/_World Music/12. Yuri Buenaventura - Bésame Mucho.flac", filePlaylistEntry.getAbsolutePath().toString()); - } - } -} diff --git a/src/test/java/listfix/model/playlists/PlaylistFactoryTests.java b/src/test/java/listfix/model/playlists/PlaylistFactoryTests.java deleted file mode 100644 index a54cf202..00000000 --- a/src/test/java/listfix/model/playlists/PlaylistFactoryTests.java +++ /dev/null @@ -1,55 +0,0 @@ -package listfix.model.playlists; - -import listfix.io.IPlaylistOptions; -import listfix.json.JsonAppOptions; -import listfix.util.TestUtil; -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Test; - -import java.io.File; -import java.io.IOException; - -import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.assertNotNull; - -public class PlaylistFactoryTests -{ - private IPlaylistOptions playlistOptions; - - @BeforeEach - public void initOptions() - { - this.playlistOptions = new JsonAppOptions(); - } - - @Test - public void readPlaylistM3u() throws IOException - { - File m3uPlaylistFile = TestUtil.createFileFromResource(this, "/playlists/m3u/playlist-utf8.m3u"); - - Playlist m3uPlaylist = PlaylistFactory.getPlaylist(m3uPlaylistFile.toPath(), null, playlistOptions); - assertNotNull(m3uPlaylist, "PlaylistFactory should read and construct M3U playlist"); - assertEquals(2, m3uPlaylist.getEntries().size(), "M3U playlist contains 2 tracks"); - } - - @Test - public void readPlaylistM3u8Aight() throws IOException - { - File m3uPlaylistFile = TestUtil.createFileFromResource(this, "/playlists/m3u/aight.m3u8"); - - Playlist m3uPlaylist = PlaylistFactory.getPlaylist(m3uPlaylistFile.toPath(), null, playlistOptions); - assertNotNull(m3uPlaylist, "PlaylistFactory should read and construct M3U playlist"); - assertEquals(265, m3uPlaylist.getEntries().size(), "M3U playlist contains 2 tracks"); - } - - @Test - public void readPlaylistPls() throws IOException - { - // Extended PLS (PLSv2) - File plsPlaylistFile = TestUtil.createFileFromResource(this, "/playlists/pls/playlist.pls"); - - Playlist plsPlaylist = PlaylistFactory.getPlaylist(plsPlaylistFile.toPath(), null, playlistOptions); - assertNotNull(plsPlaylist, "PlaylistFactory should read and construct PLS playlist"); - assertEquals(5, plsPlaylist.getEntries().size(), "PLS playlist contains 4 tracks"); - } -} diff --git a/src/test/java/listfix/playlists/itunes/ITunesPlaylistTests.java b/src/test/java/listfix/playlists/itunes/ITunesPlaylistTests.java deleted file mode 100644 index d28ccb0d..00000000 --- a/src/test/java/listfix/playlists/itunes/ITunesPlaylistTests.java +++ /dev/null @@ -1,122 +0,0 @@ -package listfix.playlists.itunes; - -import christophedelory.playlist.SpecificPlaylist; -import christophedelory.playlist.SpecificPlaylistFactory; -import christophedelory.playlist.plist.PlistPlaylist; -import listfix.io.IPlaylistOptions; -import listfix.model.playlists.Playlist; -import listfix.model.playlists.PlaylistEntry; -import listfix.model.playlists.itunes.ITunesFilePlaylistEntry; -import listfix.model.playlists.itunes.ITunesMediaLibrary; -import listfix.model.playlists.itunes.ITunesPlaylist; -import listfix.model.playlists.itunes.ITunesTrack; -import listfix.util.TestUtil; -import org.junit.jupiter.api.Test; - -import java.io.File; -import java.io.FileOutputStream; -import java.net.URI; -import java.net.URISyntaxException; -import java.nio.file.Path; -import java.util.*; - -/** - * @author jcaron, Borewit - */ -public class ITunesPlaylistTests -{ - - @Test - public void write_iTunes_music_library() throws Exception - { - File toOpen = TestUtil.createFileFromResource(this, "/playlists/itunes/iTunesMusicLibrary.xml"); - // File toOpen = new File("C:\\Users\\jcaron\\Desktop\\svnListfix\\testing\\iTunesTest.xml"); - SpecificPlaylist playlist = SpecificPlaylistFactory.getInstance().readFrom(toOpen); - PlistPlaylist plistList = (PlistPlaylist) playlist; - try (FileOutputStream stream = new FileOutputStream(toOpen)) - { - plistList.writeTo(stream, "UTF-8"); - } - } - - @Test - public void openPlaylist() throws Exception - { - final File toOpen = TestUtil.createFileFromResource(this, "/playlists/itunes/iTunesMusicLibrary.xml"); - - SpecificPlaylist playlist = SpecificPlaylistFactory.getInstance().readFrom(toOpen); - PlistPlaylist plistList = (PlistPlaylist) playlist; - try (FileOutputStream stream = new FileOutputStream(toOpen)) - { - plistList.writeTo(stream, "UTF-8"); - } - ITunesMediaLibrary list = new ITunesMediaLibrary(plistList); - Playlist myList = convertToListFixPlaylist(list, toOpen.toPath(), new IPlaylistOptions() - { - @Override - public boolean getAlwaysUseUNCPaths() - { - return false; - } - - @Override - public boolean getSavePlaylistsWithRelativePaths() - { - return false; - } - - @Override - public String getIgnoredSmallWords() - { - return ""; - } - - @Override - public int getMaxClosestResults() - { - return 0; - } - - @Override - public boolean getCaseInsensitiveExactMatching() - { - return true; - } - - @Override - public Set getPlaylistDirectories() - { - return new TreeSet<>(); - } - }); - } - - private static Playlist convertToListFixPlaylist(ITunesMediaLibrary list, Path playlistPath, IPlaylistOptions playListOptions) - { - List newList = new ArrayList<>(); - Map tracks = list.getTracks(); - - for (String id : tracks.keySet()) - { - ITunesTrack track = tracks.get(id); - try - { - URI trackUri = new URI(track.getLocation()); - File trackFile = new File(trackUri.getPath()); - newList.add(new ITunesFilePlaylistEntry(trackFile.toPath(), track.getArtist() + " - " + track.getName(), track.getDuration(), playlistPath, track)); - } - catch (URISyntaxException ex) - { - throw new RuntimeException(ex); - } - } - try - { - return new ITunesPlaylist(playlistPath.toFile(), newList, list, playListOptions); - } - catch (Exception ex) - { - throw new RuntimeException(ex); - } - } -} diff --git a/src/test/java/listfix/util/TestUtil.java b/src/test/java/listfix/util/TestUtil.java deleted file mode 100644 index 5ca82209..00000000 --- a/src/test/java/listfix/util/TestUtil.java +++ /dev/null @@ -1,14 +0,0 @@ -package listfix.util; - -import java.io.File; -import java.net.URL; - -public class TestUtil -{ - public static File createFileFromResource(Object testObject, String resourcePath) - { - URL url = testObject.getClass().getResource(resourcePath); - assert url != null; - return new File(url.getFile()); - } -} diff --git a/src/test/resources/playlists/itunes/iTunesMusicLibrary.xml b/src/test/resources/playlists/itunes/iTunesMusicLibrary.xml deleted file mode 100644 index 831d9ba9..00000000 --- a/src/test/resources/playlists/itunes/iTunesMusicLibrary.xml +++ /dev/null @@ -1,111803 +0,0 @@ - - - - - Major Version1 - Minor Version1 - Application Version10.1 - Features5 - Show Content Ratings - Music Folderfile://localhost/C:/Users/jcaron/Music/iTunes/iTunes%20Music/ - Library Persistent ID859AD5822049F2EA - Tracks - - 1157 - - Track ID1157 - NameDown In The Mission - ArtistLess Than Jake - AlbumLosers, Kings, And Things We Don't Understand - GenreSka/Punk - KindMPEG audio file - Size5595462 - Total Time168385 - Track Number14 - Track Count21 - Year1995 - Date Modified2009-07-05T22:07:17Z - Date Added2011-10-02T13:47:02Z - Bit Rate264 - Sample Rate44100 - Play Count4 - Play Date3428038781 - Play Date UTC2012-08-17T12:59:41Z - Skip Count4 - Skip Date2010-07-01T21:10:54Z - Artwork Count1 - Persistent ID2FB90C9724EB33DB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losers,%20Kings,%20and%20Things%20We%20Don't%20Understand%20(1995)/14%20-%20Down%20In%20The%20Mission.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1159 - - Track ID1159 - Name867-5309 (Jenny) - ArtistLess Than Jake - AlbumLosers, Kings, And Things We Don't Understand - GenreSka/Punk - KindMPEG audio file - Size4966362 - Total Time134713 - Track Number11 - Track Count21 - Year1995 - Date Modified2009-07-05T22:07:52Z - Date Added2011-10-02T13:47:02Z - Bit Rate293 - Sample Rate44100 - Play Count2 - Play Date3352958819 - Play Date UTC2010-04-01T13:26:59Z - Skip Count5 - Skip Date2012-08-07T21:47:41Z - Artwork Count1 - Persistent IDD6A6FE71C3EBA79D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losers,%20Kings,%20and%20Things%20We%20Don't%20Understand%20(1995)/11%20-%20867-5309%20(Jenny).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1161 - - Track ID1161 - NameEconolodged - ArtistLess Than Jake - AlbumLosers, Kings, And Things We Don't Understand - GenreSka/Punk - KindMPEG audio file - Size8461493 - Total Time248711 - Track Number5 - Track Count21 - Year1995 - Date Modified2009-07-05T22:08:29Z - Date Added2011-10-02T13:47:02Z - Bit Rate271 - Sample Rate44100 - Play Count3 - Play Date3424223275 - Play Date UTC2012-07-04T09:07:55Z - Skip Count6 - Skip Date2012-07-10T12:48:33Z - Artwork Count1 - Persistent IDD615C2261DDF264A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losers,%20Kings,%20and%20Things%20We%20Don't%20Understand%20(1995)/05%20-%20Econolodged.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1163 - - Track ID1163 - NameShotgun - ArtistLess Than Jake - AlbumPezcore - GenreSka/Punk - KindMPEG audio file - Size5866462 - Total Time176770 - Track Number5 - Track Count19 - Year1995 - Date Modified2009-08-29T19:05:00Z - Date Added2011-10-02T13:47:02Z - Bit Rate263 - Sample Rate44100 - Play Count2 - Play Date3391243025 - Play Date UTC2011-06-18T15:57:05Z - Skip Count3 - Skip Date2012-05-31T21:13:53Z - Artwork Count1 - Persistent ID687CFF294786D924 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Pezcore%20(1995)/05%20-%20Shotgun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1165 - - Track ID1165 - NameThrow the Brick - ArtistLess Than Jake - AlbumPezcore - GenreSka/Punk - KindMPEG audio file - Size4172343 - Total Time131056 - Track Number7 - Track Count19 - Year1995 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:02Z - Bit Rate254 - Sample Rate44100 - Play Count3 - Play Date3426428971 - Play Date UTC2012-07-29T21:49:31Z - Skip Count3 - Skip Date2011-02-04T00:45:03Z - Persistent ID5DDCD32E9EE682A8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Pezcore%20(1995)/07%20-%20Throw%20the%20Brick.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1167 - - Track ID1167 - NameGrowing Up On A Couch - ArtistLess Than Jake - AlbumPezcore - GenreSka/Punk - KindMPEG audio file - Size4941937 - Total Time151771 - Track Number8 - Track Count19 - Year1995 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:02Z - Bit Rate260 - Sample Rate44100 - Play Count3 - Play Date3387898709 - Play Date UTC2011-05-10T22:58:29Z - Skip Count1 - Skip Date2010-01-26T22:55:41Z - Persistent ID2E5CA3B47C13B4FF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Pezcore%20(1995)/08%20-%20Growing%20Up%20On%20A%20Couch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1169 - - Track ID1169 - NameDownbeat - ArtistLess Than Jake - AlbumPezcore - GenreSka/Punk - KindMPEG audio file - Size4354285 - Total Time131813 - Track Number10 - Track Count19 - Year1995 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:02Z - Bit Rate264 - Sample Rate44100 - Play Count1 - Play Date3353132964 - Play Date UTC2010-04-03T13:49:24Z - Skip Count5 - Skip Date2012-08-08T23:13:32Z - Persistent IDB51977DD70D3F9CF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Pezcore%20(1995)/10%20-%20Downbeat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1171 - - Track ID1171 - NameOne Last Cigarette - ArtistLess Than Jake - AlbumPezcore - GenreSka/Punk - KindMPEG audio file - Size6858365 - Total Time276871 - Track Number19 - Track Count19 - Year1995 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:02Z - Bit Rate198 - Sample Rate44100 - Play Count1 - Play Date3388832603 - Play Date UTC2011-05-21T18:23:23Z - Skip Count1 - Skip Date2010-06-10T13:00:55Z - Persistent ID2A78A23FC1CEEA95 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Pezcore%20(1995)/19%20-%20One%20Last%20Cigarette.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1173 - - Track ID1173 - NameMixology of Tom Collins - ArtistLess Than Jake - AlbumGoodbye, Blue And White - GenreSka/Punk - KindMPEG audio file - Size2039991 - Total Time126850 - Track Number3 - Track Count24 - Year2002 - Date Modified2009-08-29T20:43:00Z - Date Added2011-10-02T13:47:02Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3353078068 - Play Date UTC2010-04-02T22:34:28Z - Skip Count2 - Skip Date2011-06-21T20:18:25Z - Compilation - Artwork Count1 - Persistent ID1B1470AF4B7BBD97 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Goodbye%20Blue%20and%20White%20(2002)/03.%20mixology%20of%20tom%20collins.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1175 - - Track ID1175 - NameAutomatic - ArtistLess Than Jake - AlbumLosing Streak - GenreSka/Punk - KindMPEG audio file - Size4559808 - Total Time126406 - Track Number1 - Track Count16 - Year1996 - Date Modified2010-02-22T01:36:24Z - Date Added2011-10-02T13:47:02Z - Bit Rate288 - Sample Rate44100 - Play Count6 - Play Date3388840095 - Play Date UTC2011-05-21T20:28:15Z - Persistent ID39B74D703014CEB1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losing%20Streak%20(1996)/01%20-%20Automatic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1177 - - Track ID1177 - NameHappyman - ArtistLess Than Jake - AlbumLosing Streak - GenreSka/Punk - KindMPEG audio file - Size4499961 - Total Time119510 - Track Number2 - Track Count16 - Year1996 - Date Modified2010-02-22T01:36:29Z - Date Added2011-10-02T13:47:02Z - Bit Rate301 - Sample Rate44100 - Play Count7 - Play Date3426598646 - Play Date UTC2012-07-31T20:57:26Z - Skip Count1 - Skip Date2010-02-12T11:41:25Z - Persistent ID2E1F1B5C07AE57E7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losing%20Streak%20(1996)/02%20-%20Happyman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1179 - - Track ID1179 - Name9th At Pine - ArtistLess Than Jake - AlbumLosing Streak - GenreSka/Punk - KindMPEG audio file - Size4158053 - Total Time116323 - Track Number3 - Track Count16 - Year1996 - Date Modified2010-02-22T01:36:30Z - Date Added2011-10-02T13:47:02Z - Bit Rate285 - Sample Rate44100 - Play Count9 - Play Date3391436023 - Play Date UTC2011-06-20T21:33:43Z - Persistent ID8999CCC2EF0701DD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losing%20Streak%20(1996)/03%20-%209th%20At%20Pine.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1181 - - Track ID1181 - NameSugar In Your Gas Tank - ArtistLess Than Jake - AlbumLosing Streak - GenreSka/Punk - KindMPEG audio file - Size4359859 - Total Time127033 - Track Number4 - Track Count16 - Year1996 - Date Modified2008-11-23T00:04:26Z - Date Added2011-10-02T13:47:02Z - Bit Rate274 - Sample Rate44100 - Play Count5 - Play Date3428063185 - Play Date UTC2012-08-17T19:46:25Z - Persistent ID292612D74D056108 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losing%20Streak%20(1996)/04%20-%20Sugar%20In%20Your%20Gas%20Tank.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1183 - - Track ID1183 - NameJohny Quest Thinks We're Sellouts - ArtistLess Than Jake - AlbumLosing Streak - GenreSka/Punk - KindMPEG audio file - Size5827049 - Total Time169168 - Track Number7 - Track Count16 - Year1996 - Date Modified2008-11-23T00:04:43Z - Date Added2011-10-02T13:47:02Z - Bit Rate275 - Sample Rate44100 - Play Count3 - Play Date3360849571 - Play Date UTC2010-07-01T21:19:31Z - Persistent ID7A19460FCBCDBE68 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losing%20Streak%20(1996)/07%20-%20Johny%20Quest%20Thinks%20We're%20Sellouts.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1185 - - Track ID1185 - NameJen Doesn't Like Me Anymore - ArtistLess Than Jake - AlbumLosing Streak - GenreSka/Punk - KindMPEG audio file - Size6305940 - Total Time170736 - Track Number14 - Track Count16 - Year1996 - Date Modified2008-11-23T00:05:15Z - Date Added2011-10-02T13:47:02Z - Bit Rate295 - Sample Rate44100 - Play Count4 - Play Date3387979758 - Play Date UTC2011-05-11T21:29:18Z - Skip Count2 - Skip Date2012-06-08T22:08:17Z - Persistent IDC75CF5DEB496E107 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losing%20Streak%20(1996)/14%20-%20Jen%20Doesn't%20Like%20Me%20Anymore.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1187 - - Track ID1187 - NameRock-N-Roll Pizzeria - ArtistLess Than Jake - AlbumLosing Streak - GenreSka/Punk - KindMPEG audio file - Size4307456 - Total Time120920 - Track Number15 - Track Count16 - Year1996 - Date Modified2009-05-25T02:10:21Z - Date Added2011-10-02T13:47:02Z - Bit Rate284 - Sample Rate44100 - Play Count4 - Play Date3389611651 - Play Date UTC2011-05-30T18:47:31Z - Skip Count2 - Skip Date2012-08-09T00:18:37Z - Persistent ID9374E1725D05BA80 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losing%20Streak%20(1996)/15%20-%20Rock-N-Roll%20Pizzeria.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1189 - - Track ID1189 - NameLast One Out Of Liberty City - ArtistLess Than Jake - AlbumHello Rockview - GenreSka/Punk - KindMPEG audio file - Size4468349 - Total Time121417 - Track Number1 - Track Count14 - Year1998 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:02Z - Bit Rate294 - Sample Rate44100 - Play Count3 - Play Date3383659885 - Play Date UTC2011-03-22T21:31:25Z - Persistent ID078B2F73DD5C3FF4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Hello%20Rockview%20(1998)/01%20-%20Last%20One%20Out%20Of%20Liberty%20City.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1191 - - Track ID1191 - NameHelp Save The Youth Of America From Exploding - ArtistLess Than Jake - AlbumHello Rockview - GenreSka/Punk - KindMPEG audio file - Size6479909 - Total Time174027 - Track Number2 - Track Count14 - Year1998 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:03Z - Bit Rate297 - Sample Rate44100 - Play Count4 - Play Date3359005432 - Play Date UTC2010-06-10T13:03:52Z - Persistent ID49FA7204939F4576 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Hello%20Rockview%20(1998)/02%20-%20Help%20Save%20The%20Youth%20Of%20America%20From%20Exploding.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1193 - - Track ID1193 - NameFive State Drive - ArtistLess Than Jake - AlbumHello Rockview - GenreSka/Punk - KindMPEG audio file - Size6366659 - Total Time169142 - Track Number4 - Track Count14 - Year1998 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:03Z - Bit Rate301 - Sample Rate44100 - Play Count4 - Play Date3387544752 - Play Date UTC2011-05-06T20:39:12Z - Persistent ID8C7A014DEF1115B4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Hello%20Rockview%20(1998)/04%20-%20Five%20State%20Drive.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1195 - - Track ID1195 - NameHistory Of A Boring Town - ArtistLess Than Jake - AlbumHello Rockview - GenreSka/Punk - KindMPEG audio file - Size7339098 - Total Time202187 - Track Number7 - Track Count14 - Year1998 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:03Z - Bit Rate290 - Sample Rate44100 - Play Count2 - Play Date3357273093 - Play Date UTC2010-05-21T11:51:33Z - Persistent IDED049A77925BE562 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Hello%20Rockview%20(1998)/07%20-%20History%20Of%20A%20Boring%20Town.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1197 - - Track ID1197 - NameGreat American Sharpshooter - ArtistLess Than Jake - AlbumHello Rockview - GenreSka/Punk - KindMPEG audio file - Size3236393 - Total Time88946 - Track Number8 - Track Count14 - Year1998 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:03Z - Bit Rate290 - Sample Rate44100 - Play Count6 - Play Date3424207166 - Play Date UTC2012-07-04T04:39:26Z - Skip Count2 - Skip Date2010-09-14T18:03:38Z - Persistent IDD55AB3AF91CA7114 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Hello%20Rockview%20(1998)/08%20-%20Great%20American%20Sharpshooter.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1199 - - Track ID1199 - NameBig Crash - ArtistLess Than Jake - AlbumHello Rockview - GenreSka/Punk - KindMPEG audio file - Size5948460 - Total Time163186 - Track Number10 - Track Count14 - Year1998 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:03Z - Bit Rate291 - Sample Rate44100 - Play Count4 - Play Date3428066196 - Play Date UTC2012-08-17T20:36:36Z - Skip Count1 - Skip Date2011-02-04T11:58:59Z - Persistent ID7B0334CAE67EF044 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Hello%20Rockview%20(1998)/10%20-%20Big%20Crash.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1201 - - Track ID1201 - NameScott Farcas Takes It On The Chin - ArtistLess Than Jake - AlbumHello Rockview - GenreSka/Punk - KindMPEG audio file - Size5658163 - Total Time154488 - Track Number13 - Track Count14 - Year1998 - Date Modified2009-05-25T02:12:18Z - Date Added2011-10-02T13:47:03Z - Bit Rate292 - Sample Rate44100 - Play Count7 - Play Date3426570125 - Play Date UTC2012-07-31T13:02:05Z - Skip Count1 - Skip Date2012-07-11T13:37:30Z - Persistent IDBF5E80882AA65C9F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Hello%20Rockview%20(1998)/13%20-%20Scott%20Farcas%20Takes%20It%20On%20The%20Chin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1203 - - Track ID1203 - NameGainesville Rick City - ArtistLess Than Jake - AlbumBorders And Boundaries - GenreSka/Punk - KindMPEG audio file - Size4506707 - Total Time187611 - Year2000 - Date Modified2009-05-25T02:12:22Z - Date Added2011-10-02T13:47:03Z - Bit Rate192 - Sample Rate44100 - CommentsIts - Play Count2 - Play Date3354613333 - Play Date UTC2010-04-20T17:02:13Z - Skip Count1 - Skip Date2010-04-02T22:32:15Z - Persistent ID7F02A68327EA6A72 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Borders%20and%20Boundaries%20(2000)/07-less_than_jake-gainesville_rick_city-its.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1205 - - Track ID1205 - NameIs This Thing On - ArtistLess Than Jake - AlbumBorders And Boundaries - GenreSka/Punk - KindMPEG audio file - Size4485423 - Total Time186723 - Year2000 - Date Modified2009-05-25T02:12:25Z - Date Added2011-10-02T13:47:03Z - Bit Rate192 - Sample Rate44100 - CommentsIts - Play Count6 - Play Date3387289588 - Play Date UTC2011-05-03T21:46:28Z - Persistent IDD3FB5C4D97C7BE8C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Borders%20and%20Boundaries%20(2000)/10-less_than_jake-is_this_thing_on-its.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1207 - - Track ID1207 - NameGhosts Of You And Me - ArtistLess Than Jake - AlbumAnthem - GenreSka/Punk - KindMPEG audio file - Size4846679 - Total Time201508 - Year2003 - Date Modified2009-05-25T02:12:30Z - Date Added2011-10-02T13:47:06Z - Bit Rate192 - Sample Rate44100 - CommentsPh - Play Count1 - Play Date3387898557 - Play Date UTC2011-05-10T22:55:57Z - Skip Count1 - Skip Date2010-05-20T12:45:57Z - Persistent ID6C3151EB9E5B1854 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Anthem%20(2003)/Less%20Than%20Jake%20-%20Anthem/02-less_than_jake-ghosts_of_you_and_me-ph.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1209 - - Track ID1209 - NameLook What Happened The Last Time - ArtistLess Than Jake - AlbumAnthem - GenreSka/Punk - KindMPEG audio file - Size4478706 - Total Time186174 - Year2003 - Date Modified2009-08-29T20:50:08Z - Date Added2011-10-02T13:47:06Z - Bit Rate192 - Sample Rate44100 - CommentsPh - Play Count4 - Play Date3391518846 - Play Date UTC2011-06-21T20:34:06Z - Skip Count2 - Skip Date2010-03-30T12:48:34Z - Persistent ID0D49608E0E06AE16 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Anthem%20(2003)/Less%20Than%20Jake%20-%20Anthem/03-less_than_jake-look_what_happened_the_last_time-ph.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1211 - - Track ID1211 - NameThe Science Of Selling Yoursel - ArtistLess Than Jake - AlbumAnthem - GenreSka/Punk - KindMPEG audio file - Size4519462 - Total Time187872 - Year2003 - Date Modified2009-05-25T02:12:37Z - Date Added2011-10-02T13:47:07Z - Bit Rate192 - Sample Rate44100 - CommentsPh - Play Count3 - Play Date3354613145 - Play Date UTC2010-04-20T16:59:05Z - Skip Count4 - Skip Date2012-08-07T21:50:28Z - Sort NameScience Of Selling Yoursel - Persistent IDDE56F4CB35ED5617 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Anthem%20(2003)/Less%20Than%20Jake%20-%20Anthem/04-less_than_jake-the_science_of_selling_yourself_short-ph.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1213 - - Track ID1213 - NameShort Fuse Burning - ArtistLess Than Jake - AlbumAnthem - GenreSka/Punk - KindMPEG audio file - Size3368985 - Total Time139937 - Year2003 - Date Modified2009-05-25T02:12:40Z - Date Added2011-10-02T13:47:07Z - Bit Rate192 - Sample Rate44100 - CommentsPh - Play Count3 - Play Date3423904082 - Play Date UTC2012-06-30T16:28:02Z - Skip Count1 - Skip Date2010-01-27T09:52:57Z - Persistent IDB65D280282B59E86 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Anthem%20(2003)/Less%20Than%20Jake%20-%20Anthem/05-less_than_jake-short_fuse_burning-ph.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1215 - - Track ID1215 - NameThe Brightest Bulb Has Burned - ArtistLess Than Jake - AlbumAnthem - GenreSka/Punk - KindMPEG audio file - Size7071725 - Total Time294217 - Year2003 - Date Modified2009-05-25T02:12:45Z - Date Added2011-10-02T13:47:07Z - Bit Rate192 - Sample Rate44100 - CommentsPh - Play Count2 - Play Date3424297548 - Play Date UTC2012-07-05T05:45:48Z - Skip Count1 - Skip Date2010-03-29T13:21:05Z - Sort NameBrightest Bulb Has Burned - Persistent IDEB7B0C8741E79A90 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Anthem%20(2003)/Less%20Than%20Jake%20-%20Anthem/13-less_than_jake-the_brightest_bulb_has_burned_out-ph.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1217 - - Track ID1217 - NameSurrender - ArtistLess Than Jake - AlbumAnthem - GenreSka/Punk - KindMPEG audio file - Size5331303 - Total Time221701 - Year2003 - Date Modified2009-05-25T02:12:50Z - Date Added2011-10-02T13:47:07Z - Bit Rate192 - Sample Rate44100 - CommentsPh - Play Count4 - Play Date3424209307 - Play Date UTC2012-07-04T05:15:07Z - Skip Count1 - Skip Date2010-04-19T11:41:00Z - Persistent ID4844196BCD59B8D4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Anthem%20(2003)/Less%20Than%20Jake%20-%20Anthem/14-less_than_jake-surrender-ph.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1219 - - Track ID1219 - NameOverrated (Everything Is) - ArtistLess Than Jake - AlbumIn With The Out Crowd - GenreSka/Punk - KindMPEG audio file - Size5534360 - Total Time190484 - Track Number3 - Year2006 - Date Modified2009-05-25T02:12:50Z - Date Added2011-10-02T13:47:07Z - Bit Rate232 - Sample Rate44100 - CommentsTry before you buy! - Play Count2 - Play Date3360849402 - Play Date UTC2010-07-01T21:16:42Z - Skip Count2 - Skip Date2011-06-07T22:00:14Z - Persistent ID76451D0FAA18D261 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/In%20With%20The%20Out%20Crowd%20(2006)/03-less_than_jake-overrated_(everything_is).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1221 - - Track ID1221 - NameFall Apart - ArtistLess Than Jake - AlbumIn With The Out Crowd - GenreSka/Punk - KindMPEG audio file - Size5765982 - Total Time189884 - Track Number4 - Year2006 - Date Modified2009-05-25T02:12:50Z - Date Added2011-10-02T13:47:07Z - Bit Rate242 - Sample Rate44100 - CommentsTry before you buy! - Play Count2 - Play Date3352699043 - Play Date UTC2010-03-29T13:17:23Z - Skip Count1 - Skip Date2011-05-21T20:32:44Z - Persistent IDC29B5E1DE4A9A9BC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/In%20With%20The%20Out%20Crowd%20(2006)/04-less_than_jake-fall_apart.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1223 - - Track ID1223 - NameRest of My Life - ArtistLess Than Jake - AlbumIn With The Out Crowd - GenreSka/Punk - KindMPEG audio file - Size6276704 - Total Time213106 - Track Number8 - Year2006 - Date Modified2009-05-25T02:12:50Z - Date Added2011-10-02T13:47:07Z - Bit Rate235 - Sample Rate44100 - CommentsTry before you buy! - Play Count3 - Play Date3359005840 - Play Date UTC2010-06-10T13:10:40Z - Skip Count2 - Skip Date2011-05-10T12:52:09Z - Persistent IDA8D26E5DE2840DBD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/In%20With%20The%20Out%20Crowd%20(2006)/08-less_than_jake-rest_of_my_life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1225 - - Track ID1225 - NameMostly Memories - ArtistLess Than Jake - AlbumIn With The Out Crowd - GenreSka/Punk - KindMPEG audio file - Size5301051 - Total Time193802 - Track Number9 - Year2006 - Date Modified2009-05-25T02:12:50Z - Date Added2011-10-02T13:47:07Z - Bit Rate218 - Sample Rate44100 - CommentsTry before you buy! - Play Count4 - Play Date3354770753 - Play Date UTC2010-04-22T12:45:53Z - Skip Count1 - Skip Date2012-04-19T22:41:12Z - Persistent IDC4A49A2A1736B947 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/In%20With%20The%20Out%20Crowd%20(2006)/09-less_than_jake-mostly_memories.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1227 - - Track ID1227 - NameLet Her Go - ArtistLess Than Jake - AlbumIn With The Out Crowd - GenreSka/Punk - KindMPEG audio file - Size3767709 - Total Time143360 - Track Number10 - Year2006 - Date Modified2009-05-25T02:12:50Z - Date Added2011-10-02T13:47:07Z - Bit Rate210 - Sample Rate44100 - CommentsTry before you buy! - Play Count7 - Play Date3427207133 - Play Date UTC2012-08-07T21:58:53Z - Skip Count1 - Skip Date2012-07-10T12:45:46Z - Persistent IDFFD0C2D644422FFC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/In%20With%20The%20Out%20Crowd%20(2006)/10-less_than_jake-let_her_go.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1229 - - Track ID1229 - NameHopeless Case - ArtistLess Than Jake - AlbumIn With The Out Crowd - GenreSka/Punk - KindMPEG audio file - Size6812600 - Total Time238785 - Track Number11 - Year2006 - Date Modified2009-05-25T02:12:50Z - Date Added2011-10-02T13:47:07Z - Bit Rate228 - Sample Rate44100 - CommentsTry before you buy! - Play Count5 - Play Date3379568697 - Play Date UTC2011-02-03T13:04:57Z - Skip Count2 - Skip Date2012-05-18T13:25:34Z - Persistent ID579EFC8F1DC3E5A8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/In%20With%20The%20Out%20Crowd%20(2006)/11-less_than_jake-hopeless_case.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1231 - - Track ID1231 - NameThe Chase Is On - ArtistSkyzoo - Album ArtistVA - AlbumGrand Theft Auto: Statik Selektah's the Lost and Damned - EP - GenreHip-Hop/Rap - KindPurchased AAC audio file - Size5641830 - Total Time159635 - Disc Number1 - Disc Count1 - Track Number5 - Track Count6 - Year2009 - Date Modified2010-03-13T18:59:20Z - Date Added2011-10-02T13:47:07Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2012-05-30T21:51:34Z - Release Date2009-02-17T08:00:00Z - Compilation - Artwork Count1 - Sort NameChase Is On - Persistent IDAFBACD1E0DBDFEC7 - Explicit - Track TypeFile - Purchased - Locationfile://localhost/C:/Users/jcaron/Music/iTunes/iTunes%20Music/Compilations/Grand%20Theft%20Auto_%20Statik%20Selektah's%20the/05%20The%20Chase%20Is%20On.m4a - File Folder Count4 - Library Folder Count1 - - 1233 - - Track ID1233 - NameJailbait - ArtistDrive By Audio - Album ArtistDrive By Audio - AlbumJailbait (The Music of: Grand Theft Auto 4: The Lost and Damned) - Single - GenreSoundtrack - KindPurchased AAC audio file - Size8175840 - Total Time233674 - Disc Number1 - Disc Count1 - Track Number1 - Track Count1 - Year2009 - Date Modified2009-05-26T19:36:04Z - Date Added2011-10-02T13:47:07Z - Bit Rate256 - Sample Rate44100 - Skip Count3 - Skip Date2012-08-17T13:13:56Z - Release Date2009-02-17T08:00:00Z - Artwork Count1 - Persistent ID4F84E424DB6408AB - Track TypeFile - Purchased - Locationfile://localhost/C:/Users/jcaron/Music/iTunes/iTunes%20Music/Drive%20By%20Audio/Jailbait%20(The%20Music%20of_%20Grand%20Theft%20Auto/01%20Jailbait.m4a - File Folder Count4 - Library Folder Count1 - - 1235 - - Track ID1235 - NameVagabond - ArtistGreenskeepers - Album ArtistVA - AlbumThe Music of Grand Theft Auto IV - GenreSoundtrack - KindPurchased AAC audio file - Size6327486 - Total Time179095 - Disc Number1 - Disc Count1 - Track Number10 - Track Count16 - Year2008 - Date Modified2010-03-13T18:59:21Z - Date Added2011-10-02T13:47:07Z - Bit Rate256 - Sample Rate44100 - Release Date2008-05-20T07:00:00Z - Compilation - Artwork Count1 - Sort AlbumMusic of Grand Theft Auto IV - Persistent ID711E3839E21A6109 - Track TypeFile - Purchased - Locationfile://localhost/C:/Users/jcaron/Music/iTunes/iTunes%20Music/Compilations/The%20Music%20of%20Grand%20Theft%20Auto%20IV/10%20Vagabond.m4a - File Folder Count4 - Library Folder Count1 - - 1237 - - Track ID1237 - NameLiquor Store - ArtistLess Than Jake - AlbumPezcore - GenreSka/Punk - KindMPEG audio file - Size5377508 - Total Time164179 - Track Number1 - Track Count19 - Year1995 - Date Modified2009-06-01T19:30:00Z - Date Added2011-10-02T13:47:07Z - Bit Rate261 - Sample Rate44100 - Play Count3 - Play Date3353649004 - Play Date UTC2010-04-09T13:10:04Z - Skip Count3 - Skip Date2012-08-09T11:22:41Z - Persistent ID63C4A717E4576311 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Pezcore%20(1995)/01%20-%20Liquor%20Store.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1239 - - Track ID1239 - NameEvery Planet We Reach Is Dead - ArtistGorillaz - Album ArtistGorillaz - ComposerGorillaz - AlbumDemon Days - GenreRock - KindMPEG audio file - Size11780009 - Total Time293400 - Track Number8 - Year2005 - Date Modified2009-06-23T23:18:46Z - Date Added2011-10-02T13:47:07Z - Bit Rate320 - Sample Rate48000 - CommentsA side project doesn't usually hit gold, especially when said project is a quirky virtual collective fronted by cartoon characters. But the first, self-titled album by Gorillaz--the brainchild of illustrator Jamie Hewlett and Blur frontman Damon Albarn--a - Play Count5 - Play Date3414237419 - Play Date UTC2012-03-10T19:16:59Z - Artwork Count1 - Persistent IDA21D7E85220F8012 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Gorillaz%5BDemon%20Days%5D-08.Every%20Planet%20We%20Reach%20Is%20Dead.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1241 - - Track ID1241 - NameThe Longest Road - ArtistMorgan Page Ft. Lissie - Album ArtistMorgan Page - AlbumElevate - GenreElectronic - KindMPEG audio file - Size7979008 - Total Time343170 - Track Number1 - Year2008 - Date Modified2009-07-04T22:44:52Z - Date Added2011-10-02T13:47:07Z - Bit Rate185 - Sample Rate44100 - Play Count4 - Play Date3426408808 - Play Date UTC2012-07-29T16:13:28Z - Skip Count1 - Skip Date2012-06-11T13:43:44Z - Sort NameLongest Road - Persistent IDA13F50DC85A5CE19 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/morgan%20page%20-%20elevate%20(2008)/01-morgan%20page%20featuring%20lissie%20-%20the%20longest%20road.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1243 - - Track ID1243 - NameThe Longest Road (Morgan Page Radio Edit) - ArtistMorgan Page feat. Lissie - AlbumThe Longest Road (Remixes) - GenreHouse - KindMPEG audio file - Size9189504 - Total Time229694 - Track Number1 - Track Count11 - Year2008 - Date Modified2009-06-25T19:55:52Z - Date Added2011-10-02T13:47:07Z - Bit Rate320 - Sample Rate44100 - CommentsEUPHORiC / 067003506151 - Play Date3348760031 - Play Date UTC2010-02-11T23:07:11Z - Sort AlbumLongest Road (Remixes) - Sort NameLongest Road (Morgan Page Radio Edit) - Persistent ID5B110016E65A2725 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/01-morgan_page_feat_lissie-the_longest_road__morgan_page_radio_edit-euphoric.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1245 - - Track ID1245 - NameWhere The Party's At - ArtistTonite Only - Album ArtistThe Ministy of Sound - AlbumThe Annual 2007 Disc 2 - GenreDance - KindMPEG audio file - Size6078295 - Total Time187219 - Track Number2 - Year2006 - Date Modified2009-08-29T19:19:42Z - Date Added2011-10-02T13:47:07Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3414237950 - Play Date UTC2012-03-10T19:25:50Z - Skip Count1 - Skip Date2012-07-16T14:00:14Z - Artwork Count1 - Sort AlbumAnnual 2007 Disc 2 - Sort Album ArtistMinisty of Sound - Persistent ID5F2213BBD21C7153 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/02.%20Tonite%20Only%20-%20Where%20The%20Party's%20At.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1247 - - Track ID1247 - NameThe Diary of Jane (Sean Tyas Remix) - ArtistCarl B Feat Breaking Benjamin - AlbumThe Diary of Jane__Incl Sean Tyas Remix Vinyl - GenreTrance - KindMPEG audio file - Size14489574 - Total Time492068 - Track Number2 - Year2007 - Date Modified2009-05-29T02:25:18Z - Date Added2011-10-02T13:47:07Z - Bit Rate235 - Sample Rate44100 - CommentsSDS R0ckZ - Play Count1 - Play Date3414238627 - Play Date UTC2012-03-10T19:37:07Z - Skip Count2 - Skip Date2012-04-19T22:46:48Z - Sort AlbumDiary of Jane__Incl Sean Tyas Remix Vinyl - Sort NameDiary of Jane (Sean Tyas Remix) - Persistent ID543D39DA52E4CB61 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/02-carl_b_feat_breaking_benjamin-the_diary_of_jane_sean_tyas_remix-sds.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1249 - - Track ID1249 - NameThe Sweet Escape (Feat. Akon) - ArtistGwen Stefani - AlbumThe Sweet Escape - GenrePop - KindMPEG audio file - Size9864926 - Total Time246517 - Track Number2 - Year2006 - Date Modified2007-04-23T22:57:20Z - Date Added2011-10-02T13:47:07Z - Bit Rate320 - Sample Rate44100 - Commentswww.torrentazos.com - Play Count2 - Play Date3424287753 - Play Date UTC2012-07-05T03:02:33Z - Skip Count1 - Skip Date2011-05-13T22:05:40Z - Sort AlbumSweet Escape - Sort NameSweet Escape (Feat. Akon) - Persistent ID30106353598050E8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/02-gwen_stefani-the_sweet_escape_(ft_akon)_-_www.torrentazos.com.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1251 - - Track ID1251 - NamePerfect (Funabashi Remix) - ArtistMarkus Schulz feat. Dauby - AlbumPerfect Remixes [WEB 2008] - GenreElectronic - KindMPEG audio file - Size20702947 - Total Time515004 - Track Number2 - Track Count4 - Year2008 - Date Modified2009-05-29T02:25:25Z - Date Added2011-10-02T13:47:07Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3414239388 - Play Date UTC2012-03-10T19:49:48Z - Skip Count1 - Skip Date2010-09-07T22:12:40Z - Persistent IDB61C7E68DB2F79BC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/02-markus_schulz_feat._dauby_-_perfect__funabashi_remix-mr.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1253 - - Track ID1253 - NameThat's Not My Name - ArtistThe Ting Tings - Album ArtistThe Ting Tings - ComposerDeMartino/White - AlbumWe Started Nothing - GenreRock - KindMPEG audio file - Size7435462 - Total Time312006 - Track Number2 - Year2008 - Date Modified2009-05-29T02:25:26Z - Date Added2011-10-02T13:47:08Z - Bit Rate190 - Sample Rate44100 - Comments7908DF0A - Play Count2 - Play Date3424238419 - Play Date UTC2012-07-04T13:20:19Z - Skip Count2 - Skip Date2012-07-30T13:26:29Z - Sort Album ArtistTing Tings - Sort ArtistTing Tings - Persistent ID8DB009CE9023C5D8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/02-the_ting_tings-thats_not_my_name.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1255 - - Track ID1255 - NamePjanoo (Original Club Mix) - ArtistEric Prydz - AlbumMinistry of Sound - Club Files Winter 2009 - GenreDance - KindMPEG audio file - Size15386438 - Total Time450951 - Track Number4 - Year2008 - Date Modified2009-05-29T02:25:30Z - Date Added2011-10-02T13:47:08Z - Bit Rate272 - Sample Rate44100 - Play Count1 - Play Date3356249144 - Play Date UTC2010-05-09T15:25:44Z - Skip Count2 - Skip Date2012-05-01T13:31:43Z - Artwork Count1 - Persistent IDBAB9F038BCC81E27 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/04_-_eric_prydz_-_pjanoo_(original_club_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1257 - - Track ID1257 - NameThird World Lover - ArtistKid Koala And Dynomite D - AlbumBombay 2 (Electric Vindaloo) - GenreElectronic - KindMPEG audio file - Size8049575 - Total Time334471 - Track Number4 - Year2001 - Date Modified2009-08-29T19:27:21Z - Date Added2011-10-02T13:47:08Z - Bit Rate192 - Sample Rate44100 - CommentsTeam RNS - Play Count1 - Play Date3346584474 - Play Date UTC2010-01-17T18:47:54Z - Skip Count1 - Skip Date2009-07-05T23:58:07Z - Artwork Count1 - Persistent ID68D6B1008A7742C0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Kid%20Koala%20and%20Dynomite%20D%20-%20Third%20World%20Lover.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1259 - - Track ID1259 - NameTrick Daddy-Dro in the Wind - ArtistCee-Lo - AlbumBest of Ceelaborations - GenreRap - KindMPEG audio file - Size6327246 - Total Time263627 - Year2002 - Date Modified2010-03-07T19:46:54Z - Date Added2011-10-02T13:47:08Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3424209570 - Play Date UTC2012-07-04T05:19:30Z - Skip Count3 - Skip Date2012-06-11T13:43:47Z - Persistent IDBB72B9354B319D51 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Cee%20Lo%20&%20Trick%20Daddy%20-%20Dro%20in%20the%20Wind.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1261 - - Track ID1261 - NameSky Is Falling - ArtistBlackalicious - AlbumBlazing Arrow - GenreHip-Hop - KindMPEG audio file - Size3529792 - Total Time147069 - Track Number3 - Year2002 - Date Modified2002-05-17T01:20:20Z - Date Added2011-10-02T13:47:08Z - Bit Rate192 - Sample Rate44100 - Comments4HM - Play Count3 - Play Date3368039607 - Play Date UTC2010-09-23T02:33:27Z - Skip Count3 - Skip Date2010-11-13T11:59:50Z - Persistent IDC6C9B97A369F06EB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Blackalicious%20-%20Sky%20is%20falling.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1263 - - Track ID1263 - NamePigeon - ArtistCannibal Ox - AlbumThe Cold Vein - GenreHip-Hop - KindMPEG audio file - Size10085360 - Total Time420205 - Year2001 - Date Modified2009-08-29T17:38:29Z - Date Added2011-10-02T13:47:08Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3368036514 - Play Date UTC2010-09-23T01:41:54Z - Skip Count3 - Skip Date2012-08-05T13:27:01Z - Sort AlbumCold Vein - Persistent IDCEBAC60F325BC6A4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Cannibal%20Ox%20-%20Pigeon.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1265 - - Track ID1265 - NameBran's Freestyle - ArtistCKY2K - KindMPEG audio file - Size2403521 - Total Time149577 - Date Modified2009-08-29T17:33:33Z - Date Added2011-10-02T13:47:08Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3427206990 - Play Date UTC2012-08-07T21:56:30Z - Skip Count4 - Skip Date2012-06-29T22:30:41Z - Persistent ID9ED3CE8F0A09A26B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/CKY2K%20-%20Bran's%20Freestyle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1267 - - Track ID1267 - NamePushing Buttons - ArtistEyedea And Abilities - AlbumPushing Buttons (12 Inch) - GenreHip-Hop - KindMPEG audio file - Size6074962 - Total Time252395 - Track Number1 - Year2000 - Date Modified2009-08-29T19:23:55Z - Date Added2011-10-02T13:47:08Z - Bit Rate192 - Sample Rate44100 - Comments[dsp] omegatron [dsp] - Play Count4 - Play Date3362222525 - Play Date UTC2010-07-17T18:42:05Z - Artwork Count1 - Persistent ID1C906EBE0ABF8843 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Eyedea%20and%20Abilities%20-%20Pushing%20Buttons.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1269 - - Track ID1269 - NameDamn it Feels Good to be a Gangsta - ArtistGeto Boys - KindMPEG audio file - Size7422050 - Total Time309263 - Track Number1 - Date Modified2010-03-13T23:54:41Z - Date Added2011-10-02T13:47:09Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3368042721 - Play Date UTC2010-09-23T03:25:21Z - Skip Count3 - Skip Date2012-06-14T20:10:18Z - Persistent IDEED75DEC8989BBD3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Geto%20Boys%20-%20Damn%20it%20Feels%20Good%20to%20be%20a%20Gangsta.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1271 - - Track ID1271 - NameMoon Sequence - ArtistThe Herbaliser - AlbumVery Mercenary - GenreHip-Hop - KindMPEG audio file - Size9069707 - Total Time378462 - Track Number6 - Year1999 - Date Modified2000-02-22T23:48:50Z - Date Added2011-10-02T13:47:10Z - Bit Rate192 - Sample Rate44100 - Comments[RNS] BaCdaFuCuP [RNS] - Play Count1 - Play Date3348718811 - Play Date UTC2010-02-11T11:40:11Z - Skip Count2 - Skip Date2011-05-30T16:49:58Z - Sort ArtistHerbaliser - Persistent ID45A81DA17B70703A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Herbalizer%20-%20Moon%20Sequence.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1273 - - Track ID1273 - NameBecause I Got It Like That - ArtistJungle Brothers - AlbumStraight Out The Jungle - GenreHip-Hop - KindMPEG audio file - Size5072602 - Total Time211356 - Year1988 - Date Modified2009-01-13T02:31:20Z - Date Added2011-10-02T13:47:11Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3389604821 - Play Date UTC2011-05-30T16:53:41Z - Skip Count1 - Skip Date2010-02-21T18:56:39Z - Persistent IDD9DD6EF0E2D10300 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Jungle%20Brothers%20-%20Because%20I%20Got%20It%20Like%20That.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1275 - - Track ID1275 - NameQuality Control - ArtistJurassic 5 - AlbumQuality Control - GenreHip-Hop - KindMPEG audio file - Size6925566 - Total Time288992 - Track Number4 - Year2000 - Date Modified2001-03-06T03:45:02Z - Date Added2011-10-02T13:47:11Z - Bit Rate192 - Sample Rate44100 - Comments[EGO] Konfusion [EGO] - Play Count4 - Play Date3426688053 - Play Date UTC2012-08-01T21:47:33Z - Persistent ID31BE81137EA56ED8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Jurassic%205%20-%20Quality%20Control.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1277 - - Track ID1277 - NameCold As Ice(Album Edit) - ArtistM.O.P - AlbumCold As Ice (Vinyl) - GenreHip-Hop - KindMPEG audio file - Size6744928 - Total Time280163 - Track Number2 - Year2000 - Date Modified2009-08-29T19:24:53Z - Date Added2011-10-02T13:47:12Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3424203859 - Play Date UTC2012-07-04T03:44:19Z - Skip Count1 - Skip Date2012-05-15T13:37:53Z - Artwork Count1 - Persistent ID5B90A959C7422BD2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/M.O.P%20-%20Cold%20As%20Ice%20(Album%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1279 - - Track ID1279 - NameI Changed My Mind [Rattlesnake Mix] - ArtistQuannum - AlbumI Changed My Mind (Single) - KindMPEG audio file - Size6366128 - Total Time316865 - Date Modified2009-08-29T19:39:42Z - Date Added2011-10-02T13:47:13Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3424193629 - Play Date UTC2012-07-04T00:53:49Z - Skip Count2 - Skip Date2012-07-16T13:32:09Z - Artwork Count1 - Persistent ID1F0D941AF5F22AFA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Quannum%20-%20I%20Changed%20My%20Mind%20(Rmx1).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1281 - - Track ID1281 - NameIf You Mother Only Knew - ArtistRozel - KindMPEG audio file - Size11805520 - Total Time491467 - Date Modified2009-08-29T17:33:57Z - Date Added2011-10-02T13:47:13Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-01T22:15:28Z - Persistent ID16554DA0DD1F1701 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Rozel%20-%20If%20You%20Mother%20Only%20Knew.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1283 - - Track ID1283 - NameLalala - ArtistSaul Williams - AlbumAmethyst Rock Star - GenreRap - KindMPEG audio file - Size3850361 - Total Time160653 - Year2001 - Date Modified2001-05-17T21:02:54Z - Date Added2011-10-02T13:47:13Z - Bit Rate192 - Sample Rate44100 - Commentsi love morgoth - Play Count1 - Play Date3368050292 - Play Date UTC2010-09-23T05:31:32Z - Skip Count3 - Skip Date2012-07-26T13:26:02Z - Persistent ID20C55F9036AEBD58 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Saul%20Williams%20-%20Lalala.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1285 - - Track ID1285 - NameNiggas, Way Back - ArtistSaul Williams - KindMPEG audio file - Size4366239 - Total Time272222 - Date Modified2009-08-29T17:34:15Z - Date Added2011-10-02T13:47:14Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3425279520 - Play Date UTC2012-07-16T14:32:00Z - Skip Count3 - Skip Date2012-05-17T13:08:49Z - Persistent ID819119EA7C956607 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Saul%20Williams%20-%20Niggas,%20Way%20Back.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1287 - - Track ID1287 - NameIambic 5 Poetry - ArtistSquarepusher - KindMPEG audio file - Size5301238 - Total Time330684 - Date Modified2009-08-29T17:32:47Z - Date Added2011-10-02T13:47:14Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2010-01-17T21:58:23Z - Persistent ID393391CDE3E51190 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Squarepusher%20-%20Iambic%205%20Poetry.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1289 - - Track ID1289 - NameT.R.O.Y. (They Reminisce Over You) - ArtistPete Rock & CL Smooth - AlbumMecca and the Soul Brother - KindMPEG audio file - Size4256123 - Total Time262530 - Date Modified2009-08-29T19:40:58Z - Date Added2011-10-02T13:47:14Z - Bit Rate128 - Sample Rate44100 - Play Count5 - Play Date3349873845 - Play Date UTC2010-02-24T20:30:45Z - Skip Count3 - Skip Date2012-05-15T21:43:37Z - Artwork Count1 - Persistent IDB59292A54D292B12 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pete%20Rock%20&%20CL%20Smooth%20-%20T.R.O.Y.%20(They%20Reminisce%20Over%20You).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1291 - - Track ID1291 - NameOnetwothree (Ft. El Fudge) - ArtistThe Masterminds - AlbumLive from Area 51 - GenreHip-Hop - KindMPEG audio file - Size6880305 - Total Time282383 - Year2002 - Date Modified2009-08-29T19:25:37Z - Date Added2011-10-02T13:47:14Z - Bit Rate192 - Sample Rate44100 - CommentsAlterego Cms2k2 - Play Count3 - Play Date3389709094 - Play Date UTC2011-05-31T21:51:34Z - Skip Count1 - Skip Date2010-04-23T17:57:34Z - Artwork Count1 - Sort ArtistMasterminds - Persistent ID9D1EE0789C5E8ABE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/The%20Masterminds%20-%20One%20Two%20Three%20(ft.%20el%20fudge).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1293 - - Track ID1293 - NameAbusing The Rib - ArtistAtmosphere - AlbumHeadshots Se7En - KindMPEG audio file - Size4140145 - Total Time258115 - Date Modified2009-07-06T04:40:22Z - Date Added2011-10-02T13:47:14Z - Bit Rate128 - Sample Rate44100 - Play Count4 - Play Date3424216920 - Play Date UTC2012-07-04T07:22:00Z - Persistent ID5237B97F6D4001C5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Atmosphere%20&%20Slug/Atmosphere%20-%20Abusing%20The%20Rib.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1295 - - Track ID1295 - NameThe Woman With The Tattooed Hands - ArtistAtmosphere - AlbumLucy Ford: The Atmosphere EPs - KindMPEG audio file - Size3365908 - Total Time210207 - Date Modified2009-07-06T04:03:28Z - Date Added2011-10-02T13:47:14Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3426166821 - Play Date UTC2012-07-26T21:00:21Z - Skip Count3 - Skip Date2012-04-23T11:32:03Z - Sort NameWoman With The Tattooed Hands - Persistent ID324F42A9A310E043 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Atmosphere%20&%20Slug/Atmosphere%20-%20The%20Woman%20With%20The%20Tattooed%20Hands.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1297 - - Track ID1297 - NamePants on Fire - ArtistBuck65 - AlbumMan Overboard - GenreAlternRock - KindMPEG audio file - Size9322722 - Total Time384000 - Track Number14 - Year2001 - Date Modified2009-08-29T19:22:28Z - Date Added2011-10-02T13:47:14Z - Bit Rate192 - Sample Rate44100 - Commentscarlsworthy - Play Count4 - Play Date3426427617 - Play Date UTC2012-07-29T21:26:57Z - Skip Count2 - Skip Date2012-06-27T15:08:58Z - Artwork Count1 - Persistent IDD0FE620414B0A967 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Buck65/Buck65%20-%20Pants%20On%20Fire.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1299 - - Track ID1299 - NameMoked Out - ArtistMoka Only - Album ArtistVA - AlbumHiss 2 - Hissteria - GenreHip-Hop - KindMPEG audio file - Size7430043 - Total Time309603 - Year2001 - Date Modified2010-03-13T19:59:22Z - Date Added2011-10-02T13:47:14Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3376733502 - Play Date UTC2011-01-01T17:31:42Z - Skip Count1 - Skip Date2010-01-18T22:40:11Z - Persistent ID553741C5D986FE80 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Moka%20Only/Moka%20Only%20-%20Moked%20Out.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1301 - - Track ID1301 - NameFuturama - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size6183868 - Total Time247745 - Year2002 - Date Modified2009-07-05T22:13:17Z - Date Added2011-10-02T13:47:15Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424325266 - Play Date UTC2012-07-05T13:27:46Z - Skip Count1 - Skip Date2012-05-10T21:27:27Z - Artwork Count1 - Sort AlbumFuture is Now - Persistent ID616397151BB23CC3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/01%20Futurama.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1303 - - Track ID1303 - NameThe CIA is Trying to Kill Me - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size6293988 - Total Time261799 - Year2002 - Date Modified2009-07-05T22:12:58Z - Date Added2011-10-02T13:47:15Z - Bit Rate192 - Sample Rate44100 - Play Date3390397530 - Play Date UTC2011-06-08T21:05:30Z - Sort AlbumFuture is Now - Sort NameCIA is Trying to Kill Me - Persistent ID94228BE2FF19D763 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/03%20the%20CIA%20is%20tryin%20to%20kill%20me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1305 - - Track ID1305 - NameBlack Helicopters - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size5929586 - Total Time247040 - Year2002 - Date Modified2009-07-05T22:10:13Z - Date Added2011-10-02T13:47:15Z - Bit Rate192 - Sample Rate44100 - Sort AlbumFuture is Now - Persistent IDC10167B964F8636C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/09%20black%20helicopters.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1307 - - Track ID1307 - NameIt's Us - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size5728187 - Total Time238654 - Year2002 - Date Modified2009-07-05T22:10:13Z - Date Added2011-10-02T13:47:15Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3423839861 - Play Date UTC2012-06-29T22:37:41Z - Sort AlbumFuture is Now - Persistent ID3009830D71757437 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/12%20its%20us.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1309 - - Track ID1309 - NameThe CIA is Trying to Kill Me (Remix) - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size6725262 - Total Time279771 - Year2002 - Date Modified2009-07-05T22:10:33Z - Date Added2011-10-02T13:47:16Z - Bit Rate192 - Sample Rate44100 - Play Date3391145474 - Play Date UTC2011-06-17T12:51:14Z - Skip Date2010-02-10T15:39:48Z - Sort AlbumFuture is Now - Sort NameCIA is Trying to Kill Me (Remix) - Persistent IDF857272F6B5F5725 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/16%20the%20cia%20is%20trying%20to%20kill%20me%20remix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1311 - - Track ID1311 - NameGet by - ArtistTalib Kweli - AlbumQuality - GenreA Capella - KindMPEG audio file - Size2727125 - Total Time113606 - Year2002 - Date Modified2009-07-05T22:19:12Z - Date Added2011-10-02T13:47:16Z - Bit Rate192 - Sample Rate44100 - Persistent ID350632769777FF95 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Talib%20Kweli/Talib%20Kweli%20-%20Quality%20(Album%20Sampler%20Promo%20-%202002)/06-talib_kweli-get_by-cms.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1313 - - Track ID1313 - NameHere's what's left - ArtistRJD2 - AlbumHere's what's left VLS - GenreHip-Hop - KindMPEG audio file - Size8568711 - Total Time355761 - Track Number1 - Year2002 - Date Modified2009-07-05T22:17:54Z - Date Added2011-10-02T13:47:16Z - Bit Rate192 - Sample Rate44100 - Commentsswol - Play Count3 - Play Date3426426427 - Play Date UTC2012-07-29T21:07:07Z - Skip Count2 - Skip Date2012-04-25T12:40:02Z - Artwork Count1 - Persistent IDC83C80D1059DB617 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/RJD2/RJD2%20-%20Here's%20what's%20left.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1315 - - Track ID1315 - NameSmoke and Mirrors - ArtistRJD2 - AlbumDead Ringer - GenreHip-Hop - KindMPEG audio file - Size6390566 - Total Time266266 - Year2002 - Date Modified2002-07-20T00:23:28Z - Date Added2011-10-02T13:47:16Z - Bit Rate192 - Sample Rate44100 - Comments[F.T.D] - Play Count1 - Play Date3426426694 - Play Date UTC2012-07-29T21:11:34Z - Persistent IDB202853DF9BA9766 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/RJD2/RJD2%20-%20Deadringer%20(2002)/03-rjd2-smoke_and_mirrors-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1317 - - Track ID1317 - NameGhostwriter - ArtistRJD2 - AlbumDead Ringer - GenreHip-Hop - KindMPEG audio file - Size7631905 - Total Time317988 - Year2002 - Date Modified2002-07-20T00:12:16Z - Date Added2011-10-02T13:47:16Z - Bit Rate192 - Sample Rate44100 - Comments[F.T.D] - Play Count3 - Play Date3426427007 - Play Date UTC2012-07-29T21:16:47Z - Persistent IDF5D181A0EB42E3F9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/RJD2/RJD2%20-%20Deadringer%20(2002)/06-rjd2-ghostwriter-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1319 - - Track ID1319 - NameDown With The Sickness - ArtistDisturbed - AlbumThe Sickness - GenreHard Rock - KindMPEG audio file - Size6684672 - Total Time277942 - Year2000 - Date Modified2000-09-20T08:13:26Z - Date Added2011-10-02T13:47:16Z - Bit Rate192 - Sample Rate44100 - Commentsratm+APC=the old standby - Play Count1 - Play Date3353560765 - Play Date UTC2010-04-08T12:39:25Z - Sort AlbumSickness - Persistent ID93EBFEC9BC9990FF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Disturbed/The%20Sickness/04%20-%20Down%20With%20The%20Sickness.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1321 - - Track ID1321 - NameClick Click Boom - ArtistSaliva - AlbumEvery Six Seconds - KindMPEG audio file - Size6089945 - Total Time252421 - Date Modified2009-07-05T22:23:53Z - Date Added2011-10-02T13:47:16Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3400405921 - Play Date UTC2011-10-02T17:12:01Z - Skip Count1 - Skip Date2010-02-06T19:06:40Z - Persistent ID7025FB7C3115B548 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Saliva/Saliva%20-%2003%20-%20Click%20Click%20Boom(1).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1323 - - Track ID1323 - NameControl - ArtistPuddle Of Mudd - AlbumCome Clean - GenreRock - KindMPEG audio file - Size5545900 - Total Time231079 - Track Number3 - Year2001 - Date Modified2009-07-05T22:22:52Z - Date Added2011-10-02T13:47:16Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3329663163 - Play Date UTC2009-07-05T22:26:03Z - Skip Count1 - Skip Date2012-05-24T14:02:46Z - Persistent ID3E0C6D408E784AD3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Puddle%20of%20Mudd/Puddle%20Of%20Mudd%20-%20Control.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1325 - - Track ID1325 - NamePoison Well - ArtistInsolence - AlbumRevolution - Genre139 - KindMPEG audio file - Size3303259 - Total Time206445 - Year2001 - Date Modified2001-09-17T20:10:20Z - Date Added2011-10-02T13:47:16Z - Bit Rate128 - Sample Rate44100 - CommentsTrack 1 - Play Count2 - Play Date3425278649 - Play Date UTC2012-07-16T14:17:29Z - Skip Count1 - Skip Date2010-07-02T13:44:45Z - Persistent ID2DB64F762B95C3FA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Insolence%20-%20Poisonwell.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1327 - - Track ID1327 - NameWhat You Got - ArtistReveille - AlbumBleed The Sky - GenreRock - KindMPEG audio file - Size2878836 - Total Time146729 - Year2001 - Date Modified2001-09-17T20:03:04Z - Date Added2011-10-02T13:47:16Z - Bit Rate156 - Sample Rate44100 - Play Count2 - Play Date3426431609 - Play Date UTC2012-07-29T22:33:29Z - Skip Count4 - Skip Date2012-05-16T22:50:12Z - Persistent ID0056F4371B96D2EE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Reveille%20-%20What%20You%20Got.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1329 - - Track ID1329 - NameFor You - ArtistStaind - AlbumBreak The Cycle - GenreAlternative - KindMPEG audio file - Size4915328 - Total Time204826 - Track Number10 - Year2001 - Date Modified2001-06-12T16:07:24Z - Date Added2011-10-02T13:47:16Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3424207851 - Play Date UTC2012-07-04T04:50:51Z - Skip Count4 - Skip Date2012-08-09T11:32:04Z - Persistent IDA49DC3FA42C7A3B5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Staind/New/Staind%20-%20Break%20the%20Cycle%20-%2010%20-%20For%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1331 - - Track ID1331 - NameFade - ArtistStaind - AlbumBreak The Cycle - GenreHard Rock - KindMPEG audio file - Size5791254 - Total Time241893 - Track Number3 - Year2001 - Date Modified2001-09-19T01:12:48Z - Date Added2011-10-02T13:47:17Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3424191168 - Play Date UTC2012-07-04T00:12:48Z - Skip Count2 - Skip Date2012-08-16T17:42:38Z - Persistent IDAAB694BC9B290D63 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Staind/New/Staind%20-%20Break%20The%20Cycle%20-%20Fade.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1333 - - Track ID1333 - NameThe Untitled (In the End) - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size5191181 - Total Time216293 - Track Number8 - Year2000 - Date Modified2000-10-05T04:54:20Z - Date Added2011-10-02T13:47:19Z - Bit Rate192 - Sample Rate44100 - Play Date3424195082 - Play Date UTC2012-07-04T01:18:02Z - Sort NameUntitled (In the End) - Persistent IDA75C02F31CF88F5C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/08%20-%20In%20The%20End.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1335 - - Track ID1335 - NameI Wish You Were Here - ArtistIncubus - AlbumMonuments and Melodies - GenreRock - KindMPEG audio file - Size5128192 - Total Time213577 - Year2001 - Date Modified2009-07-05T22:21:06Z - Date Added2011-10-02T13:47:19Z - Bit Rate192 - Sample Rate44100 - Comments - Play Count3 - Play Date3353561154 - Play Date UTC2010-04-08T12:45:54Z - Persistent IDAA9BF651532A09B9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Incubus/Incubus%20-%20I%20Wish%20You%20Were%20Here.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1337 - - Track ID1337 - NameHow you remind me!! - ArtistNickelback - AlbumSilver Side Up - KindMPEG audio file - Size3656831 - Total Time228414 - Date Modified2009-07-05T22:25:34Z - Date Added2011-10-02T13:47:20Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3349698179 - Play Date UTC2010-02-22T19:42:59Z - Skip Count4 - Skip Date2012-07-29T21:41:44Z - Persistent IDA8ECDBD9CE1DAFC8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Nickleback/Nickelback%20-%20How%20you%20remind%20me!!s.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1339 - - Track ID1339 - NameRockin' The Suburbs - ArtistBen Folds - AlbumRockin' The Suburbs - GenreRock - KindMPEG audio file - Size4776565 - Total Time298527 - Year2001 - Date Modified2001-09-19T00:28:28Z - Date Added2011-10-02T13:47:20Z - Bit Rate128 - Sample Rate44100 - CommentsDonovan Tooley, Egyptologist - Skip Count1 - Skip Date2012-07-11T13:37:33Z - Persistent ID85974C70E8252649 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/BF5/Ben%20Folds%20Five%20-%20Rockin'%20The%20Suburbs.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1341 - - Track ID1341 - NameSweet Daze - ArtistPete - AlbumPete - KindMPEG audio file - Size3295206 - Total Time202866 - Date Modified2009-07-05T22:28:29Z - Date Added2011-10-02T13:47:20Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3348743531 - Play Date UTC2010-02-11T18:32:11Z - Skip Count3 - Skip Date2011-05-08T12:17:33Z - Artwork Count1 - Persistent ID515916177C92F9FC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Pete%20-%20Sweet%20Daze.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1343 - - Track ID1343 - NameBecause I Got High - ArtistAfroman - AlbumBecause I Got High - KindMPEG audio file - Size3737600 - Total Time311170 - Year2000 - Date Modified2001-07-23T14:56:58Z - Date Added2011-10-02T13:47:20Z - Bit Rate96 - Sample Rate44100 - Play Count2 - Play Date3424297041 - Play Date UTC2012-07-05T05:37:21Z - Skip Count4 - Skip Date2010-07-02T13:45:00Z - Persistent ID352F4E14C93C9300 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/13.%20Comedy/Afroman%20-%20Because%20I%20Got%20High.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1345 - - Track ID1345 - NameChop Suey - ArtistSystem Of A Down - AlbumToxicity - Genre140 - KindMPEG audio file - Size5056330 - Total Time210991 - Track Number1 - Year2001 - Date Modified2009-07-05T22:24:26Z - Date Added2011-10-02T13:47:20Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3388840715 - Play Date UTC2011-05-21T20:38:35Z - Skip Count1 - Skip Date2010-07-02T13:44:52Z - Persistent IDF7E9CF697ED1BFB7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/System%20of%20a%20Down/System%20Of%20A%20Down%20-%20Chop%20Suey.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1347 - - Track ID1347 - NameTake a Picture - ArtistFilter - AlbumTitle of Record - GenreRock - KindMPEG audio file - Size7277864 - Total Time363781 - Track Number6 - Track Count11 - Date Modified2010-02-22T01:57:38Z - Date Added2011-10-02T13:47:21Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3425278230 - Play Date UTC2012-07-16T14:10:30Z - Skip Count2 - Skip Date2010-07-13T13:27:11Z - Persistent ID1110CA4ACB136AC6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Filter/Title%20of%20Record/06.%20Take%20a%20Picture.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1349 - - Track ID1349 - NamePeace Not Greed - ArtistKottonmouth Kings - AlbumHigh Society - GenreHip-Hop - KindMPEG audio file - Size7109397 - Total Time296202 - Year2000 - Date Modified2000-07-26T00:51:18Z - Date Added2011-10-02T13:47:21Z - Bit Rate192 - Sample Rate44100 - Commentswww.kottonmouthkings.cjb.net - Play Count3 - Play Date3424316351 - Play Date UTC2012-07-05T10:59:11Z - Skip Count2 - Skip Date2012-05-15T13:37:23Z - Persistent ID0B73C11D53CE1648 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Kottonmouth%20Kings%20-%20Peace%20Not%20Greed.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1351 - - Track ID1351 - NameTurn Me On Mr. Deadman - ArtistThe Union Underground - Album...An Education in Rebellion - GenreAlternative - KindMPEG audio file - Size3878437 - Total Time161593 - Track Number14 - Year2000 - Date Modified2009-07-05T21:47:17Z - Date Added2011-10-02T13:47:21Z - Bit Rate192 - Sample Rate44100 - Comments#rns - Play Count1 - Play Date3348742549 - Play Date UTC2010-02-11T18:15:49Z - Sort AlbumEducation in Rebellion - Sort ArtistUnion Underground - Persistent ID09DDC537DFD103B1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/The%20Union%20Underground/The%20Union%20Underground%20-%20Turn%20Me%20On%20Mr.%20Deadman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1353 - - Track ID1353 - NameRight Now - ArtistSR-71 - AlbumNow You See Inside - KindMPEG audio file - Size3983320 - Total Time165537 - Year2000 - Date Modified2009-07-05T21:48:25Z - Date Added2011-10-02T13:47:21Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3348733535 - Play Date UTC2010-02-11T15:45:35Z - Persistent ID464BECF57DF2B4CE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/SR-71%20-%20Right%20Now.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1355 - - Track ID1355 - NameWhat I Like About You - ArtistSuicide Machines - Album ArtistVA - AlbumBefore You Were Punk, Vol. 2 - KindMPEG audio file - Size3843147 - Total Time158955 - Date Modified2010-03-13T19:59:18Z - Date Added2011-10-02T13:47:21Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3424300593 - Play Date UTC2012-07-05T06:36:33Z - Artwork Count1 - Persistent ID30C545C53FFFC199 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Suicide%20Machines/Suicide%20Machines%20-%20What%20I%20Like%20About%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1357 - - Track ID1357 - NameBoys in the Hood - ArtistDynamite Hack - AlbumSuperfast - KindMPEG audio file - Size5850065 - Total Time182334 - Track Number1 - Date Modified2010-02-22T01:49:17Z - Date Added2011-10-02T13:47:21Z - Bit Rate256 - Sample Rate44100 - Play Count6 - Play Date3424205716 - Play Date UTC2012-07-04T04:15:16Z - Artwork Count1 - Persistent IDA176C748C79232FA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Dynamite%20Hack%20-%20boys%20in%20the%20hood.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1359 - - Track ID1359 - NameTeenage Dirt Bag - ArtistWheatus - AlbumWheatus - GenreAlternative - KindMPEG audio file - Size5922026 - Total Time247118 - Track Number1 - Year2000 - Date Modified2009-07-05T22:00:15Z - Date Added2011-10-02T13:47:22Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3329661788 - Play Date UTC2009-07-05T22:03:08Z - Skip Count3 - Skip Date2012-08-10T11:33:17Z - Persistent ID8368CE8B966AC72D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wheatus%20-%20Teenage%20Dirtbag.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1361 - - Track ID1361 - NameChange (In The House of Flies) - ArtistDeftones - AlbumThe White Pony - GenreRock - KindMPEG audio file - Size7177844 - Total Time299520 - Track Number10 - Year2000 - Date Modified2010-02-22T01:42:31Z - Date Added2011-10-02T13:47:22Z - Bit Rate192 - Sample Rate44100 - Comments[EGO] ----- EGO ----- [EGO] - Play Count2 - Play Date3368032407 - Play Date UTC2010-09-23T00:33:27Z - Sort AlbumWhite Pony - Persistent ID614AFF5E70ECFC17 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Deftones/Deftones%20-%20Change.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1363 - - Track ID1363 - NameStupify - ArtistDisturbed - AlbumThe Sickness - KindMPEG audio file - Size6583982 - Total Time273972 - Track Number3 - Date Modified2009-07-05T21:40:08Z - Date Added2011-10-02T13:47:23Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3381897358 - Play Date UTC2011-03-02T11:55:58Z - Skip Count1 - Skip Date2009-07-05T19:08:34Z - Sort AlbumSickness - Persistent ID74AE7D98E9E1CD54 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Disturbed/The%20Sickness/03%20-%20Stupify.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1365 - - Track ID1365 - NameOne Step Closer - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size3737310 - Total Time155715 - Track Number2 - Year2000 - Date Modified2000-10-05T04:58:54Z - Date Added2011-10-02T13:47:24Z - Bit Rate192 - Sample Rate44100 - Play Date3427380989 - Play Date UTC2012-08-09T22:16:29Z - Persistent ID7EB6B0B94EE3F909 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/02%20-%20One%20Step%20Closer.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1367 - - Track ID1367 - NameTake A Look Around - ArtistLimp Bizkit - AlbumThe Chocolate Starfish - GenreRock - KindMPEG audio file - Size7745970 - Total Time322742 - Year2000 - Date Modified2000-10-16T06:47:38Z - Date Added2011-10-02T13:47:24Z - Bit Rate192 - Sample Rate44100 - Comments-+- EGO -+- 2000 -+- EGO -+- - Skip Count1 - Skip Date2012-05-10T21:33:34Z - Sort AlbumChocolate Starfish - Persistent ID1A49E290B3A4B5CB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Limp%20Bizkit/10-limp_bizkit-take_a_look_around-ego.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1369 - - Track ID1369 - NamePaint it Black - ArtistGOB - AlbumHow Far Shallow Takes You - KindMPEG audio file - Size3889787 - Total Time194142 - Date Modified2009-07-05T21:45:29Z - Date Added2011-10-02T13:47:24Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3423571093 - Play Date UTC2012-06-26T19:58:13Z - Skip Count2 - Skip Date2012-05-10T21:30:39Z - Persistent ID4CFD7D4086561881 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/gob%20-%20paint%20it%20black.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1371 - - Track ID1371 - NameYou Spin Me Right Round - ArtistDope - AlbumAmerican Psycho Soundtrack - GenreSoundtrack - KindMPEG audio file - Size3996114 - Total Time164284 - Year2000 - Date Modified2010-02-22T01:49:32Z - Date Added2011-10-02T13:47:24Z - Bit Rate192 - Sample Rate44100 - Commentsripped by sinned soul [EGO] - Play Count2 - Play Date3362221738 - Play Date UTC2010-07-17T18:28:58Z - Skip Count3 - Skip Date2012-07-11T22:38:09Z - Artwork Count1 - Persistent ID40A7BD9FCE6CB464 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Dope/Dope%20-%20You%20Spin%20Me%20Right%20Round%20.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1373 - - Track ID1373 - NameSomebody Someone - ArtistKorn - AlbumIssues - GenreRock - KindMPEG audio file - Size3641388 - Total Time227578 - Track Number11 - Year2000 - Date Modified2000-07-26T15:32:32Z - Date Added2011-10-02T13:47:25Z - Bit Rate128 - Sample Rate44100 - CommentsMade with RealJukebox (tm) - Play Count2 - Play Date3349612465 - Play Date UTC2010-02-21T19:54:25Z - Persistent ID7491A37DAE7CF3A6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Korn/Korn%20-%2011%20-%20Somebody%20Someone.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1375 - - Track ID1375 - NameAlmost Honest - ArtistMegadeth - Album ArtistMegadeth - Album1997 - Cryptic Writings (Re-Mastered) - GenreThrash Metal - KindMPEG audio file - Size9930752 - Total Time247902 - Track Number2 - Track Count16 - Year1997 - Date Modified2011-06-26T02:10:22Z - Date Added2011-10-02T13:47:25Z - Bit Rate320 - Sample Rate44100 - Play Count4 - Play Date3390314354 - Play Date UTC2011-06-07T21:59:14Z - Skip Count1 - Skip Date2010-08-21T18:30:11Z - Artwork Count1 - Persistent ID15AAFEA77B2B1813 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Megadeth/Megadeath%20-%2002%20-%20Almost%20Honest.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1377 - - Track ID1377 - NameRock The Party - ArtistPOD - AlbumThe Fundamental Elements of Southtown - KindMPEG audio file - Size6491889 - Total Time202527 - Year1999 - Date Modified2010-02-22T01:42:15Z - Date Added2011-10-02T13:47:25Z - Bit Rate256 - Sample Rate44100 - Play Count5 - Play Date3368050760 - Play Date UTC2010-09-23T05:39:20Z - Skip Count1 - Skip Date2012-06-20T21:38:11Z - Artwork Count1 - Sort AlbumFundamental Elements of Southtown - Persistent ID74E5B0F9C3FD5126 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/POD/POD%20-%20Rock%20The%20Party.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1379 - - Track ID1379 - NamePower Struggle - ArtistSunna - AlbumOne Minute Science - GenreAlternative - KindMPEG audio file - Size5792101 - Total Time241319 - Year2000 - Date Modified2000-09-05T20:02:34Z - Date Added2011-10-02T13:47:25Z - Bit Rate192 - Sample Rate44100 - Play Date3426430262 - Play Date UTC2012-07-29T22:11:02Z - Persistent ID5B2DEDC280566A39 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Sunna%20-%20Power%20Struggle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1381 - - Track ID1381 - NameOne is the Lonliest Number - ArtistAimee Mann - Album ArtistVA - AlbumFor the love of Harry: Everybody sings Nilsson - KindMPEG audio file - Size3437478 - Total Time171337 - Date Modified2010-03-13T19:59:22Z - Date Added2011-10-02T13:47:25Z - Bit Rate160 - Sample Rate44100 - Play Count4 - Play Date3368033817 - Play Date UTC2010-09-23T00:56:57Z - Skip Count2 - Skip Date2011-05-13T21:54:00Z - Persistent ID5F725700EC2F7C9A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/15.%20Chill%20-%20Jazz/Aimee%20Mann%20-%20One%20is%20the%20Lonliest%20Number.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1383 - - Track ID1383 - NameDisconnected - ArtistAceyalone with RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size5300527 - Total Time201430 - Track Number7 - Year2006 - Date Modified2009-08-29T19:20:49Z - Date Added2011-10-02T13:47:25Z - Bit Rate209 - Sample Rate44100 - Commentssucker - Play Count3 - Play Date3390454929 - Play Date UTC2011-06-09T13:02:09Z - Artwork Count1 - Persistent ID5B1B9EAD16C9B314 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/07-aceyalone_and_rjd2-disconnected.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1385 - - Track ID1385 - NameEverything Changes (Feat. Mystic) - ArtistAceyalone - Album ArtistAceyalone - AlbumGrand Imperial - GenreRap & Hip-Hop - KindMPEG audio file - Size8066460 - Total Time319399 - Disc Number1 - Disc Count1 - Track Number2 - Track Count11 - Year2005 - Date Modified2008-12-30T23:04:36Z - Date Added2011-10-02T13:47:25Z - Bit Rate200 - Sample Rate44100 - CommentsAmazon.com Song ID: 202486270 - Play Count4 - Play Date3426425167 - Play Date UTC2012-07-29T20:46:07Z - Artwork Count1 - Persistent ID0F7D00824DF435ED - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20-%20Everything%20Changes%20(Feat%20%20Mystic).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1387 - - Track ID1387 - NameAlways Coming Back Home to You - ArtistAtmosphere - AlbumSeven's Travels - GenreHip-Hop - KindMPEG audio file - Size13226706 - Total Time551105 - Year2003 - Date Modified2010-03-07T19:33:43Z - Date Added2011-10-02T13:47:25Z - Bit Rate192 - Sample Rate44100 - Comments[fnt] - Play Count2 - Play Date3349523818 - Play Date UTC2010-02-20T19:16:58Z - Persistent ID2C0E7056384DEF07 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Atmosphere%20&%20Slug/Atmosphere%20-%20Always%20Coming%20Back%20Home%20to%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1389 - - Track ID1389 - NameGuns and Cigarettes - ArtistAtmosphere - AlbumLucy Ford: The Atmosphere EPs - GenreHip-Hop - KindMPEG audio file - Size6273731 - Total Time261302 - Track Number4 - Track Count15 - Date Modified2009-08-29T19:21:48Z - Date Added2011-10-02T13:47:25Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3348733189 - Play Date UTC2010-02-11T15:39:49Z - Skip Count2 - Skip Date2012-08-09T00:06:13Z - Persistent IDFEE6BC6BE0930FE9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Atmosphere%20&%20Slug/Atmosphere%20-%20Guns%20and%20Cigarettes.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1391 - - Track ID1391 - NameTrying To Find A Balance - ArtistAtmosphere - AlbumSeven's Travels - GenreHip-Hop - KindMPEG audio file - Size6177423 - Total Time257384 - Track Number2 - Year2003 - Date Modified2009-08-29T17:36:30Z - Date Added2011-10-02T13:47:25Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3379568949 - Play Date UTC2011-02-03T13:09:09Z - Persistent IDFE2ABFF8DB22D77E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Atmosphere%20&%20Slug/Atmosphere%20-%20Seven's%20Travels%20(2003)/02-atmosphere-trying_to_find_a_balance-ksi.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1393 - - Track ID1393 - NameHighschool Reunion - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size4958430 - Total Time205557 - Year2003 - Date Modified2009-08-29T19:08:39Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3362761633 - Play Date UTC2010-07-24T00:27:13Z - Skip Count2 - Skip Date2011-05-21T20:33:01Z - Persistent IDD3056D8B9CC2348D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/01-pigeon_john-highschool_reunion-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1395 - - Track ID1395 - NameLife Goes On Ft Abstract Rude - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size4816949 - Total Time200698 - Year2003 - Date Modified2009-08-29T19:07:05Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count5 - Play Date3379594351 - Play Date UTC2011-02-03T20:12:31Z - Skip Count1 - Skip Date2012-08-03T12:38:27Z - Persistent ID1A743F88A2AD711E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/02-pigeon_john-life_goes_on_ft_abstract_rude-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1397 - - Track ID1397 - NameIdentity Crisis - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size6246997 - Total Time260284 - Year2003 - Date Modified2009-08-29T19:07:05Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3362762094 - Play Date UTC2010-07-24T00:34:54Z - Persistent IDDAD44782CD2F4059 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/03-pigeon_john-identity_crisis-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1399 - - Track ID1399 - NameDeception - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size5174304 - Total Time215588 - Year2003 - Date Modified2009-08-29T19:07:05Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3362762309 - Play Date UTC2010-07-24T00:38:29Z - Skip Count1 - Skip Date2012-07-16T14:03:31Z - Persistent ID22772D1B6DA5947A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/04-pigeon_john-deception-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1401 - - Track ID1401 - NameEmily - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size5351728 - Total Time222981 - Year2003 - Date Modified2009-08-29T19:07:05Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3362762532 - Play Date UTC2010-07-24T00:42:12Z - Skip Count3 - Skip Date2012-07-30T13:25:35Z - Persistent IDB5E6F7B6518E8DF0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/05-pigeon_john-emily-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1403 - - Track ID1403 - NameFox Hills Mallmacks - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size3560564 - Total Time148349 - Year2003 - Date Modified2009-08-29T19:07:05Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3362762680 - Play Date UTC2010-07-24T00:44:40Z - Skip Count1 - Skip Date2012-04-24T13:22:45Z - Persistent IDD76D5CF26A5E42A8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/06-pigeon_john-fox_hills_mallmacks-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1405 - - Track ID1405 - NameOriginalz Ft Mikah 9 - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size5664570 - Total Time236016 - Year2003 - Date Modified2009-08-29T19:07:05Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3362762916 - Play Date UTC2010-07-24T00:48:36Z - Skip Count1 - Skip Date2011-05-31T21:39:56Z - Persistent ID0605C60D29307BA9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/07-pigeon_john-originalz_ft_mikah_9-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1407 - - Track ID1407 - NameCrazy - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size4333670 - Total Time180140 - Year2003 - Date Modified2009-08-29T19:15:20Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3362763096 - Play Date UTC2010-07-24T00:51:36Z - Skip Count5 - Skip Date2012-08-10T20:22:27Z - Persistent ID69EA046DBED3372B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/08-pigeon_john-crazy-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1409 - - Track ID1409 - NameHello Everybody - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size5030108 - Total Time209580 - Year2003 - Date Modified2009-08-29T19:07:08Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3425280668 - Play Date UTC2012-07-16T14:51:08Z - Skip Count1 - Skip Date2012-04-24T21:37:49Z - Persistent IDACECAF0618B1280A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/09-pigeon_john-hello_everybody-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1411 - - Track ID1411 - NameOrange County - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size4799395 - Total Time199967 - Year2003 - Date Modified2009-08-29T19:07:08Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424317938 - Play Date UTC2012-07-05T11:25:38Z - Skip Count2 - Skip Date2012-05-15T13:37:25Z - Persistent IDFDBB364234B6E28F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/10-pigeon_john-orange_county-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1413 - - Track ID1413 - NameSam The Goat - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size3239571 - Total Time134974 - Year2003 - Date Modified2009-08-29T19:07:08Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2010-02-11T23:20:37Z - Persistent ID7E97EF0907306459 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/11-pigeon_john-sam_the_goat-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1415 - - Track ID1415 - Name2 Step Ft Murs - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size4333579 - Total Time180558 - Year2003 - Date Modified2009-08-29T19:07:08Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3348725086 - Play Date UTC2010-02-11T13:24:46Z - Skip Count3 - Skip Date2012-07-31T21:04:36Z - Persistent ID566291CB61228C9E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/12-pigeon_john-2_step_ft_murs-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1417 - - Track ID1417 - NameWhat Is Love? - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size6904028 - Total Time287660 - Year2003 - Date Modified2009-08-29T19:07:08Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3383661135 - Play Date UTC2011-03-22T21:52:15Z - Persistent ID976737DB0DE152E1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/13-pigeon_john-what_is_love-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1419 - - Track ID1419 - NameThe Art Of Falling Off - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size4584982 - Total Time191033 - Year2003 - Date Modified2009-08-29T19:07:08Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3362761116 - Play Date UTC2010-07-24T00:18:36Z - Sort NameArt Of Falling Off - Persistent IDF43002C07C49668A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/14-pigeon_john-the_art_of_falling_off-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1421 - - Track ID1421 - NameAlone - ArtistPigeon John - AlbumIs Dating Your Sister - GenreHip-Hop - KindMPEG audio file - Size7490843 - Total Time312111 - Year2003 - Date Modified2009-08-29T19:07:08Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3362761428 - Play Date UTC2010-07-24T00:23:48Z - Skip Count2 - Skip Date2012-07-27T22:29:57Z - Persistent IDF1FEC7B7BECD4F25 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Pigeon%20John/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister%20(2003)/Pigeon%20John%20-%20Is%20Dating%20Your%20Sister/15-pigeon_john-alone-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1423 - - Track ID1423 - NameSlick Lickem-The History or Mi - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size1612784 - Total Time65410 - Year2003 - Date Modified2010-05-29T18:24:42Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3424187300 - Play Date UTC2012-07-03T23:08:20Z - Artwork Count1 - Persistent IDAF86A6805120B04B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/01%20-%20Dj%20Rectangle%20-%20Slick%20Lickem-The%20History%20or%20Mi.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1425 - - Track ID1425 - NameRectangle-Intro - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size2298496 - Total Time93988 - Year2003 - Date Modified2010-05-29T18:24:40Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3417705174 - Play Date UTC2012-04-19T22:32:54Z - Artwork Count1 - Persistent IDB77D96B172E16BB3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/02%20-%20Dj%20Rectangle%20-%20Rectangle-Intro.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1427 - - Track ID1427 - NameSnoop Dogg-Gangster Dick - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3358659 - Total Time138161 - Year2003 - Date Modified2010-05-29T18:24:40Z - Date Added2011-10-02T13:47:26Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-07-05T18:36:26Z - Artwork Count1 - Persistent ID4A67AF88B3B6CF18 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/03%20-%20Dj%20Rectangle%20-%20Snoop%20Dogg-Gangster%20Dick.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1429 - - Track ID1429 - NameRectangle-Drunken Master - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size728147 - Total Time28551 - Year2003 - Date Modified2010-05-29T18:24:40Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3424784446 - Play Date UTC2012-07-10T21:00:46Z - Artwork Count1 - Persistent IDE4C96E65ACF08CF2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/04%20-%20Dj%20Rectangle%20-%20Rectangle-Drunken%20Master.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1431 - - Track ID1431 - NameTash and Kokane-The Incredible - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3252090 - Total Time133720 - Year2003 - Date Modified2010-05-29T18:24:41Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3363335638 - Play Date UTC2010-07-30T15:53:58Z - Skip Count1 - Skip Date2012-06-14T20:14:40Z - Artwork Count1 - Persistent IDF2896526903C1D3F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/05%20-%20Dj%20Rectangle%20-%20Tash%20and%20Kokane-The%20Incredible.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1433 - - Track ID1433 - NameRectangle-A Nice a Yeah Scratc - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size520042 - Total Time19879 - Year2003 - Date Modified2010-05-29T18:24:41Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3420610920 - Play Date UTC2012-05-23T13:42:00Z - Skip Count1 - Skip Date2012-05-23T13:42:00Z - Artwork Count1 - Persistent ID167A3E86515BD305 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/06%20-%20Dj%20Rectangle%20-%20Rectangle-A%20Nice%20a%20Yeah%20Scratc.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1435 - - Track ID1435 - NameJay-Z-Freestyle - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size4125537 - Total Time170109 - Year2003 - Date Modified2010-05-29T18:24:41Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348734442 - Play Date UTC2010-02-11T16:00:42Z - Artwork Count1 - Persistent IDCF147886C6EECBA7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/07%20-%20Dj%20Rectangle%20-%20Jay-Z-Freestyle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1437 - - Track ID1437 - NameRectangle-Dangerously Deadly S - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size507485 - Total Time19356 - Year2003 - Date Modified2010-05-29T18:24:41Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-08-01T21:11:48Z - Artwork Count1 - Persistent ID350CC866C08311BD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/08%20-%20Dj%20Rectangle%20-%20Rectangle-Dangerously%20Deadly%20S.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1439 - - Track ID1439 - NameHk Fabolous and Redman-Blao - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3327942 - Total Time136881 - Year2003 - Date Modified2010-05-29T18:24:41Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3350831057 - Play Date UTC2010-03-07T22:24:17Z - Artwork Count1 - Persistent ID261A73BE79439537 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/09%20-%20Dj%20Rectangle%20-%20Hk%20Fabolous%20and%20Redman-Blao.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1441 - - Track ID1441 - NameRectangle-Scratch Reloaded - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size535708 - Total Time20532 - Year2003 - Date Modified2010-05-29T18:24:41Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-07-26T21:03:46Z - Artwork Count1 - Persistent IDD1668175F4EB5ED1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/10%20-%20Dj%20Rectangle%20-%20Rectangle-Scratch%20Reloaded.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1443 - - Track ID1443 - NameFreeway-Freeway - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3968134 - Total Time163552 - Year2003 - Date Modified2010-05-29T18:24:41Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348734272 - Play Date UTC2010-02-11T15:57:52Z - Artwork Count1 - Persistent ID09C3DA3B2DBB83D6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/11%20-%20Dj%20Rectangle%20-%20Freeway-Freeway.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1445 - - Track ID1445 - NameJay-Z-Jay-Z Gone Crazy - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size708770 - Total Time27742 - Year2003 - Date Modified2010-05-29T18:24:41Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID5FBA050E1D39BF19 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/12%20-%20Dj%20Rectangle%20-%20Jay-Z-Jay-Z%20Gone%20Crazy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1447 - - Track ID1447 - NameEminem Hot Karl Dree-You Must - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size5045950 - Total Time208457 - Year2003 - Date Modified2010-05-29T18:24:40Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-07-09T21:54:25Z - Artwork Count1 - Persistent ID8CDD49BC0C3321C2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/13%20-%20Dj%20Rectangle%20-%20Eminem%20Hot%20Karl%20Dree-You%20Must.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1449 - - Track ID1449 - NameRectangle-Its Fresh Scratch - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size626462 - Total Time24320 - Year2003 - Date Modified2010-05-29T18:24:42Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3424289899 - Play Date UTC2012-07-05T03:38:19Z - Skip Count1 - Skip Date2012-04-24T21:24:08Z - Artwork Count1 - Persistent ID5EE65257D28A7043 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/14%20-%20Dj%20Rectangle%20-%20Rectangle-Its%20Fresh%20Scratch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1451 - - Track ID1451 - NameThe Eastsiders-Back on the Blo - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3915639 - Total Time161358 - Year2003 - Date Modified2010-05-29T18:24:42Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-08-13T23:10:17Z - Artwork Count1 - Sort NameEastsiders-Back on the Blo - Persistent IDF39B3A2F822BDEC0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/15%20-%20Dj%20Rectangle%20-%20The%20Eastsiders-Back%20on%20the%20Blo.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1453 - - Track ID1453 - NameRectangle-What a Word Scratch - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size406076 - Total Time15124 - Year2003 - Date Modified2010-05-29T18:24:42Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3427428793 - Play Date UTC2012-08-10T11:33:13Z - Skip Count1 - Skip Date2012-05-31T21:11:10Z - Artwork Count1 - Persistent ID0662AB0E9BF56C2F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/16%20-%20Dj%20Rectangle%20-%20Rectangle-What%20a%20Word%20Scratch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1455 - - Track ID1455 - NameLunch Wc Dr Skank-Lunch Time - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size2674145 - Total Time109635 - Year2003 - Date Modified2010-05-29T18:24:42Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3420090005 - Play Date UTC2012-05-17T13:00:05Z - Skip Count1 - Skip Date2012-08-01T13:03:05Z - Artwork Count1 - Persistent IDC1478C61D6404B19 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/17%20-%20Dj%20Rectangle%20-%20Lunch%20Wc%20Dr%20Skank-Lunch%20Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1457 - - Track ID1457 - NameRectangle-Insane Technique Scr - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size492441 - Total Time18729 - Year2003 - Date Modified2010-05-29T18:24:42Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3350830148 - Play Date UTC2010-03-07T22:09:08Z - Skip Count1 - Skip Date2012-07-12T11:46:52Z - Artwork Count1 - Persistent IDA735E213617D95CF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/18%20-%20Dj%20Rectangle%20-%20Rectangle-Insane%20Technique%20Scr.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1459 - - Track ID1459 - NameKeith Murray and Eric Sermon-Y - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3045353 - Total Time125100 - Year2003 - Date Modified2010-05-29T18:24:43Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count3 - Skip Date2012-08-09T11:38:55Z - Artwork Count1 - Persistent ID03121D5E5AD6DF34 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/19%20-%20Dj%20Rectangle%20-%20Keith%20Murray%20and%20Eric%20Sermon-Y.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1461 - - Track ID1461 - NameRectangle-I Wanna Kiss Myself - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size1035372 - Total Time41351 - Year2003 - Date Modified2010-05-29T18:24:43Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-08-07T21:44:46Z - Artwork Count1 - Persistent ID887698DEF31C37D7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/20%20-%20Dj%20Rectangle%20-%20Rectangle-I%20Wanna%20Kiss%20Myself.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1463 - - Track ID1463 - NameDoobie-Strippers in the House - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3486032 - Total Time143464 - Year2003 - Date Modified2010-05-29T18:24:43Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDAA532D4F38E47E52 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/21%20-%20Dj%20Rectangle%20-%20Doobie-Strippers%20in%20the%20House.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1465 - - Track ID1465 - NameRectangle-A Delightful Scratch - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size486758 - Total Time18494 - Year2003 - Date Modified2010-05-29T18:24:43Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3426167295 - Play Date UTC2012-07-26T21:08:15Z - Artwork Count1 - Persistent ID4F2BBDE70BDD5B45 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/22%20-%20Dj%20Rectangle%20-%20Rectangle-A%20Delightful%20Scratch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1467 - - Track ID1467 - Name50 Cent and Eminem-Bump Heads - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3798248 - Total Time156473 - Year2003 - Date Modified2010-05-29T18:24:43Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-08-09T00:11:34Z - Artwork Count1 - Persistent ID794CE085531F4650 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/23%20-%20Dj%20Rectangle%20-%2050%20Cent%20and%20Eminem-Bump%20Heads.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1469 - - Track ID1469 - NameRectangle-Fast and Furious - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size485799 - Total Time18468 - Year2003 - Date Modified2010-05-29T18:24:43Z - Date Added2011-10-02T13:47:27Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID14905B8D7C5284A9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/24%20-%20Dj%20Rectangle%20-%20Rectangle-Fast%20and%20Furious.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1471 - - Track ID1471 - NameGangstarr-Nice Girl Wrong Plac - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size2859760 - Total Time117368 - Year2003 - Date Modified2010-05-29T18:24:40Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3426686480 - Play Date UTC2012-08-01T21:21:20Z - Skip Count1 - Skip Date2012-04-24T13:22:37Z - Artwork Count1 - Persistent IDADE9D6A878CF6BD7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/25%20-%20Dj%20Rectangle%20-%20Gangstarr-Nice%20Girl%20Wrong%20Plac.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1473 - - Track ID1473 - NameRectangle-Get Out the Kitchen - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size479234 - Total Time18181 - Year2003 - Date Modified2010-05-29T18:24:38Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3334400345 - Play Date UTC2009-08-29T18:19:05Z - Skip Count1 - Skip Date2009-08-29T18:19:05Z - Artwork Count1 - Persistent ID84EA0D3A6FB73E70 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/26%20-%20Dj%20Rectangle%20-%20Rectangle-Get%20Out%20the%20Kitchen.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1475 - - Track ID1475 - NamePanjabi Mc and Jay-Z-Beware of - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size4222312 - Total Time174158 - Year2003 - Date Modified2010-05-29T18:24:37Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348729224 - Play Date UTC2010-02-11T14:33:44Z - Skip Count1 - Skip Date2012-06-29T13:09:07Z - Artwork Count1 - Persistent ID290EF6AEF9860591 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/27%20-%20Dj%20Rectangle%20-%20Panjabi%20Mc%20and%20Jay-Z-Beware%20of.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1477 - - Track ID1477 - NameDree and Ice Cube-F the Vip - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size5534455 - Total Time228806 - Year2003 - Date Modified2010-05-29T18:24:37Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424208079 - Play Date UTC2012-07-04T04:54:39Z - Skip Count1 - Skip Date2012-04-19T22:46:30Z - Artwork Count1 - Persistent ID85CE984E39307104 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/28%20-%20Dj%20Rectangle%20-%20Dree%20and%20Ice%20Cube-F%20the%20Vip.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1479 - - Track ID1479 - NameRectangle-A Scratch for Fifty - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size482573 - Total Time18337 - Year2003 - Date Modified2010-05-29T18:24:37Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3350830293 - Play Date UTC2010-03-07T22:11:33Z - Artwork Count1 - Persistent ID3F3A47CDC4834AC3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/29%20-%20Dj%20Rectangle%20-%20Rectangle-A%20Scratch%20for%20Fifty.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1481 - - Track ID1481 - Name50 Cent-In the Club-Remix - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3370734 - Total Time138657 - Year2003 - Date Modified2010-05-29T18:24:37Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-04-25T12:39:46Z - Artwork Count1 - Persistent IDD14C29390CD4BF41 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/30%20-%20Dj%20Rectangle%20-%2050%20Cent-In%20the%20Club-Remix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1483 - - Track ID1483 - NameRectangle-Quit Scratchin You P - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size483573 - Total Time18364 - Year2003 - Date Modified2010-05-29T18:24:37Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID0F1D7242EF52F4DD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/31%20-%20Dj%20Rectangle%20-%20Rectangle-Quit%20Scratchin%20You%20P.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1485 - - Track ID1485 - NameDaz and Snoop Dogg-Freestyle - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size4750774 - Total Time196179 - Year2003 - Date Modified2010-05-29T18:24:37Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2010-02-10T15:26:46Z - Artwork Count1 - Persistent ID53DD1B211AF11B2B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/32%20-%20Dj%20Rectangle%20-%20Daz%20and%20Snoop%20Dogg-Freestyle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1487 - - Track ID1487 - NameRectangle-Funky Frog Scratch - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size812347 - Total Time32078 - Year2003 - Date Modified2010-05-29T18:24:38Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3427381030 - Play Date UTC2012-08-09T22:17:10Z - Skip Count1 - Skip Date2012-07-10T21:07:53Z - Artwork Count1 - Persistent ID7DC655ADE21EE7CA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/33%20-%20Dj%20Rectangle%20-%20Rectangle-Funky%20Frog%20Scratch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1489 - - Track ID1489 - NameOdb and Nicole Ray-Welcome Hom - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3348673 - Total Time137743 - Year2003 - Date Modified2010-05-29T18:24:38Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348728859 - Play Date UTC2010-02-11T14:27:39Z - Skip Count1 - Skip Date2012-08-03T19:48:32Z - Artwork Count1 - Persistent ID9649A1AC177EF8FA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/34%20-%20Dj%20Rectangle%20-%20Odb%20and%20Nicole%20Ray-Welcome%20Hom.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1491 - - Track ID1491 - NameRectangle-What the Scratch - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size467357 - Total Time17684 - Year2003 - Date Modified2010-05-29T18:24:38Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID6F98677DF305FFA1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/35%20-%20Dj%20Rectangle%20-%20Rectangle-What%20the%20Scratch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1493 - - Track ID1493 - NameTimbaland and Missy-Cop that S - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3628290 - Total Time149394 - Year2003 - Date Modified2010-05-29T18:24:38Z - Date Added2011-10-02T13:47:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID5F22C6AF6D2792B0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/36%20-%20Dj%20Rectangle%20-%20Timbaland%20and%20Missy-Cop%20that%20S.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1495 - - Track ID1495 - NameRectangle-A Brief 1200 Scratch - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size489939 - Total Time18625 - Year2003 - Date Modified2010-05-29T18:24:38Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348744460 - Play Date UTC2010-02-11T18:47:40Z - Skip Count1 - Skip Date2012-07-16T14:03:51Z - Artwork Count1 - Persistent IDD817C37EE1411DF7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/37%20-%20Dj%20Rectangle%20-%20Rectangle-A%20Brief%201200%20Scratch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1497 - - Track ID1497 - NameE-40 and Busta Rhymes-One Nigh - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size2996981 - Total Time123088 - Year2003 - Date Modified2010-05-29T18:24:37Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID8B63ABEB6A979033 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/38%20-%20Dj%20Rectangle%20-%20E-40%20and%20Busta%20Rhymes-One%20Nigh.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1499 - - Track ID1499 - NameRectangle-Pinky Toe Scratch - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size696272 - Total Time27219 - Year2003 - Date Modified2010-05-29T18:24:38Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3425285618 - Play Date UTC2012-07-16T16:13:38Z - Skip Count2 - Skip Date2012-07-26T20:36:02Z - Artwork Count1 - Persistent ID3625D24D126CBE02 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/39%20-%20Dj%20Rectangle%20-%20Rectangle-Pinky%20Toe%20Scratch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1501 - - Track ID1501 - NameLoon and Kellis-How You Want t - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3406980 - Total Time140173 - Year2003 - Date Modified2010-05-29T18:24:38Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID6E332C1C99331DF8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/40%20-%20Dj%20Rectangle%20-%20Loon%20and%20Kellis-How%20You%20Want%20t.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1503 - - Track ID1503 - NameYou Guess-Mystery Guest - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size484915 - Total Time18416 - Year2003 - Date Modified2010-05-29T18:24:39Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3425276173 - Play Date UTC2012-07-16T13:36:13Z - Skip Count1 - Skip Date2012-06-12T13:32:01Z - Artwork Count1 - Persistent ID30A1DE5AD7B69B96 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/41%20-%20Dj%20Rectangle%20-%20You%20Guess-Mystery%20Guest.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1505 - - Track ID1505 - NameFabolous-Cant Let You Go-Remix - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3157417 - Total Time129776 - Year2003 - Date Modified2010-05-29T18:24:39Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID56E75339EE56787D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/42%20-%20Dj%20Rectangle%20-%20Fabolous-Cant%20Let%20You%20Go-Remix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1507 - - Track ID1507 - NameRectangle-Gime Me a Henny Scra - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size473833 - Total Time17972 - Year2003 - Date Modified2010-05-29T18:24:39Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348839116 - Play Date UTC2010-02-12T21:05:16Z - Skip Count1 - Skip Date2012-05-18T23:23:04Z - Artwork Count1 - Persistent IDF5E8FF47671E3F6F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/43%20-%20Dj%20Rectangle%20-%20Rectangle-Gime%20Me%20a%20Henny%20Scra.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1509 - - Track ID1509 - NameJoe Budden and Jay-Z-Pump it U - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size4392019 - Total Time181237 - Year2003 - Date Modified2010-05-29T18:24:39Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348733370 - Play Date UTC2010-02-11T15:42:50Z - Artwork Count1 - Persistent ID9BD71621714DB99B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/44%20-%20Dj%20Rectangle%20-%20Joe%20Budden%20and%20Jay-Z-Pump%20it%20U.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1511 - - Track ID1511 - NameRectangle-Slightly Faster Scra - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size767828 - Total Time30223 - Year2003 - Date Modified2010-05-29T18:24:39Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-05-18T13:29:42Z - Artwork Count1 - Persistent IDD187949AB207BDDD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/45%20-%20Dj%20Rectangle%20-%20Rectangle-Slightly%20Faster%20Scra.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1513 - - Track ID1513 - NameDaz-Dogg Catcher - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size3398862 - Total Time139833 - Year2003 - Date Modified2010-05-29T18:24:39Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3420361992 - Play Date UTC2012-05-20T16:33:12Z - Artwork Count1 - Persistent ID287AE283F5AC3705 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/46%20-%20Dj%20Rectangle%20-%20Daz-Dogg%20Catcher.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1515 - - Track ID1515 - NameLil Kim-Little Kim Apella - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size909210 - Total Time36101 - Year2003 - Date Modified2010-05-29T18:24:39Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-11T21:47:34Z - Artwork Count1 - Persistent ID44B1B3E18A5C81DE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/47%20-%20Dj%20Rectangle%20-%20Lil%20Kim-Little%20Kim%20Apella.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1517 - - Track ID1517 - NameMr Cheeks-Hands High - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size2658524 - Total Time109008 - Year2003 - Date Modified2010-05-29T18:24:40Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3424252702 - Play Date UTC2012-07-04T17:18:22Z - Artwork Count1 - Persistent IDD777B6DD7CF3E229 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/48%20-%20Dj%20Rectangle%20-%20Mr%20Cheeks-Hands%20High.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1519 - - Track ID1519 - NameRectangle-Chaa Reloaded - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size462200 - Total Time17475 - Year2003 - Date Modified2010-05-29T18:24:40Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3424284399 - Play Date UTC2012-07-05T02:06:39Z - Skip Count1 - Skip Date2012-06-29T12:54:26Z - Artwork Count1 - Persistent ID368FE63F3F9E73C2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/49%20-%20Dj%20Rectangle%20-%20Rectangle-Chaa%20Reloaded.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1521 - - Track ID1521 - NameJoe Budden and Busta Rhymes-Fi - ArtistDJ Rectangle - Album1200's Never Die - GenreHip-Hop - KindMPEG audio file - Size7055763 - Total Time292205 - Year2003 - Date Modified2010-05-29T18:24:40Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID86C0F78AFC7DB123 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%201200s%20Never%20Die%20(2003)/50%20-%20Dj%20Rectangle%20-%20Joe%20Budden%20and%20Busta%20Rhymes-Fi.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1523 - - Track ID1523 - NameDJ Training With Mr Miyage - Larusso, Daniel & Mr. Miyage - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size1718272 - Total Time71366 - Track Number1 - Year2004 - Date Modified2010-05-29T18:25:19Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3349843733 - Play Date UTC2010-02-24T12:08:53Z - Skip Count2 - Skip Date2012-06-14T20:17:04Z - Artwork Count1 - Persistent ID825D708815724CE3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/01%20DJ%20Training%20With%20Mr%20Miyage%20-%20Larusso,%20Daniel%20&%20Mr.%20Miyage.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1525 - - Track ID1525 - NameIntro - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size2056192 - Total Time85498 - Track Number2 - Year2004 - Date Modified2010-05-29T18:25:19Z - Date Added2011-10-02T13:47:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3351333303 - Play Date UTC2010-03-13T17:55:03Z - Skip Count1 - Skip Date2012-08-10T11:33:15Z - Artwork Count1 - Persistent ID84C3A28C075055D3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/02%20Intro.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1527 - - Track ID1527 - NameNo Mercy (scratch) - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size657408 - Total Time27088 - Track Number3 - Year2004 - Date Modified2010-05-29T18:25:19Z - Date Added2011-10-02T13:47:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count4 - Play Date3423576605 - Play Date UTC2012-06-26T21:30:05Z - Skip Count1 - Skip Date2012-07-03T20:36:57Z - Artwork Count1 - Persistent ID3E70E309B6048767 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/03%20No%20Mercy%20(scratch).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1529 - - Track ID1529 - NameStunt 101 - G Unit - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size2754560 - Total Time114599 - Track Number4 - Year2004 - Date Modified2010-05-29T18:25:19Z - Date Added2011-10-02T13:47:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3351333444 - Play Date UTC2010-03-13T17:57:24Z - Artwork Count1 - Persistent ID8A439E6E6EC68781 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/04%20Stunt%20101%20-%20G%20Unit.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1531 - - Track ID1531 - NameFreestyle - Dree - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size1445888 - Total Time60003 - Track Number5 - Year2004 - Date Modified2010-05-29T18:25:20Z - Date Added2011-10-02T13:47:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3351333504 - Play Date UTC2010-03-13T17:58:24Z - Artwork Count1 - Persistent ID2FBFA8F62AB01DC3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/05%20Freestyle%20-%20Dree.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1533 - - Track ID1533 - NamePaint The Fence (scratch) - Mr. Miyage - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size481280 - Total Time19774 - Track Number6 - Year2004 - Date Modified2010-05-29T18:25:20Z - Date Added2011-10-02T13:47:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3351333523 - Play Date UTC2010-03-13T17:58:43Z - Skip Count1 - Skip Date2012-05-16T22:50:47Z - Artwork Count1 - Persistent ID61BC043C72C9CC54 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/06%20Paint%20The%20Fence%20(scratch)%20-%20Mr.%20Miyage.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1535 - - Track ID1535 - NameGangsta Nation - Westside Connection - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3649536 - Total Time151954 - Track Number7 - Year2004 - Date Modified2010-05-29T18:25:20Z - Date Added2011-10-02T13:47:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3424923998 - Play Date UTC2012-07-12T11:46:38Z - Skip Count1 - Skip Date2012-05-10T21:25:25Z - Artwork Count1 - Persistent IDD24BA7C077A42EFC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/07%20Gangsta%20Nation%20-%20Westside%20Connection.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1537 - - Track ID1537 - NameSand The Floor (scratch) - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size694272 - Total Time28656 - Track Number8 - Year2004 - Date Modified2010-05-29T18:25:21Z - Date Added2011-10-02T13:47:31Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3349843661 - Play Date UTC2010-02-24T12:07:41Z - Artwork Count1 - Persistent ID734E682341123A21 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/08%20Sand%20The%20Floor%20(scratch).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1539 - - Track ID1539 - NameFreestyle - Fabulous - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size1628160 - Total Time67578 - Track Number9 - Year2004 - Date Modified2010-05-29T18:25:21Z - Date Added2011-10-02T13:47:31Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2009-04-18T00:35:35Z - Artwork Count1 - Persistent IDEA0933602C3ED2F1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/09%20Freestyle%20-%20Fabulous.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1541 - - Track ID1541 - NameReverse Flip (scratch) - Larusso, Daniel - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size514048 - Total Time21133 - Track Number10 - Year2004 - Date Modified2010-05-29T18:25:21Z - Date Added2011-10-02T13:47:31Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3426224228 - Play Date UTC2012-07-27T12:57:08Z - Skip Count1 - Skip Date2012-07-27T12:57:08Z - Artwork Count1 - Persistent ID965C28B2D9DAC621 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/10%20Reverse%20Flip%20(scratch)%20-%20Larusso,%20Daniel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1543 - - Track ID1543 - NameWat Da Hook Gon Be - Lee, Murphy & Dr. Dre - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size2598912 - Total Time108094 - Track Number11 - Year2004 - Date Modified2010-05-29T18:25:22Z - Date Added2011-10-02T13:47:31Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-08-09T22:16:33Z - Artwork Count1 - Persistent IDC8C3D249B58F207F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/11%20Wat%20Da%20Hook%20Gon%20Be%20-%20Lee,%20Murphy%20&%20Dr.%20Dre.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1545 - - Track ID1545 - NameGet It On The Floor - DMX - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3184640 - Total Time132545 - Track Number12 - Year2004 - Date Modified2010-05-29T18:25:22Z - Date Added2011-10-02T13:47:31Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424217564 - Play Date UTC2012-07-04T07:32:44Z - Artwork Count1 - Persistent IDE6F063CD113D3BEA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/12%20Get%20It%20On%20The%20Floor%20-%20DMX.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1547 - - Track ID1547 - NameBreathe In (scratch) - Mr.Miyage - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size483328 - Total Time19853 - Track Number13 - Year2004 - Date Modified2010-05-29T18:25:23Z - Date Added2011-10-02T13:47:32Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID941CDABC7A1D6C9A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/13%20Breathe%20In%20(scratch)%20-%20Mr.%20Miyagi.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1549 - - Track ID1549 - NameIt Blows My Mind - Snoop Dogg - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3237888 - Total Time134817 - Track Number14 - Year2004 - Date Modified2010-05-29T18:25:23Z - Date Added2011-10-02T13:47:32Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count3 - Skip Date2012-06-26T13:47:29Z - Artwork Count1 - Persistent ID9629B8A620FB60F5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/14.%20It%20Blows%20My%20Mind%20-%20Snoop%20Dogg.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1551 - - Track ID1551 - NameOh My Goodness - Murray, Keith - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3840000 - Total Time159869 - Track Number15 - Year2004 - Date Modified2010-05-29T18:25:23Z - Date Added2011-10-02T13:47:32Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3427461103 - Play Date UTC2012-08-10T20:31:43Z - Artwork Count1 - Persistent IDB4BA633C76A1EA6F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/15%20Oh%20My%20Goodness%20-%20Murray,%20Keith.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1553 - - Track ID1553 - NameLearning Balance (scratch) - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size655360 - Total Time26984 - Track Number16 - Year2004 - Date Modified2010-05-29T18:25:24Z - Date Added2011-10-02T13:47:33Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3424853308 - Play Date UTC2012-07-11T16:08:28Z - Artwork Count1 - Persistent ID05D2397B77CE6FC2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/16%20Learning%20Balance%20(scratch).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1555 - - Track ID1555 - NameClap Back - Ja Rule - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3715072 - Total Time154723 - Track Number17 - Year2004 - Date Modified2010-05-29T18:25:24Z - Date Added2011-10-02T13:47:33Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348735014 - Play Date UTC2010-02-11T16:10:14Z - Skip Count1 - Skip Date2012-08-09T22:24:56Z - Artwork Count1 - Persistent IDD8FC3A457D1E07F5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/17%20Clap%20Back%20-%20Ja%20Rule.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1557 - - Track ID1557 - NamePaint The House (scratch) - Larusso, Daniel - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size471040 - Total Time19330 - Track Number18 - Year2004 - Date Modified2010-05-29T18:25:25Z - Date Added2011-10-02T13:47:33Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348717120 - Play Date UTC2010-02-11T11:12:00Z - Skip Count2 - Skip Date2012-08-03T17:35:47Z - Artwork Count1 - Persistent IDC76CDD08C2F4B958 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/18%20Paint%20The%20House%20(scratch)%20-%20Larusso,%20Daniel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1559 - - Track ID1559 - NameI C U (Doin' It) - Tribe Called Quest & Eryka Badu - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3907584 - Total Time162768 - Track Number19 - Year2004 - Date Modified2010-05-29T18:25:25Z - Date Added2011-10-02T13:47:33Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-26T13:43:48Z - Artwork Count1 - Persistent ID87BDA64DADAE5928 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/19%20I%20C%20U%20(Doin'%20It)%20-%20Tribe%20Called%20Quest%20&%20Eryka%20Badu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1561 - - Track ID1561 - NameDown For Me - Loon - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3491840 - Total Time145423 - Track Number20 - Year2004 - Date Modified2010-05-29T18:25:26Z - Date Added2011-10-02T13:47:34Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count4 - Skip Date2012-07-03T20:51:40Z - Artwork Count1 - Persistent ID594F1A8D51B0F6CC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/20%20Down%20For%20Me%20-%20Loon.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1563 - - Track ID1563 - NameFocus Power (scratch) - Mr. Miyage & Rectangle - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size483328 - Total Time19853 - Track Number21 - Year2004 - Date Modified2010-05-29T18:25:26Z - Date Added2011-10-02T13:47:34Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3427460902 - Play Date UTC2012-08-10T20:28:22Z - Skip Count1 - Skip Date2012-08-10T20:28:22Z - Artwork Count1 - Persistent ID222360A57533C63D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/21%20Focus%20Power%20(scratch)%20-%20Mr.%20Miyage%20&%20Rectangle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1565 - - Track ID1565 - NameStand Up - Ludacris - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3741696 - Total Time155846 - Track Number22 - Year2004 - Date Modified2010-05-29T18:25:26Z - Date Added2011-10-02T13:47:34Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3428072624 - Play Date UTC2012-08-17T22:23:44Z - Artwork Count1 - Persistent ID7C8047FC8F7449C1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/22%20Stand%20Up%20-%20Ludacris.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1567 - - Track ID1567 - NamePop Shit - Dirt McGirt - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3735552 - Total Time155559 - Track Number23 - Year2004 - Date Modified2010-05-29T18:25:27Z - Date Added2011-10-02T13:47:35Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-07-27T22:29:13Z - Artwork Count1 - Persistent ID37284007931F7D5A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/23%20Pop%20Shit%20-%20Dirt%20McGirt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1569 - - Track ID1569 - NameSecret To Punch (scratch) - Cobra Cat Students - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size468992 - Total Time19200 - Track Number24 - Year2004 - Date Modified2010-05-29T18:25:27Z - Date Added2011-10-02T13:47:35Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3425278899 - Play Date UTC2012-07-16T14:21:39Z - Artwork Count1 - Persistent IDFC5AEB326F450171 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/24%20Secret%20To%20Punch%20(scratch)%20-%20Cobra%20Cat%20Students.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1571 - - Track ID1571 - NamePut Your Drinks Down - Drag-On & Snoop Dogg - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3303424 - Total Time137482 - Track Number25 - Year2004 - Date Modified2010-05-29T18:25:28Z - Date Added2011-10-02T13:47:35Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424298898 - Play Date UTC2012-07-05T06:08:18Z - Skip Count1 - Skip Date2012-06-20T13:03:16Z - Artwork Count1 - Persistent ID36B1B1F618214927 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/25%20Put%20Your%20Drinks%20Down%20-%20Drag-On%20&%20Snoop%20Dogg.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1573 - - Track ID1573 - NameCan't Stop Won't Stop - Young Gunz - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3643392 - Total Time151719 - Track Number26 - Year2004 - Date Modified2010-05-29T18:25:28Z - Date Added2011-10-02T13:47:36Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2010-02-10T11:13:21Z - Artwork Count1 - Persistent ID0599883CC9295AFE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/26%20Can't%20Stop%20Won't%20Stop%20-%20Young%20Gunz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1575 - - Track ID1575 - NameSolo Practice - Mr. Miyage - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size679936 - Total Time28055 - Track Number27 - Year2004 - Date Modified2010-05-29T18:25:29Z - Date Added2011-10-02T13:47:36Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID5A67A57B1DFD6B0E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/27%20Solo%20Practice%20-%20Mr.%20Miyage.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1577 - - Track ID1577 - NameBad Boy This Bad Boy That - Da Band - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3133440 - Total Time130455 - Track Number28 - Year2004 - Date Modified2010-05-29T18:25:29Z - Date Added2011-10-02T13:47:37Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3424285561 - Play Date UTC2012-07-05T02:26:01Z - Artwork Count1 - Persistent IDCEC7D0F2C84E728A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/28%20Bad%20Boy%20This%20Bad%20Boy%20That%20-%20Da%20Band.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1579 - - Track ID1579 - NameContest Registration (scratch) - Larusso, Daniel - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size452608 - Total Time18573 - Track Number29 - Year2004 - Date Modified2010-05-29T18:25:29Z - Date Added2011-10-02T13:47:37Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3427429453 - Play Date UTC2012-08-10T11:44:13Z - Skip Count1 - Skip Date2012-08-10T11:44:13Z - Artwork Count1 - Persistent ID5348AEA3DBF69DF6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/29%20Contest%20Registration%20(scratch)%20-%20Larusso,%20Daniel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1581 - - Track ID1581 - NameGet Low - Busta Rhymes & Lil Jon - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size5136384 - Total Time214047 - Track Number30 - Year2004 - Date Modified2010-05-29T18:25:30Z - Date Added2011-10-02T13:47:37Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-05-23T13:41:23Z - Artwork Count1 - Persistent IDB908D736F16BE9FB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/30%20Get%20Low%20-%20Busta%20Rhymes%20&%20Lil%20Jon.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1583 - - Track ID1583 - NameSalt Shaker - Ying Yang Twins - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3522560 - Total Time146625 - Track Number31 - Year2004 - Date Modified2010-05-29T18:25:31Z - Date Added2011-10-02T13:47:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348741835 - Play Date UTC2010-02-11T18:03:55Z - Artwork Count1 - Persistent IDD774153324EF9E9D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/31%20Salt%20Shaker%20-%20Ying%20Yang%20Twins.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1585 - - Track ID1585 - NameWay I Am - Knoc-turn'al - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3459072 - Total Time144013 - Track Number32 - Year2004 - Date Modified2010-05-29T18:25:31Z - Date Added2011-10-02T13:47:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3422024485 - Play Date UTC2012-06-08T22:21:25Z - Skip Count2 - Skip Date2012-06-08T22:19:11Z - Artwork Count1 - Persistent ID6DFF18DD13CB4324 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/32%20Way%20I%20Am%20-%20Knoc-turn'al.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1587 - - Track ID1587 - NameGot Some Teeth - Trice, Obie - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3287040 - Total Time136803 - Track Number33 - Year2004 - Date Modified2010-05-29T18:25:32Z - Date Added2011-10-02T13:47:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count4 - Play Date3427429599 - Play Date UTC2012-08-10T11:46:39Z - Artwork Count1 - Persistent IDB9DAFE066396CF08 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/33%20Got%20Some%20Teeth%20-%20Trice,%20Obie.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1589 - - Track ID1589 - NameWhere The Teeth - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size438272 - Total Time17972 - Track Number34 - Year2004 - Date Modified2010-05-29T18:25:32Z - Date Added2011-10-02T13:47:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424186303 - Play Date UTC2012-07-03T22:51:43Z - Artwork Count1 - Persistent IDBDFA38EDE6F8E3C9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/34%20Where%20The%20Teeth.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1591 - - Track ID1591 - NameChange Clothes - Jay-Z - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3420160 - Total Time142419 - Track Number35 - Year2004 - Date Modified2010-05-29T18:25:32Z - Date Added2011-10-02T13:47:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348742913 - Play Date UTC2010-02-11T18:21:53Z - Skip Count1 - Skip Date2012-08-08T23:58:07Z - Artwork Count1 - Persistent ID7FFF568FD35B8E78 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/35%20Change%20Clothes%20-%20Jay-Z.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1593 - - Track ID1593 - NameSand The Deck (scratch) - Larusso, Daniel - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size249856 - Total Time10057 - Track Number36 - Year2004 - Date Modified2010-05-29T18:25:33Z - Date Added2011-10-02T13:47:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348717255 - Play Date UTC2010-02-11T11:14:15Z - Artwork Count1 - Persistent ID77A8DB02F819971B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/36%20Sand%20The%20Deck%20(scratch)%20-%20Larusso,%20Daniel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1595 - - Track ID1595 - NameShow Me Your Soul - Kravitz, Lenny & P. Diddy-Loon-Pharrell Williams - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3756032 - Total Time156212 - Track Number37 - Year2004 - Date Modified2010-05-29T18:25:33Z - Date Added2011-10-02T13:47:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424223026 - Play Date UTC2012-07-04T09:03:46Z - Skip Count1 - Skip Date2012-06-14T20:05:46Z - Artwork Count1 - Persistent IDB6E864182B847C58 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/37%20Show%20Me%20Your%20Soul%20-%20Kravitz,%20Lenny%20&%20P.%20Diddy-Loon-Pharrell%20Williams.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1597 - - Track ID1597 - NameCompetition Begins (scratch) - Larusso, Daniel & Mr. Miyage - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size452608 - Total Time18520 - Track Number38 - Year2004 - Date Modified2010-05-29T18:25:33Z - Date Added2011-10-02T13:47:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-05-18T13:26:15Z - Artwork Count1 - Persistent ID4F8AD7A7DFCCFE53 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/38%20Competition%20Begins%20(scratch)%20-%20Larusso,%20Daniel%20&%20Mr.%20Miyage.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1599 - - Track ID1599 - NameParty And Bullshit (remix) - Rah Digga & Missy Elliott-Eve - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size3489792 - Total Time145266 - Track Number39 - Year2004 - Date Modified2010-05-29T18:25:33Z - Date Added2011-10-02T13:47:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2010-09-08T22:08:17Z - Artwork Count1 - Persistent ID2E8AB49267213931 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/39%20Party%20And%20Bullshit%20(remix)%20-%20Rah%20Digga%20&%20Missy%20Elliott-Eve.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1601 - - Track ID1601 - NameFinal Fight (scratch) - Daniel & The Cobras - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size630784 - Total Time25965 - Track Number40 - Year2004 - Date Modified2010-05-29T18:25:34Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-11T21:18:46Z - Artwork Count1 - Persistent ID69998B85F9524839 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/40%20Final%20Fight%20(scratch)%20-%20Daniel%20&%20The%20Cobras.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1603 - - Track ID1603 - NamePass The Dutch - Elliott, Missy - ArtistDJ Rectangle - Album ArtistVA - AlbumWax On Wax Off [UK] - GenreRap & Hip-Hop - KindMPEG audio file - Size4612096 - Total Time191843 - Track Number41 - Year2004 - Date Modified2010-05-29T18:25:34Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3349412105 - Play Date UTC2010-02-19T12:15:05Z - Skip Count1 - Skip Date2012-08-16T16:41:47Z - Artwork Count1 - Persistent IDDCBA67480E00AA8F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Wax%20On%20Wax%20Off%20(2004)/41%20Pass%20The%20Dutch%20-%20Elliott,%20Missy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1605 - - Track ID1605 - NameIntro - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size2443212 - Total Time100597 - Track Number1 - Year2002 - Date Modified2010-05-29T18:24:59Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3426688804 - Play Date UTC2012-08-01T22:00:04Z - Skip Count1 - Skip Date2012-06-12T21:21:28Z - Artwork Count1 - Persistent IDDE195D667BE048BA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/01%20-%20Dj%20Rectangle%20-%20Intro.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1607 - - Track ID1607 - NameFreestyle - ArtistWarren G - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size1475844 - Total Time60290 - Track Number2 - Year2002 - Date Modified2010-05-29T18:24:59Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDF8DD7FA71AB756E3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/02%20-%20Warren%20G%20-%20Freestyle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1609 - - Track ID1609 - NameTorture Scratch - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size497204 - Total Time19513 - Track Number3 - Year2002 - Date Modified2010-05-29T18:24:59Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3349091788 - Play Date UTC2010-02-15T19:16:28Z - Skip Count2 - Skip Date2012-05-24T14:17:09Z - Artwork Count1 - Persistent IDFF24AB65C9B315EC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/03%20-%20Dj%20Rectangle%20-%20Torture%20Scratch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1611 - - Track ID1611 - NameRoc Tha Mic - ArtistBeenie Segal & Freeway - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3468272 - Total Time143307 - Track Number4 - Year2002 - Date Modified2010-05-29T18:25:00Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID26578E1FDF214BAD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/04%20-%20Beenie%20Segal%20&%20Freeway%20-%20Roc%20Tha%20Mic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1613 - - Track ID1613 - Name5"9" Trouble - ArtistRoyce Tha 5"9" - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size1209404 - Total Time49188 - Track Number5 - Year2002 - Date Modified2010-05-29T18:25:00Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDF74819A8977F39CD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/05%20-%20Royce%20Tha%205'9'%20-%205'9'%20Trouble.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1615 - - Track ID1615 - NameTrouble - ArtistDj Quick - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3066386 - Total Time126563 - Track Number6 - Year2002 - Date Modified2010-05-29T18:25:00Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID638333E10CF534D2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/06%20-%20Dj%20Quick%20-%20Trouble.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1617 - - Track ID1617 - NameRip The Track - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size792490 - Total Time31817 - Track Number7 - Year2002 - Date Modified2010-05-29T18:25:00Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3427341814 - Play Date UTC2012-08-09T11:23:34Z - Skip Count1 - Skip Date2012-04-25T12:47:14Z - Artwork Count1 - Persistent ID9C5983A070C5DC5C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/07%20-%20Dj%20Rectangle%20-%20Rip%20The%20Track.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1619 - - Track ID1619 - NameArea Intensions - ArtistLudacris - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size512872 - Total Time20166 - Track Number8 - Year2002 - Date Modified2010-05-29T18:25:00Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3350829929 - Play Date UTC2010-03-07T22:05:29Z - Skip Count1 - Skip Date2012-07-29T21:57:11Z - Artwork Count1 - Persistent IDAD41A1526784ECB1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/08%20-%20Ludacris%20-%20Area%20Intensions.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1621 - - Track ID1621 - NameBad Intentions - ArtistDr. Dre - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size1114105 - Total Time45217 - Track Number9 - Year2002 - Date Modified2010-05-29T18:25:00Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-05-10T21:20:55Z - Artwork Count1 - Persistent IDB174FDDCC937EBB7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/09%20-%20Dr.%20Dre%20-%20Bad%20Intentions.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1623 - - Track ID1623 - NameSuper Ugly - ArtistJay-Z - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size1350454 - Total Time55066 - Track Number10 - Year2002 - Date Modified2010-05-29T18:25:00Z - Date Added2011-10-02T13:47:40Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDFC9A1AB4D28F6EA2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/10%20-%20Jay-Z%20-%20Super%20Ugly.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1625 - - Track ID1625 - NameSpeaker Control Scratch - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size973685 - Total Time39366 - Track Number11 - Year2002 - Date Modified2010-05-29T18:25:00Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3349873045 - Play Date UTC2010-02-24T20:17:25Z - Artwork Count1 - Persistent ID41E6086D0F4FE882 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/11%20-%20Dj%20Rectangle%20-%20Speaker%20Control%20Scratch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1627 - - Track ID1627 - NameGot Ur Self A Gun - ArtistNas - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3025013 - Total Time124839 - Track Number12 - Year2002 - Date Modified2010-05-29T18:25:00Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3428038005 - Play Date UTC2012-08-17T12:46:45Z - Artwork Count1 - Persistent IDD8BED8935AC7AEA8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/12%20-%20Nas%20-%20Got%20Ur%20Self%20A%20Gun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1629 - - Track ID1629 - NameScratchin One Oh One - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size532944 - Total Time21002 - Track Number13 - Year2002 - Date Modified2010-05-29T18:25:01Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-04-24T13:30:04Z - Artwork Count1 - Persistent ID02F792108BD52466 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/13%20-%20Dj%20Rectangle%20-%20Scratchin%20One%20Oh%20One.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1631 - - Track ID1631 - NameWhats Luv - ArtistFat. Joe Feat. Ashanti - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3287711 - Total Time135784 - Track Number14 - Year2002 - Date Modified2010-05-29T18:25:01Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3427003373 - Play Date UTC2012-08-05T13:22:53Z - Artwork Count1 - Persistent ID17D8B0EE504A877D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/14%20-%20Fat.%20Joe%20Feat.%20Ashanti%20-%20Whats%20Luv.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1633 - - Track ID1633 - NameAtlanta Love - ArtistJermaine Dupri - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size1001262 - Total Time40515 - Track Number15 - Year2002 - Date Modified2010-05-29T18:25:01Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID1A50771E69750D32 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/15%20-%20Jd%20-%20Atlanta%20Love.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1635 - - Track ID1635 - NameTake You Home With Me - ArtistR.Kelly Feat. Jay-Z - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size2616269 - Total Time107807 - Track Number16 - Year2002 - Date Modified2010-05-29T18:25:01Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID5DC4EAAD2CE416EA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/16%20-%20R.Kelly%20Feat.%20Jay-Z%20-%20Take%20You%20Home%20With%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1637 - - Track ID1637 - NameIntroduction Hit From Bronson - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size519161 - Total Time20427 - Track Number17 - Year2002 - Date Modified2010-05-29T18:25:01Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-04-19T22:46:37Z - Artwork Count1 - Persistent IDAC9C4441083E5826 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/17%20-%20Dj%20Rectangle%20-%20Introduction%20Hit%20From%20Bronson.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1639 - - Track ID1639 - NameLast Dayz - ArtistHittman - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3822475 - Total Time158066 - Track Number18 - Year2002 - Date Modified2010-05-29T18:25:01Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3353745501 - Play Date UTC2010-04-10T15:58:21Z - Skip Count1 - Skip Date2012-06-26T13:48:41Z - Artwork Count1 - Persistent IDF3DFD655CCEE14DF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/18%20-%20Hittman%20-%20Last%20Dayz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1641 - - Track ID1641 - NameOwe Boy Scratchin - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size744847 - Total Time29831 - Track Number19 - Year2002 - Date Modified2010-05-29T18:25:02Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424193959 - Play Date UTC2012-07-04T00:59:19Z - Artwork Count1 - Persistent ID1A001D3F42361D8D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/19%20-%20Dj%20Rectangle%20-%20Owe%20Boy%20Scratchin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1643 - - Track ID1643 - NameGrindin - ArtistThe Eclipse - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3586748 - Total Time148244 - Track Number20 - Year2002 - Date Modified2010-05-29T18:25:02Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3425285080 - Play Date UTC2012-07-16T16:04:40Z - Artwork Count1 - Sort ArtistEclipse - Persistent ID56E817AF8C3BD886 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/20%20-%20The%20Eclipse%20-%20Grindin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1645 - - Track ID1645 - NameTake You Home - ArtistLil Bow Wow - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size2599952 - Total Time107128 - Track Number21 - Year2002 - Date Modified2010-05-29T18:25:02Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3427301602 - Play Date UTC2012-08-09T00:13:22Z - Artwork Count1 - Persistent ID78538EB00467C447 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/21%20-%20Lil%20Bow%20Wow%20-%20Take%20You%20Home.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1647 - - Track ID1647 - NameTop Naughty Snoop - ArtistSnoop Dogg - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size1231975 - Total Time50128 - Track Number22 - Year2002 - Date Modified2010-05-29T18:25:02Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3349788780 - Play Date UTC2010-02-23T20:53:00Z - Skip Count1 - Skip Date2010-02-21T18:56:43Z - Artwork Count1 - Persistent IDA3F1B6A7E7918574 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/22%20-%20Snoop%20Dogg%20-%20Top%20Naughty%20Snoop.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1649 - - Track ID1649 - NameFeels Good - ArtistNaughty By Nature - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size2969222 - Total Time122514 - Track Number23 - Year2002 - Date Modified2010-05-29T18:25:02Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3349091947 - Play Date UTC2010-02-15T19:19:07Z - Skip Count1 - Skip Date2012-04-19T22:43:45Z - Artwork Count1 - Persistent IDDA4F98E4548F329E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/23%20-%20Naughty%20By%20Nature%20-%20Feels%20Good.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1651 - - Track ID1651 - NameDemonstration - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size1010666 - Total Time40907 - Track Number24 - Year2002 - Date Modified2010-05-29T18:25:02Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3354253239 - Play Date UTC2010-04-16T13:00:39Z - Skip Count1 - Skip Date2012-06-11T21:41:45Z - Artwork Count1 - Persistent ID1D4E80D851968D4E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/24%20-%20Dj%20Rectangle%20-%20Demonstration.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1653 - - Track ID1653 - NameLive Foul - ArtistMobb Deep - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size4139083 - Total Time171258 - Track Number25 - Year2002 - Date Modified2010-05-29T18:25:02Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2010-03-04T23:27:08Z - Artwork Count1 - Persistent ID6527084C05444789 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/25%20-%20Naughty%20By%20Nature%20-%20Feels%20Good.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1655 - - Track ID1655 - NameWelcome To Brick City - ArtistRedma - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size988097 - Total Time39967 - Track Number26 - Year2002 - Date Modified2010-05-29T18:25:03Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424924190 - Play Date UTC2012-07-12T11:49:50Z - Skip Count1 - Skip Date2010-03-04T23:27:25Z - Artwork Count1 - Persistent IDD7EDC9D4465E0334 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/26%20-%20Dj%20Rectangle%20-%20Demonstration.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1657 - - Track ID1657 - NameWelcome To Atlanta - ArtistJermaine Dupri - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size4240034 - Total Time175464 - Track Number27 - Year2002 - Date Modified2010-05-29T18:25:03Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3421329413 - Play Date UTC2012-05-31T21:16:53Z - Skip Count1 - Skip Date2010-02-10T15:39:57Z - Artwork Count1 - Persistent IDB5E2A43CAA7848C0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/27%20-%20Mobb%20Deep%20-%20Live%20Fool.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1659 - - Track ID1659 - NameAction Scratchin - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size949129 - Total Time38347 - Track Number28 - Year2002 - Date Modified2010-05-29T18:25:03Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3334399933 - Play Date UTC2009-08-29T18:12:13Z - Skip Count2 - Skip Date2012-06-20T13:03:25Z - Artwork Count1 - Persistent ID212DB263C244DE8A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/28%20-%20Redman%20-%20Welcome%20To%20Brick%20City.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1661 - - Track ID1661 - NamePop Lockin II - ArtistWest Coast Bad Boys - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3122729 - Total Time128914 - Track Number29 - Year2002 - Date Modified2010-05-29T18:25:03Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3334400062 - Play Date UTC2009-08-29T18:14:22Z - Skip Count1 - Skip Date2012-05-30T13:55:37Z - Artwork Count1 - Persistent ID2C42841CCC2470BA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/29%20-%20Jd%20-%20Welcome%20To%20Atlanta.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1663 - - Track ID1663 - NameWrist Control - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size984861 - Total Time39836 - Track Number30 - Year2002 - Date Modified2010-05-29T18:25:03Z - Date Added2011-10-02T13:47:41Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3334400101 - Play Date UTC2009-08-29T18:15:01Z - Artwork Count1 - Persistent IDD6F85EDA56509856 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/30%20-%20Dj%20Rectangle%20-%20Action%20Scratchin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1665 - - Track ID1665 - NameHow High - Part II - ArtistMethod Man & Redman - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3594818 - Total Time148584 - Track Number31 - Year2002 - Date Modified2010-05-29T18:25:03Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDEAF604B17B76FF35 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/31%20-%20Method%20Man%20&%20Redman%20-%20How%20High%20Part%20Ii.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1667 - - Track ID1667 - NameWalkin Like Jada - ArtistJada Kiss - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size981724 - Total Time39706 - Track Number32 - Year2002 - Date Modified2010-05-29T18:25:04Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424203007 - Play Date UTC2012-07-04T03:30:07Z - Artwork Count1 - Persistent IDFFA8E885AF462DC0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/32%20-%20Jada%20Kiss%20-%20Walkin%20Like%20Jada.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1669 - - Track ID1669 - NameWalk Like A G - ArtistRock Feat. Nate Dogg - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3954049 - Total Time163552 - Track Number33 - Year2002 - Date Modified2010-05-29T18:25:04Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID2F87834F570C7BF9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/33%20-%20Rock%20Feat.%20Nate%20Dogg%20-%20Walk%20Like%20A%20G.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1671 - - Track ID1671 - NameDemonstration #2 - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size966682 - Total Time39079 - Track Number34 - Year2002 - Date Modified2010-05-29T18:25:04Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID76CD23A0717E81CA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/34%20-%20Dj%20Rectangle%20-%20Demonstration%20%232.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1673 - - Track ID1673 - NamePass The Covosier - ArtistBusta Rhymes - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size4268142 - Total Time176640 - Track Number35 - Year2002 - Date Modified2010-05-29T18:25:04Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3426258302 - Play Date UTC2012-07-27T22:25:02Z - Artwork Count1 - Persistent ID172452B0020DF0B6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/35%20-%20Busta%20Rhymes%20-%20Pass%20The%20Covosier.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1675 - - Track ID1675 - NameFinger Style - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size735964 - Total Time29466 - Track Number36 - Year2002 - Date Modified2010-05-29T18:25:04Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID067053D53E68013F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/36%20-%20Dj%20Rectangle%20-%20Finger%20Style.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1677 - - Track ID1677 - Name$100 Dolla Bill Yall - ArtistIce Cube - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3264412 - Total Time134817 - Track Number37 - Year2002 - Date Modified2010-05-29T18:25:04Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID7DF198D6C5CCB3C8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/37%20-%20Ice%20Cube%20-%20$100%20Dolla%20Bill%20Yall.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1679 - - Track ID1679 - NameBird In The Scratch - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size949131 - Total Time38347 - Track Number38 - Year2002 - Date Modified2010-05-29T18:25:04Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3417706046 - Play Date UTC2012-04-19T22:47:26Z - Skip Count1 - Skip Date2012-07-26T21:03:56Z - Artwork Count1 - Persistent ID8D1B8A90F660FD91 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/38%20-%20Dj%20Rectangle%20-%20Bird%20In%20The%20Scratch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1681 - - Track ID1681 - NameWe Put In Work - ArtistDaz Dillinger Feat. 2Pac - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size4511403 - Total Time186775 - Track Number39 - Year2002 - Date Modified2010-05-29T18:25:05Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3348734860 - Play Date UTC2010-02-11T16:07:40Z - Artwork Count1 - Persistent ID6EF4DB661715C52F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/39%20-%20Daz%20Dillinger%20Feat.%202Pac%20-%20We%20Put%20In%20Work.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1683 - - Track ID1683 - NameBird In The Scratch #2 - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size487080 - Total Time19095 - Track Number40 - Year2002 - Date Modified2010-05-29T18:25:05Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3425280459 - Play Date UTC2012-07-16T14:47:39Z - Skip Count2 - Skip Date2012-08-09T11:24:38Z - Artwork Count1 - Persistent ID2D33FCF132EDE2CA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/40%20-%20Dj%20Rectangle%20-%20Bird%20In%20The%20Scratch%20%232.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1685 - - Track ID1685 - NameSnoop Thuggin - ArtistSnoop Dogg - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size485814 - Total Time19043 - Track Number41 - Year2002 - Date Modified2010-05-29T18:25:05Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424339413 - Play Date UTC2012-07-05T17:23:33Z - Skip Count1 - Skip Date2012-08-09T22:18:49Z - Artwork Count1 - Persistent ID0CC100A94E79718F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/41%20-%20Snoop%20Dogg%20-%20Snoop%20Thuggin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1687 - - Track ID1687 - NameWe Thuggin - ArtistFat Joe Feat. R.Kelly - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size4042446 - Total Time167235 - Track Number42 - Year2002 - Date Modified2010-05-29T18:25:05Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID90A3BF574498FF28 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/42%20-%20Fat%20Joe%20Feat.%20R.Kelly%20-%20We%20Thuggin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1689 - - Track ID1689 - NameMethod Round Jigga - ArtistMethod Man - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size975458 - Total Time39444 - Track Number43 - Year2002 - Date Modified2010-05-29T18:25:05Z - Date Added2011-10-02T13:47:42Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-06-29T22:26:41Z - Artwork Count1 - Persistent ID62E54566C0C939DF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/43%20-%20Method%20Man%20-%20Method%20Round%20Jigga.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1691 - - Track ID1691 - NameJigga - ArtistJay-Z - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size3359061 - Total Time138762 - Track Number44 - Year2002 - Date Modified2010-05-29T18:25:05Z - Date Added2011-10-02T13:47:43Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID0EC1052E785B4055 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/44%20-%20Jay-Z%20-%20Jigga.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1693 - - Track ID1693 - NameScratch Addictive - ArtistDJ Rectangle - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size632525 - Total Time25155 - Track Number45 - Year2002 - Date Modified2010-05-29T18:25:05Z - Date Added2011-10-02T13:47:43Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-08-07T21:47:19Z - Artwork Count1 - Persistent IDF5CE5F45686EA237 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/45%20-%20Dj%20Rectangle%20-%20Scratch%20Addictive.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1695 - - Track ID1695 - NameAddictive - ArtistTruth Hurts Feat. Rakim - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size4287580 - Total Time177449 - Track Number46 - Year2002 - Date Modified2010-05-29T18:25:05Z - Date Added2011-10-02T13:47:43Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3349606556 - Play Date UTC2010-02-21T18:15:56Z - Skip Count1 - Skip Date2010-02-22T19:43:10Z - Artwork Count1 - Persistent IDFED5F5FA5870E2A8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/46%20-%20Truth%20Hurts%20Feat.%20Rakim%20-%20Addictive.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1697 - - Track ID1697 - NameRed's Delivery - ArtistRedman - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size719659 - Total Time28786 - Track Number47 - Year2002 - Date Modified2010-05-29T18:25:06Z - Date Added2011-10-02T13:47:43Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID3848E62E85E03254 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/47%20-%20Redman%20-%20Red's%20Delivery.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1699 - - Track ID1699 - NameSpecial Delivery (Remix) - ArtistG-Dep - Album ArtistDJ Rectangle - AlbumTurntable Tortures - GenreRap & Hip-Hop - KindMPEG audio file - Size6241745 - Total Time258873 - Track Number48 - Year2002 - Date Modified2010-05-29T18:25:06Z - Date Added2011-10-02T13:47:43Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDCCA068AECF86477B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/DJ%20Rectangle/DJ%20Rectangle%20-%20Turntable%20Tortures%20(2002)/48%20-%20G-Dep%20-%20Special%20Delivery%20(Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1701 - - Track ID1701 - NameHere I Am - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size2957200 - Total Time178768 - Track Number1 - Track Count14 - Date Modified2010-03-07T18:02:16Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-03T12:28:25Z - Artwork Count1 - Persistent ID5D219E27DE53D07E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/01%20Here%20I%20Am.m4a - File Folder Count-1 - Library Folder Count-1 - - 1703 - - Track ID1703 - NameTrue - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size5177686 - Total Time316788 - Track Number2 - Track Count14 - Date Modified2010-03-07T18:02:18Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3350880474 - Play Date UTC2010-03-08T12:07:54Z - Artwork Count1 - Persistent ID6A8E3CD643131AA5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/02%20True.m4a - File Folder Count-1 - Library Folder Count-1 - - 1705 - - Track ID1705 - NameTrue (Remix) Ft. Young Ro - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size3244292 - Total Time196718 - Track Number3 - Track Count14 - Date Modified2010-03-07T18:02:20Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3423576578 - Play Date UTC2012-06-26T21:29:38Z - Skip Count3 - Skip Date2012-08-17T12:44:25Z - Artwork Count1 - Persistent ID0A46B0038A7C5000 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/03%20True%20(Remix)%20Ft.%20Young%20Ro.m4a - File Folder Count-1 - Library Folder Count-1 - - 1707 - - Track ID1707 - NameClap - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size3477319 - Total Time211253 - Track Number4 - Track Count14 - Date Modified2010-03-07T18:02:21Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3365054641 - Play Date UTC2010-08-19T13:24:01Z - Skip Count1 - Skip Date2010-03-01T21:48:46Z - Artwork Count1 - Persistent ID0705461C4E7B5749 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/04%20Clap.m4a - File Folder Count-1 - Library Folder Count-1 - - 1709 - - Track ID1709 - NameMichael Watts 5000 - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size507937 - Total Time28535 - Track Number5 - Track Count14 - Date Modified2010-03-07T18:02:21Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3426167340 - Play Date UTC2012-07-26T21:09:00Z - Skip Count1 - Skip Date2011-02-04T00:30:26Z - Artwork Count1 - Persistent ID85B0F1B0C28686BA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/05%20Michael%20Watts%205000.m4a - File Folder Count-1 - Library Folder Count-1 - - 1711 - - Track ID1711 - NameI Got Game - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size4641954 - Total Time283723 - Track Number6 - Track Count14 - Date Modified2010-03-07T18:02:23Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3348744744 - Play Date UTC2010-02-11T18:52:24Z - Skip Count1 - Skip Date2012-08-10T11:33:35Z - Artwork Count1 - Persistent ID03AE1AAD632B9269 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/06%20I%20Got%20Game.m4a - File Folder Count-1 - Library Folder Count-1 - - 1713 - - Track ID1713 - NameWhat Would U Do - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size4054638 - Total Time247291 - Track Number7 - Track Count14 - Date Modified2010-03-07T18:02:24Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Artwork Count1 - Persistent ID24728F553F708324 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/07%20What%20Would%20U%20Do.m4a - File Folder Count-1 - Library Folder Count-1 - - 1715 - - Track ID1715 - NameHouse Of Pain - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size4236685 - Total Time258575 - Track Number8 - Track Count14 - Date Modified2010-03-07T18:02:26Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3391261439 - Play Date UTC2011-06-18T21:03:59Z - Skip Count1 - Skip Date2012-04-23T11:36:25Z - Artwork Count1 - Persistent ID0382C3199A3F6670 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/08%20House%20Of%20Pain.m4a - File Folder Count-1 - Library Folder Count-1 - - 1717 - - Track ID1717 - NameRespect My Grind - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size3396509 - Total Time206214 - Track Number9 - Track Count14 - Date Modified2010-03-07T18:02:27Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3423571299 - Play Date UTC2012-06-26T20:01:39Z - Artwork Count1 - Persistent ID1F2183DA903300C6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/09%20Respect%20My%20Grind.m4a - File Folder Count-1 - Library Folder Count-1 - - 1719 - - Track ID1719 - NameCan't Give U Da World - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size5832003 - Total Time357121 - Track Number10 - Track Count14 - Date Modified2010-03-07T18:02:31Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-28T16:46:35Z - Artwork Count1 - Persistent IDBB5BDAD4EBDB11ED - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/10%20Can't%20Give%20U%20Da%20World.m4a - File Folder Count-1 - Library Folder Count-1 - - 1721 - - Track ID1721 - NameBack Up Plan - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size7449141 - Total Time456967 - Track Number11 - Track Count14 - Date Modified2010-03-07T18:02:35Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Artwork Count1 - Persistent ID5314823362E616CB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/11%20Back%20Up%20Plan.m4a - File Folder Count-1 - Library Folder Count-1 - - 1723 - - Track ID1723 - NameStill (N Love With My Money) - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size4544264 - Total Time277685 - Track Number12 - Track Count14 - Date Modified2010-03-07T18:02:38Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-04-25T12:52:34Z - Artwork Count1 - Persistent IDBAF50C0CBAD6286E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/12%20Still%20(N%20Love%20With%20My%20Money).m4a - File Folder Count-1 - Library Folder Count-1 - - 1725 - - Track ID1725 - NameShe's Gangsta - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size5204482 - Total Time318437 - Track Number13 - Track Count14 - Date Modified2010-03-07T18:02:40Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3349608378 - Play Date UTC2010-02-21T18:46:18Z - Skip Count1 - Skip Date2011-05-13T21:46:54Z - Artwork Count1 - Persistent ID55B0A575C645DD05 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/13%20She's%20Gangsta.m4a - File Folder Count-1 - Library Folder Count-1 - - 1727 - - Track ID1727 - NameOutro - ArtistPaul Wall & Chamillionaire - AlbumControversy Sells Chopped & Skrewed - GenreHip Hop/Rap - KindAAC audio file - Size2916662 - Total Time176261 - Track Number14 - Track Count14 - Date Modified2010-03-07T18:02:41Z - Date Added2011-10-02T13:47:43Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-12T17:05:01Z - Artwork Count1 - Persistent IDC8E211364776A35D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Paul%20Wall%20and%20Chamillionaire%20-%20Controversy%20Sells%20Chopped%20&%20Skrewed/14%20Outro.m4a - File Folder Count-1 - Library Folder Count-1 - - 1729 - - Track ID1729 - NameIndestructible Sam - ArtistBuck65 - KindMPEG audio file - Size2264134 - Total Time187820 - Date Modified2009-08-29T18:12:32Z - Date Added2011-10-02T13:47:43Z - Bit Rate96 - Sample Rate22050 - Play Count2 - Play Date3426427805 - Play Date UTC2012-07-29T21:30:05Z - Skip Count1 - Skip Date2010-01-18T22:40:03Z - Persistent IDEE24941FFB37A135 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Buck65/Buck65%20-%20Indestructible%20Sam.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1731 - - Track ID1731 - NamePen Theif - ArtistBuck65 - GenreHip-Hop - KindMPEG audio file - Size5539840 - Total Time276924 - Track Number4 - Date Modified2009-08-29T18:12:18Z - Date Added2011-10-02T13:47:43Z - Bit Rate160 - Sample Rate44100 - Skip Count3 - Skip Date2012-06-11T13:39:51Z - Persistent IDBC9D30C4AB4CD9E5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Buck65/Buck65%20-%20Pen%20Theif.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1733 - - Track ID1733 - NameDrug Music - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size5012337 - Total Time208822 - Year2002 - Date Modified2009-08-29T18:14:13Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Sort AlbumFuture is Now - Persistent ID31D4AD2EA96AC1C1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/02%20Drug%20Music.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1735 - - Track ID1735 - NameIf You Got Love - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size5522588 - Total Time230086 - Year2002 - Date Modified2009-08-29T18:14:13Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Play Count1 - Play Date3424265076 - Play Date UTC2012-07-04T20:44:36Z - Skip Count1 - Skip Date2012-07-26T13:25:54Z - Sort AlbumFuture is Now - Persistent ID990A9A462DDB5575 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/04%20you%20got%20love.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1737 - - Track ID1737 - NameThere is No Future (Ft. Necro) - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size5986013 - Total Time249391 - Year2002 - Date Modified2009-08-29T18:14:13Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Skip Count3 - Skip Date2012-07-11T13:37:12Z - Sort AlbumFuture is Now - Persistent IDE81BC2A948475EE0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/05%20there%20is%20no%20future%20ft.%20necro.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1739 - - Track ID1739 - NameUncle Howie - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size1456226 - Total Time60656 - Year2002 - Date Modified2009-08-29T18:14:13Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Play Count1 - Play Date3348729474 - Play Date UTC2010-02-11T14:37:54Z - Skip Count2 - Skip Date2012-08-09T00:01:52Z - Sort AlbumFuture is Now - Persistent ID4ECFB7697D8A0A14 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/06%20uncle%20howie.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1741 - - Track ID1741 - NameRock Stars - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size5760161 - Total Time239986 - Year2002 - Date Modified2009-08-29T18:14:13Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Play Count1 - Play Date3424300434 - Play Date UTC2012-07-05T06:33:54Z - Skip Count2 - Skip Date2012-06-11T13:43:30Z - Sort AlbumFuture is Now - Persistent IDB92B0DC31E434864 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/07%20rock%20stars.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1743 - - Track ID1743 - NameSay Goodbye to Yesterday - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size5669362 - Total Time236199 - Year2002 - Date Modified2009-08-29T18:14:13Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Skip Count3 - Skip Date2012-08-17T22:21:08Z - Sort AlbumFuture is Now - Persistent ID972249CD1EE5E2AA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/08%20say%20goodbye%20to%20yesterday.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1745 - - Track ID1745 - NameStrange Universe (Ft. MF Doom) - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size3022475 - Total Time125910 - Year2002 - Date Modified2009-08-29T18:14:13Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Play Count1 - Play Date3424207077 - Play Date UTC2012-07-04T04:37:57Z - Skip Count1 - Skip Date2011-06-07T21:42:40Z - Sort AlbumFuture is Now - Persistent IDE65A5203BF9D0314 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/10%20strange%20universe%20ft%20MF%20doom.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1747 - - Track ID1747 - NameCult Leader - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size5961552 - Total Time248372 - Year2002 - Date Modified2009-08-29T18:14:13Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Skip Count2 - Skip Date2012-08-17T20:31:38Z - Sort AlbumFuture is Now - Persistent IDB64132789F6B8F2A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/11%20cult%20leader.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1749 - - Track ID1749 - NameSuicide Bomb (Ft. Beatnuts and - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size5113208 - Total Time213028 - Year2002 - Date Modified2009-08-29T18:14:13Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Play Count1 - Play Date3424208638 - Play Date UTC2012-07-04T05:03:58Z - Skip Count2 - Skip Date2011-05-10T12:58:07Z - Sort AlbumFuture is Now - Persistent ID517DAD9B5902D006 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/13%20suicide%20bomb%20ft.%20beatnuts%20and%20al%20tariq.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1751 - - Track ID1751 - NameWhere You Wanna Go - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size668164 - Total Time27820 - Year2002 - Date Modified2009-08-29T18:14:14Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Play Count1 - Play Date3348719358 - Play Date UTC2010-02-11T11:49:18Z - Skip Count2 - Skip Date2012-05-10T21:34:23Z - Sort AlbumFuture is Now - Persistent ID9259EC0357E963E4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/14%20where%20you%20wanna%20go.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1753 - - Track ID1753 - NameWe Are the Future - ArtistNon Phixion - AlbumThe Future is Now - GenreHip-Hop - KindMPEG audio file - Size6142594 - Total Time255921 - Year2002 - Date Modified2009-08-29T18:14:15Z - Date Added2011-10-02T13:47:44Z - Bit Rate192 - Sample Rate44100 - CommentsCms2k1 - Skip Count1 - Skip Date2012-04-23T11:36:42Z - Sort AlbumFuture is Now - Persistent ID498EAA090D02FFCD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Non%20Phixion/The%20Future%20is%20Now/15%20we%20are%20the%20future.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1755 - - Track ID1755 - NamePress Play - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size2179704 - Total Time80927 - Track Number1 - Track Count12 - Year1996 - Date Modified2008-11-26T05:22:26Z - Date Added2011-10-02T13:47:44Z - Bit Rate215 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Play Count2 - Play Date3360854521 - Play Date UTC2010-07-01T22:42:01Z - Skip Count4 - Skip Date2012-08-17T20:33:53Z - Persistent IDDC60F80753F78E6F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/01%20-%20Press%20Play.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1757 - - Track ID1757 - NamePop's Love Suicide - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size8262898 - Total Time223320 - Track Number2 - Track Count12 - Year1996 - Date Modified2008-11-26T05:22:36Z - Date Added2011-10-02T13:47:44Z - Bit Rate295 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Play Count5 - Play Date3426688276 - Play Date UTC2012-08-01T21:51:16Z - Persistent IDD508253EB160A8C1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/02%20-%20Pop's%20Love%20Suicide.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1759 - - Track ID1759 - NameTumble In The Rough - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size6966128 - Total Time198687 - Track Number3 - Track Count12 - Year1996 - Date Modified2008-11-26T05:22:44Z - Date Added2011-10-02T13:47:44Z - Bit Rate280 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Play Count3 - Play Date3389378054 - Play Date UTC2011-05-28T01:54:14Z - Skip Count1 - Skip Date2012-06-28T16:44:50Z - Persistent ID40E7A2EF52367535 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/03%20-%20Tumble%20In%20The%20Rough.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1761 - - Track ID1761 - NameBig Bang Baby - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size7537384 - Total Time203859 - Track Number4 - Track Count12 - Year1996 - Date Modified2008-11-26T05:22:52Z - Date Added2011-10-02T13:47:44Z - Bit Rate295 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Play Count2 - Play Date3426167016 - Play Date UTC2012-07-26T21:03:36Z - Persistent IDE1F9AC44B648AE6F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/04%20-%20Big%20Bang%20Baby.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1763 - - Track ID1763 - NameLady Picture Show - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size9229094 - Total Time248920 - Track Number5 - Track Count12 - Year1996 - Date Modified2008-11-26T05:23:01Z - Date Added2011-10-02T13:47:44Z - Bit Rate296 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Play Count1 - Play Date3334401925 - Play Date UTC2009-08-29T18:45:25Z - Skip Count1 - Skip Date2010-03-01T21:48:56Z - Persistent ID022481FD8B9C1462 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/05%20-%20Lady%20Picture%20Show.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1765 - - Track ID1765 - NameAnd So I Know - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size7403990 - Total Time237714 - Track Number6 - Track Count12 - Year1996 - Date Modified2008-11-26T05:23:09Z - Date Added2011-10-02T13:47:44Z - Bit Rate249 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Play Count2 - Play Date3360854217 - Play Date UTC2010-07-01T22:36:57Z - Skip Count1 - Skip Date2012-06-28T13:12:02Z - Persistent IDD6DBF6EE64B996F0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/06%20-%20And%20So%20I%20Know.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1767 - - Track ID1767 - NameTrippin' On A Hole In A Paper Heart - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size6516570 - Total Time176666 - Track Number7 - Track Count12 - Year1996 - Date Modified2008-11-26T05:23:15Z - Date Added2011-10-02T13:47:44Z - Bit Rate294 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Play Count3 - Play Date3376739147 - Play Date UTC2011-01-01T19:05:47Z - Skip Count1 - Skip Date2012-04-24T13:17:56Z - Persistent IDBCFF54FAAD378E15 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/07%20-%20Trippin'%20On%20A%20Hole%20In%20A%20Paper%20Heart.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1769 - - Track ID1769 - NameArt School Girl - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size7021203 - Total Time215353 - Track Number8 - Track Count12 - Year1996 - Date Modified2008-11-26T05:23:22Z - Date Added2011-10-02T13:47:44Z - Bit Rate260 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Play Count3 - Play Date3350310466 - Play Date UTC2010-03-01T21:47:46Z - Persistent IDD15D47A55B60ADD5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/08%20-%20Art%20School%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1771 - - Track ID1771 - NameAdhesive - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size12742336 - Total Time334654 - Track Number9 - Track Count12 - Year1996 - Date Modified2008-11-26T05:23:33Z - Date Added2011-10-02T13:47:44Z - Bit Rate304 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Play Count1 - Play Date3360855205 - Play Date UTC2010-07-01T22:53:25Z - Persistent ID2567A4C1BD04F4A8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/09%20-%20Adhesive.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1773 - - Track ID1773 - NameRide the Cliche - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size7443394 - Total Time197720 - Track Number10 - Track Count12 - Year1996 - Date Modified2008-11-26T05:23:39Z - Date Added2011-10-02T13:47:44Z - Bit Rate301 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Skip Count1 - Skip Date2012-06-12T21:09:03Z - Persistent ID61E5FE6DB093005A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/10%20-%20Ride%20the%20Cliche.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1775 - - Track ID1775 - NameDaisy - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size3428638 - Total Time138736 - Track Number11 - Track Count12 - Year1996 - Date Modified2008-11-26T05:23:44Z - Date Added2011-10-02T13:47:45Z - Bit Rate197 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Skip Count1 - Skip Date2010-08-27T17:32:48Z - Persistent ID68615D184BFEBDCC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/11%20-%20Daisy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1777 - - Track ID1777 - NameSeven Caged Tigers - ArtistStone Temple Pilots - AlbumTiny Music...Songs from the Vatican Gift Shop - GenreGrunge - KindMPEG audio file - Size9096328 - Total Time257123 - Track Number12 - Track Count12 - Year1996 - Date Modified2008-11-26T05:23:52Z - Date Added2011-10-02T13:47:45Z - Bit Rate282 - Sample Rate44100 - CommentsYEAR: 1996 ID3G: 17 - Skip Count2 - Skip Date2011-05-06T20:36:00Z - Persistent IDA994A54416ACE97E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Tiny%20Music...Songs%20from%20the%20Vatican%20Gift%20Shop%20(1996)/12%20-%20Seven%20Caged%20Tigers.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1779 - - Track ID1779 - NameWicked And Weird - ArtistBuck65 - AlbumTalkin Honky Blues - GenreHip-Hop - KindMPEG audio file - Size5347340 - Total Time222798 - Year2003 - Date Modified2010-03-13T19:51:02Z - Date Added2011-10-02T13:47:45Z - Bit Rate192 - Sample Rate44100 - Play Count8 - Play Date3427381353 - Play Date UTC2012-08-09T22:22:33Z - Persistent IDC158CA14AC6AC54C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Buck65/Buck65%20-%20Talkin%20Honky%20Blues%20(2003)/02-buck_65-wicked_and_weird-jce.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1781 - - Track ID1781 - NameBackpacker (live-10-21-00) - ArtistAOI - GroupingAlternative Hip Hop - GenreHip-Hop - KindMPEG audio file - Size4527776 - Total Time282462 - Date Modified2000-12-14T02:19:52Z - Date Added2011-10-02T13:47:45Z - Bit Rate128 - Sample Rate44100 - Play Count5 - Play Date3427300365 - Play Date UTC2012-08-08T23:52:45Z - Artwork Count1 - Persistent ID41A1669D10565D93 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/AOI%20-%20Backpacker%20-%20Live%20in%20Providence%202000.10.21.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1783 - - Track ID1783 - NameCity of Gainesville - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size2091500 - Total Time113893 - Track Number1 - Year2008 - Date Modified2009-10-30T16:21:15Z - Date Added2011-10-02T13:47:45Z - Bit Rate146 - Sample Rate44100 - Play Count6 - Play Date3424302739 - Play Date UTC2012-07-05T07:12:19Z - Skip Count1 - Skip Date2012-06-27T15:19:29Z - Persistent ID23345EEFDEF12E9E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/01-less_than_jake-city_of_gainesville-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1785 - - Track ID1785 - Namethe state of florida - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size2950575 - Total Time135262 - Track Number2 - Year2008 - Date Modified2009-08-29T20:38:56Z - Date Added2011-10-02T13:47:45Z - Bit Rate174 - Sample Rate44100 - CommentsRecycled_INT - Sort Namestate of florida - Persistent IDECB85E073584015B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/02-less_than_jake-the_state_of_florida-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1787 - - Track ID1787 - NameDoes the Lion City Still Roar - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size3828345 - Total Time161123 - Track Number3 - Year2008 - Date Modified2009-10-30T16:24:50Z - Date Added2011-10-02T13:47:45Z - Bit Rate189 - Sample Rate44100 - Play Count5 - Play Date3379652193 - Play Date UTC2011-02-04T12:16:33Z - Persistent IDDC9DD997DE4DE49E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/03-less_than_jake-does_the_lion_city_still_roar-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1789 - - Track ID1789 - NameSummoning Monsters - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size4058796 - Total Time162481 - Track Number4 - Year2008 - Date Modified2009-10-30T16:24:58Z - Date Added2011-10-02T13:47:45Z - Bit Rate199 - Sample Rate44100 - Play Count5 - Play Date3379685850 - Play Date UTC2011-02-04T21:37:30Z - Skip Count2 - Skip Date2012-04-25T21:12:01Z - Persistent IDA1D83C799FEF37B4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/04-less_than_jake-summon_monsters-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1791 - - Track ID1791 - NameAbandon Ship - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size4939432 - Total Time209841 - Track Number5 - Year2008 - Date Modified2009-10-30T16:25:06Z - Date Added2011-10-02T13:47:45Z - Bit Rate188 - Sample Rate44100 - Play Count1 - Play Date3354542579 - Play Date UTC2010-04-19T21:22:59Z - Skip Count3 - Skip Date2012-08-09T22:39:24Z - Persistent ID03341B7AAD6557F8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/05-less_than_jake-abandon_ship-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1793 - - Track ID1793 - Namehandshake meet pokerface - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size4374847 - Total Time161802 - Track Number6 - Year2008 - Date Modified2009-08-29T20:38:56Z - Date Added2011-10-02T13:47:45Z - Bit Rate216 - Sample Rate44100 - CommentsRecycled_INT - Persistent IDE73AF9945D1087D0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/06-less_than_jake-handshake_meet_pokerface-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1795 - - Track ID1795 - NameSettling Son - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size4574354 - Total Time181185 - Track Number7 - Year2008 - Date Modified2009-10-30T16:25:11Z - Date Added2011-10-02T13:47:45Z - Bit Rate201 - Sample Rate44100 - Play Count4 - Play Date3424194398 - Play Date UTC2012-07-04T01:06:38Z - Persistent ID04245A0B2C91B02D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/07-less_than_jake-settling_son-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1797 - - Track ID1797 - NameMalachi Richter's Liquor's Quicker - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size3874130 - Total Time157152 - Track Number8 - Year2008 - Date Modified2009-10-30T16:27:14Z - Date Added2011-10-02T13:47:45Z - Bit Rate196 - Sample Rate44100 - Play Count4 - Play Date3425285336 - Play Date UTC2012-07-16T16:08:56Z - Skip Count2 - Skip Date2012-05-23T13:48:43Z - Persistent ID6FD43F63CCF9410A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/08-less_than_jake-malachi_richters_liquors_quicker-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1799 - - Track ID1799 - NameGolden Age of My Negative Ways - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size2405996 - Total Time100519 - Track Number9 - Year2008 - Date Modified2009-10-30T16:27:27Z - Date Added2011-10-02T13:47:45Z - Bit Rate191 - Sample Rate44100 - Play Count3 - Play Date3354507163 - Play Date UTC2010-04-19T11:32:43Z - Skip Count1 - Skip Date2012-08-10T11:32:09Z - Persistent ID1211B1329EE3CAF7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/09-less_than_jake-golden_age_of_my_negative_ways-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1801 - - Track ID1801 - NameThe Space They Can't Touch - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size4153649 - Total Time173766 - Track Number10 - Year2008 - Date Modified2009-10-30T16:27:41Z - Date Added2011-10-02T13:47:45Z - Bit Rate191 - Sample Rate44100 - Play Count8 - Play Date3424204515 - Play Date UTC2012-07-04T03:55:15Z - Skip Count3 - Skip Date2012-05-31T21:11:00Z - Sort NameSpace They Can't Touch - Persistent IDEE341189984D8320 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/10-less_than_jake-the_space_they_cant_touch-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1803 - - Track ID1803 - NameConviction Notice - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size3877246 - Total Time154853 - Track Number11 - Year2008 - Date Modified2009-10-30T16:27:49Z - Date Added2011-10-02T13:47:45Z - Bit Rate200 - Sample Rate44100 - Play Count6 - Play Date3424194552 - Play Date UTC2012-07-04T01:09:12Z - Persistent ID1176C2E0581FF691 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/11-less_than_jake-conviction_notice-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1805 - - Track ID1805 - Namethis one is going to leave a bruise - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size3498745 - Total Time145658 - Track Number12 - Year2008 - Date Modified2009-08-29T20:38:57Z - Date Added2011-10-02T13:47:45Z - Bit Rate191 - Sample Rate44100 - CommentsRecycled_INT - Persistent ID6C32DB9B0D14EEB0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/12-less_than_jake-this_one_is_going_to_leave_a_bruise-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1807 - - Track ID1807 - NameThe Life of the Party Has Left the Building - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size838221 - Total Time39262 - Track Number13 - Year2008 - Date Modified2009-10-30T16:28:15Z - Date Added2011-10-02T13:47:45Z - Bit Rate169 - Sample Rate44100 - Play Count5 - Play Date3387898874 - Play Date UTC2011-05-10T23:01:14Z - Skip Count2 - Skip Date2012-04-25T21:17:29Z - Sort NameLife of the Party Has Left the Building - Persistent IDA3C20535BA5E13DF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/13-less_than_jake-the_life_of_the_party_has_left_the_building-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1809 - - Track ID1809 - NameDevil in my DNA - ArtistLess Than Jake - AlbumGNV FLA - GenreSka/Punk - KindMPEG audio file - Size5291979 - Total Time208953 - Track Number14 - Year2008 - Date Modified2009-10-30T16:27:56Z - Date Added2011-10-02T13:47:46Z - Bit Rate202 - Sample Rate44100 - Play Count3 - Play Date3349683768 - Play Date UTC2010-02-22T15:42:48Z - Skip Count1 - Skip Date2011-05-11T21:26:29Z - Persistent IDBD3412907CA697B3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/GNV%20FLA%20(2008)/14-less_than_jake-devil_in_my_dna-rec.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1811 - - Track ID1811 - NameCreatures (For a While) - Artist311 - Album Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size7378944 - Total Time266605 - Track Number1 - Year2003 - Date Modified2009-02-05T22:51:35Z - Date Added2011-10-02T13:47:46Z - Bit Rate220 - Sample Rate44100 - Play Count5 - Play Date3382766679 - Play Date UTC2011-03-12T13:24:39Z - Artwork Count1 - Persistent ID3E04A93CAD1C7818 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/01%20-%20Creatures%20(For%20a%20While).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1813 - - Track ID1813 - NameReconsider Everything - Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size4033773 - Total Time170057 - Track Number2 - Year2003 - Date Modified2009-02-05T22:51:36Z - Date Added2011-10-02T13:47:46Z - Bit Rate187 - Sample Rate44100 - CommentsTrack 2 - Play Count6 - Play Date3420610675 - Play Date UTC2012-05-23T13:37:55Z - Skip Count2 - Skip Date2012-08-17T13:14:12Z - Artwork Count1 - Persistent IDA70957FD6B297FB3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/02%20-%20Reconsider%20Everything.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1815 - - Track ID1815 - NameCrack the Code - Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size6674512 - Total Time235520 - Track Number3 - Year2003 - Date Modified2009-02-05T22:51:37Z - Date Added2011-10-02T13:47:46Z - Bit Rate225 - Sample Rate44100 - CommentsTrack 3 - Play Count5 - Play Date3382767084 - Play Date UTC2011-03-12T13:31:24Z - Skip Count1 - Skip Date2012-07-27T13:07:18Z - Artwork Count1 - Persistent ID28539FABB263384D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/03%20-%20Crack%20the%20Code.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1817 - - Track ID1817 - NameSame Mistake Twice - Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size6091330 - Total Time201325 - Track Number4 - Year2003 - Date Modified2009-02-05T22:51:37Z - Date Added2011-10-02T13:47:46Z - Bit Rate240 - Sample Rate44100 - CommentsTrack 4 - Play Count5 - Play Date3382767285 - Play Date UTC2011-03-12T13:34:45Z - Skip Count2 - Skip Date2012-07-30T13:26:09Z - Artwork Count1 - Persistent ID27208ABA1D4BE798 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/04%20-%20Same%20Mistake%20Twice.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1819 - - Track ID1819 - NameBeyond the Grey Sky - Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size6246849 - Total Time258586 - Track Number5 - Year2003 - Date Modified2009-02-05T22:51:39Z - Date Added2011-10-02T13:47:46Z - Bit Rate192 - Sample Rate44100 - CommentsTrack 5 - Play Count4 - Play Date3382767543 - Play Date UTC2011-03-12T13:39:03Z - Artwork Count1 - Persistent ID34A5CDBCA8C6D8EC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/05%20-%20Beyond%20the%20Grey%20Sky.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1821 - - Track ID1821 - NameSeems Uncertain - Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size5252180 - Total Time215379 - Track Number6 - Year2003 - Date Modified2009-02-05T22:51:40Z - Date Added2011-10-02T13:47:46Z - Bit Rate193 - Sample Rate44100 - CommentsTrack 6 - Play Count4 - Play Date3382767759 - Play Date UTC2011-03-12T13:42:39Z - Skip Count1 - Skip Date2011-03-12T10:55:10Z - Artwork Count1 - Persistent ID4623646E8AB87A83 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/06%20-%20Seems%20Uncertain.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1823 - - Track ID1823 - NameStill Dreaming - Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size6255890 - Total Time221648 - Track Number7 - Year2003 - Date Modified2009-02-05T22:51:41Z - Date Added2011-10-02T13:47:46Z - Bit Rate224 - Sample Rate44100 - CommentsTrack 7 - Play Count6 - Play Date3382767980 - Play Date UTC2011-03-12T13:46:20Z - Skip Count1 - Skip Date2012-08-07T21:53:52Z - Artwork Count1 - Persistent ID8DA2236D806AC489 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/07%20-%20Still%20Dreaming.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1825 - - Track ID1825 - NameGive Me a Call - Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size5290695 - Total Time201221 - Track Number8 - Year2003 - Date Modified2009-02-05T22:51:42Z - Date Added2011-10-02T13:47:46Z - Bit Rate208 - Sample Rate44100 - CommentsTrack 8 - Play Count5 - Play Date3382768181 - Play Date UTC2011-03-12T13:49:41Z - Skip Count1 - Skip Date2010-11-13T12:06:56Z - Artwork Count1 - Persistent ID2262B96572B8F395 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/08%20-%20Give%20Me%20a%20Call.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1827 - - Track ID1827 - NameDon't Dwell - Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size4071361 - Total Time159451 - Track Number9 - Year2003 - Date Modified2009-02-05T22:51:42Z - Date Added2011-10-02T13:47:46Z - Bit Rate202 - Sample Rate44100 - CommentsTrack 9 - Play Count6 - Play Date3390831631 - Play Date UTC2011-06-13T21:40:31Z - Skip Count3 - Skip Date2012-06-26T13:49:49Z - Artwork Count1 - Persistent ID640373CCBAFA9797 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/09%20-%20Don't%20Dwell.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1829 - - Track ID1829 - NameOther Side Of Things - Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size4764281 - Total Time188447 - Track Number10 - Year2003 - Date Modified2009-02-05T22:51:43Z - Date Added2011-10-02T13:47:46Z - Bit Rate200 - Sample Rate44100 - CommentsTrack 10 - Play Count4 - Play Date3382766017 - Play Date UTC2011-03-12T13:13:37Z - Artwork Count1 - Persistent ID223AD38BD145BCCC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/10%20-%20Other%20Side%20Of%20Things.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1831 - - Track ID1831 - NameSometimes Jacks Rule the Realm - Artist311 - AlbumEvolver - GenreAlt. Rock - KindMPEG audio file - Size9431247 - Total Time395389 - Track Number11 - Year2003 - Date Modified2009-02-05T22:51:44Z - Date Added2011-10-02T13:47:46Z - Bit Rate190 - Sample Rate44100 - CommentsTrack 11 - Play Count5 - Play Date3424189921 - Play Date UTC2012-07-03T23:52:01Z - Artwork Count1 - Persistent ID2073D7814AD8D9BF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Evolver%20(2003)/11%20-%20Sometimes%20Jacks%20Rule%20the%20Realm.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1833 - - Track ID1833 - NameDown - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size4781822 - Total Time170971 - Track Number1 - Year2004 - Date Modified2009-02-05T22:52:06Z - Date Added2011-10-02T13:47:46Z - Bit Rate221 - Sample Rate44100 - Play Count2 - Play Date3426693631 - Play Date UTC2012-08-01T23:20:31Z - Artwork Count1 - Persistent ID6443CBECE0B89B4D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/01%20-%20Down.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1835 - - Track ID1835 - NameFlowing - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size5148415 - Total Time190667 - Track Number2 - Year2004 - Date Modified2009-02-05T22:52:06Z - Date Added2011-10-02T13:47:46Z - Bit Rate214 - Sample Rate44100 - Play Count1 - Play Date3348727393 - Play Date UTC2010-02-11T14:03:13Z - Artwork Count1 - Persistent IDB925EBB2C7DF99BC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/02%20-%20Flowing.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1837 - - Track ID1837 - NameAll Mixed Up - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size4340753 - Total Time179278 - Track Number3 - Year2004 - Date Modified2009-02-05T22:52:07Z - Date Added2011-10-02T13:47:46Z - Bit Rate192 - Sample Rate44100 - Artwork Count1 - Persistent IDD6D9AA8365920A72 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/03%20-%20All%20Mixed%20Up.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1839 - - Track ID1839 - NameAmber - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size4864348 - Total Time207229 - Track Number4 - Year2004 - Date Modified2009-02-05T22:52:07Z - Date Added2011-10-02T13:47:47Z - Bit Rate186 - Sample Rate44100 - Play Count3 - Play Date3423719732 - Play Date UTC2012-06-28T13:15:32Z - Artwork Count1 - Persistent IDC30B3D233D1CCA2D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/04%20-%20Amber.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1841 - - Track ID1841 - NameCome Original - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size6191355 - Total Time219689 - Track Number5 - Year2004 - Date Modified2009-02-05T22:52:08Z - Date Added2011-10-02T13:47:47Z - Bit Rate224 - Sample Rate44100 - Play Count2 - Play Date3426689598 - Play Date UTC2012-08-01T22:13:18Z - Artwork Count1 - Persistent IDC8D3B0E48B762EE4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/05%20-%20Come%20Original.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1843 - - Track ID1843 - NameBeautiful Disaster - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size6366631 - Total Time238132 - Track Number6 - Year2004 - Date Modified2009-02-05T22:52:09Z - Date Added2011-10-02T13:47:47Z - Bit Rate212 - Sample Rate44100 - Play Count1 - Play Date3420362449 - Play Date UTC2012-05-20T16:40:49Z - Skip Count3 - Skip Date2012-04-23T11:36:38Z - Artwork Count1 - Persistent ID933DDE2D9404DC21 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/06%20-%20Beautiful%20Disaster.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1845 - - Track ID1845 - NameCreatures (For A While) - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size7703780 - Total Time263079 - Track Number7 - Year2004 - Date Modified2009-02-05T22:52:10Z - Date Added2011-10-02T13:47:47Z - Bit Rate233 - Sample Rate44100 - Play Count3 - Play Date3356765811 - Play Date UTC2010-05-15T14:56:51Z - Skip Count2 - Skip Date2012-05-23T19:02:24Z - Artwork Count1 - Persistent ID6251ED020C680187 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/07%20-%20Creatures%20(For%20A%20While).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1847 - - Track ID1847 - NameDo You Right - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size7425352 - Total Time257724 - Track Number8 - Year2004 - Date Modified2009-02-05T22:52:12Z - Date Added2011-10-02T13:47:47Z - Bit Rate229 - Sample Rate44100 - Play Count1 - Play Date3348720193 - Play Date UTC2010-02-11T12:03:13Z - Skip Count1 - Skip Date2010-04-05T01:24:00Z - Artwork Count1 - Persistent IDA93ADBB9CFE64F21 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/08%20-%20Do%20You%20Right.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1849 - - Track ID1849 - NameI'll Be Here Awhile - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size4986212 - Total Time206524 - Track Number9 - Year2004 - Date Modified2009-02-05T22:52:13Z - Date Added2011-10-02T13:47:47Z - Bit Rate191 - Sample Rate44100 - Play Count1 - Play Date3426689010 - Play Date UTC2012-08-01T22:03:30Z - Skip Count1 - Skip Date2010-02-26T11:55:38Z - Artwork Count1 - Persistent ID35C25EF5ED905A0A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/09%20-%20I'll%20Be%20Here%20Awhile.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1851 - - Track ID1851 - NameYou Wouldn't Believe - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size6159682 - Total Time221309 - Track Number10 - Year2004 - Date Modified2009-02-05T22:52:14Z - Date Added2011-10-02T13:47:47Z - Bit Rate221 - Sample Rate44100 - Play Count2 - Play Date3379685555 - Play Date UTC2011-02-04T21:32:35Z - Skip Count1 - Skip Date2012-05-10T21:41:06Z - Artwork Count1 - Persistent IDC3FA3389B12DD58A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/10%20-%20You%20Wouldn't%20Believe.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1853 - - Track ID1853 - NameTransistor - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size5335471 - Total Time181629 - Track Number11 - Year2004 - Date Modified2009-02-05T22:52:14Z - Date Added2011-10-02T13:47:47Z - Bit Rate233 - Sample Rate44100 - Skip Count2 - Skip Date2010-04-05T01:27:48Z - Artwork Count1 - Persistent ID8EAC33406D90648A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/11%20-%20Transistor.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1855 - - Track ID1855 - NameDon't Stay Home - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size4861062 - Total Time162403 - Track Number12 - Year2004 - Date Modified2009-02-05T22:52:15Z - Date Added2011-10-02T13:47:47Z - Bit Rate237 - Sample Rate44100 - Play Count1 - Play Date3424205878 - Play Date UTC2012-07-04T04:17:58Z - Skip Count2 - Skip Date2012-04-24T13:22:52Z - Artwork Count1 - Persistent ID6C70249924490FED - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/12%20-%20Don't%20Stay%20Home.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1857 - - Track ID1857 - NameHomebrew - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size5267738 - Total Time183405 - Track Number13 - Year2004 - Date Modified2009-02-05T22:52:15Z - Date Added2011-10-02T13:47:47Z - Bit Rate228 - Sample Rate44100 - Play Count1 - Play Date3379951091 - Play Date UTC2011-02-07T23:18:11Z - Artwork Count1 - Persistent ID2E27CA7B843D3020 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/13%20-%20Homebrew.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1859 - - Track ID1859 - NameBeyond The Gray Sky - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size6496881 - Total Time254824 - Track Number14 - Year2004 - Date Modified2009-02-05T22:52:16Z - Date Added2011-10-02T13:47:47Z - Bit Rate202 - Sample Rate44100 - Play Count4 - Play Date3424195337 - Play Date UTC2012-07-04T01:22:17Z - Artwork Count1 - Persistent ID6F166EF4199BAF0C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/14%20-%20Beyond%20The%20Gray%20Sky.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1861 - - Track ID1861 - NameLove Song - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size5588078 - Total Time206471 - Track Number15 - Year2004 - Date Modified2010-02-22T01:54:30Z - Date Added2011-10-02T13:47:47Z - Bit Rate215 - Sample Rate44100 - Skip Count1 - Skip Date2010-04-05T13:00:02Z - Artwork Count1 - Persistent ID04A20D491004673E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/15%20-%20Love%20Song.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1863 - - Track ID1863 - NameHow Do You Feel? - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size5591903 - Total Time182909 - Track Number16 - Year2004 - Date Modified2009-02-05T22:52:17Z - Date Added2011-10-02T13:47:47Z - Bit Rate242 - Sample Rate44100 - Play Count1 - Play Date3422028441 - Play Date UTC2012-06-08T23:27:21Z - Artwork Count1 - Persistent IDE9DC76CB93008D17 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/16%20-%20How%20Do%20You%20Feel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1865 - - Track ID1865 - NameFirst Straw - Artist311 - AlbumGreatest Hits '93-'03 - GenreAlt. Rock - KindMPEG audio file - Size4673702 - Total Time177789 - Track Number17 - Year2004 - Date Modified2009-02-05T22:52:18Z - Date Added2011-10-02T13:47:47Z - Bit Rate208 - Sample Rate44100 - Play Count1 - Play Date3348744921 - Play Date UTC2010-02-11T18:55:21Z - Skip Count2 - Skip Date2011-03-22T21:29:18Z - Artwork Count1 - Persistent IDE2E7E7AD31513E24 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20Greatest%20Hits%20'93-'03/17%20-%20First%20Straw.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1867 - - Track ID1867 - Namei need your love - ArtistDJ Mystik - Albumlotus 3 - GenreTrance - KindMPEG audio file - Size5595136 - Total Time349596 - Year1999 - Date Modified2002-01-15T14:16:00Z - Date Added2011-10-02T13:47:47Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2011-05-27T13:15:06Z - Persistent ID23A346E0E28E7AB5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Mystik/DJ%20Mystik%20-%20I%20Need%20Your%20Love.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1869 - - Track ID1869 - NameJetlag (Alpha Zone RMX) - ArtistDJ Kim - AlbumJetlag Vinyl - GenreTrance - KindMPEG audio file - Size10924032 - Total Time455131 - Track Number32 - Year2001 - Date Modified2009-09-27T23:36:02Z - Date Added2011-10-02T13:47:48Z - Bit Rate192 - Sample Rate44100 - Commentsdone by /\/UC734R TR4/\/C3 |=0RC3 - Persistent IDD8C272F8D9ABC0B2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ_Kim-Jetlag-(Alpha_Zone_Remix)-NBD-www_tranceaddict_com.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1871 - - Track ID1871 - NameFeelin Me - ArtistKim Sozzi - GenrePop - KindMPEG audio file - Size10612583 - Total Time378958 - Year2001 - Date Modified2002-03-29T08:52:24Z - Date Added2011-10-02T13:47:48Z - Bit Rate224 - Sample Rate44100 - Comments, AG# F3886EB0 - Play Count1 - Play Date3376736625 - Play Date UTC2011-01-01T18:23:45Z - Skip Count1 - Skip Date2012-06-20T21:41:15Z - Persistent ID4E62280D95C63B72 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Kim%20Sozzi%20-%20Feelin%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1873 - - Track ID1873 - NameNever Gonna Come Back Down - ArtistBT - AlbumMovement in Still Life (Nettwerk) - Genrerock - KindMPEG audio file - Size5558272 - Total Time347297 - Track Number2 - Date Modified2009-09-27T23:36:06Z - Date Added2011-10-02T13:47:48Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-09T12:34:33Z - Persistent ID4B28DA4CEE387B9D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/BT/bt%20-%20never%20gonna%20come%20back%20down.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1875 - - Track ID1875 - NameBalearic Bill - Destination Sunshine (DJ Tiesto Remix) - ArtistGatecrasher - Albumdisco-tech (disc 2) - Genremisc - KindMPEG audio file - Size4390912 - Total Time274337 - Track Number11 - Date Modified2009-09-27T23:36:10Z - Date Added2011-10-02T13:47:48Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-05-14T13:38:20Z - Persistent IDBA21FF8B49EA7216 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/gatecrasher%20-%20Balearic%20Bill%20-%20Destination%20Sunshine%20(DJ%20Tiesto%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1877 - - Track ID1877 - NameHiger state of consciosness - ArtistJosh Wink - KindMPEG audio file - Size6453376 - Total Time403278 - Date Modified2009-09-27T23:36:12Z - Date Added2011-10-02T13:47:48Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424265480 - Play Date UTC2012-07-04T20:51:20Z - Skip Count1 - Skip Date2012-05-17T13:11:59Z - Persistent IDC6DAC7884D0689D5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Josh%20Wink%20-%20Higher%20state%20of%20consciousness%20(long%20version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1879 - - Track ID1879 - NameGigi D Agostino Mixin Live in - ArtistGigi D Agostino - AlbumMixin Live @ Radio NRJ Denmark - GenreDance - KindMPEG audio file - Size23175349 - Total Time965616 - Year2001 - Date Modified2002-05-18T01:25:16Z - Date Added2011-10-02T13:47:48Z - Bit Rate192 - Sample Rate44100 - CommentsBy ...::WBR::... 4 iDC - Play Count1 - Play Date3391323352 - Play Date UTC2011-06-19T14:15:52Z - Skip Count2 - Skip Date2012-05-15T21:44:19Z - Persistent IDC4F300882FEE1C1B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Gigi%20D'Agustino/Gigi%20d'agostino%20-%20Mixin%20live%20in%20xtravadance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1881 - - Track ID1881 - NameEscape (Fast Rave Mix) - ArtistTECHNO: DJ Kaycee - KindMPEG audio file - Size5455392 - Total Time340950 - Date Modified2001-08-01T15:16:18Z - Date Added2011-10-02T13:47:48Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-04-19T22:41:09Z - Persistent IDB4EE89242FE21E54 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Kaycee/Techno-%20Trance_Dj%20Kaycee-Escape(fast%20rave%20mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1883 - - Track ID1883 - NameKomodo - ArtistMauro Picotto - AlbumThe Album - GenreTrance - KindMPEG audio file - Size7947715 - Total Time331128 - Track Number3 - Track Count14 - Year2001 - Date Modified2002-05-18T01:28:22Z - Date Added2011-10-02T13:47:48Z - Bit Rate192 - Sample Rate44100 - Sort AlbumAlbum - Persistent IDA0A45C6669EA7097 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Mauro%20Picotto%20-%20Komodo.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1885 - - Track ID1885 - NameMike Macaluso - The Final Chapter - KindMPEG audio file - Size8991137 - Total Time561946 - Date Modified2001-04-13T06:13:30Z - Date Added2011-10-02T13:47:48Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3349699155 - Play Date UTC2010-02-22T19:59:15Z - Persistent ID753905797FCC0FA3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Mike%20Macaluso%20-%20The%20Final%20Chapter.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1887 - - Track ID1887 - NameDJ Tiesto - Cyberia (Deep Trance Mix) - KindMPEG audio file - Size4101372 - Total Time255791 - Date Modified2001-08-17T14:30:46Z - Date Added2011-10-02T13:47:48Z - Bit Rate128 - Sample Rate44100 - Play Count5 - Play Date3421393910 - Play Date UTC2012-06-01T15:11:50Z - Persistent ID08271997EC17F2CC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Tiesto/DJ%20Tiesto%20-%20Cyberia%20(Deep%20Trance%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1889 - - Track ID1889 - Name10 - Bedrock - heaven sent - ArtistJohn Digweed - AlbumBedrock CD 2 - Genrerock - KindMPEG audio file - Size7020544 - Total Time438648 - Track Number10 - Date Modified2009-09-27T23:34:41Z - Date Added2011-10-02T13:47:49Z - Bit Rate128 - Sample Rate44100 - Persistent IDA9652B9545885702 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/John%20Digiweed/Groove%20Soundtrack%20-09-%20John%20Digweed%20-%20heaven%20sent.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1891 - - Track ID1891 - Namelou aiese - pressure - KindMPEG audio file - Size12497903 - Total Time520724 - Date Modified2002-02-22T08:43:26Z - Date Added2011-10-02T13:47:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3348717777 - Play Date UTC2010-02-11T11:22:57Z - Skip Count1 - Skip Date2012-08-01T13:03:08Z - Persistent ID5906508DCF832601 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/lou%20aiese%20-%20pressure.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1893 - - Track ID1893 - NameScanty Sandwich - Because of You(Original Mix) - KindMPEG audio file - Size7775294 - Total Time485955 - Date Modified2002-05-18T01:28:04Z - Date Added2011-10-02T13:47:49Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3387688730 - Play Date UTC2011-05-08T12:38:50Z - Skip Count2 - Skip Date2012-08-08T23:57:44Z - Persistent IDB0F0FC295F44A388 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Scanty%20Sandwich%20-%20Because%20of%20You(Original_Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1895 - - Track ID1895 - NameMiss Shiva Dominator - Dreams (Cosmic Gate Remix) - KindMPEG audio file - Size7033418 - Total Time439588 - Date Modified2002-03-13T16:37:20Z - Date Added2011-10-02T13:47:49Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3349608059 - Play Date UTC2010-02-21T18:40:59Z - Skip Count2 - Skip Date2012-08-03T19:48:35Z - Persistent ID00406404EE2D2B20 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Miss%20Shiva%20Dominator%20-%20Dreams%20(Cosmic%20Gate%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1897 - - Track ID1897 - NameFluke 'Absurd (Whitewash Mix)' - ArtistVarious Artists - Album ArtistVA - AlbumHackers 3 - Genresoundtrack - KindMPEG audio file - Size7184384 - Total Time359183 - Track Number3 - Date Modified2010-03-13T19:59:22Z - Date Added2011-10-02T13:47:49Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3350832331 - Play Date UTC2010-03-07T22:45:31Z - Skip Count2 - Skip Date2012-07-31T12:39:55Z - Persistent ID717063373C472BA1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Fluke%20'Absurd%20(Whitewash%20Mix)'.MP3 - File Folder Count-1 - Library Folder Count-1 - - 1899 - - Track ID1899 - NameUnGiornoCredi [GGDagPromoRmx] - ArtistGg D'Ag Feat. Edoardo Bennato - Albumhttp://beam.to/shadow-zone - GenreDance - KindMPEG audio file - Size5793132 - Total Time241737 - Date Modified2009-09-27T23:36:34Z - Date Added2011-10-02T13:47:49Z - Bit Rate192 - Sample Rate44100 - Comments/server Area51.IrcdZone.Net - Skip Count1 - Skip Date2012-06-11T21:32:36Z - Persistent ID323DBD3AC71A2DD0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Gigi%20D'Agustino/Gigi%20D'Agostino%20Feat%20Edorado%20Bennato%20-%20Un%20Giorno%20Credi%20(Gigi%20D'%20Agostino%20Promo%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1901 - - Track ID1901 - NameAzzido Da Bass Dooms Night (Timo Maas) - KindMPEG audio file - Size8987794 - Total Time374491 - Date Modified2002-05-18T01:28:30Z - Date Added2011-10-02T13:47:50Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2011-02-07T20:30:45Z - Persistent IDF41F2057F7164A3B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Azzido%20Da%20Bass_Dooms%20Night%20(Timo%20Maas).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1903 - - Track ID1903 - NameOng Diggi Dong - ArtistEssential DJ Team - GenrePop - KindMPEG audio file - Size11778048 - Total Time490710 - Year2001 - Date Modified2009-09-27T23:36:39Z - Date Added2011-10-02T13:47:50Z - Bit Rate192 - Sample Rate44100 - Comments--== Team NBD ==-- - Skip Count1 - Skip Date2012-06-08T22:11:37Z - Persistent ID4C35FD041A474817 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/essential%20dj%20team%20-%20ong%20diggi%20dong%20(essential%20hardhouse%20mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1905 - - Track ID1905 - NameHarder Better Faster Stronger - ArtistDaft Punk - AlbumDiscovery - Genre128 - KindMPEG audio file - Size5374693 - Total Time224261 - Track Number4 - Year2001 - Date Modified2001-03-30T21:26:28Z - Date Added2011-10-02T13:47:50Z - Bit Rate192 - Sample Rate44100 - Comments..:: wAx Crew 2001 ::.. - Play Count1 - Play Date3383715569 - Play Date UTC2011-03-23T12:59:29Z - Persistent IDEE46CFC0DF2AAF69 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Daft%20Punk/Daft%20Punk%20-%20Harder%20Better%20Faster%20Stronger.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1907 - - Track ID1907 - NameChemical Beats - ArtistChemical Brothers - AlbumExit Planet Dust - GenreTechno - KindMPEG audio file - Size4632307 - Total Time290168 - Track Number6 - Track Count11 - Year1995 - Date Modified2002-05-18T01:28:12Z - Date Added2011-10-02T13:47:50Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-12T21:11:18Z - Persistent IDDCB989C1D6C54A93 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Chemical%20Brothers/Chemical%20Brothers%20-%20Chemical%20Beats.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1909 - - Track ID1909 - NameFlight 643 (Oliver Klein Remix - ArtistDJ Tiësto - AlbumThe Trance Zone - GenreTrance - KindMPEG audio file - Size8825754 - Total Time551601 - Year2001 - Date Modified2009-09-27T23:36:47Z - Date Added2011-10-02T13:47:51Z - Bit Rate128 - Sample Rate44100 - Commentswww.trance-zone.net - Sort AlbumTrance Zone - Persistent ID0E06676C09F57C83 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Tiesto/DJ%20Ti%C3%ABsto%20-%20Flight%20643%20(Oliver%20Klein%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1911 - - Track ID1911 - NameDaft Punk - Apache - KindMPEG audio file - Size3335401 - Total Time166765 - Date Modified2002-05-18T01:27:54Z - Date Added2011-10-02T13:47:51Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3424784618 - Play Date UTC2012-07-10T21:03:38Z - Skip Count1 - Skip Date2012-05-17T13:12:23Z - Persistent ID71F2EC49757857CD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Daft%20Punk%20-%20Apache.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1913 - - Track ID1913 - NameGreatest Rave Song - ArtistAlice in Wonderland - KindMPEG audio file - Size4155739 - Total Time296829 - Track Number1 - Date Modified2009-09-27T23:36:51Z - Date Added2011-10-02T13:47:51Z - Bit Rate112 - Sample Rate44100 - Skip Count1 - Skip Date2010-02-15T19:17:04Z - Persistent IDAFD11D797D8FBA3E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Techno%20-%20Alice%20In%20Wonderland%20Rave%20Remix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1915 - - Track ID1915 - NameWords (for love) - ArtistPaul Oakenfold & Paul Van Dyke - KindMPEG audio file - Size5204973 - Total Time325302 - Date Modified2002-01-20T16:24:32Z - Date Added2011-10-02T13:47:51Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3348719936 - Play Date UTC2010-02-11T11:58:56Z - Skip Count1 - Skip Date2011-06-16T23:01:02Z - Persistent ID56531BF970B9D32E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Paul%20Oakenfold%20&%20Paul%20Van%20Dyk%20-%20Words%20(for%20love).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1917 - - Track ID1917 - Namedj tiesto feat kirsty hawkshaw - URBAN TRAIN (Cosmic Gate Mix) - KindMPEG audio file - Size4889704 - Total Time305606 - Date Modified2002-05-18T01:25:34Z - Date Added2011-10-02T13:47:51Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3426431462 - Play Date UTC2012-07-29T22:31:02Z - Skip Count1 - Skip Date2012-06-11T21:47:29Z - Persistent ID077EF809B149578D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Tiesto/dj%20tiesto%20feat%20kirsty%20hawkshaw%20-%20URBAN%20TRAIN%20(Cosmic%20Gate%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1919 - - Track ID1919 - NameBelissima - ArtistDJ Quicksilver - GenreEuro-Techno - KindMPEG audio file - Size3704918 - Total Time231549 - Track Number1 - Date Modified2010-03-08T00:01:15Z - Date Added2011-10-02T13:47:51Z - Bit Rate128 - Sample Rate44100 - Persistent ID645084E0663A5BAD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Quicksilver/Dj%20Quicksilver%20-%20Belissima.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1921 - - Track ID1921 - NameResurection (space club mix) - ArtistPPK - AlbumPPK://CLUB.REMIXES - GroupingMelodic Trance - KindMPEG audio file - Size7744209 - Total Time483892 - Track Number2 - Date Modified2009-09-27T23:36:57Z - Date Added2011-10-02T13:47:51Z - Bit Rate128 - Sample Rate44100 - Persistent IDABBF36A51863FF1B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/PPK%20-%20Resurection%20(space%20club%20mix)%20(1).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1923 - - Track ID1923 - NameIan van dahl - Reason (mark lawrence remix) - KindMPEG audio file - Size10102964 - Total Time420937 - Date Modified2002-05-18T01:28:18Z - Date Added2011-10-02T13:47:51Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389377680 - Play Date UTC2011-05-28T01:48:00Z - Skip Count1 - Skip Date2011-05-28T01:40:52Z - Persistent ID6E6CF032694C5D9C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Ian%20van%20dahl%20-%20Reason%20(mark%20lawrence%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1925 - - Track ID1925 - NameX-Dream & Vicious Vic / Jack - ArtistVarious - AlbumDJ Micro presents Micro-Tech- - GenreTechno - KindMPEG audio file - Size4973386 - Total Time310804 - Date Modified2009-09-27T23:37:01Z - Date Added2011-10-02T13:47:51Z - Bit Rate128 - Sample Rate44100 - CommentsA Zlurp! MP3...www.zlurp.com - Skip Count1 - Skip Date2010-02-10T15:22:18Z - Persistent ID924115B0DAB32E10 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Micro/DJ%20Micro%20-%20%20X%20Dream.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1927 - - Track ID1927 - NameExploration of Space - ArtistCosmic Gate - GenreTrance - KindMPEG audio file - Size9633116 - Total Time482063 - Year2000 - Date Modified2010-03-13T19:51:25Z - Date Added2011-10-02T13:47:51Z - Bit Rate160 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-10T20:45:45Z - Persistent ID3ACD567A88BEDA96 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Cosmic%20Gate/Cosmic%20Gate%20-%20Exploration%20of%20space%20(Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1929 - - Track ID1929 - NameEiffel 65 - Blue (140bpm Club Mix) - KindMPEG audio file - Size5203968 - Total Time260336 - Date Modified1999-12-05T15:22:08Z - Date Added2011-10-02T13:47:52Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3426165622 - Play Date UTC2012-07-26T20:40:22Z - Skip Count3 - Skip Date2012-08-03T12:38:22Z - Persistent ID5924A309D7AEF6B2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Eiffel%2065/Eiffel%2065%20-%20Blue%20(140bpm%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1931 - - Track ID1931 - NameThis Is Trance - ArtistPaul Oakenfold - AlbumThis Is Trance - GenreTrance - KindMPEG audio file - Size6664622 - Total Time417462 - Date Modified2001-08-01T15:05:20Z - Date Added2011-10-02T13:47:53Z - Bit Rate128 - Sample Rate44100 - CommentsRipped By TrAnCeMaN - Skip Count3 - Skip Date2012-06-27T15:02:27Z - Persistent ID26D00FF2B7A6E95B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Paul%20Oakenfold/TECHNO%20HARD%20(Paul%20Okenfold)%20-%20This%20Is%20Trance.MP3 - File Folder Count-1 - Library Folder Count-1 - - 1933 - - Track ID1933 - NameBeliever [Rave Version] - ArtistDj Energy - GenreTop 40 - KindMPEG audio file - Size5613696 - Total Time350824 - Date Modified2001-08-01T15:38:08Z - Date Added2011-10-02T13:47:54Z - Bit Rate128 - Sample Rate44100 - Comments<< mr ed >> - Play Count1 - Play Date3423576381 - Play Date UTC2012-06-26T21:26:21Z - Persistent ID6AFAECC542E94994 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Energy/Dj%20Energy%20-%20Believer%20%5BRave%20Version%5D.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1935 - - Track ID1935 - NameStop and Panic - ArtistCirrus - AlbumHackers 3 OST - GenreElectronic - KindMPEG audio file - Size8754590 - Total Time438099 - Year1999 - Date Modified2009-09-27T23:38:00Z - Date Added2011-10-02T13:47:54Z - Bit Rate160 - Sample Rate44100 - Commentse r a s m u s . R N S . 9 9 - Persistent ID10E16004F8E83D10 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/cirrus%20-%20stop%20and%20panic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1937 - - Track ID1937 - NameTalla 2XLC - World In My Eyes (Cosmic Gate Remix) - KindMPEG audio file - Size7185554 - Total Time449097 - Date Modified2002-01-03T20:47:28Z - Date Added2011-10-02T13:47:55Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424334506 - Play Date UTC2012-07-05T16:01:46Z - Skip Count2 - Skip Date2012-05-27T13:16:33Z - Persistent IDB2CAAF8F79E0649B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Talla%202XLC%20-%20World%20In%20My%20Eyes%20(Cosmic%20Gate%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1939 - - Track ID1939 - NameSpring - ArtistRMB - AlbumMegahits 96 - KindMPEG audio file - Size3248528 - Total Time203493 - Year1998 - Date Modified2009-09-27T23:37:54Z - Date Added2011-10-02T13:47:55Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424238791 - Play Date UTC2012-07-04T13:26:31Z - Skip Count1 - Skip Date2012-06-12T13:19:16Z - Persistent IDB16FF50ECEC77C23 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/RMB%20-%20Spring.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1941 - - Track ID1941 - NameWonderfull Days 2001 (Cosmic Gate Remix) - ArtistCharly Lownoise & Mental Theo pres. Starsplash - KindMPEG audio file - Size5992448 - Total Time374386 - Date Modified2009-09-27T23:37:52Z - Date Added2011-10-02T13:47:55Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424205534 - Play Date UTC2012-07-04T04:12:14Z - Skip Count2 - Skip Date2011-05-04T12:27:04Z - Persistent IDCDC7F90AA58DA9D7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Charly%20Lownoise%20&%20Mental%20Theo%20Pres.%20Star%20Splash%20-%20Wonderful%20Days%202001%20(CG%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1943 - - Track ID1943 - Nametechno DJ MICRO (HOUSE MIX)- TECH-MIX 2000- SOUND BARRIER - KindMPEG audio file - Size6621458 - Total Time473861 - Date Modified2001-07-17T16:21:46Z - Date Added2011-10-02T13:47:55Z - Bit Rate112 - Sample Rate44100 - Persistent IDBE42265BF6D73C64 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Micro/techno%20DJ%20MICRO%20(HOUSE%20MIX)-%20TECH-MIX%202000-%20SOUND%20BARRIER.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1945 - - Track ID1945 - NameDJ Micro (House Mix)- Tech-Mix 200 - Drugs - KindMPEG audio file - Size4865015 - Total Time347480 - Date Modified2001-08-01T14:49:30Z - Date Added2011-10-02T13:47:56Z - Bit Rate112 - Sample Rate44100 - Persistent ID6FD2A8080780724A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Micro/DJ%20Micro%20(House%20Mix)-%20Tech-Mix%20200%20-%20%20Drugs.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1947 - - Track ID1947 - NameATB - 9pm (Till I Come)(Club Mix) - KindMPEG audio file - Size4233184 - Total Time265168 - Date Modified2001-02-26T02:38:54Z - Date Added2011-10-02T13:47:56Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424207646 - Play Date UTC2012-07-04T04:47:26Z - Persistent IDE4A471D3CD5FB34D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/ATB/ATB%20-%209pm%20(Till%20I%20Come)(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1949 - - Track ID1949 - NameBen Sims - Manipulated (Adam Beyer Remix) - KindMPEG audio file - Size6408288 - Total Time400509 - Date Modified2002-01-10T18:10:08Z - Date Added2011-10-02T13:47:57Z - Bit Rate128 - Sample Rate44100 - Persistent ID147FB07D7D11CAEF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Ben%20Sims%20-%20Manipulated%20(Adam%20Beyer%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1951 - - Track ID1951 - Nametalla 2xlc - Come with me (Dj Scot Project Remix) - KindMPEG audio file - Size11095614 - Total Time462315 - Date Modified2002-05-18T01:27:20Z - Date Added2011-10-02T13:47:57Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3348744436 - Play Date UTC2010-02-11T18:47:16Z - Persistent IDFA9850555135AF07 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/talla%202xlc%20-%20Come%20with%20me%20(Dj%20Scot%20Project%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1953 - - Track ID1953 - NameDam Dariram.mp3 - ArtistJoga - AlbumDj unF extended mix - GenreTechno - KindMPEG audio file - Size5272683 - Total Time329534 - Date Modified2009-09-27T23:37:39Z - Date Added2011-10-02T13:47:57Z - Bit Rate128 - Sample Rate44100 - Commentswww.changoland.com - Play Count1 - Play Date3353229569 - Play Date UTC2010-04-04T16:39:29Z - Skip Count1 - Skip Date2012-07-27T13:07:26Z - Persistent ID8E788550CC3957A7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/joga%20-%20Dam%20Dariram%20(Dance%20Dance%20Revolution).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1955 - - Track ID1955 - NameSandstorm Original Mix - ArtistDaRude - AlbumRipped By Legato - GenreTrance - KindMPEG audio file - Size14210740 - Total Time444081 - Year2000 - Date Modified2009-09-27T23:37:38Z - Date Added2011-10-02T13:47:57Z - Bit Rate256 - Sample Rate44100 - CommentsJoin -=mp256=- on efnet - Play Count1 - Play Date3348727837 - Play Date UTC2010-02-11T14:10:37Z - Skip Count4 - Skip Date2012-06-14T20:05:51Z - Persistent IDDFCC6CA9EC9E803A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Darude/DaRude-Sandstorm%20Original%20Mix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1957 - - Track ID1957 - NameLet You Go (Atb Remix) - ArtistATB - AlbumLove Parade 2001 - CD1 - GenreTechno - KindMPEG audio file - Size6813570 - Total Time425822 - Year2001 - Date Modified2010-03-05T23:52:27Z - Date Added2011-10-02T13:47:57Z - Bit Rate128 - Sample Rate44100 - Comments@ charthitz.org by Priologie - Skip Count2 - Skip Date2012-06-12T13:29:35Z - Persistent IDEB826D4CBB07058E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/ATB/ATB%20-%20Let%20you%20go%20(ATB%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1959 - - Track ID1959 - NameATC - Around The World (Clu - KindMPEG audio file - Size5410899 - Total Time338181 - Date Modified2001-05-06T21:35:00Z - Date Added2011-10-02T13:47:57Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3426432047 - Play Date UTC2012-07-29T22:40:47Z - Persistent ID953FAF5E3699417A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/ATC/ATC%20-%20Around%20The%20World%20(Clu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1961 - - Track ID1961 - NameVoco Me (Hybrid Mix) - ArtistDJ Icon - AlbumIbiza Trance CD 1 - Track 04 - GenreTrance - KindMPEG audio file - Size8141362 - Total Time508447 - BPM13525 - Date Modified2009-09-27T23:37:31Z - Date Added2011-10-02T13:47:57Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3424223780 - Play Date UTC2012-07-04T09:16:20Z - Skip Count2 - Skip Date2012-07-29T22:34:57Z - Persistent IDA94C775441B85999 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Icon%20-%20Voco%20Me%20(Hybrid%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1963 - - Track ID1963 - NameDJ Dan - Soul Gabber - Moto - KindMPEG audio file - Size3692544 - Total Time230765 - Date Modified2001-07-05T18:20:16Z - Date Added2011-10-02T13:47:57Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3424188401 - Play Date UTC2012-07-03T23:26:41Z - Persistent IDAC3839D5283D8039 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Dan/DJ%20Dan%20-%20Soul%20Gabber%20-%20Moto.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1965 - - Track ID1965 - NameLa Passion - ArtistGigi D'Agostino - AlbumL'Amour Toujours CD 1 - GenreItaloDance - KindMPEG audio file - Size7274496 - Total Time454582 - Track Number5 - Year2000 - Date Modified2009-09-27T23:37:28Z - Date Added2011-10-02T13:47:58Z - Bit Rate128 - Sample Rate44100 - CommentsKluBBhoeDJe - Persistent IDA34D1A013F7F5481 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Gigi%20D'Agustino/Gigi%20D'Agostino%20-%20%20La%20Passion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1967 - - Track ID1967 - Namedj dan presents needle damage - ArtistDJ Dan - AlbumFunk the System - KindMPEG audio file - Size4259550 - Total Time266213 - Track Number1 - Date Modified2009-09-27T23:37:27Z - Date Added2011-10-02T13:47:58Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-12T21:12:49Z - Persistent IDDEECEF1A6E5EE4C5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Dan/DJ%20Dan%20-%20dj%20dan%20presents%20needle%20damage%20-%20that%20zipper%20track%20(needle%20dubbage%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1969 - - Track ID1969 - NameHard To Say Im Sorry[Club Mix] - ArtistAquagen - GenreClub - KindMPEG audio file - Size8398848 - Total Time349884 - Year2001 - Date Modified2002-05-18T01:28:08Z - Date Added2011-10-02T13:47:58Z - Bit Rate192 - Sample Rate44100 - Comments<<<DJ Sequenza>>>MTC<<< - Persistent IDE045D048615EB130 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Aquagen%20-%20hard%20to%20say%20im%20sorry%20(club%20mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1971 - - Track ID1971 - NameTron - ArtistPanacea - KindMPEG audio file - Size5828736 - Total Time364173 - Track Number1 - Date Modified2009-09-27T23:37:19Z - Date Added2011-10-02T13:47:58Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-08-07T21:59:02Z - Persistent ID3AA32A617BB4F4CC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Panacea%20-%20Tron.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1973 - - Track ID1973 - NameBAD BOY BILL- Stomp To My Beat - KindMPEG audio file - Size3701000 - Total Time231288 - Date Modified2001-12-31T15:17:34Z - Date Added2011-10-02T13:47:58Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3379593917 - Play Date UTC2011-02-03T20:05:17Z - Skip Count1 - Skip Date2012-04-25T12:47:16Z - Persistent IDA5C6D4A8083C07E2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Bad%20Boy%20Bill/BAD%20BOY%20BILL-%20Stomp%20To%20My%20Beat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1975 - - Track ID1975 - NameHide U (Trance mix) - ArtistKosheen - KindMPEG audio file - Size5398906 - Total Time337423 - Year2000 - Date Modified2009-09-27T23:37:15Z - Date Added2011-10-02T13:47:58Z - Bit Rate128 - Sample Rate44100 - Commentsmixed by DJ Ronny - Play Count1 - Play Date3424190926 - Play Date UTC2012-07-04T00:08:46Z - Persistent ID7E3C6987D6B8CADF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Kosheen%20-%20Hide%20U%20(Trance%20mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1977 - - Track ID1977 - NameIan Van Dahl - Castles In The Sky (Extended Club Mix) - KindMPEG audio file - Size6431555 - Total Time401972 - Date Modified2002-01-03T18:02:50Z - Date Added2011-10-02T13:47:58Z - Bit Rate128 - Sample Rate44100 - Persistent IDF54862F9D597B252 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Ian%20Van%20Dahl%20-%20Castles%20In%20The%20Sky%20(Extended%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1979 - - Track ID1979 - NameLD30 feat Marsha X - Distant Places (Mike Rizzo Club Mix) - KindMPEG audio file - Size9070237 - Total Time453511 - Date Modified2002-03-08T15:17:36Z - Date Added2011-10-02T13:47:58Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3389605903 - Play Date UTC2011-05-30T17:11:43Z - Skip Count1 - Skip Date2012-06-26T13:48:59Z - Persistent ID469341BF162B69DC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/LD30%20feat%20Marsha%20X%20-%20Distant%20Places%20(Mike%20Rizzo%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 1981 - - Track ID1981 - Namesecond edition - Beam vs. Cyrus Lifestyle Megara vs. DJ Lee - KindMPEG audio file - Size7250755 - Total Time453172 - Date Modified2002-05-18T01:25:26Z - Date Added2011-10-02T13:47:58Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3426686363 - Play Date UTC2012-08-01T21:19:23Z - Persistent ID092C49AD6BAFE228 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/second%20edition%20-%20Beam%20vs.%20Cyrus%20Lifestyle%20Megara%20vs.%20DJ%20Lee.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1983 - - Track ID1983 - NameDJ Micro - Techno Mix 2000 - KindMPEG audio file - Size6703542 - Total Time348238 - Date Modified2001-08-17T15:37:16Z - Date Added2011-10-02T13:47:58Z - Bit Rate153 - Sample Rate44100 - Play Count2 - Play Date3372479553 - Play Date UTC2010-11-13T11:52:33Z - Skip Count1 - Skip Date2012-08-10T11:32:48Z - Persistent ID398DAC4ABF306298 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/DJ%20Micro/DJ%20Micro%20-%20Techno%20Mix%202000.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1985 - - Track ID1985 - NamePants Party Mix - ArtistJohnson & Johnson - KindMPEG audio file - Size84436938 - Total Time3518171 - Date Modified2009-10-07T04:02:15Z - Date Added2011-10-02T13:47:58Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3424325018 - Play Date UTC2012-07-05T13:23:38Z - Persistent IDC4A392021B05A68C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Johnson_and_Johnson-Pants_Party_Mix-192kbps.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1987 - - Track ID1987 - NameLive @ Trance Energy - [16-02-02] - ArtistCosmic Gate - GenreTrance - KindMPEG audio file - Size82759680 - Total Time3448241 - Year2002 - Date Modified2009-05-01T23:18:39Z - Date Added2011-10-02T13:47:58Z - Bit Rate192 - Sample Rate44100 - Persistent ID34AF230BC0316928 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Cosmic%20Gate/Live/Cosmic%20Gate%20-%20Live%20@%20Trance%20Energy%20-%20%5B16-02-02%5D.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1989 - - Track ID1989 - NameCosmic Gate Live - ArtistTrance Energy 10th Edition - AlbumCosmic Gate Live - GenreTrance - KindMPEG audio file - Size82922863 - Total Time3455111 - Year2003 - Date Modified2003-02-16T22:25:26Z - Date Added2011-10-02T13:47:58Z - Bit Rate192 - Sample Rate44100 - Comments1REAL AT YOUR SERVICE - Play Count1 - Play Date3348732928 - Play Date UTC2010-02-11T15:35:28Z - Skip Count2 - Skip Date2012-07-03T20:36:59Z - Persistent ID5CDFAC7F281BAB12 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Cosmic%20Gate/Live/trance%20energy%2010th%20edition-cosmic%20gate%20live-sat-15-02-2003-1real/01-trance_energy_10th_edition-cosmic_gate_live-sat-15-02-2003-1real.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1991 - - Track ID1991 - NameLive @ Trance Escape 2002 - Part 1 - ArtistGreen Court - AlbumTrance Escape 2002 - GenreTrance - KindMPEG audio file - Size86502846 - Total Time3603853 - Year2002 - Date Modified2009-10-07T03:22:09Z - Date Added2011-10-02T13:47:58Z - Bit Rate192 - Sample Rate44100 - Skip Count4 - Skip Date2012-08-09T11:26:27Z - Persistent ID31BB4C77E28D8606 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/TranceEscape%20Party%20From%20Globull-Green%20Court%20Live%2001-06-2002-1REA/01-tranceescape_party_from_globull-green_court_(part_1)-1rea.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1993 - - Track ID1993 - NameLive @ Trance Escape 2002 - Part 2 - ArtistGreen Court - AlbumTrance Escape 2002 - GenreTrance - KindMPEG audio file - Size77902574 - Total Time3245505 - Year2002 - Date Modified2009-10-07T03:23:06Z - Date Added2011-10-02T13:47:58Z - Bit Rate192 - Sample Rate44100 - Persistent ID70E3053935BB9C44 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/TranceEscape%20Party%20From%20Globull-Green%20Court%20Live%2001-06-2002-1REA/02-tranceescape_party_from_globull-green_court_(part_2)-1rea.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1995 - - Track ID1995 - NameWe Belong (Radio Edit) - ArtistFerry Corsten - AlbumWe Belong - GenreTrance - KindMPEG audio file - Size7651726 - Total Time191059 - Track Number1 - Year2009 - Date Modified2009-09-24T03:26:44Z - Date Added2011-10-02T13:47:58Z - Bit Rate320 - Sample Rate44100 - CommentsUltra Records / UL2097 - Play Count5 - Play Date3414411304 - Play Date UTC2012-03-12T19:35:04Z - Skip Count1 - Skip Date2012-05-01T21:48:36Z - Artwork Count1 - Persistent ID9BBEF306728C03FD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/ferry_corsten-we_belong__incl_bingo_players_remix-web-2009-wav/01-ferry_corsten-we_belong__radio_edit.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1997 - - Track ID1997 - Name22.Basslovers United - Doubledecker - ArtistLanzamientosMp3.es - AlbumVA.-.Remixland.Vol.4 - GenreDance - KindMPEG audio file - Size7377270 - Total Time181159 - Year2009 - Date Modified2009-11-03T01:08:54Z - Date Added2011-10-02T13:47:58Z - Bit Rate320 - Sample Rate44100 - CommentsLanzamientosMp3.es - Play Date3341894462 - Play Date UTC2009-11-24T12:01:02Z - Skip Count3 - Skip Date2012-07-03T20:39:47Z - Artwork Count3 - Persistent ID8D0DA8A52CC19002 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/22.Basslovers%20United%20-%20Doubledecker.mp3 - File Folder Count-1 - Library Folder Count-1 - - 1999 - - Track ID1999 - NameDoubledecker (Marco Van Bassken Radio Edit) - ArtistBasslovers United - AlbumFuture Trance Vol 49 - GenreTrance - KindMPEG audio file - Size4366477 - Total Time182648 - Track Number13 - Year2009 - Date Modified2009-11-02T23:26:05Z - Date Added2011-10-02T13:47:58Z - Bit Rate191 - Sample Rate44100 - Commentsone group to rule them all - Play Count1 - Play Date3422337980 - Play Date UTC2012-06-12T13:26:20Z - Skip Count2 - Skip Date2012-05-10T21:38:43Z - Persistent IDF9C962F3376C009C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/113-basslovers_united_-_doubledecker_(marco_van_bassken_radio_edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2001 - - Track ID2001 - NameDoubledecker (Dan Winter Radio - ArtistBasslovers United - AlbumRemixland - A Decade Of Dance - GenreDance - KindMPEG audio file - Size5045104 - Total Time210207 - Year2009 - Date Modified2009-11-03T01:11:25Z - Date Added2011-10-02T13:47:58Z - Bit Rate192 - Sample Rate44100 - CommentsPopmaster - Play Count1 - Play Date3349698529 - Play Date UTC2010-02-22T19:48:49Z - Skip Count1 - Skip Date2012-06-29T12:57:39Z - Persistent ID9C2C87A8C5A29D74 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/205.%20Basslovers%20United%20-%20Doubledecker%20(Dan%20Winter%20Radio%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2003 - - Track ID2003 - NameDoubledecker (Mondo Remix) - ArtistBasslovers United - Album Artist.:::artMkiss 2009:::. - Composer.:::artMkiss 2009:::. - Album.:::artMkiss 2009:::. - Genre.:::artMkiss 2009:::. - KindMPEG audio file - Size13630788 - Total Time336796 - Track Number999 - Year2009 - BPM999 - Date Modified2009-11-03T01:33:15Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3424331267 - Play Date UTC2012-07-05T15:07:47Z - Artwork Count1 - Persistent IDF94F59C44F1C58AE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Basslovers%20United%20-%20Doubledecker%20(Mondo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2005 - - Track ID2005 - NameCertitude - ArtistThomas Bronzwaer - Album ArtistThomas Bronzwaer - AlbumA State Of Trance 2008 (Mixed by Armin van Buuren) - GenreTrance - KindMPEG audio file - Size5819013 - Total Time222641 - Disc Number1 - Disc Count1 - Track Number12 - Year2008 - Date Modified2009-08-03T00:10:44Z - Date Added2011-10-02T13:47:59Z - Bit Rate209 - Sample Rate44100 - CommentsArmada Music / ARMA160 - Play Count2 - Play Date3414411881 - Play Date UTC2012-03-12T19:44:41Z - Skip Count1 - Skip Date2012-05-10T21:39:03Z - Sort AlbumState Of Trance 2008 (Mixed by Armin van Buuren) - Persistent ID5279AC0C853DC094 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/12%20Certitude.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2007 - - Track ID2007 - NameMove for Me - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size9534964 - Total Time237348 - Track Number1 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:01Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count3 - Play Date3424229879 - Play Date UTC2012-07-04T10:57:59Z - Artwork Count1 - Persistent IDD0315EE8AB14B42E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/01%20Move%20for%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2009 - - Track ID2009 - NameAngel On My Shoulder - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size9142101 - Total Time227526 - Track Number2 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:01Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3353216378 - Play Date UTC2010-04-04T12:59:38Z - Skip Count1 - Skip Date2012-08-09T22:18:06Z - Artwork Count1 - Persistent IDA8E22AFD45A6F645 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/02%20Angel%20On%20My%20Shoulder.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2011 - - Track ID2011 - NameBack On You - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size8954001 - Total Time222824 - Track Number3 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:02Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Skip Count2 - Skip Date2011-05-21T21:14:35Z - Artwork Count1 - Persistent IDEA8243751E3B87FE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/03%20Back%20On%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2013 - - Track ID2013 - NameStep One Two - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size8056436 - Total Time200385 - Track Number4 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:03Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3424288732 - Play Date UTC2012-07-05T03:18:52Z - Skip Count2 - Skip Date2011-05-13T22:00:58Z - Artwork Count1 - Persistent ID397274764A8AFE6E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/04%20Step%20One%20Two.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2015 - - Track ID2015 - NamePose - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size8622754 - Total Time214543 - Track Number5 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:03Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3424192552 - Play Date UTC2012-07-04T00:35:52Z - Skip Count1 - Skip Date2012-06-12T13:31:15Z - Artwork Count1 - Persistent ID43AA7D3CA83227BF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/05%20Pose.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2017 - - Track ID2017 - NameI Remember (Strobelite Edit) - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size11365659 - Total Time283115 - Track Number6 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:03Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count4 - Play Date3388832326 - Play Date UTC2011-05-21T18:18:46Z - Skip Count1 - Skip Date2012-04-24T13:23:04Z - Artwork Count1 - Persistent ID5811A01EADD98BD8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/06%20I%20Remember%20(Strobelite%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2019 - - Track ID2019 - NameBorrowed Theme - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size9013566 - Total Time224313 - Track Number7 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:04Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3353216602 - Play Date UTC2010-04-04T13:03:22Z - Skip Count2 - Skip Date2012-06-14T20:09:09Z - Artwork Count1 - Persistent IDEF614C815BAE2ABC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/07%20Borrowed%20Theme.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2021 - - Track ID2021 - NameI'll Never Dream - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size9150452 - Total Time227735 - Track Number8 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:04Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3353216830 - Play Date UTC2010-04-04T13:07:10Z - Artwork Count1 - Persistent IDF4AD42270E293E38 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/08%20I'll%20Never%20Dream.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2023 - - Track ID2023 - NameOne Heart - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size9659303 - Total Time240457 - Track Number9 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:05Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count4 - Play Date3426569570 - Play Date UTC2012-07-31T12:52:50Z - Skip Count1 - Skip Date2012-05-10T12:48:02Z - Artwork Count1 - Persistent ID641BEE99EB06B7A9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/09%20One%20Heart.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2025 - - Track ID2025 - NameYour Love Is Black - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size10924695 - Total Time272091 - Track Number10 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:05Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3423576030 - Play Date UTC2012-06-26T21:20:30Z - Skip Count2 - Skip Date2012-04-19T22:42:38Z - Artwork Count1 - Persistent IDD6507D1723C97A8E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/10%20Your%20Love%20Is%20Black.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2027 - - Track ID2027 - NameU + Ur Hand - ArtistPink - Album ArtistPink - ComposerL. Gottwald/M. Martin/Pink/Rami - AlbumI'm Not Dead - GenreRock - KindMPEG audio file - Size5888686 - Total Time214439 - Track Number9 - Year2006 - Date Modified2007-05-04T23:32:06Z - Date Added2011-10-02T13:47:59Z - Bit Rate219 - Sample Rate44100 - Play Date3349617345 - Play Date UTC2010-02-21T21:15:45Z - Skip Count1 - Skip Date2012-06-12T13:30:59Z - Persistent ID9242905975649DDE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/09%20-%20U%20+%20Ur%20Hand.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2029 - - Track ID2029 - NameI Remember (Original Vocal Mix) - ArtistDeadmau5 feat. Kaskade - KindMPEG audio file - Size23797760 - Total Time593658 - Date Modified2009-05-29T02:25:44Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3414404724 - Play Date UTC2012-03-12T17:45:24Z - Skip Count1 - Skip Date2012-06-28T13:21:16Z - Persistent IDBA1CAC8F36B33618 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/10B%20-%20128%20-%20Deadmau5%20ft%20Kaskade%20-%20I%20Remember.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2031 - - Track ID2031 - NameGives You Hell - ArtistThe All-American Rejects - AlbumUK Top 40 - GenrePop - KindMPEG audio file - Size8535218 - Total Time213263 - Track Number23 - Year2009 - Date Modified2009-05-29T02:25:50Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - CommentsDHZ - Play Count1 - Play Date3414404937 - Play Date UTC2012-03-12T17:48:57Z - Sort ArtistAll-American Rejects - Persistent ID0F57A354601CF3F5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/23%20-%20Gives%20You%20Hell%20-%20The%20All-American%20Rejects.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2033 - - Track ID2033 - NameSearching For Truth - ArtistThe Veil Kings - AlbumIn Search Of Sunrise 6 Ibiza (Unmixed) - GenreTrance - KindMPEG audio file - Size15489111 - Total Time387160 - Disc Number1 - Disc Count2 - Track Number6 - Track Count10 - Year2007 - Date Modified2009-05-29T02:25:39Z - Date Added2011-10-02T13:47:59Z - Bit Rate320 - Sample Rate44100 - CommentsSongbird / SONGBIRD10 - Play Count2 - Play Date3414405324 - Play Date UTC2012-03-12T17:55:24Z - Skip Count1 - Skip Date2011-05-10T12:51:56Z - Sort ArtistVeil Kings - Persistent ID39C3918B4EBF3EE5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/106-the_veil_kings-searching_for_truth.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2035 - - Track ID2035 - NameSong 2__Granite & Phunk Fcuk Deluxe Mix - ArtistBlur - AlbumSong 2__Granite & Phunk Remix CDR - GenreHouse - KindMPEG audio file - Size11645346 - Total Time485041 - Track Number1 - Year2004 - Date Modified2009-05-29T02:27:10Z - Date Added2011-10-02T13:47:59Z - Bit Rate192 - Sample Rate44100 - Comments[MTC 2oo4] - Play Count1 - Play Date3414405809 - Play Date UTC2012-03-12T18:03:29Z - Persistent IDC846593EE016C6C4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Blur%20-%20Song%202%20(granite%20and%20phunk%20fcuk%20deluxe%20mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2037 - - Track ID2037 - NameIf U Seek Amy - ArtistBritney Spears - AlbumCircus - GenrePop - KindMPEG audio file - Size6201077 - Total Time216607 - Track Number6 - Year2009 - Date Modified2009-05-29T02:27:11Z - Date Added2011-10-02T13:48:00Z - Bit Rate228 - Sample Rate44100 - Comments 00000000 00000210 0000087C 000000000091B2F4 00000000 005E4F9D 00000000 00000000 00000000 00000000 00000000 00000000 - Play Count1 - Play Date3414406025 - Play Date UTC2012-03-12T18:07:05Z - Skip Count2 - Skip Date2012-05-01T13:32:42Z - Artwork Count1 - Persistent ID1C91BC21B3B55FAE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Britney%20Spears%20-%20If%20You%20Seek%20Amy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2039 - - Track ID2039 - NameCicada - The Things You Say (Dirty South Rmx) (2006) - KindMPEG audio file - Size18926280 - Total Time473051 - Date Modified2009-05-29T02:27:19Z - Date Added2011-10-02T13:48:00Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3414406498 - Play Date UTC2012-03-12T18:14:58Z - Persistent ID1DAD90CB6990E79E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Cicada%20-%20The%20Things%20You%20Say%20(Dirty%20South%20Rmx)%20(2006).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2041 - - Track ID2041 - NameViva la Vida - ArtistColdplay - Album ArtistColdplay - AlbumViva la Vida - GenreAlternative - KindMPEG audio file - Size7992026 - Total Time244218 - Track Number1 - Year2008 - Date Modified2008-06-02T02:03:31Z - Date Added2011-10-02T13:48:00Z - Bit Rate256 - Sample Rate44100 - Comments 00000000 00000210 0000097F 0000000000A44AF1 00000000 0077253A 00000000 00000000 00000000 00000000 00000000 00000000 - Play Count3 - Play Date3414406742 - Play Date UTC2012-03-12T18:19:02Z - Persistent ID8E5D078EFABF268C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Coldplay%20-%20Viva%20La%20Vida.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2043 - - Track ID2043 - NameGhosts N Stuff - ArtistDeadmau5 - AlbumGhosts N Stuff - GenreHouse - KindMPEG audio file - Size14832889 - Total Time370755 - Track Number1 - Track Count1 - Year2008 - Date Modified2009-05-29T02:32:25Z - Date Added2011-10-02T13:48:00Z - Bit Rate320 - Sample Rate44100 - CommentsMau5trap / MAU5LTD-001 - Skip Count4 - Skip Date2012-07-31T12:55:57Z - Persistent IDBB333BBC0F736C77 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Deadmau5%20-%20Ghosts%20n%20stuff.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2045 - - Track ID2045 - NameParalyzer - ArtistFinger Eleven - Album ArtistFinger Eleven - ComposerJames Black/Rich Beddoe/Rick Jackett/Scott Anderson/Sean Anderson - AlbumThem Vs. You Vs. Me - GenreAlternative - KindMPEG audio file - Size8330750 - Total Time208195 - Track Number1 - Year2007 - Date Modified2009-05-29T02:32:45Z - Date Added2011-10-02T13:48:00Z - Bit Rate320 - Sample Rate44100 - Commentswww.allofmp3.com - Play Count5 - Play Date3418709778 - Play Date UTC2012-05-01T13:36:18Z - Persistent IDF3C2205CD0D5C065 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Finger%20Eleven%20-%20Paralyzer.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2047 - - Track ID2047 - NameSell Your Soul - ArtistHollywood Undead - AlbumSwan Song - GenreHard Rock - KindMPEG audio file - Size5281527 - Total Time194037 - Track Number2 - Track Count14 - Year2008 - Date Modified2009-05-29T02:32:53Z - Date Added2011-10-02T13:48:00Z - Bit Rate216 - Sample Rate44100 - Play Count3 - Play Date3424286675 - Play Date UTC2012-07-05T02:44:35Z - Skip Count1 - Skip Date2012-08-17T12:52:47Z - Artwork Count1 - Persistent IDE5B209FDA4F1A894 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Hollywood%20Undead%20-%20Sell%20Your%20Soul.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2049 - - Track ID2049 - NameHot N Cold (Jason Nevins Mix) - ArtistKaty Perry - AlbumPromo Only Mainstream Club October - GenreDance - KindMPEG audio file - Size10551058 - Total Time440058 - Disc Number1 - Disc Count2 - Track Number9 - Year2008 - Date Modified2009-05-29T02:33:11Z - Date Added2011-10-02T13:48:00Z - Bit Rate191 - Sample Rate44100 - Play Count2 - Play Date3414407599 - Play Date UTC2012-03-12T18:33:19Z - Skip Count1 - Skip Date2012-07-30T13:22:05Z - Persistent ID7AC946A864AA8DF4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Katy%20Perry%20-%20Hot%20N%20Cold%20(Jason%20Nevins%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2051 - - Track ID2051 - Namekaty perry - i kissed a girl (jason nevins rock the club edit) - KindMPEG audio file - Size6644811 - Total Time207647 - Date Modified2009-05-29T02:33:12Z - Date Added2011-10-02T13:48:00Z - Bit Rate256 - Sample Rate44100 - Volume Adjustment156 - Play Count1 - Play Date3414407806 - Play Date UTC2012-03-12T18:36:46Z - Persistent ID8AFAB4DFD7F48C0E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Katy%20Perry%20-%20I%20Kissed%20A%20Girl%20(Jason%20Nevins%20Rock%20the%20Club%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2053 - - Track ID2053 - NameLady Gaga Ft. Colby O'Donis - Just Dance - ArtistMisc - Album ArtistMisc - AlbumMisc - GenreMisc - KindMPEG audio file - Size6225798 - Total Time243356 - Track Number1 - Year2008 - Date Modified2009-05-29T02:33:16Z - Date Added2011-10-02T13:48:00Z - Bit Rate204 - Sample Rate44100 - CommentsC4 - Play Count1 - Play Date3414408049 - Play Date UTC2012-03-12T18:40:49Z - Skip Count1 - Skip Date2011-10-02T15:17:21Z - Persistent ID3B7F6ED91157EAE5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Lady%20Gaga%20Feat%20Colby%20O%20Donis%20-%20Just%20Dance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2055 - - Track ID2055 - NameDo What You Do - ArtistMarz ft. Pack and Mumiez - GenreRap - KindMPEG audio file - Size3307421 - Total Time206706 - Date Modified2009-05-29T02:33:26Z - Date Added2011-10-02T13:48:00Z - Bit Rate128 - Sample Rate44100 - Play Count5 - Play Date3424844462 - Play Date UTC2012-07-11T13:41:02Z - Persistent ID998178E5F0D1749C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Marz_ft_Pack_and_Mummiez_-_Do_What_You_Do.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2057 - - Track ID2057 - NameShake It (Lenny B Remix Edit) - ArtistMetro Station - AlbumPromo Only Dance Radio July - GenreDance - KindMPEG audio file - Size5042799 - Total Time201534 - Track Number13 - Track Count22 - Year2008 - BPM136 - Date Modified2009-05-29T02:33:48Z - Date Added2011-10-02T13:48:00Z - Bit Rate200 - Sample Rate44100 - Play Count2 - Play Date3414408457 - Play Date UTC2012-03-12T18:47:37Z - Skip Count1 - Skip Date2011-02-04T12:07:39Z - Persistent IDA9111B21364AD88A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Metro%20Station%20-%20Shake%20It%20(Lenny%20B%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2059 - - Track ID2059 - NameSpace Lord - ArtistMonster Magnet - AlbumPowertrip - GenreStoner Metal - KindMPEG audio file - Size11551119 - Total Time355996 - Track Number3 - Track Count13 - Year1998 - Date Modified2009-05-29T02:33:50Z - Date Added2011-10-02T13:48:00Z - Bit Rate259 - Sample Rate44100 - CommentsCRC : B0AEDD7E - Play Count2 - Play Date3414408813 - Play Date UTC2012-03-12T18:53:33Z - Skip Count1 - Skip Date2010-08-27T17:32:29Z - Persistent IDDD4B8EAB854BA95C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/monster%20magnet%20-%20space%20lord.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2061 - - Track ID2061 - NameKnights of Cydonia - ArtistMuse - Album ArtistMuse - ComposerMatthew Bellamy/Matthew Bellamy - AlbumBlack Holes and Revelations - GenreRock - KindMPEG audio file - Size8069039 - Total Time361482 - Year2006 - Date Modified2009-05-29T02:33:51Z - Date Added2011-10-02T13:48:00Z - Bit Rate178 - Sample Rate44100 - CommentsiTW - Play Count3 - Play Date3424303101 - Play Date UTC2012-07-05T07:18:21Z - Skip Count3 - Skip Date2012-07-29T22:04:23Z - Persistent IDC001867C461BF1A3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Muse%20-%20Knights%20of%20Cydonia.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2063 - - Track ID2063 - NamePropane Nightmares - ArtistPendulum - Album ArtistPendulum - ComposerB. Burhoff/J. Ottrich/O. Froning/Rob Swire/Thompson - AlbumIn Silico - GenrePendulum - KindMPEG audio file - Size8168910 - Total Time255242 - Track Number3 - Year2008 - Date Modified2009-05-29T02:33:54Z - Date Added2011-10-02T13:48:00Z - Bit Rate256 - Sample Rate44100 - Play Count6 - Play Date3424208893 - Play Date UTC2012-07-04T05:08:13Z - Skip Count1 - Skip Date2012-07-09T12:34:37Z - Persistent ID70A12F1467EE4086 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Pendulum%20-%20Propane%20Nightmares.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2065 - - Track ID2065 - NameKrazy - ArtistPitbull Ft Lil Jon - AlbumPromo Only Urban Club October - GenreHip-Hop - KindMPEG audio file - Size6434547 - Total Time227056 - Disc Number1 - Disc Count2 - Track Number18 - Track Count18 - Year2008 - Date Modified2009-08-29T19:17:38Z - Date Added2011-10-02T13:48:00Z - Bit Rate225 - Sample Rate44100 - Play Count3 - Play Date3414411113 - Play Date UTC2012-03-12T19:31:53Z - Artwork Count1 - Persistent ID4884EB972AF96B9C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/24.%20Unsorted/Pitbull%20Ft.%20Lil%20Jon%20-%20Krazy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2067 - - Track ID2067 - NameDisorganized Fun - ArtistRonald Jenkees - AlbumDisorganized Fun - GenreElectronic - KindMPEG audio file - Size10148861 - Total Time250148 - Track Number1 - Year2009 - BPM196 - Date Modified2009-08-29T20:05:12Z - Date Added2011-10-02T13:48:00Z - Bit Rate320 - Sample Rate44100 - CommentsCopyright 2009 Ronald Jenkees - Play Count3 - Play Date3418462331 - Play Date UTC2012-04-28T16:52:11Z - Artwork Count1 - Persistent ID18C5E9F2F5F7640E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Ronald%20Jenkees/01._Ronald_Jenkees_-_Disorganized_Fun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2069 - - Track ID2069 - NameGuitar Sound - ArtistRonald Jenkees - AlbumDisorganized Fun - GenreElectronic - KindMPEG audio file - Size16828459 - Total Time420649 - Track Number3 - Year2009 - BPM200 - Date Modified2009-08-27T14:10:37Z - Date Added2011-10-02T13:48:01Z - Bit Rate320 - Sample Rate44100 - CommentsCopyright 2009 Ronald Jenkees - Play Count2 - Play Date3418461542 - Play Date UTC2012-04-28T16:39:02Z - Skip Count1 - Skip Date2010-09-07T22:08:31Z - Persistent IDF49710C20E96119E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Ronald%20Jenkees/03._Ronald_Jenkees_-_Guitar_Sound.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2071 - - Track ID2071 - NameThrowing Fire - ArtistRonald Jenkees - AlbumDisorganized Fun - GenreElectronic - KindMPEG audio file - Size11707415 - Total Time292623 - Track Number5 - Year2009 - BPM105 - Date Modified2009-08-27T14:10:39Z - Date Added2011-10-02T13:48:01Z - Bit Rate320 - Sample Rate44100 - CommentsCopyright 2009 Ronald Jenkees - Play Count2 - Play Date3418461834 - Play Date UTC2012-04-28T16:43:54Z - Persistent IDE1D723BE812F4FC4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Ronald%20Jenkees/05._Ronald_Jenkees_-_Throwing_Fire.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2073 - - Track ID2073 - NameStay Crunchy - ArtistRonald Jenkees - AlbumDisorganized Fun - GenreElectronic - KindMPEG audio file - Size9878843 - Total Time246909 - Track Number7 - Year2009 - BPM140 - Date Modified2009-08-27T14:10:43Z - Date Added2011-10-02T13:48:01Z - Bit Rate320 - Sample Rate44100 - CommentsCopyright 2009 Ronald Jenkees - Play Count1 - Play Date3418462081 - Play Date UTC2012-04-28T16:48:01Z - Skip Count3 - Skip Date2012-05-17T13:12:02Z - Persistent IDD887079942C68228 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Ronald%20Jenkees/07._Ronald_Jenkees_-_Stay_Crunchy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2075 - - Track ID2075 - NameCoin operated boy (Dj Delay remix) - ArtistNitelife United - GenreDance - KindMPEG audio file - Size5776500 - Total Time360986 - Year2008 - Date Modified2009-11-22T15:31:04Z - Date Added2011-10-02T13:48:01Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3414412242 - Play Date UTC2012-03-12T19:50:42Z - Skip Count1 - Skip Date2010-05-09T12:45:33Z - Persistent IDFC94001D4AEC6726 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Nitelife%20United%20-%20Coin%20operated%20boy%20(Dj%20Delay%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2077 - - Track ID2077 - Name07. Sandy Rivera - I can't stop (David Penn Mix) - KindMPEG audio file - Size18968570 - Total Time474618 - Date Modified2009-11-05T03:27:56Z - Date Added2011-10-02T13:48:01Z - Bit Rate320 - Sample Rate44100 - Skip Count2 - Skip Date2012-05-31T21:12:14Z - Persistent ID299DB879472BA3E2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/07.%20Sandy%20Rivera%20-%20I%20can't%20stop%20(David%20Penn%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2079 - - Track ID2079 - Name(If You're Wondering If I Want You To) I Want You To - ArtistWeezer - AlbumRaditude (Deluxe Edition) - GenreRock - KindMPEG audio file - Size8208383 - Total Time208483 - Disc Number1 - Disc Count2 - Track Number1 - Track Count11 - Year2009 - Date Modified2010-02-07T02:10:14Z - Date Added2011-10-02T13:48:03Z - Bit Rate314 - Sample Rate44100 - Play Count7 - Play Date3420091040 - Play Date UTC2012-05-17T13:17:20Z - Skip Count1 - Skip Date2012-04-24T13:18:21Z - Persistent ID2D6C980F2C60B86F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/01%20weezer%20(if%20youre%20wondering%20if%20i%20want%20you%20to)%20i%20want%20you%20to.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2081 - - Track ID2081 - NameUmbrella (Acoustic) - ArtistMarie Digby - Album ArtistMarie Digby - GenreAlternative - KindMPEG audio file - Size6247684 - Total Time223128 - Date Modified2010-02-07T02:05:13Z - Date Added2011-10-02T13:48:03Z - Bit Rate224 - Sample Rate48000 - Play Count3 - Play Date3414412673 - Play Date UTC2012-03-12T19:57:53Z - Skip Count2 - Skip Date2012-08-09T22:22:53Z - Persistent IDFED3854B8ADF0443 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Marie%20Digby%20-%20Umbrella%20(Acoustic).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2083 - - Track ID2083 - NameShow Me What I'm Looking For - ArtistCarolina Liar - Album ArtistCarolina Liar - ComposerC. Wolf/T. Karlsson - AlbumComing To Terms - GenreAlternative - KindMPEG audio file - Size7197943 - Total Time242677 - Track Number4 - Year2008 - Date Modified2010-02-07T02:00:03Z - Date Added2011-10-02T13:48:03Z - Bit Rate237 - Sample Rate44100 - Play Count5 - Play Date3424192795 - Play Date UTC2012-07-04T00:39:55Z - Skip Count1 - Skip Date2012-06-12T13:31:27Z - Persistent ID4ED35B9A8D875CBD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/04-carolina_liar-show_me_what_im_looking_for.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2085 - - Track ID2085 - Nameeuro trance - trance allstars - the first rebirth - atb mix - ArtistTrance all stars - GenreTrance - KindMPEG audio file - Size5429248 - Total Time339278 - Date Modified2010-01-18T01:48:03Z - Date Added2011-10-02T13:48:03Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3414413255 - Play Date UTC2012-03-12T20:07:35Z - Skip Count2 - Skip Date2011-06-13T21:37:47Z - Persistent ID36FF5DBECC01D635 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Jones%20&%20Stephenson%20-%20The%20First%20Rebirth%20(ATB%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2087 - - Track ID2087 - NameDaydreamin' Featuring Jill Scott - ArtistLupe Fiasco - Album ArtistLupe Fiasco - AlbumFood and Liquor - GenreHip-Hop - KindMPEG audio file - Size9433088 - Total Time235154 - Track Number9 - Year2006 - Date Modified2010-01-08T16:33:11Z - Date Added2011-10-02T13:48:03Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3426425685 - Play Date UTC2012-07-29T20:54:45Z - Artwork Count1 - Persistent IDAC067CE33B89ABEF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/09%20Daydreamin'.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2089 - - Track ID2089 - Name1901 - ArtistPhoenix - AlbumWolfgang Amadeus Phoenix - KindMPEG audio file - Size4028040 - Total Time198295 - Track Number2 - Year2009 - Date Modified2009-10-01T01:01:39Z - Date Added2011-10-02T13:48:03Z - Bit Rate160 - Sample Rate44100 - Play Count5 - Play Date3418219254 - Play Date UTC2012-04-25T21:20:54Z - Skip Count1 - Skip Date2010-05-09T12:56:57Z - Artwork Count1 - Persistent ID70058CC3263BB9F9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Phoenix%20-%201901.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2091 - - Track ID2091 - NameSatisfaction vs. Elements Of Life - ArtistBenny Benassi vs. Tiësto - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size6222514 - Total Time304308 - Date Modified2010-03-13T23:40:22Z - Date Added2011-10-02T13:48:04Z - Bit Rate128 - Sample Rate32000 - Play Count5 - Play Date3427301911 - Play Date UTC2012-08-09T00:18:31Z - Compilation - Artwork Count1 - Persistent ID9AE06EB37AD76C16 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Satisfaction%20vs.%20Elements%20Of%20Life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2093 - - Track ID2093 - NameAce Of Spades vs. Groundhog - ArtistMotörhead vs. NOISIA - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4158116 - Total Time175284 - Date Modified2010-03-13T23:40:16Z - Date Added2011-10-02T13:48:04Z - Bit Rate128 - Sample Rate32000 - Play Count3 - Play Date3424340908 - Play Date UTC2012-07-05T17:48:28Z - Skip Count5 - Skip Date2012-08-09T22:29:30Z - Compilation - Artwork Count1 - Persistent ID79DB7F7FFCE1DCFF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Ace%20Of%20Spades%20vs.%20Groundhog.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2095 - - Track ID2095 - NameAll Eyez On Me vs. Bittersweet Symphony - Artist2Pac vs. The Aranbee Pop Symphony Orchestra - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5194929 - Total Time240084 - Date Modified2010-03-13T23:40:26Z - Date Added2011-10-02T13:48:04Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3424252593 - Play Date UTC2012-07-04T17:16:33Z - Skip Count2 - Skip Date2012-06-11T13:44:06Z - Compilation - Artwork Count1 - Persistent IDECB209B9DD30515B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/All%20Eyez%20On%20Me%20vs.%20Bittersweet%20Symph.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2097 - - Track ID2097 - NameDisco Inferno vs. Let's Dance - Artist50 Cent vs. David Bowie - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4319379 - Total Time185364 - Date Modified2010-03-13T23:40:24Z - Date Added2011-10-02T13:48:04Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2012-05-23T13:45:36Z - Compilation - Artwork Count1 - Persistent IDA2C69EC6332092D0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Disco%20Inferno%20vs.%20Let's%20Dance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2099 - - Track ID2099 - NameDisco Inferno vs. Last Night A DJ Saved My Life - Artist50 Cent vs. Indeep - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4025632 - Total Time167004 - Date Modified2010-03-13T23:40:24Z - Date Added2011-10-02T13:48:04Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3424246090 - Play Date UTC2012-07-04T15:28:10Z - Skip Count3 - Skip Date2011-06-13T21:37:38Z - Compilation - Artwork Count1 - Persistent ID7BBC51E8833B5151 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Disco%20Inferno%20vs.%20Last%20Night%20A%20DJ%20Sa.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2101 - - Track ID2101 - NameZulu Nation Throwdown vs. Get Down - ArtistAfrika Bambaataa vs. Freedom Express - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4160997 - Total Time175464 - Date Modified2010-03-13T23:40:24Z - Date Added2011-10-02T13:48:05Z - Bit Rate128 - Sample Rate32000 - Skip Count4 - Skip Date2012-08-08T23:53:01Z - Compilation - Artwork Count1 - Persistent IDB2C01EFEAEF3CC8D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Zulu%20Nation%20Throwdown%20vs.%20Get%20Down.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2103 - - Track ID2103 - NameIntergalactic vs. Rapture - ArtistBeastie Boys vs. Blondie - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4051536 - Total Time168624 - Date Modified2010-03-13T23:40:24Z - Date Added2011-10-02T13:48:05Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2012-06-11T21:41:13Z - Compilation - Artwork Count1 - Persistent IDF7B7C5C2A8545248 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Intergalactic%20vs.%20Rapture.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2105 - - Track ID2105 - NameLee Majors Come Again vs. Da Funk - ArtistBeastie Boys vs. Daft Punk - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4706458 - Total Time209556 - Date Modified2010-03-13T23:40:24Z - Date Added2011-10-02T13:48:05Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-08-13T22:12:28Z - Compilation - Artwork Count1 - Persistent ID35B909C67D9B417D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Lee%20Majors%20Come%20Again%20vs.%20Da%20Funk.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2107 - - Track ID2107 - NameHere's a Little Somethin' for Ya vs. The Number Song - ArtistBeastie Boys vs. DJ Shadow - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5204717 - Total Time240696 - Date Modified2010-03-13T23:40:24Z - Date Added2011-10-02T13:48:05Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2012-08-09T00:11:28Z - Compilation - Artwork Count1 - Persistent IDCE3A389507A82575 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Here's%20a%20Little%20Somethin'%20for%20Ya%20vs..mp3 - File Folder Count-1 - Library Folder Count-1 - - 2109 - - Track ID2109 - NameWhere It's At vs. Six Days - ArtistBeck vs. DJ Shadow featuring Mos Def - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4388509 - Total Time189684 - Date Modified2010-03-13T23:40:24Z - Date Added2011-10-02T13:48:05Z - Bit Rate128 - Sample Rate32000 - Compilation - Artwork Count1 - Persistent IDD816D389C48A59B8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Where%20It's%20At%20vs.%20Six%20Days.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2111 - - Track ID2111 - NamePoison (Beat Juggle) - ArtistBell Biv DeVoe - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size2681793 - Total Time83016 - Date Modified2010-03-13T23:40:23Z - Date Added2011-10-02T13:48:06Z - Bit Rate128 - Sample Rate32000 - Skip Count4 - Skip Date2012-07-27T13:02:33Z - Compilation - Artwork Count1 - Persistent ID331083DCE6B09494 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Poison%20(Beat%20Juggle).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2113 - - Track ID2113 - NamePoison vs. Intergalactic - ArtistBell Biv DeVoe vs. Beastie Boys - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4817622 - Total Time216504 - Date Modified2010-03-13T23:40:23Z - Date Added2011-10-02T13:48:06Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3426693848 - Play Date UTC2012-08-01T23:24:08Z - Skip Count3 - Skip Date2012-05-18T13:29:18Z - Compilation - Artwork Count1 - Persistent ID3579CC2155184F46 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Poison%20vs.%20Intergalactic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2115 - - Track ID2115 - NamePoison vs. Word Up! - ArtistBell Biv DeVoe vs. Cameo - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4754826 - Total Time212580 - Date Modified2010-03-13T23:40:23Z - Date Added2011-10-02T13:48:06Z - Bit Rate128 - Sample Rate32000 - Play Count2 - Play Date3389611863 - Play Date UTC2011-05-30T18:51:03Z - Skip Count2 - Skip Date2010-09-14T21:43:29Z - Compilation - Artwork Count1 - Persistent ID131CA9FFD0034B37 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Poison%20vs.%20Word%20Up!.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2117 - - Track ID2117 - NameThe Big Beat vs. Lapdance - ArtistBilly Squier vs. N.E.R.D. - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4393681 - Total Time190008 - Date Modified2010-03-13T23:40:23Z - Date Added2011-10-02T13:48:06Z - Bit Rate128 - Sample Rate32000 - Play Count2 - Play Date3424296571 - Play Date UTC2012-07-05T05:29:31Z - Skip Count2 - Skip Date2011-06-21T20:30:52Z - Compilation - Artwork Count1 - Sort NameBig Beat vs. Lapdance - Persistent ID3C53B1511660C2B6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/The%20Big%20Beat%20vs.%20Lapdance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2119 - - Track ID2119 - NameBoom Boom Pow vs. Satisfaction - ArtistBlack Eyed Peas vs. Benny Benassi - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4692638 - Total Time208692 - Date Modified2010-03-13T23:40:23Z - Date Added2011-10-02T13:48:06Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3389378659 - Play Date UTC2011-05-28T02:04:19Z - Skip Count1 - Skip Date2010-08-13T22:23:38Z - Compilation - Artwork Count1 - Persistent IDA2B627B4D03CF158 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Boom%20Boom%20Pow%20vs.%20Satisfaction.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2121 - - Track ID2121 - NameAin't No Love In The Heart Of The City vs. How Do U Want It - ArtistBobby "Blue" Bland vs. 2Pac - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4669621 - Total Time207252 - Date Modified2010-03-13T23:40:23Z - Date Added2011-10-02T13:48:07Z - Bit Rate128 - Sample Rate32000 - Play Count3 - Play Date3428038574 - Play Date UTC2012-08-17T12:56:14Z - Compilation - Artwork Count1 - Persistent IDC11E80ACF1C804FC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Ain't%20No%20Love%20In%20The%20Heart%20Of%20The%20Ci.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2123 - - Track ID2123 - NameAin't No Love In The City vs. Fuzz And Them - ArtistBobby "Blue" Bland vs. Connie Price & The Keystones - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size3802157 - Total Time153036 - Date Modified2010-03-13T23:40:23Z - Date Added2011-10-02T13:48:07Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3364638433 - Play Date UTC2010-08-14T17:47:13Z - Compilation - Artwork Count1 - Persistent ID3B474C3989B5714D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Ain't%20No%20Love%20In%20The%20City%20vs.%20%20Fuzz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2125 - - Track ID2125 - NameJack Of Spades vs. Let's Dance - ArtistBoogie Down Productions vs. David Bowie - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5094692 - Total Time233820 - Date Modified2010-03-13T23:40:22Z - Date Added2011-10-02T13:48:07Z - Bit Rate128 - Sample Rate32000 - Compilation - Artwork Count1 - Persistent ID3B6478AE6172F063 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Jack%20Of%20Spades%20vs.%20Let's%20Dance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2127 - - Track ID2127 - NameBustin' Loose vs. Time Of The Season - ArtistChuck Brown & The Soul Searchers vs. The Zombies - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4453619 - Total Time193752 - Date Modified2010-03-13T23:40:22Z - Date Added2011-10-02T13:48:07Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2012-06-20T21:40:59Z - Compilation - Artwork Count1 - Persistent ID3178A1E9A3180D55 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Bustin'%20Loose%20vs.%20Time%20Of%20The%20Season.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2129 - - Track ID2129 - NameBustin' Loose vs. Bust A Move - ArtistChuck Brown & The Soul Searchers vs. Young MC - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4046377 - Total Time168300 - Date Modified2010-03-13T23:40:22Z - Date Added2011-10-02T13:48:07Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-08-14T18:02:54Z - Compilation - Artwork Count1 - Persistent IDB9687AB2E6B476DD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Bustin'%20Loose%20vs.%20Bust%20A%20Move.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2131 - - Track ID2131 - NameUniversal Mind Control (U.M.C.) vs. Jeep Ass Gutter - ArtistCommon vs. Masta Ace - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4181158 - Total Time176724 - Date Modified2010-03-13T23:40:22Z - Date Added2011-10-02T13:48:07Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2011-03-22T21:29:01Z - Compilation - Artwork Count1 - Persistent IDF4DACD7F455C7F6A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Universal%20Mind%20Control%20(U.M.C.)%20vs..mp3 - File Folder Count-1 - Library Folder Count-1 - - 2133 - - Track ID2133 - NameInsane In The Brain vs. Spooky - ArtistCypress Hill vs. Classics IV - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4244505 - Total Time180684 - Date Modified2010-03-13T23:40:22Z - Date Added2011-10-02T13:48:08Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2012-05-30T21:44:28Z - Compilation - Artwork Count1 - Persistent IDE2F70C1019191DB6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Insane%20In%20The%20Brain%20vs.%20Spooky.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2135 - - Track ID2135 - NameInsane In The Brain vs. The Edge - ArtistCypress Hill vs. David Axelrod - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4298077 - Total Time184032 - Date Modified2010-03-13T23:40:23Z - Date Added2011-10-02T13:48:08Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2012-06-27T15:02:38Z - Compilation - Artwork Count1 - Persistent ID793C75A53471B7A9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Insane%20In%20The%20Brain%20vs.%20The%20Edge.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2137 - - Track ID2137 - NameMegamix 1 - ArtistDaft Punk - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4646513 - Total Time205812 - Date Modified2010-03-13T23:40:25Z - Date Added2011-10-02T13:48:08Z - Bit Rate128 - Sample Rate32000 - Play Count8 - Play Date3422351034 - Play Date UTC2012-06-12T17:03:54Z - Compilation - Artwork Count1 - Persistent ID12B76C1D5C586EC7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Megamix%201.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2139 - - Track ID2139 - NameMegamix 2 - ArtistDaft Punk - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5060657 - Total Time231696 - Date Modified2010-03-13T23:40:27Z - Date Added2011-10-02T13:48:08Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3424289875 - Play Date UTC2012-07-05T03:37:55Z - Compilation - Artwork Count1 - Persistent ID00B8AF556134518F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Megamix%202.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2141 - - Track ID2141 - NameShort Circuit vs. Jack Of Spades - ArtistDaft Punk vs. Boogie Down Productions - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4671332 - Total Time207360 - Date Modified2010-03-13T23:40:27Z - Date Added2011-10-02T13:48:09Z - Bit Rate128 - Sample Rate32000 - Skip Count3 - Skip Date2012-07-16T14:00:02Z - Compilation - Artwork Count1 - Persistent ID31B836E7D54CE13C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Short%20Circuit%20vs.%20Jack%20Of%20Spades.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2143 - - Track ID2143 - NameTechnologic vs. Cars - ArtistDaft Punk vs. Gary Numan - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4136779 - Total Time173952 - Date Modified2010-03-13T23:40:27Z - Date Added2011-10-02T13:48:09Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3364639826 - Play Date UTC2010-08-14T18:10:26Z - Skip Count1 - Skip Date2010-05-21T11:58:34Z - Compilation - Artwork Count1 - Persistent ID3402D2C5C7FADDF4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Technologic%20vs.%20Cars.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2145 - - Track ID2145 - NameRobot Rock vs. Al Naafyish (The Soul) - ArtistDaft Punk vs. Hashim - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4171352 - Total Time176112 - Date Modified2010-03-13T23:40:27Z - Date Added2011-10-02T13:48:09Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-05-21T11:58:36Z - Compilation - Artwork Count1 - Persistent ID6EACB4ACE988AF30 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Robot%20Rock%20vs.%20Al%20Naafyish%20(The%20Soul.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2147 - - Track ID2147 - NameDa Funk vs. Starnge Enough - ArtistDaft Punk vs. N.A.S.A. featuring Karen O, ODB and Fatlip - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4427121 - Total Time192096 - Date Modified2010-03-13T23:40:27Z - Date Added2011-10-02T13:48:09Z - Bit Rate128 - Sample Rate32000 - Skip Count3 - Skip Date2012-07-29T21:56:48Z - Compilation - Artwork Count1 - Persistent ID21847671BA799BCE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Da%20Funk%20vs.%20Starnge%20Enough.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2149 - - Track ID2149 - NameTelevision Rules The Nation vs. Hella Good - ArtistDaft Punk vs. No Doubt - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4250271 - Total Time181044 - Date Modified2010-03-13T23:40:27Z - Date Added2011-10-02T13:48:09Z - Bit Rate128 - Sample Rate32000 - Play Count4 - Play Date3424215968 - Play Date UTC2012-07-04T07:06:08Z - Compilation - Artwork Count1 - Persistent ID1D5F0F3E2B211BF3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Television%20Rules%20The%20Nation%20vs.%20Hell.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2151 - - Track ID2151 - NameRobot Rock vs. We Will Rock You - ArtistDaft Punk vs. Queen - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4190353 - Total Time177300 - Date Modified2010-03-13T23:40:27Z - Date Added2011-10-02T13:48:09Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-05-21T11:58:51Z - Compilation - Artwork Count1 - Persistent IDF0E709B9F8890800 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Robot%20Rock%20vs.%20We%20Will%20Rock%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2153 - - Track ID2153 - NameAround The World vs. Bust A Move - ArtistDaft Punk vs. Young MC - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4413269 - Total Time191232 - Date Modified2010-03-13T23:40:26Z - Date Added2011-10-02T13:48:10Z - Bit Rate128 - Sample Rate32000 - Play Count2 - Play Date3422535753 - Play Date UTC2012-06-14T20:22:33Z - Skip Count1 - Skip Date2010-05-21T11:58:57Z - Compilation - Artwork Count1 - Persistent ID416C111956111623 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Around%20The%20World%20vs.%20Bust%20A%20Move.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2155 - - Track ID2155 - NameThe Edge vs. Eric B. Is President - ArtistDavid Axelrod vs. Eric B. & Rakim - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size2924321 - Total Time98172 - Date Modified2010-03-13T23:40:26Z - Date Added2011-10-02T13:48:10Z - Bit Rate128 - Sample Rate32000 - Play Count2 - Play Date3425285179 - Play Date UTC2012-07-16T16:06:19Z - Compilation - Artwork Count1 - Sort NameEdge vs. Eric B. Is President - Persistent IDD070617E40D8C794 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/The%20Edge%20vs.%20Eric%20B.%20Is%20President.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2157 - - Track ID2157 - NameFix Up, Look Sharp vs. Organ Donor (Extended Overhaul) - ArtistDizzee Rascal vs. DJ Shadow - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4182896 - Total Time176832 - Date Modified2010-03-13T23:40:26Z - Date Added2011-10-02T13:48:10Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3364640610 - Play Date UTC2010-08-14T18:23:30Z - Skip Count1 - Skip Date2010-04-14T22:08:43Z - Compilation - Artwork Count1 - Persistent IDCB63675D45940668 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Fix%20Up,%20Look%20Sharp%20vs.%20Organ%20Donor%20(.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2159 - - Track ID2159 - NameFix Up, Look Sharp vs. Genesis - ArtistDizzee Rascal vs. Justice - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4637334 - Total Time205236 - Date Modified2010-03-13T23:40:25Z - Date Added2011-10-02T13:48:10Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2010-08-14T18:23:35Z - Compilation - Artwork Count1 - Persistent ID7F59000DDD4B88A7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Fix%20Up,%20Look%20Sharp%20vs.%20Genesis.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2161 - - Track ID2161 - NameSix Days vs. Annie's Horn - ArtistDJ Shadow featuring Mos Def vs. D-Code - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4882718 - Total Time220572 - Date Modified2010-03-13T23:40:26Z - Date Added2011-10-02T13:48:10Z - Bit Rate128 - Sample Rate32000 - Play Count2 - Play Date3424333185 - Play Date UTC2012-07-05T15:39:45Z - Skip Count3 - Skip Date2012-08-09T22:33:48Z - Compilation - Artwork Count1 - Persistent IDDD3A4849A5B7256C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Six%20Days%20vs.%20Annie's%20Horn.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2163 - - Track ID2163 - NameMy Name Is vs. Loser - ArtistEminem vs. Beck - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4717954 - Total Time210276 - Date Modified2010-03-13T23:40:26Z - Date Added2011-10-02T13:48:11Z - Bit Rate128 - Sample Rate32000 - Play Count2 - Play Date3424332220 - Play Date UTC2012-07-05T15:23:40Z - Compilation - Artwork Count1 - Persistent IDB8154F547BCA743B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/My%20Name%20Is%20vs.%20Loser.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2165 - - Track ID2165 - NamePut Your Hands Up For Detroit vs. I Can’t Stop - ArtistFedde Le Grand vs. Sandy Rivera - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4280284 - Total Time182916 - Date Modified2010-03-13T23:40:26Z - Date Added2011-10-02T13:48:11Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3364646386 - Play Date UTC2010-08-14T19:59:46Z - Compilation - Artwork Count1 - Persistent IDD64A1834E83F2A90 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Put%20Your%20Hands%20Up%20For%20Detroit%20vs.%20I.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2167 - - Track ID2167 - NameMonkey Wrench vs. Sabotage - ArtistFoo Fighters vs. Beastie Boys - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4056150 - Total Time168912 - Date Modified2010-03-13T23:40:26Z - Date Added2011-10-02T13:48:11Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3424179438 - Play Date UTC2012-07-03T20:57:18Z - Skip Count2 - Skip Date2012-06-27T15:05:39Z - Compilation - Artwork Count1 - Persistent IDE90B7CF7FBDF4240 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Monkey%20Wrench%20vs.%20Sabotage.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2169 - - Track ID2169 - NameJuke Box Hero vs. DJ Hero - ArtistForeigner vs. DJ Z-Trip featuring MURS - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5443166 - Total Time255600 - Date Modified2010-03-13T23:40:25Z - Date Added2011-10-02T13:48:11Z - Bit Rate128 - Sample Rate32000 - Play Count3 - Play Date3364646651 - Play Date UTC2010-08-14T20:04:11Z - Compilation - Artwork Count1 - Persistent ID1D4C8AD44581DD7C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Juke%20Box%20Hero%20vs.%20DJ%20Hero.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2171 - - Track ID2171 - NameJust To Get A Rep vs. Shook Ones Part II - ArtistGang Starr vs. Mobb Deep - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5363103 - Total Time250596 - Date Modified2010-03-13T23:40:25Z - Date Added2011-10-02T13:48:11Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2011-05-10T12:58:12Z - Compilation - Artwork Count1 - Persistent IDD1362BD4F57338B0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Just%20To%20Get%20A%20Rep%20vs.%20Shook%20Ones%20Par.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2173 - - Track ID2173 - NameFeel Good Inc. vs. Atomic - ArtistGorillaz vs. Blondie - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size3891404 - Total Time158616 - Date Modified2010-03-13T23:40:25Z - Date Added2011-10-02T13:48:11Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3364646817 - Play Date UTC2010-08-14T20:06:57Z - Skip Count2 - Skip Date2012-05-23T13:47:48Z - Compilation - Artwork Count1 - Persistent IDA11371F1D82C1DE0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Feel%20Good%20Inc.%20vs.%20Atomic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2175 - - Track ID2175 - NameBoom vs. Tap - ArtistGrandmaster Flash - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size2506684 - Total Time72072 - Date Modified2010-03-13T23:40:25Z - Date Added2011-10-02T13:48:12Z - Bit Rate128 - Sample Rate32000 - Skip Count4 - Skip Date2012-08-17T12:47:10Z - Compilation - Artwork Count1 - Persistent ID1A2568C54152296D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Boom%20vs.%20Tap.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2177 - - Track ID2177 - NameHere Comes My DJ vs. Cars - ArtistGrandmaster Flash featuring DJ Kool and DJ Demo vs. Gary Numan - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4341878 - Total Time186768 - Date Modified2010-03-13T23:40:25Z - Date Added2011-10-02T13:48:12Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3424240703 - Play Date UTC2012-07-04T13:58:23Z - Skip Count2 - Skip Date2012-06-26T13:48:51Z - Compilation - Artwork Count1 - Persistent IDA2E328DDCFA6FAE3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Here%20Comes%20My%20DJ%20vs.%20Cars.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2179 - - Track ID2179 - NameHollaback Girl vs. Feel Good Inc. - ArtistGwen Steffani vs. Gorillaz - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4264666 - Total Time181944 - Date Modified2010-03-13T23:40:22Z - Date Added2011-10-02T13:48:12Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-08-14T20:07:30Z - Compilation - Artwork Count1 - Persistent ID79866DFC22039918 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Hollaback%20Girl%20vs.%20Feel%20Good%20Inc..mp3 - File Folder Count-1 - Library Folder Count-1 - - 2181 - - Track ID2181 - NameHollaback Girl vs. Last Night A DJ Saved My Life - ArtistGwen Steffani vs. Indeep - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4505447 - Total Time196992 - Date Modified2010-03-13T23:40:20Z - Date Added2011-10-02T13:48:12Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2012-08-14T17:28:09Z - Compilation - Artwork Count1 - Persistent ID10AB5B81AE9865D9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Hollaback%20Girl%20vs.%20Last%20Night%20A%20DJ%20S.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2183 - - Track ID2183 - NameHollaback Girl vs. Give It To Me Baby - ArtistGwen Steffani vs. Rick James - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4491040 - Total Time196092 - Date Modified2010-03-13T23:40:19Z - Date Added2011-10-02T13:48:12Z - Bit Rate128 - Sample Rate32000 - Skip Count4 - Skip Date2012-08-09T00:01:58Z - Compilation - Artwork Count1 - Persistent IDE3BB293121F46C6E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Hollaback%20Girl%20vs.%20Give%20It%20To%20Me%20Bab.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2185 - - Track ID2185 - NameRockit vs. Lapdance - ArtistHerbie Hancock vs. N.E.R.D. - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size3938104 - Total Time161532 - Date Modified2010-03-13T23:40:18Z - Date Added2011-10-02T13:48:13Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3424299060 - Play Date UTC2012-07-05T06:11:00Z - Skip Count2 - Skip Date2010-08-14T20:07:39Z - Compilation - Artwork Count1 - Persistent ID87DFF13B6F5E82F8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Rockit%20vs.%20Lapdance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2187 - - Track ID2187 - NameLast Night A DJ Saved My Life vs. Word Up! - ArtistIndeep vs. Cameo - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4250265 - Total Time181044 - Date Modified2010-03-13T23:40:18Z - Date Added2011-10-02T13:48:13Z - Bit Rate128 - Sample Rate32000 - Play Count2 - Play Date3421422023 - Play Date UTC2012-06-01T23:00:23Z - Skip Count1 - Skip Date2012-06-26T13:50:04Z - Compilation - Artwork Count1 - Persistent IDFB4321F6D8D0A451 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Last%20Night%20A%20DJ%20Saved%20My%20Life%20vs.%20Wo.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2189 - - Track ID2189 - NameI Want You Back vs. Just To Get A Rep - ArtistJackson 5 vs. Gang Starr - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4838940 - Total Time217836 - Date Modified2010-03-13T23:40:18Z - Date Added2011-10-02T13:48:13Z - Bit Rate128 - Sample Rate32000 - Play Count3 - Play Date3424338745 - Play Date UTC2012-07-05T17:12:25Z - Skip Count1 - Skip Date2012-08-17T12:44:40Z - Compilation - Artwork Count1 - Persistent ID32178F11DAF25427 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/I%20Want%20You%20Back%20vs.%20Just%20To%20Get%20A%20Re.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2191 - - Track ID2191 - NameI Want You Back vs. Semi-Charmed Life - ArtistJackson 5 vs. Third Eye Blind - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4624673 - Total Time204444 - Date Modified2010-03-13T23:40:18Z - Date Added2011-10-02T13:48:13Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-08-11T19:49:47Z - Compilation - Artwork Count1 - Persistent IDC48CFF306ADF04FE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/I%20Want%20You%20Back%20vs.%20Semi-Charmed%20Lif.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2193 - - Track ID2193 - NameChange Clothes vs. All Eyez On Me - ArtistJay-Z featuring Pharrell Williams vs. 2Pac - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4920746 - Total Time222948 - Date Modified2010-03-13T23:40:18Z - Date Added2011-10-02T13:48:13Z - Bit Rate128 - Sample Rate32000 - Play Count2 - Play Date3379610234 - Play Date UTC2011-02-04T00:37:14Z - Skip Count1 - Skip Date2011-06-14T21:07:28Z - Compilation - Artwork Count1 - Persistent ID52B3F721DA9A193E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Change%20Clothes%20vs.%20All%20Eyez%20On%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2195 - - Track ID2195 - NameIzzo (H.O.V.A.) vs. My Name Is - ArtistJay-Z vs. Eminem - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4758861 - Total Time212832 - Date Modified2010-03-13T23:40:18Z - Date Added2011-10-02T13:48:13Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3365053932 - Play Date UTC2010-08-19T13:12:12Z - Compilation - Artwork Count1 - Persistent ID20FD66A1FD3AD760 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Izzo%20(H.O.V.A.)%20vs.%20My%20Name%20Is.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2197 - - Track ID2197 - NameIzzo (H.O.V.A.) vs. I Want You Back - ArtistJay-Z vs. The Jackson 5 - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4548057 - Total Time199656 - Date Modified2010-03-13T23:40:18Z - Date Added2011-10-02T13:48:14Z - Bit Rate128 - Sample Rate32000 - Play Count2 - Play Date3422023428 - Play Date UTC2012-06-08T22:03:48Z - Skip Count2 - Skip Date2012-06-08T22:00:34Z - Compilation - Artwork Count1 - Persistent ID4CD918A21DE5E63E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Izzo%20(H.O.V.A.)%20vs.%20I%20Want%20You%20Back.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2199 - - Track ID2199 - NameMr. Big Stuff vs. Born To Roll - ArtistJean Knight vs. Masta Ace - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4058454 - Total Time169056 - Date Modified2010-03-13T23:40:17Z - Date Added2011-10-02T13:48:14Z - Bit Rate128 - Sample Rate32000 - Compilation - Artwork Count1 - Persistent IDDEFDC4BE86C0D3EB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Mr.%20Big%20Stuff%20vs.%20Born%20To%20Roll.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2201 - - Track ID2201 - NameJayou vs. The Big Beat - ArtistJurassic 5 vs. Billy Squier - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4325712 - Total Time185760 - Date Modified2010-03-13T23:40:17Z - Date Added2011-10-02T13:48:14Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2012-08-07T21:56:36Z - Compilation - Artwork Count1 - Persistent IDDFBBD233EBC86DA4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Jayou%20vs.%20The%20Big%20Beat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2203 - - Track ID2203 - NameJayou vs. Rockit - ArtistJurassic 5 vs. Herbie Hancock - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size3984140 - Total Time164412 - Date Modified2010-03-13T23:40:16Z - Date Added2011-10-02T13:48:14Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-08-19T13:15:14Z - Compilation - Artwork Count1 - Persistent IDD47ADFD0499607E9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Jayou%20vs.%20Rockit.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2205 - - Track ID2205 - NameDay 'N' Nite vs. Boom Boom Pow - ArtistKid Cudi vs. Black Eyed Peas - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4549785 - Total Time199764 - Date Modified2010-03-13T23:40:17Z - Date Added2011-10-02T13:48:14Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-08-11T19:50:47Z - Compilation - Artwork Count1 - Persistent ID418E4F46EE29F1DB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Day%20'N'%20Nite%20vs.%20Boom%20Boom%20Pow.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2207 - - Track ID2207 - NameHow Ya Like Me Now vs. I Like To Move It - ArtistKool Moe Dee vs. Reel 2 Real featuring The Mad Stuntman - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4469182 - Total Time194724 - Date Modified2010-03-13T23:40:17Z - Date Added2011-10-02T13:48:15Z - Bit Rate128 - Sample Rate32000 - Skip Count3 - Skip Date2011-05-03T21:54:18Z - Compilation - Artwork Count1 - Persistent IDC9EB96BD664EA359 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/How%20Ya%20Like%20Me%20Now%20vs.%20I%20Like%20To%20Mov.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2209 - - Track ID2209 - NameTutti Frutti vs. Beats - ArtistLittle Richard vs. Shlomo - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4079758 - Total Time170388 - Date Modified2010-03-13T23:40:17Z - Date Added2011-10-02T13:48:15Z - Bit Rate128 - Sample Rate32000 - Skip Count4 - Skip Date2012-05-16T22:50:41Z - Compilation - Artwork Count1 - Persistent IDBB0BD39D366ACCEB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Tutti%20Frutti%20vs.%20Beats.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2211 - - Track ID2211 - NamePaper Planes vs. Eric B. Is President - ArtistM.I.A. vs. Eric B. & Rakim - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4380446 - Total Time189180 - Date Modified2010-03-13T23:40:17Z - Date Added2011-10-02T13:48:15Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3383661549 - Play Date UTC2011-03-22T21:59:09Z - Skip Count3 - Skip Date2011-06-21T12:57:34Z - Compilation - Artwork Count1 - Persistent ID1EEAB2843C9B8CFD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Paper%20Planes%20vs.%20Eric%20B.%20Is%20Presiden%202.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2213 - - Track ID2213 - NamePaper Planes vs. Eric B. Is President - ArtistM.I.A. vs. Eric B. & Rakim - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4309022 - Total Time184716 - Date Modified2010-03-13T23:40:16Z - Date Added2011-10-02T13:48:15Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3424330656 - Play Date UTC2012-07-05T14:57:36Z - Skip Count1 - Skip Date2010-08-11T19:51:10Z - Compilation - Artwork Count1 - Persistent ID4A0353E7127FA33C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Paper%20Planes%20vs.%20Eric%20B.%20Is%20Presiden.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2215 - - Track ID2215 - NameI Heard It Through The Grapevine vs. Feel Good Inc. - ArtistMarvin Gaye vs. Gorillaz - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4895402 - Total Time221364 - Date Modified2010-03-13T23:40:16Z - Date Added2011-10-02T13:48:15Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3426688703 - Play Date UTC2012-08-01T21:58:23Z - Skip Count2 - Skip Date2012-06-12T13:29:45Z - Compilation - Artwork Count1 - Persistent IDF5379FFB1A9F4B6A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/I%20Heard%20It%20Through%20The%20Grapevine%20vs..mp3 - File Folder Count-1 - Library Folder Count-1 - - 2217 - - Track ID2217 - NameStrange Enough vs. Theme from Shaft - ArtistN.A.S.A. featuring Karen O, ODB, and Fatlip vs. Isaac Hayes - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4279101 - Total Time182844 - Date Modified2010-03-13T23:40:16Z - Date Added2011-10-02T13:48:16Z - Bit Rate128 - Sample Rate32000 - Compilation - Artwork Count1 - Persistent IDA9A5B3711D7F5848 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Strange%20Enough%20vs.%20Theme%20from%20Shaft.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2219 - - Track ID2219 - NameGroundhog (Beat Juggle) - ArtistNOISIA - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5479420 - Total Time257868 - Date Modified2010-03-13T23:40:16Z - Date Added2011-10-02T13:48:16Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2010-08-19T13:17:19Z - Compilation - Artwork Count1 - Persistent ID6B3923595F75D450 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Groundhog%20(Beat%20Juggle).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2221 - - Track ID2221 - NameNothing But You vs. I Can't Stop - ArtistPaul van Dyk vs. Sandy Rivera featuring David Penn - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5279025 - Total Time245340 - Date Modified2010-03-13T23:40:16Z - Date Added2011-10-02T13:48:16Z - Bit Rate128 - Sample Rate32000 - Play Count3 - Play Date3387289044 - Play Date UTC2011-05-03T21:37:24Z - Compilation - Artwork Count1 - Persistent ID71A580DB38F8CF48 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Nothing%20But%20You%20vs.%20I%20Can't%20Stop.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2223 - - Track ID2223 - NameBring The Noise 20XX - ArtistPublic Enemy featuring Zakk Wylde - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4057876 - Total Time169020 - Date Modified2010-03-13T23:40:17Z - Date Added2011-10-02T13:48:16Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-08-13T13:43:47Z - Compilation - Artwork Count1 - Persistent ID7704186BF42D8CDA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Bring%20The%20Noise%2020XX.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2225 - - Track ID2225 - NameBring The Noise 20XX vs. Genesis - ArtistPublic Enemy featuring Zakk Wylde vs. Justice - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4620652 - Total Time204192 - Date Modified2010-03-13T23:40:19Z - Date Added2011-10-02T13:48:16Z - Bit Rate128 - Sample Rate32000 - Compilation - Artwork Count1 - Persistent IDB9D3E1AEE6F2CD86 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Bring%20The%20Noise%2020XX%20vs.%20Genesis.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2227 - - Track ID2227 - NameShut 'Em Down vs. Where It's At - ArtistPublic Enemy vs. Beck - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4403475 - Total Time190620 - Date Modified2010-03-13T23:40:22Z - Date Added2011-10-02T13:48:17Z - Bit Rate128 - Sample Rate32000 - Skip Count3 - Skip Date2012-07-30T13:21:47Z - Compilation - Artwork Count1 - Persistent ID67E9C5A66A3DE411 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Shut%20'Em%20Down%20vs.%20Where%20It's%20At.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2229 - - Track ID2229 - NameGood Thang vs. The Big Beat - ArtistQ-Tip vs. Billy Squier - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5004816 - Total Time228204 - Date Modified2010-03-13T23:40:22Z - Date Added2011-10-02T13:48:17Z - Bit Rate128 - Sample Rate32000 - Skip Count5 - Skip Date2012-06-26T13:40:45Z - Compilation - Artwork Count1 - Persistent ID4594ED6CF6752527 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Good%20Thang%20vs.%20The%20Big%20Beat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2231 - - Track ID2231 - NameAnother One Bites The Dust vs. Brass Monkey - ArtistQueen vs. Beastie Boys - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5004256 - Total Time228168 - Date Modified2010-03-13T23:40:21Z - Date Added2011-10-02T13:48:17Z - Bit Rate128 - Sample Rate32000 - Skip Count4 - Skip Date2012-04-23T11:41:09Z - Compilation - Artwork Count1 - Persistent ID580A4C0F283C8121 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Another%20One%20Bites%20The%20Dust%20vs.%20Brass.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2233 - - Track ID2233 - NameAnother One Bites The Dust vs. Da Funk - ArtistQueen vs. Daft Punk - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4226072 - Total Time179532 - Date Modified2010-03-13T23:40:21Z - Date Added2011-10-02T13:48:17Z - Bit Rate128 - Sample Rate32000 - Play Count3 - Play Date3420954306 - Play Date UTC2012-05-27T13:05:06Z - Compilation - Artwork Count1 - Persistent ID8366FD428773B321 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Another%20One%20Bites%20The%20Dust%20vs.%20Da%20Fu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2235 - - Track ID2235 - NameDisturbia vs. Control - ArtistRihanna vs. Kid Sister - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4493898 - Total Time196272 - Date Modified2010-03-13T23:40:21Z - Date Added2011-10-02T13:48:17Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2010-08-13T13:47:16Z - Compilation - Artwork Count1 - Persistent ID85319D65665419B5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Disturbia%20vs.%20Control.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2237 - - Track ID2237 - NameDisturbia vs. Soembody Told Me - ArtistRihanna vs. The Killers - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4582612 - Total Time201816 - Date Modified2010-03-13T23:40:21Z - Date Added2011-10-02T13:48:18Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3424202967 - Play Date UTC2012-07-04T03:29:27Z - Skip Count3 - Skip Date2012-08-07T21:45:26Z - Compilation - Artwork Count1 - Persistent ID104263C295BDB995 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Disturbia%20vs.%20Soembody%20Told%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2239 - - Track ID2239 - NameDisturbia vs. Disco Inferno - ArtistRihanna vs. The Trammps - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4173073 - Total Time176220 - Date Modified2010-03-13T23:40:21Z - Date Added2011-10-02T13:48:18Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3424311688 - Play Date UTC2012-07-05T09:41:28Z - Skip Count2 - Skip Date2012-07-27T13:02:26Z - Compilation - Artwork Count1 - Persistent IDA3C54B4499F23187 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Disturbia%20vs.%20Disco%20Inferno.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2241 - - Track ID2241 - NameBeats vs. The Big Beat - ArtistShlomo vs. Billy Squier - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size3975500 - Total Time163872 - Date Modified2010-03-13T23:40:21Z - Date Added2011-10-02T13:48:18Z - Bit Rate128 - Sample Rate32000 - Skip Count3 - Skip Date2012-06-27T15:06:32Z - Compilation - Artwork Count1 - Persistent ID7576249EAD2AD5E3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Beats%20vs.%20The%20Big%20Beat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2243 - - Track ID2243 - NameFight! Smash! Win! vs. Intergalactic - ArtistStreet Sweeper Social Club vs. Beastie Boys - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4755875 - Total Time141975 - Date Modified2010-03-13T23:40:20Z - Date Added2011-10-02T13:48:18Z - Bit Rate192 - Sample Rate44100 - Skip Count3 - Skip Date2012-07-31T21:04:31Z - Compilation - Artwork Count1 - Persistent ID48B2AFFDD9E88DD8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Fight!%20Smash!%20Win!%20vs.%20Intergalactic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2245 - - Track ID2245 - NameShout vs. Six Days - ArtistTears For Fears vs. DJ Shadow featuring Mos Def - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5073952 - Total Time232524 - Date Modified2010-03-13T23:40:20Z - Date Added2011-10-02T13:48:19Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-08-13T13:47:46Z - Compilation - Artwork Count1 - Persistent IDAA3E3637DD9194BD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Shout%20vs.%20Six%20Days.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2247 - - Track ID2247 - NameShout vs. Eric B. Is President - ArtistTears For Fears vs. Eric B. & Rakim - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5077408 - Total Time232740 - Date Modified2010-03-13T23:40:19Z - Date Added2011-10-02T13:48:19Z - Bit Rate128 - Sample Rate32000 - Play Count2 - Play Date3424334056 - Play Date UTC2012-07-05T15:54:16Z - Skip Count1 - Skip Date2012-07-31T12:45:11Z - Compilation - Artwork Count1 - Persistent ID168CD5A65FB48424 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Shout%20vs.%20Eric%20B.%20Is%20President.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2249 - - Track ID2249 - NameShout vs. Pjanoo - ArtistTears For Fears vs. Eric Prydz - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4597005 - Total Time202716 - Date Modified2010-03-13T23:40:20Z - Date Added2011-10-02T13:48:19Z - Bit Rate128 - Sample Rate32000 - Compilation - Artwork Count1 - Persistent IDFF948E1DC007ECC4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Shout%20vs.%20Pjanoo.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2251 - - Track ID2251 - NameBittersweet Symphony vs. Rock The Bells - ArtistThe Aranbee Pop Symphony Orchestra vs. LL Cool J - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5970806 - Total Time288576 - Date Modified2010-03-13T23:40:20Z - Date Added2011-10-02T13:48:19Z - Bit Rate128 - Sample Rate32000 - Skip Count3 - Skip Date2012-06-26T19:47:29Z - Compilation - Artwork Count1 - Sort ArtistAranbee Pop Symphony Orchestra vs. LL Cool J - Persistent IDC9DFAEB8807AC5F2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Bittersweet%20Symphony%20vs.%20Rock%20The%20Be.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2253 - - Track ID2253 - NameSomebody Told Me vs. Pjanoo - ArtistThe Killers vs. Eric Prydz - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4658644 - Total Time206568 - Date Modified2010-03-13T23:40:20Z - Date Added2011-10-02T13:48:19Z - Bit Rate128 - Sample Rate32000 - Play Count1 - Play Date3364567570 - Play Date UTC2010-08-13T22:06:10Z - Compilation - Artwork Count1 - Sort ArtistKillers vs. Eric Prydz - Persistent IDA6C9475F66D2A7C8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Somebody%20Told%20Me%20vs.%20Pjanoo.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2255 - - Track ID2255 - NameBeats And Pieces - ArtistThe Scratch Perverts - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5674691 - Total Time270072 - Date Modified2010-03-13T23:40:20Z - Date Added2011-10-02T13:48:19Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-08-13T22:06:20Z - Compilation - Artwork Count1 - Sort ArtistScratch Perverts - Persistent ID38738A4129DDAC59 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Beats%20And%20Pieces.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2257 - - Track ID2257 - NameIce Ice Baby vs. U Can't Touch This - ArtistVanilla Ice vs. MC Hammer - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size3732443 - Total Time148680 - Date Modified2010-03-13T23:40:20Z - Date Added2011-10-02T13:48:20Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2010-04-15T21:13:45Z - Compilation - Artwork Count1 - Persistent ID8CCF933FAEA9CE8A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Ice%20Ice%20Baby%20vs.%20U%20Can't%20Touch%20This.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2259 - - Track ID2259 - NameIce Ice Baby vs. Straight Up - ArtistVanilla Ice vs. Paula Abdul - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4068822 - Total Time169704 - Date Modified2010-03-13T23:40:19Z - Date Added2011-10-02T13:48:20Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2012-06-26T13:48:17Z - Compilation - Artwork Count1 - Persistent IDF73DBC30EF7118C0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Ice%20Ice%20Baby%20vs.%20Straight%20Up.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2261 - - Track ID2261 - NameLookin' At Me vs. Hey Mama - ArtistWale vs. The Black Eyed Peas featuring Tippa Irie - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4004330 - Total Time165672 - Date Modified2010-03-13T23:40:19Z - Date Added2011-10-02T13:48:20Z - Bit Rate128 - Sample Rate32000 - Skip Count1 - Skip Date2012-08-16T16:41:39Z - Compilation - Artwork Count1 - Persistent IDB88C4D67F99CEDC0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Lookin'%20At%20Me%20vs.%20Hey%20Mama.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2263 - - Track ID2263 - NameBeverly Hills vs. Fresh Rhymes And Videotape - ArtistWeezer vs. Evidence featuring The Alchemist, Aceyalone, Rakaa and 88 Keys - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size4278548 - Total Time182808 - Date Modified2010-03-13T23:40:19Z - Date Added2011-10-02T13:48:20Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2012-05-30T13:58:45Z - Compilation - Artwork Count1 - Persistent ID25D870A0EC5A3696 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Beverly%20Hills%20vs.%20Fresh%20Rhymes%20And%20V.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2265 - - Track ID2265 - NamePlay That Funky Music vs. Just To Get A Rep - ArtistWild Cherry vs. Gang Starr - Album ArtistVA - AlbumDJ Hero Soundtrack - KindMPEG audio file - Size5230052 - Total Time242280 - Date Modified2010-03-13T23:40:19Z - Date Added2011-10-02T13:48:20Z - Bit Rate128 - Sample Rate32000 - Skip Count2 - Skip Date2012-07-12T11:47:07Z - Compilation - Artwork Count1 - Persistent ID337CEAE389B08AE0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/VA%20-%20OST%20-%20DJ%20Hero/Play%20That%20Funky%20Music%20vs.%20Just%20To%20Ge.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2267 - - Track ID2267 - NameDammit - ArtistBlink182 - AlbumDude Ranch - GenrePunk - KindMPEG audio file - Size2646227 - Total Time165381 - Year1999 - Date Modified2010-02-22T01:49:28Z - Date Added2011-10-02T13:48:21Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 5C659698 - Play Count1 - Play Date3368050925 - Play Date UTC2010-09-23T05:42:05Z - Skip Count5 - Skip Date2012-07-27T13:02:16Z - Persistent IDDB4545E0F28A96A6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Blink182/Blink182%20-%20Dammit.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2269 - - Track ID2269 - NameRob Zombie - Superbeast - KindMPEG audio file - Size4404415 - Total Time220212 - Date Modified1999-02-08T20:48:46Z - Date Added2011-10-02T13:48:21Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3368034847 - Play Date UTC2010-09-23T01:14:07Z - Skip Count2 - Skip Date2012-04-19T22:44:00Z - Persistent IDEF503D9BC9DC9666 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Rob%20Zombie%20-%20White%20Zombie/Rob%20Zombie%20-%20Superbeast.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2271 - - Track ID2271 - NameThe Best Things - ArtistFilter - AlbumTitle of Record - GenreRock - KindMPEG audio file - Size5326518 - Total Time266213 - Track Number5 - Track Count11 - Date Modified2010-02-22T01:49:24Z - Date Added2011-10-02T13:48:21Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3424338527 - Play Date UTC2012-07-05T17:08:47Z - Skip Count1 - Skip Date2012-06-27T15:09:08Z - Sort NameBest Things - Persistent IDFCA417C7EE724549 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Filter/Title%20of%20Record/05.%20The%20Best%20Things.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2273 - - Track ID2273 - NamePowerman 5000 - Supernova Goes Pop - KindMPEG audio file - Size3895296 - Total Time194925 - Date Modified2000-02-13T03:19:16Z - Date Added2011-10-02T13:48:21Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3424209993 - Play Date UTC2012-07-04T05:26:33Z - Skip Count1 - Skip Date2011-06-20T21:40:50Z - Persistent ID7D339F9B780A6A49 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Powerman%205000/Powerman%205000%20-%20Supernova%20Goes%20Pop.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2275 - - Track ID2275 - NameTNT - ArtistAC/DC - Genre137 - KindMPEG audio file - Size3432697 - Total Time214517 - Date Modified1999-05-19T22:46:14Z - Date Added2011-10-02T13:48:21Z - Bit Rate128 - Sample Rate44100 - Skip Count3 - Skip Date2012-07-09T16:15:07Z - Persistent ID3C68ED290890A88C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/ACDC%20-%20Tnt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2277 - - Track ID2277 - NameSomebody Someone - ArtistKorn - AlbumIssues - Genre137 - KindMPEG audio file - Size5429426 - Total Time226220 - Track Number11 - Year1999 - Date Modified2010-02-22T01:49:21Z - Date Added2011-10-02T13:48:21Z - Bit Rate192 - Sample Rate44100 - CommentsBKF - Play Count1 - Play Date3368048528 - Play Date UTC2010-09-23T05:02:08Z - Skip Count2 - Skip Date2012-08-16T13:07:21Z - Persistent IDA6CE9DE3A3E14A07 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Korn/Issues/11%20Somebody%20Someone.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2279 - - Track ID2279 - NamePromise - ArtistEve 6 - AlbumPromise (CD Single) - GenreAlternative - KindMPEG audio file - Size4239744 - Total Time176901 - Track Number1 - Year2000 - Date Modified2010-02-22T01:49:22Z - Date Added2011-10-02T13:48:21Z - Bit Rate192 - Sample Rate44100 - Comments[EGO] #ego on efnet [EGO] - Play Count4 - Play Date3420954484 - Play Date UTC2012-05-27T13:08:04Z - Skip Count2 - Skip Date2012-08-17T12:49:29Z - Persistent IDFC57767A29D849B8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Eve%206%20-%20Promise.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2281 - - Track ID2281 - NameMetallica - Hero of the Day - KindMPEG audio file - Size4186697 - Total Time261668 - Date Modified2000-06-29T15:25:56Z - Date Added2011-10-02T13:48:22Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3368037297 - Play Date UTC2010-09-23T01:54:57Z - Persistent IDF88AD20D4C971182 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%20Hero%20of%20the%20Day.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2283 - - Track ID2283 - Nameput it in your mouth - Artistakinyele - Albumput it in your mouth - GenreHip-Hop - KindMPEG audio file - Size3236385 - Total Time202266 - Year1996 - Date Modified2000-07-18T03:51:32Z - Date Added2011-10-02T13:48:22Z - Bit Rate128 - Sample Rate44100 - Commentswww.internexus.net/~jaegouri - Play Count2 - Play Date3383660848 - Play Date UTC2011-03-22T21:47:28Z - Skip Count2 - Skip Date2010-07-02T15:24:37Z - Persistent IDF3A2BB1195D3825A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/08.%20Rap/Akineyle%20-%20Put%20It%20In%20Your%20Mouth.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2285 - - Track ID2285 - NameOnly God Knows Why - ArtistKid Rock - AlbumDevil Without a Cause - GenreProgressive Rock - KindMPEG audio file - Size5239123 - Total Time327810 - Year1999 - Date Modified2010-02-22T01:49:17Z - Date Added2011-10-02T13:48:22Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3426689926 - Play Date UTC2012-08-01T22:18:46Z - Skip Count1 - Skip Date2012-06-13T13:14:20Z - Persistent IDDBDABAA2AD5FF00E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Kid%20Rock/Kid%20Rock%20-%20Only%20God%20Knows%20Why.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2287 - - Track ID2287 - NameThe Brews - ArtistNOFX - AlbumPunk In Drublic - GenrePunk - KindMPEG audio file - Size5538215 - Total Time160757 - Track Number8 - Track Count17 - Year1994 - Date Modified2008-11-23T15:47:29Z - Date Added2011-10-02T13:48:23Z - Bit Rate275 - Sample Rate44100 - Play Count6 - Play Date3389707977 - Play Date UTC2011-05-31T21:32:57Z - Sort NameBrews - Persistent ID6CBE039FC0526DFD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/NOFX/Punk%20In%20Drublic%20(1994)/08%20-%20The%20Brews.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2289 - - Track ID2289 - NameWelcome To Paradise - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size8215329 - Total Time224679 - Track Number5 - Track Count14 - Year1994 - Date Modified2008-11-23T16:24:23Z - Date Added2011-10-02T13:48:23Z - Bit Rate292 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count1 - Play Date3414595666 - Play Date UTC2012-03-14T22:47:46Z - Persistent ID228F85E79273A069 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/05%20-%20Welcome%20To%20Paradise.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2291 - - Track ID2291 - NameLen - Steal My Sunshine - KindMPEG audio file - Size4969610 - Total Time248450 - Date Modified2000-06-20T20:52:46Z - Date Added2011-10-02T13:48:23Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3424206253 - Play Date UTC2012-07-04T04:24:13Z - Skip Count3 - Skip Date2012-07-29T21:38:43Z - Persistent ID01115367252668A4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Len%20-%20Steal%20My%20Sunshine.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2293 - - Track ID2293 - NameBad Habit - ArtistOffspring - AlbumSmash - GenrePunk - KindMPEG audio file - Size7553787 - Total Time224000 - Track Number3 - Track Count14 - Year1994 - Date Modified2008-11-23T23:47:01Z - Date Added2011-10-02T13:48:23Z - Bit Rate269 - Sample Rate44100 - Play Count3 - Play Date3368047684 - Play Date UTC2010-09-23T04:48:04Z - Skip Count2 - Skip Date2012-07-31T13:02:15Z - Persistent IDE263FFBCE2E1663F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Offspring/Smash%20(1994)/03%20-%20Bad%20Habit.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2295 - - Track ID2295 - NameSuicide Machines - Sometimes I Don't Mind - KindMPEG audio file - Size4665344 - Total Time194377 - Date Modified2000-04-12T21:17:44Z - Date Added2011-10-02T13:48:23Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3425281281 - Play Date UTC2012-07-16T15:01:21Z - Skip Count2 - Skip Date2012-07-26T13:36:46Z - Persistent ID889C94398E7B34A0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Suicide%20Machines/Suicide%20Machines%20-%20Sometimes%20I%20Don't%20Mind.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2297 - - Track ID2297 - NameI Can't Explain - ArtistThe Who - KindMPEG audio file - Size2000186 - Total Time124368 - Date Modified2010-03-14T00:46:11Z - Date Added2011-10-02T13:48:23Z - Bit Rate128 - Sample Rate44100 - Play Count4 - Play Date3388154164 - Play Date UTC2011-05-13T21:56:04Z - Skip Count1 - Skip Date2012-07-16T13:30:17Z - Sort ArtistWho - Persistent ID357660C2590FAD26 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Who/The%20Who%20-%20I%20Can't%20Explain.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2299 - - Track ID2299 - NameDenial - ArtistSevendust - KindMPEG audio file - Size5145713 - Total Time257280 - Date Modified2010-02-22T01:49:10Z - Date Added2011-10-02T13:48:23Z - Bit Rate160 - Sample Rate44100 - Skip Count2 - Skip Date2012-08-09T22:16:38Z - Persistent ID8F015386C3A3BF0A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Sevendust/Sevendust%20-%20Denial.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2301 - - Track ID2301 - NameBuddy Holly - ArtistWeezer - AlbumBuddy Holly - GenreMusical - KindMPEG audio file - Size2547840 - Total Time159216 - Date Modified2010-02-22T01:49:09Z - Date Added2011-10-02T13:48:23Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3360914666 - Play Date UTC2010-07-02T15:24:26Z - Persistent IDC9B3721BB059B321 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Weezer/Weezer%20-%20Buddy%20Holly.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2303 - - Track ID2303 - NameFa Fa - ArtistGuster - KindMPEG audio file - Size6801408 - Total Time283715 - Date Modified2010-02-22T01:49:08Z - Date Added2011-10-02T13:48:23Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3424288348 - Play Date UTC2012-07-05T03:12:28Z - Persistent IDB637C55E9E1454F2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Guster/Guster%20-%20Fa%20Fa.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2305 - - Track ID2305 - NameStatic X - Push It - KindMPEG audio file - Size3085728 - Total Time154409 - Date Modified2000-01-07T02:56:22Z - Date Added2011-10-02T13:48:24Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3424341348 - Play Date UTC2012-07-05T17:55:48Z - Persistent ID603CB1274BBA42B5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Static%20X%20-%20Push%20It.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2307 - - Track ID2307 - NameUndone (The Sweater Song) - ArtistWeezer - AlbumWeezer - GenreOther - KindMPEG audio file - Size4241961 - Total Time265116 - Date Modified2010-02-22T01:49:06Z - Date Added2011-10-02T13:48:24Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3349627935 - Play Date UTC2010-02-22T00:12:15Z - Skip Count2 - Skip Date2011-05-13T22:01:35Z - Persistent ID5F70DF54799A00AC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Weezer/Weezer%20-%20Undone%20(The%20Sweater%20Song).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2309 - - Track ID2309 - NameMake Me Bad - ArtistKorn - AlbumIssues - Genre137 - KindMPEG audio file - Size5608462 - Total Time234031 - Track Number6 - Year1999 - Date Modified2010-02-22T01:49:05Z - Date Added2011-10-02T13:48:24Z - Bit Rate192 - Sample Rate44100 - CommentsBKF - Play Count1 - Play Date3368038536 - Play Date UTC2010-09-23T02:15:36Z - Persistent IDF5A7C8AF5B9E2F44 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Korn/Issues/06%20Make%20Me%20Bad.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2311 - - Track ID2311 - NameJudith - ArtistA Perfect Circle - AlbumMer De Noms - GenreIndustrial - KindMPEG audio file - Size3892823 - Total Time243853 - Year2000 - Date Modified2010-02-22T01:49:04Z - Date Added2011-10-02T13:48:25Z - Bit Rate128 - Sample Rate44100 - CommentsKSI - Play Count1 - Play Date3362227210 - Play Date UTC2010-07-17T20:00:10Z - Skip Count2 - Skip Date2012-04-25T21:14:54Z - Sort ArtistPerfect Circle - Persistent IDA967495DAF6D9F61 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/A%20Perfect%20Circle/A%20Perfect%20Circle%20-%20Judith.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2313 - - Track ID2313 - NameShort On Ideas - ArtistLess Than Jake - AlbumPezcore - GenreSka/Punk - KindMPEG audio file - Size3741564 - Total Time107755 - Track Number18 - Track Count19 - Year1995 - Date Modified2010-02-22T01:35:40Z - Date Added2011-10-02T13:48:25Z - Bit Rate277 - Sample Rate44100 - Play Count2 - Play Date3373703628 - Play Date UTC2010-11-27T15:53:48Z - Skip Count1 - Skip Date2010-03-29T13:08:19Z - Persistent IDB793A93239AE3064 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Pezcore%20(1995)/18%20-%20Short%20on%20Ideas.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2315 - - Track ID2315 - NameRock Superstar - ArtistCypress Hill - AlbumRock Superstar CDS - GenreRap - KindMPEG audio file - Size6290526 - Total Time262086 - Track Number1 - Year2000 - Date Modified2010-02-22T01:49:03Z - Date Added2011-10-02T13:48:25Z - Bit Rate192 - Sample Rate44100 - Commentsfeedhog / [EGO] - Play Count1 - Play Date3353476125 - Play Date UTC2010-04-07T13:08:45Z - Skip Count1 - Skip Date2010-04-17T12:09:02Z - Persistent ID63441B366AF5BB76 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/08.%20Rap/Cypress%20Hill%20-%20Rock%20Superstar.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2317 - - Track ID2317 - NameI Disappear - ArtistMetallica - AlbumMission Impossible 2 - GenreSoundtrack - KindMPEG audio file - Size6557858 - Total Time273632 - Year2000 - Date Modified2010-02-22T01:49:02Z - Date Added2011-10-02T13:48:25Z - Bit Rate192 - Sample Rate44100 - CommentsReleased by skinsuit (DMaX) - Play Count2 - Play Date3391518183 - Play Date UTC2011-06-21T20:23:03Z - Skip Count1 - Skip Date2012-06-08T22:22:02Z - Persistent IDA3A9A7D7D5A68344 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%20I%20Disappear.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2319 - - Track ID2319 - NameEverything I Touch - ArtistStabbing Westward - AlbumDarkest Days - GenreIndustrial - KindMPEG audio file - Size3248088 - Total Time202997 - Year1998 - Date Modified2010-02-22T01:49:01Z - Date Added2011-10-02T13:48:26Z - Bit Rate128 - Sample Rate44100 - CommentsEncoded by MrP - Play Count2 - Play Date3424331861 - Play Date UTC2012-07-05T15:17:41Z - Skip Count2 - Skip Date2012-08-09T11:24:21Z - Persistent ID7A8DEEAEB82158FA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stabbing%20Westward/Stabbing%20Westward%20-%20Everything%20I%20Touch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2321 - - Track ID2321 - NameWhat Do I Have To Do? - ArtistStabbing Westward - AlbumWither Blister Burn + Peel - GenreOther - KindMPEG audio file - Size3996634 - Total Time249782 - Date Modified2010-02-22T01:49:00Z - Date Added2011-10-02T13:48:26Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368035640 - Play Date UTC2010-09-23T01:27:20Z - Persistent IDBAEBAAAACFA42C3F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stabbing%20Westward/Wither%20Blister%20Burn%20+%20Peel/Stabbing_Westward-03-What_Do_I_Have_To_Do.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2323 - - Track ID2323 - NameWhat I Like About You - ArtistThe Kinks - KindMPEG audio file - Size2854968 - Total Time177789 - Date Modified2010-02-22T01:55:43Z - Date Added2011-10-02T13:48:26Z - Bit Rate128 - Sample Rate44100 - Play Count5 - Play Date3421216517 - Play Date UTC2012-05-30T13:55:17Z - Skip Count1 - Skip Date2012-08-07T22:02:54Z - Sort ArtistKinks - Persistent ID99DDFACC375B4D5E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Kinks/The%20Kinks%20-%20What%20I%20Like%20About%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2325 - - Track ID2325 - NamePlayaz Club - ArtistRappin 4Tay - KindMPEG audio file - Size4266239 - Total Time265978 - Date Modified2010-02-22T01:55:53Z - Date Added2011-10-02T13:48:26Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368053877 - Play Date UTC2010-09-23T06:31:17Z - Skip Count1 - Skip Date2010-07-02T20:59:37Z - Persistent ID90C3FB3EF4D0A809 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/08.%20Rap/Rappin%204Tay%20-%20Playaz%20Club.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2327 - - Track ID2327 - NameNigger Fucker - ArtistDavid Allan Coe - AlbumUnderGround - GenreCountry - KindMPEG audio file - Size2942038 - Total Time147095 - Year1999 - Date Modified2010-02-22T01:49:45Z - Date Added2011-10-02T13:48:26Z - Bit Rate160 - Sample Rate44100 - Skip Count1 - Skip Date2011-02-04T11:59:53Z - Persistent ID1BB4A830DA167C26 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/13.%20Comedy/david%20allen%20coe%20-%20nigger%20fucker.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2329 - - Track ID2329 - NameSupermario Special - KindMPEG audio file - Size6559869 - Total Time409991 - Date Modified1999-11-09T08:51:46Z - Date Added2011-10-02T13:48:26Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368040016 - Play Date UTC2010-09-23T02:40:16Z - Skip Count3 - Skip Date2012-06-27T15:19:20Z - Persistent ID11B84007DEA3B804 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/04.%20Hip%20Hop/Supermario%20Special.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2331 - - Track ID2331 - NameCharlie Brown Theme - ArtistMetallica - KindMPEG audio file - Size310545 - Total Time42893 - Date Modified2010-02-22T02:00:13Z - Date Added2011-10-02T13:48:26Z - Bit Rate56 - Sample Rate22050 - Play Count1 - Play Date3368052740 - Play Date UTC2010-09-23T06:12:20Z - Skip Count2 - Skip Date2012-06-14T20:05:29Z - Persistent ID2950B3CCBFFF7A56 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%20Charlie%20Brown%20Theme.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2333 - - Track ID2333 - NameMudshovel - ArtistStaind - KindMPEG audio file - Size4518805 - Total Time281782 - Track Number5 - Date Modified2010-02-22T02:00:00Z - Date Added2011-10-02T13:48:27Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2010-09-14T12:44:26Z - Persistent ID0E0EB67C6FD129B6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Staind/Staind%20-%2005%20-%20Mudshovel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2335 - - Track ID2335 - NameLeader of Men - ArtistNickelback - KindMPEG audio file - Size3365276 - Total Time210808 - Date Modified2010-02-22T01:49:42Z - Date Added2011-10-02T13:48:27Z - Bit Rate128 - Sample Rate44100 - Comments24.112.115.21 alt/alt - Skip Count1 - Skip Date2010-07-02T21:00:00Z - Persistent ID379ADBC4AC6ED531 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Nickleback/Nickelback%20-%20Leader%20of%20Men.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2337 - - Track ID2337 - NameFinal Hours - ArtistTen Foot Pole - AlbumRev - GenrePunk - KindMPEG audio file - Size7364263 - Total Time215301 - Track Number8 - Track Count13 - Year1994 - Date Modified2008-11-22T23:38:25Z - Date Added2011-10-02T13:48:27Z - Bit Rate273 - Sample Rate44100 - CommentsSkate Punk Epitath Records YEAR: 1994 - Play Count3 - Play Date3426428720 - Play Date UTC2012-07-29T21:45:20Z - Skip Count2 - Skip Date2010-08-26T21:59:39Z - Persistent IDBE1E42C6ED308CA8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Ten%20Foot%20Pole/Rev/08%20-%20Final%20Hours.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2339 - - Track ID2339 - NameBawitbaba.mp3 - ArtistKid Rock - KindMPEG audio file - Size4265932 - Total Time266083 - Date Modified2010-02-22T01:49:39Z - Date Added2011-10-02T13:48:27Z - Bit Rate128 - Sample Rate44100 - Play Count4 - Play Date3426430808 - Play Date UTC2012-07-29T22:20:08Z - Skip Count1 - Skip Date2010-04-07T21:32:54Z - Persistent IDA388304EA619CC0E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Kid%20Rock/Kid%20Rock%20-%20Bawitbaba.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2341 - - Track ID2341 - NameMission Impossible II theme - ArtistLimp Bizkit - Album ArtistVA - AlbumMission Impossible 2 - GenreSoundtrack - KindMPEG audio file - Size7620935 - Total Time317570 - Year2000 - Date Modified2010-03-07T23:52:37Z - Date Added2011-10-02T13:48:28Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3349707223 - Play Date UTC2010-02-22T22:13:43Z - Skip Count1 - Skip Date2012-08-17T20:33:13Z - Persistent IDA4AD403105837E47 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Limp%20Bizkit/Limp%20Bizkit%20-%20Mission%20Impossible%20theme%20(for%20MI2%20movie).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2343 - - Track ID2343 - NameMiddlename - ArtistMxPx - AlbumLife In General - GenrePunk - KindMPEG audio file - Size6449795 - Total Time175673 - Track Number1 - Track Count17 - Year1996 - Date Modified2008-11-23T15:26:01Z - Date Added2011-10-02T13:48:29Z - Bit Rate293 - Sample Rate44100 - Play Count2 - Play Date3387425121 - Play Date UTC2011-05-05T11:25:21Z - Skip Count1 - Skip Date2012-08-17T20:45:15Z - Persistent ID4A52E7104A8A8663 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/MxPx/Life%20In%20General%20(1996)/01%20-%20Middlename.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2345 - - Track ID2345 - NameShelf In The Room - ArtistDays Of The New - AlbumDays Of The New - GenreRock - KindMPEG audio file - Size9872173 - Total Time284186 - Track Number1 - Track Count12 - Year1997 - Date Modified2008-11-26T05:55:48Z - Date Added2011-10-02T13:48:29Z - Bit Rate277 - Sample Rate44100 - Play Count5 - Play Date3427429439 - Play Date UTC2012-08-10T11:43:59Z - Skip Count1 - Skip Date2012-06-01T23:00:33Z - Persistent IDD910A414E007ED60 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20(1997)/01%20-%20Shelf%20In%20The%20Room.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2347 - - Track ID2347 - NameLiza and Louise - ArtistNOFX - AlbumWhite Trash Two Heebs & A Bean - GenrePunk - KindMPEG audio file - Size2285437 - Total Time142524 - Date Modified2010-03-13T20:04:23Z - Date Added2011-10-02T13:48:29Z - Bit Rate128 - Sample Rate44100 - Play Count5 - Play Date3424189214 - Play Date UTC2012-07-03T23:40:14Z - Persistent ID1D7370DBD6D44F40 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/NOFX/NOFX%20-%20liza%20and%20louise.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2349 - - Track ID2349 - NameTouch, Peel And Stand - ArtistDays Of The New - AlbumDays Of The New - GenreRock - KindMPEG audio file - Size10773281 - Total Time297743 - Track Number2 - Track Count12 - Year1997 - Date Modified2008-11-26T05:56:03Z - Date Added2011-10-02T13:48:30Z - Bit Rate289 - Sample Rate44100 - Play Count3 - Play Date3391243323 - Play Date UTC2011-06-18T16:02:03Z - Skip Count2 - Skip Date2012-06-20T21:38:34Z - Persistent ID33F8904AC9FC7634 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20(1997)/02%20-%20Touch,%20Peel%20And%20Stand.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2351 - - Track ID2351 - NamePlease Play This Song - ArtistNOFX - AlbumWhite Trash Two Heebs & A Bean - GenrePunk - KindMPEG audio file - Size2187308 - Total Time136698 - Date Modified2010-02-22T01:49:31Z - Date Added2011-10-02T13:48:30Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3361770535 - Play Date UTC2010-07-12T13:08:55Z - Skip Count1 - Skip Date2012-05-18T13:26:11Z - Persistent ID5C6D0625178DC47A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/NOFX/08-pleaseplaythissongonther.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2353 - - Track ID2353 - NameForty Six & 2 - ArtistTool - AlbumÆnima - GenreRock - KindMPEG audio file - Size5828150 - Total Time364251 - Year1999 - Date Modified2010-02-22T01:49:31Z - Date Added2011-10-02T13:48:30Z - Bit Rate128 - Sample Rate44100 - Comments, AG# CDD9BFB0 - Play Count1 - Play Date3368036878 - Play Date UTC2010-09-23T01:47:58Z - Skip Count2 - Skip Date2012-06-08T22:04:07Z - Persistent ID6951AACC669C3739 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Tool/Aenima/05%20Forty%20Six%20&%202.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2355 - - Track ID2355 - NamePolly - ArtistNirvana - AlbumNevermind - GenreGrunge - KindMPEG audio file - Size4479545 - Total Time177084 - Track Number6 - Track Count12 - Year1991 - Date Modified2008-11-25T00:56:19Z - Date Added2011-10-02T13:48:30Z - Bit Rate202 - Sample Rate44100 - Skip Count4 - Skip Date2012-08-09T22:33:08Z - Persistent ID69A686581EE999ED - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Nirvana/Nevermind%20(1991)/06%20-%20Polly.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2357 - - Track ID2357 - NameLeaders and Followers - ArtistBad Religion - KindMPEG audio file - Size2602718 - Total Time162377 - Date Modified2010-02-22T01:59:21Z - Date Added2011-10-02T13:48:30Z - Bit Rate128 - Sample Rate44100 - Play Count5 - Play Date3424299921 - Play Date UTC2012-07-05T06:25:21Z - Persistent IDC32707442B442493 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Bad%20Religion/Bad%20Religion%20-%20Leaders%20and%20Followers.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2359 - - Track ID2359 - NameResponsibility - ArtistMxPx - AlbumThe Ever Passing Moment - KindMPEG audio file - Size3208720 - Total Time159895 - Date Modified2010-02-22T01:58:44Z - Date Added2011-10-02T13:48:30Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3368041057 - Play Date UTC2010-09-23T02:57:37Z - Skip Count1 - Skip Date2011-05-06T20:36:17Z - Sort AlbumEver Passing Moment - Persistent ID71CE6705B29E10F0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/MxPx/The%20Ever%20Passing%20Moment/Mxpx%20-%20The%20Ever%20Passing%20Moment%20-%2003%20-%20Responsibility.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2361 - - Track ID2361 - NameAdam's Song - ArtistBlink 182 - AlbumEnema Of The State - GenrePunk - KindMPEG audio file - Size5983436 - Total Time249678 - Year1999 - Date Modified2010-02-22T01:58:48Z - Date Added2011-10-02T13:48:30Z - Bit Rate192 - Sample Rate44100 - Commentsripped by sinned soul [aPC] - Play Count1 - Play Date3368051666 - Play Date UTC2010-09-23T05:54:26Z - Skip Count2 - Skip Date2012-06-05T12:47:23Z - Persistent ID41AB0E1982084F07 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Blink182/Enema%20of%20the%20State/08%20Adam's%20Song.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2363 - - Track ID2363 - NameI don't wanna hear it - ArtistMinor Threat - KindMPEG audio file - Size1192296 - Total Time73874 - Track Number2 - Date Modified2010-02-22T01:59:06Z - Date Added2011-10-02T13:48:31Z - Bit Rate128 - Sample Rate44100 - Play Count4 - Play Date3426431683 - Play Date UTC2012-07-29T22:34:43Z - Skip Count1 - Skip Date2011-05-06T20:20:22Z - Persistent ID28F5E7B06ED668A2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Minor%20Threat/02-I%20don't%20wanna%20hear%20it.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2365 - - Track ID2365 - NameDarkest Days - ArtistStabbing Westward - AlbumDarkest Days - GenreIndustrial - KindMPEG audio file - Size3699902 - Total Time231235 - Year1998 - Date Modified2010-02-22T01:59:10Z - Date Added2011-10-02T13:48:31Z - Bit Rate128 - Sample Rate44100 - CommentsEncoded by MrP - Play Count1 - Play Date3368027910 - Play Date UTC2010-09-22T23:18:30Z - Skip Count3 - Skip Date2012-04-24T13:22:24Z - Persistent IDC27B439DE224A8A3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stabbing%20Westward/Stabbing%20Westward%20-%20Darkest%20Days.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2367 - - Track ID2367 - NameOne Shot - ArtistPulley - AlbumEsteem Driven Engine - GenrePunk - KindMPEG audio file - Size4378539 - Total Time115722 - Track Number6 - Track Count14 - Year1996 - Date Modified2008-11-22T23:30:36Z - Date Added2011-10-02T13:48:31Z - Bit Rate302 - Sample Rate44100 - Play Count3 - Play Date3390314672 - Play Date UTC2011-06-07T22:04:32Z - Persistent ID0EC8A5F575185BC9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Pulley/Esteem%20Driven%20Engine/06%20-%20One%20Shot.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2369 - - Track ID2369 - NameHitchcock Theme - ArtistMetallica - KindMPEG audio file - Size225169 - Total Time30693 - Date Modified2010-02-22T01:58:19Z - Date Added2011-10-02T13:48:31Z - Bit Rate56 - Sample Rate22050 - Play Count2 - Play Date3424209601 - Play Date UTC2012-07-04T05:20:01Z - Persistent IDB7B0E703BFA7962D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%20Hitchcock%20Theme.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2371 - - Track ID2371 - NameWhen Worlds Collide - ArtistPowerman 5000 - KindMPEG audio file - Size4290597 - Total Time178311 - Date Modified2010-02-22T01:58:09Z - Date Added2011-10-02T13:48:31Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3362225371 - Play Date UTC2010-07-17T19:29:31Z - Skip Count1 - Skip Date2012-05-14T13:38:42Z - Persistent ID78F28A4799D632EE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Powerman%205000/Powerman%205000%20-%20When%20Worlds%20Collide.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2373 - - Track ID2373 - NameMove To Bremerton - ArtistMxPx - AlbumLife In General - GenrePunk - KindMPEG audio file - Size8119884 - Total Time215849 - Track Number6 - Track Count17 - Year1996 - Date Modified2008-11-23T15:26:45Z - Date Added2011-10-02T13:48:32Z - Bit Rate300 - Sample Rate44100 - Play Count2 - Play Date3361890056 - Play Date UTC2010-07-13T22:20:56Z - Skip Count2 - Skip Date2012-06-28T16:43:27Z - Persistent IDB6EC3472A86515D7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/MxPx/Life%20In%20General%20(1996)/06%20-%20Move%20To%20Bremerton.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2375 - - Track ID2375 - NamePunk Rawk Show - ArtistMxPx - AlbumTeenage Politics - GenrePunk - KindMPEG audio file - Size5775438 - Total Time152607 - Track Number4 - Track Count19 - Year1995 - Date Modified2008-11-23T15:30:23Z - Date Added2011-10-02T13:48:32Z - Bit Rate302 - Sample Rate44100 - Play Count8 - Play Date3426428475 - Play Date UTC2012-07-29T21:41:15Z - Persistent ID2BC3F2576B03A860 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/MxPx/Teenage%20Politics%20(1995)/04%20-%20Punk%20Rawk%20Show.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2377 - - Track ID2377 - NameMy Own Prison - ArtistCreed - AlbumMy Own Prison - GenreRock - KindMPEG audio file - Size10563168 - Total Time298840 - Track Number3 - Track Count10 - Year1997 - Date Modified2008-11-26T14:01:24Z - Date Added2011-10-02T13:48:32Z - Bit Rate282 - Sample Rate44100 - CommentsYEAR: 1997 ID3G: 17 - Skip Count2 - Skip Date2012-05-14T13:38:26Z - Persistent ID18E352F6BC0187A9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Creed/My%20Own%20Prison%20(1997)/03%20-%20My%20Own%20Prison.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2379 - - Track ID2379 - NameKillboy Powerhead - ArtistOffspring - AlbumSmash - GenrePunk - KindMPEG audio file - Size4373065 - Total Time122880 - Track Number10 - Track Count14 - Year1994 - Date Modified2008-11-23T23:47:54Z - Date Added2011-10-02T13:48:32Z - Bit Rate284 - Sample Rate44100 - Play Count3 - Play Date3368052863 - Play Date UTC2010-09-23T06:14:23Z - Skip Count2 - Skip Date2012-06-01T22:12:07Z - Persistent IDF19A0F05DEEF05A3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Offspring/Smash%20(1994)/10%20-%20Killboy%20Powerhead.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2381 - - Track ID2381 - NameFalling Away From Me - ArtistKorn - AlbumIssues - Genre137 - KindMPEG audio file - Size6389710 - Total Time266631 - Track Number2 - Year1999 - Date Modified1999-10-15T13:25:44Z - Date Added2011-10-02T13:48:32Z - Bit Rate192 - Sample Rate44100 - CommentsBKF - Play Count1 - Play Date3424205160 - Play Date UTC2012-07-04T04:06:00Z - Skip Count2 - Skip Date2012-06-12T13:31:37Z - Persistent ID382C2CFF1AFEF4FF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Korn/Issues/02%20Falling%20Away%20From%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2383 - - Track ID2383 - NameCome With Me - ArtistPuff Daddy feat Jimmy Page - KindMPEG audio file - Size5865536 - Total Time366315 - Date Modified2010-02-22T01:59:37Z - Date Added2011-10-02T13:48:33Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368046651 - Play Date UTC2010-09-23T04:30:51Z - Skip Count1 - Skip Date2012-08-10T20:28:00Z - Persistent ID5EB7F6BE1D9B0060 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/08.%20Rap/Puff%20Daddy%20feat%20Jimmy%20Page-Come%20With%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2385 - - Track ID2385 - NameWe Like To Party - ArtistVengaboys - AlbumWe Like To Party Single - GenreDance - KindMPEG audio file - Size3537539 - Total Time221596 - Year1999 - Date Modified1999-10-03T21:40:18Z - Date Added2011-10-02T13:48:34Z - Bit Rate128 - Sample Rate44100 - Commentshttp://listen.to/abcboyz - Play Count1 - Play Date3424204080 - Play Date UTC2012-07-04T03:48:00Z - Skip Count1 - Skip Date2010-04-05T21:36:25Z - Persistent ID1EA19A2F0C87C18D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Vengaboys%20-%20WeLikeToParty~1.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2387 - - Track ID2387 - NameSober - ArtistTool - KindMPEG audio file - Size4906968 - Total Time306677 - Date Modified1999-10-02T18:40:54Z - Date Added2011-10-02T13:48:34Z - Bit Rate128 - Sample Rate44100 - Skip Count3 - Skip Date2012-04-19T22:40:57Z - Persistent ID3DED3C5506AA3D43 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Tool/03%20-%20Sober.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2389 - - Track ID2389 - NameHobophobic - ArtistNOFX - AlbumHeavy Petting Zoo - KindMPEG audio file - Size780026 - Total Time48195 - Year1996 - Date Modified2010-03-13T20:04:53Z - Date Added2011-10-02T13:48:34Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3349671019 - Play Date UTC2010-02-22T12:10:19Z - Skip Count2 - Skip Date2012-04-25T12:50:33Z - Persistent ID5320ED454F893989 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/NOFX/Nofx-%20Hobophobic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2391 - - Track ID2391 - NameThe Unforgiven II - ArtistMetallica - KindMPEG audio file - Size6353658 - Total Time396460 - Date Modified2010-02-22T02:00:37Z - Date Added2011-10-02T13:48:34Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3380807431 - Play Date UTC2011-02-17T21:10:31Z - Sort NameUnforgiven II - Persistent IDD9828FC242C44911 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%20The%20Unforgiven%20II.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2393 - - Track ID2393 - NameZero - ArtistSmashing Pumpkins - KindMPEG audio file - Size2577810 - Total Time160470 - Date Modified2010-02-22T02:00:53Z - Date Added2011-10-02T13:48:34Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3390314854 - Play Date UTC2011-06-07T22:07:34Z - Persistent ID7FB6FD1718DFC293 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Smashing%20Pumpkins/Smashing%20Pumpkins%20-%20Zero.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2395 - - Track ID2395 - NameEverything You Want - ArtistVertical Horizon - KindMPEG audio file - Size5144638 - Total Time256705 - Date Modified2010-02-22T02:01:04Z - Date Added2011-10-02T13:48:34Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3424290507 - Play Date UTC2012-07-05T03:48:27Z - Skip Count1 - Skip Date2012-07-11T13:45:16Z - Persistent ID3E399D8FF903D857 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Vertical%20Horizon/Vertical%20Horizon%20-%20Everything%20You%20Want%20.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2397 - - Track ID2397 - NameGood Riddance (Time Of Your Life) - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size4907120 - Total Time154618 - Track Number17 - Track Count18 - Year1997 - Date Modified2008-11-23T15:43:29Z - Date Added2011-10-02T13:48:34Z - Bit Rate253 - Sample Rate44100 - Play Count2 - Play Date3419689732 - Play Date UTC2012-05-12T21:48:52Z - Skip Count1 - Skip Date2012-07-10T21:00:50Z - Persistent ID3B1D7E6815ADB2A8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/17%20-%20Good%20Riddance%20(Time%20Of%20Your%20Life).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2399 - - Track ID2399 - NameVagina - ArtistBloodHoundGang - AlbumHooray For Boobies - GenreAlternative - KindMPEG audio file - Size5639446 - Total Time234971 - Year1999 - Date Modified2010-02-22T02:00:39Z - Date Added2011-10-02T13:48:35Z - Bit Rate192 - Sample Rate44100 - Commentsfeedhog for KSI - Play Count2 - Play Date3368042956 - Play Date UTC2010-09-23T03:29:16Z - Skip Count3 - Skip Date2012-07-31T20:55:24Z - Persistent ID1B6212CD7C602455 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Bloodhound%20Gang/Bloodhound%20Gang%20-%2004%20-%20Vagina.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2401 - - Track ID2401 - NameWait And Bleed - ArtistSlipknot - KindMPEG audio file - Size3662998 - Total Time152424 - Date Modified2010-02-22T02:01:17Z - Date Added2011-10-02T13:48:35Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3362226506 - Play Date UTC2010-07-17T19:48:26Z - Skip Count1 - Skip Date2010-07-02T20:59:47Z - Persistent IDE116E01DE2BF9ABE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Slipknot/Slipknot%20-%20Wait%20And%20Bleed.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2403 - - Track ID2403 - NameSuperman - ArtistGoldfinger - GenreSka - KindMPEG audio file - Size2947456 - Total Time184633 - Date Modified1998-07-25T14:01:02Z - Date Added2011-10-02T13:48:35Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368030441 - Play Date UTC2010-09-23T00:00:41Z - Persistent IDE8AF07B639380BBA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Goldfinger/Goldfinger%20-%20Superman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2405 - - Track ID2405 - NameThe Down Town - ArtistDays Of The New - AlbumDays Of The New - GenreRock - KindMPEG audio file - Size8762093 - Total Time256783 - Track Number5 - Track Count12 - Year1997 - Date Modified2008-11-26T05:56:38Z - Date Added2011-10-02T13:48:36Z - Bit Rate272 - Sample Rate44100 - Play Count6 - Play Date3418104460 - Play Date UTC2012-04-24T13:27:40Z - Sort NameDown Town - Persistent IDCC045F3DFBDECF08 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20(1997)/05%20-%20The%20Down%20Town.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2407 - - Track ID2407 - NameThe Meaning Of Life - ArtistThe Offspring - AlbumIxnay On The Hombre - GenrePunk - KindMPEG audio file - Size6773307 - Total Time176770 - Track Number2 - Track Count14 - Year1997 - Date Modified2008-11-25T00:48:46Z - Date Added2011-10-02T13:48:36Z - Bit Rate306 - Sample Rate44100 - Play Count4 - Play Date3426568738 - Play Date UTC2012-07-31T12:38:58Z - Sort ArtistOffspring - Sort NameMeaning Of Life - Persistent IDCBDFD0D26406E699 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Offspring/Ixnay%20on%20the%20Hombre%20(1997)/02%20-%20The%20Meaning%20Of%20Life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2409 - - Track ID2409 - NameSomething's Wrong - ArtistK's Choice - KindMPEG audio file - Size3626475 - Total Time226011 - Date Modified2010-02-22T02:02:49Z - Date Added2011-10-02T13:48:36Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3424315582 - Play Date UTC2012-07-05T10:46:22Z - Skip Count1 - Skip Date2012-06-14T20:09:25Z - Persistent ID23184BBD6E6C090B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/K's%20Choice%20-%20Something's%20Wrong.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2411 - - Track ID2411 - NameHeart-Shaped Box - ArtistNirvana - AlbumIn Utero - GenreGrunge - KindMPEG audio file - Size9822482 - Total Time281573 - Track Number3 - Track Count12 - Year1993 - Date Modified2008-11-25T01:02:56Z - Date Added2011-10-02T13:48:36Z - Bit Rate279 - Sample Rate44100 - Play Count3 - Play Date3424214743 - Play Date UTC2012-07-04T06:45:43Z - Skip Count3 - Skip Date2012-06-12T13:19:10Z - Persistent IDC3A76526E76DDF65 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Nirvana/In%20Utero%20(1993)/03%20-%20Heart-Shaped%20Box.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2413 - - Track ID2413 - NameRoot - ArtistDeftones - AlbumAdrenaline - KindMPEG audio file - Size3527914 - Total Time220995 - Date Modified2010-02-22T02:01:59Z - Date Added2011-10-02T13:48:36Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3424251429 - Play Date UTC2012-07-04T16:57:09Z - Persistent ID9EDBCB446E857BAE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Deftones/Adrenaline/06%20-%20Root.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2415 - - Track ID2415 - NameLess Than Jake - Mixology of Tom Collins - KindMPEG audio file - Size1995312 - Total Time124682 - Date Modified1999-02-06T02:18:56Z - Date Added2011-10-02T13:48:36Z - Bit Rate128 - Sample Rate44100 - Persistent ID60F06FF6F7E94002 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Other/Less%20Than%20Jake%20-%20Mixology%20of%20Tom%20Collins.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2417 - - Track ID2417 - NameSmash - ArtistOffspring - AlbumSmash - GenrePunk - KindMPEG audio file - Size12145294 - Total Time639320 - Track Number14 - Track Count14 - Year1994 - Date Modified2008-11-23T23:48:25Z - Date Added2011-10-02T13:48:36Z - Bit Rate151 - Sample Rate44100 - Skip Count1 - Skip Date2011-05-13T22:04:00Z - Persistent ID951F452D6DFFBC39 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Offspring/Smash%20(1994)/14%20-%20Smash.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2419 - - Track ID2419 - NameSympathy for the Devil - ArtistRolling Stones - KindMPEG audio file - Size6217413 - Total Time387944 - Date Modified2010-02-22T02:03:00Z - Date Added2011-10-02T13:48:36Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3368042146 - Play Date UTC2010-09-23T03:15:46Z - Skip Count2 - Skip Date2012-08-07T22:01:52Z - Persistent IDB847E926EAA87631 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Rolling%20Stones/Rolling%20Stones%20-%20Sympathy%20for%20the%20Devil.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2421 - - Track ID2421 - NameOld Man - ArtistTen Foot Pole - AlbumRev - GenrePunk - KindMPEG audio file - Size7725776 - Total Time224653 - Track Number3 - Track Count13 - Year1994 - Date Modified2008-11-22T23:37:56Z - Date Added2011-10-02T13:48:36Z - Bit Rate275 - Sample Rate44100 - CommentsSkate Punk Epitath Records YEAR: 1994 - Play Count5 - Play Date3418011664 - Play Date UTC2012-04-23T11:41:04Z - Persistent IDE71D3AF5CF2D1B39 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Ten%20Foot%20Pole/Rev/03%20-%20Old%20Man.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2423 - - Track ID2423 - NameVoodoo People - ArtistProdigy - KindMPEG audio file - Size6200261 - Total Time386873 - Date Modified2010-02-22T02:03:11Z - Date Added2011-10-02T13:48:36Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3368034627 - Play Date UTC2010-09-23T01:10:27Z - Skip Count1 - Skip Date2012-08-07T22:01:46Z - Persistent ID63070DB3D8E173FF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Prodigy/Prodigy%20-%20Voodoo%20People.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2425 - - Track ID2425 - NameWhy Im Here - ArtistOleander - KindMPEG audio file - Size5717175 - Total Time238210 - Date Modified2010-02-22T02:02:32Z - Date Added2011-10-02T13:48:36Z - Bit Rate192 - Sample Rate44100 - Commentsripped by dave - Skip Count1 - Skip Date2010-07-06T21:36:57Z - Persistent ID794FAD94BD0BBDCD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Oleander/Oleander%20-%20Why%20I'm%20Here.MP3 - File Folder Count-1 - Library Folder Count-1 - - 2427 - - Track ID2427 - NameNo Leaf Clover - ArtistMetallica - KindMPEG audio file - Size8235057 - Total Time343196 - Date Modified2010-02-22T02:03:22Z - Date Added2011-10-02T13:48:37Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3368032750 - Play Date UTC2010-09-23T00:39:10Z - Persistent ID2248DE493F5A4F7A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%20No%20Leaf%20Clover.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2429 - - Track ID2429 - Namewhat its like - Artisteverlast - Albumwhitey ford sings the blues - GenreAlternative - KindMPEG audio file - Size4852757 - Total Time303986 - Date Modified2010-02-22T02:02:29Z - Date Added2011-10-02T13:48:37Z - Bit Rate128 - Sample Rate44100 - Commentsripped by apc hardline - Play Count2 - Play Date3368051417 - Play Date UTC2010-09-23T05:50:17Z - Skip Count1 - Skip Date2010-04-05T13:09:08Z - Persistent IDF1B0B3E3810A3ABC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Everlast/Everlast%20-%20What%20its%20Like.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2431 - - Track ID2431 - NameHolla Holla - ArtistJa Rule - AlbumVenni Vetti Vecci - GenreRap - KindMPEG audio file - Size6411079 - Total Time267520 - Track Number4 - Year1999 - Date Modified2010-02-22T02:02:28Z - Date Added2011-10-02T13:48:38Z - Bit Rate192 - Sample Rate44100 - CommentsTeam RNS - #rns on efnet - Play Count1 - Play Date3368038935 - Play Date UTC2010-09-23T02:22:15Z - Persistent IDAD59258E97268D5C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/08.%20Rap/Ja%20Rule%20-%20Holla%20Holla.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2433 - - Track ID2433 - NameStinkfist - ArtistTool - AlbumÆnima - GenreRock - KindMPEG audio file - Size5040871 - Total Time311118 - Year1999 - Date Modified2010-02-22T02:18:00Z - Date Added2011-10-02T13:48:41Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 4368A339 - Play Count1 - Play Date3368027374 - Play Date UTC2010-09-22T23:09:34Z - Skip Count3 - Skip Date2012-07-16T14:01:32Z - Artwork Count1 - Persistent ID6D64722BBF0AD1A2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Tool/Aenima/01%20Stinkfist.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2435 - - Track ID2435 - NameMambo No.5 - ArtistLou Bega - KindMPEG audio file - Size3554452 - Total Time222145 - Track Number255 - Date Modified1999-09-13T01:35:20Z - Date Added2011-10-02T13:48:41Z - Bit Rate128 - Sample Rate44100 - CommentsMambo - Play Count14 - Play Date3423548624 - Play Date UTC2012-06-26T13:43:44Z - Persistent ID33B4E126100ADB64 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Misc/Lou%20Bega%20-%20Mambo%20Number%205.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2437 - - Track ID2437 - NameCarpe Diem Baby - ArtistMetallica - AlbumReload - Genrerock - KindMPEG audio file - Size7446528 - Total Time372244 - Track Number7 - Date Modified2010-02-22T02:02:24Z - Date Added2011-10-02T13:48:41Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3379569463 - Play Date UTC2011-02-03T13:17:43Z - Persistent ID0975DB603D23DDFC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%20Carpe%20Diem%20Baby.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2439 - - Track ID2439 - NameKeep Away - ArtistGodsmack - AlbumGodsmack - KindMPEG audio file - Size4664648 - Total Time292205 - Date Modified2002-09-30T21:56:36Z - Date Added2011-10-02T13:48:41Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368048820 - Play Date UTC2010-09-23T05:07:00Z - Skip Count1 - Skip Date2012-08-07T21:47:17Z - Persistent ID6EF891D744981464 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Godsmack/Self%20Titled/03%20-%20Keep%20Away.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2441 - - Track ID2441 - NameWelcome to the Jungle - ArtistGuns and Roses - KindMPEG audio file - Size4307757 - Total Time268591 - Date Modified2010-02-22T02:02:22Z - Date Added2011-10-02T13:48:42Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-10T20:44:17Z - Persistent ID9B86A8C9D623D261 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/05.%2070's%20and%2080's/Guns%20and%20Roses%20-%20Welcome%20to%20the%20jungle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2443 - - Track ID2443 - NameHere In Your Bedroom - ArtistGoldfinger - AlbumGoldfinger - GenreRock - KindMPEG audio file - Size6779887 - Total Time190824 - Track Number3 - Track Count16 - Year1996 - Date Modified2008-11-22T23:50:29Z - Date Added2011-10-02T13:48:42Z - Bit Rate284 - Sample Rate44100 - Play Count1 - Play Date3356782412 - Play Date UTC2010-05-15T19:33:32Z - Skip Count1 - Skip Date2010-05-21T11:51:59Z - Persistent ID68F429E7F0DC43C6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Goldfinger/Self-Titled%20(1996)/03%20-%20Here%20In%20Your%20Bedroom.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2445 - - Track ID2445 - NameLittle Scene - ArtistIsle Of Q - KindMPEG audio file - Size5183867 - Total Time259186 - Date Modified2010-02-22T02:02:26Z - Date Added2011-10-02T13:48:42Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3368049897 - Play Date UTC2010-09-23T05:24:57Z - Persistent ID48169ABD862117D1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Isle%20Of%20Q%20-%20Little%20Scene.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2447 - - Track ID2447 - NameNothing Else Matters - ArtistMetallica - KindMPEG audio file - Size6230363 - Total Time388754 - Date Modified2010-02-22T02:03:39Z - Date Added2011-10-02T13:48:42Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368031224 - Play Date UTC2010-09-23T00:13:44Z - Skip Count2 - Skip Date2012-05-24T14:01:56Z - Persistent ID1A949C339E4BB8C9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%20Nothing%20Else%20Matters.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2449 - - Track ID2449 - NameYou Really Got Me - ArtistVan Halen - KindMPEG audio file - Size3147828 - Total Time156865 - Date Modified2010-02-22T02:03:51Z - Date Added2011-10-02T13:48:42Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3368037035 - Play Date UTC2010-09-23T01:50:35Z - Skip Count2 - Skip Date2012-07-16T14:03:35Z - Persistent ID206ABE744B20DAE3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Van%20Halen%20-%20You%20Really%20Got%20Me.MP3 - File Folder Count-1 - Library Folder Count-1 - - 2451 - - Track ID2451 - NameBroken Bubble - ArtistTen Foot Pole - AlbumRev - GenrePunk - KindMPEG audio file - Size5556249 - Total Time154488 - Track Number10 - Track Count13 - Year1994 - Date Modified2008-11-22T23:38:38Z - Date Added2011-10-02T13:48:42Z - Bit Rate287 - Sample Rate44100 - CommentsSkate Punk Epitath Records YEAR: 1994 - Play Count5 - Play Date3423640739 - Play Date UTC2012-06-27T15:18:59Z - Persistent IDC9ACC19F238C2AF2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Ten%20Foot%20Pole/Rev/10%20-%20Broken%20Bubble.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2453 - - Track ID2453 - NameWhiskey In The Jar - ArtistMetallica - KindMPEG audio file - Size4881993 - Total Time304457 - Date Modified2010-02-22T02:04:02Z - Date Added2011-10-02T13:48:42Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3424251208 - Play Date UTC2012-07-04T16:53:28Z - Persistent IDF2C78EE8F5B32B21 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%20Whiskey%20In%20The%20Jar.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2455 - - Track ID2455 - NameLast Resort - ArtistPapa Roach - GenreRock - KindMPEG audio file - Size3244327 - Total Time202762 - Track Number1 - Year2000 - Date Modified2010-02-22T02:02:04Z - Date Added2011-10-02T13:48:42Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 4ACA68AF - Play Count2 - Play Date3368049419 - Play Date UTC2010-09-23T05:16:59Z - Skip Count3 - Skip Date2012-04-24T21:22:35Z - Persistent ID3F691C1AACA383B1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Papa%20Roach/Papa%20Roach%20-%20Last%20Resort.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2457 - - Track ID2457 - NameHive - Artist311 - Album311 (Blue) - GenreAlt. Rock - KindMPEG audio file - Size5116157 - Total Time179513 - Track Number5 - Year1995 - Date Modified2009-02-05T22:51:10Z - Date Added2011-10-02T13:48:42Z - Bit Rate226 - Sample Rate44100 - CommentsTrack 5 - Play Count2 - Play Date3426687609 - Play Date UTC2012-08-01T21:40:09Z - Skip Count2 - Skip Date2012-05-24T14:16:14Z - Artwork Count1 - Persistent IDD32A1D72E56D115C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/311/311%20-%20311%20(Blue)/05%20-%20Hive.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2459 - - Track ID2459 - NameStabbing Westward - Save Yourself - KindMPEG audio file - Size4034862 - Total Time252734 - Date Modified1999-02-05T21:18:08Z - Date Added2011-10-02T13:48:42Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3424297801 - Play Date UTC2012-07-05T05:50:01Z - Persistent ID38681058F7ED32E5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stabbing%20Westward/Stabbing%20Westward%20-%20Save%20Yourself.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2461 - - Track ID2461 - NameGotta Get Away - ArtistOffspring - AlbumSmash - GenrePunk - KindMPEG audio file - Size7583497 - Total Time233952 - Track Number4 - Track Count14 - Year1994 - Date Modified2008-11-23T23:47:11Z - Date Added2011-10-02T13:48:43Z - Bit Rate259 - Sample Rate44100 - Play Count2 - Play Date3354080248 - Play Date UTC2010-04-14T12:57:28Z - Skip Count4 - Skip Date2012-08-10T20:29:03Z - Persistent ID24281363A2E5DE6D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Offspring/Smash%20(1994)/04%20-%20Gotta%20Get%20Away.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2463 - - Track ID2463 - NameDope Man - ArtistLess Than Jake - AlbumLosing Streak - GenreSka/Punk - KindMPEG audio file - Size4289259 - Total Time126432 - Track Number13 - Track Count16 - Year1996 - Date Modified2008-11-23T00:05:09Z - Date Added2011-10-02T13:48:43Z - Bit Rate271 - Sample Rate44100 - Play Count1 - Play Date3356771945 - Play Date UTC2010-05-15T16:39:05Z - Skip Count1 - Skip Date2009-04-18T00:31:05Z - Persistent IDD755742C15781E80 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Losing%20Streak%20(1996)/13%20-%20Dopeman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2465 - - Track ID2465 - NameCome As You Are - ArtistNirvana - AlbumNevermind - GenreGrunge - KindMPEG audio file - Size7659932 - Total Time219036 - Track Number3 - Track Count12 - Year1991 - Date Modified2008-11-25T00:55:57Z - Date Added2011-10-02T13:48:43Z - Bit Rate279 - Sample Rate44100 - Play Count2 - Play Date3424179935 - Play Date UTC2012-07-03T21:05:35Z - Skip Count2 - Skip Date2010-07-02T20:59:33Z - Persistent IDF8BFB91958E1BF4C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Nirvana/Nevermind%20(1991)/03%20-%20Come%20As%20You%20Are.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2467 - - Track ID2467 - NameGhetto Jam - ArtistDomino - KindMPEG audio file - Size4128716 - Total Time258037 - Date Modified2000-04-01T02:48:34Z - Date Added2011-10-02T13:48:43Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2011-05-13T21:52:42Z - Persistent ID6CE662E3839F1E2C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/08.%20Rap/Domino%20-%20Ghetto%20Jam.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2469 - - Track ID2469 - NameMuzzle - ArtistSmashing Pumpkins - KindMPEG audio file - Size3595960 - Total Time224104 - Date Modified2010-02-22T02:04:15Z - Date Added2011-10-02T13:48:43Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3391145726 - Play Date UTC2011-06-17T12:55:26Z - Persistent ID1EB57E7D1F877230 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Smashing%20Pumpkins/Smashing%20Pumpkins%20-%20Muzzle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2471 - - Track ID2471 - NameMarilyn Manson - Beautiful People - KindMPEG audio file - Size3449706 - Total Time215588 - Date Modified1999-02-05T13:48:52Z - Date Added2011-10-02T13:48:43Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368044400 - Play Date UTC2010-09-23T03:53:20Z - Skip Count3 - Skip Date2012-04-23T11:32:06Z - Persistent IDB29A2E5A8E00BEB2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Marilyn%20Manson/Marilyn%20Manson%20-%20Beautiful%20People.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2473 - - Track ID2473 - NameMetallica - Turn the Page - KindMPEG audio file - Size5845968 - Total Time365348 - Date Modified1999-02-23T20:51:06Z - Date Added2011-10-02T13:48:43Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368037662 - Play Date UTC2010-09-23T02:01:02Z - Skip Count1 - Skip Date2010-07-02T21:13:05Z - Persistent IDEE08D2EB149E3C45 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%20Turn%20the%20Page.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2475 - - Track ID2475 - NameMy Town - ArtistBuck-O-Nine - AlbumTwenty-Eight Teeth - GenreSka - KindMPEG audio file - Size7661130 - Total Time214308 - Track Number13 - Track Count14 - Year1997 - Date Modified2008-11-23T15:21:10Z - Date Added2011-10-02T13:48:43Z - Bit Rate285 - Sample Rate44100 - Play Count4 - Play Date3387687946 - Play Date UTC2011-05-08T12:25:46Z - Persistent IDEDF88EF24643B58B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Buck-o-Nine/Twenty-Eight%20Teeth/13%20-%20My%20Town.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2477 - - Track ID2477 - NameGeek Stink Breath - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size4933338 - Total Time135993 - Track Number4 - Track Count14 - Year1995 - Date Modified2008-11-23T16:18:48Z - Date Added2011-10-02T13:48:43Z - Bit Rate290 - Sample Rate44100 - Play Date3389379069 - Play Date UTC2011-05-28T02:11:09Z - Persistent ID7D416669A2443C71 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/04%20-%20Geek%20Stink%20Breath.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2479 - - Track ID2479 - NameBasket Case - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size6479085 - Total Time183222 - Track Number7 - Track Count14 - Year1994 - Date Modified2008-11-23T16:24:37Z - Date Added2011-10-02T13:48:43Z - Bit Rate282 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count2 - Play Date3424287318 - Play Date UTC2012-07-05T02:55:18Z - Persistent ID3E440E820FD583A1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/07%20-%20Basket%20Case.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2481 - - Track ID2481 - NameNookie - ArtistLimp Bizkit - AlbumSignificant Other - GenreHard Rock - KindMPEG audio file - Size5326700 - Total Time266553 - Track Number3 - Year1999 - Date Modified1999-08-24T15:04:02Z - Date Added2011-10-02T13:48:43Z - Bit Rate160 - Sample Rate44100 - Comments(RNS) JtHM (RNS) - Play Count1 - Play Date3368031765 - Play Date UTC2010-09-23T00:22:45Z - Skip Count3 - Skip Date2012-05-31T21:07:22Z - Persistent ID83087A349214C2B4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Limp%20Bizkit/Limp%20Bizkit%20-%20Nookie.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2483 - - Track ID2483 - NameWhat If - ArtistCreed - AlbumHuman Clay - GenreAlternative - KindMPEG audio file - Size6357566 - Total Time318145 - Track Number1 - Year1999 - Date Modified1999-09-24T14:54:54Z - Date Added2011-10-02T13:48:44Z - Bit Rate160 - Sample Rate44100 - CommentsMade with RealJukebox (tm) - Play Count1 - Play Date3354873265 - Play Date UTC2010-04-23T17:14:25Z - Skip Count1 - Skip Date2010-11-27T15:52:00Z - Persistent ID97DB1BD085F09368 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Creed/Human%20Clay/02.%20What%20If.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2485 - - Track ID2485 - NameCloser To Grey - ArtistTen Foot Pole - AlbumRev - GenrePunk - KindMPEG audio file - Size6763000 - Total Time188003 - Track Number7 - Track Count13 - Year1994 - Date Modified2008-11-22T23:38:18Z - Date Added2011-10-02T13:48:45Z - Bit Rate287 - Sample Rate44100 - CommentsSkate Punk Epitath Records YEAR: 1994 - Play Count7 - Play Date3427969593 - Play Date UTC2012-08-16T17:46:33Z - Persistent ID974BC83EF42EC4ED - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Ten%20Foot%20Pole/Rev/07%20-%20Closer%20To%20Grey.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2487 - - Track ID2487 - NameSkew It On The Bar-b (Featurin - ArtistOutkast - AlbumAquemini - GenrePop - KindMPEG audio file - Size4683987 - Total Time195160 - Year1999 - Date Modified2010-02-22T01:50:15Z - Date Added2011-10-02T13:48:45Z - Bit Rate192 - Sample Rate44100 - Comments, AG# D26A8585 - Play Count5 - Play Date3389333061 - Play Date UTC2011-05-27T13:24:21Z - Persistent IDC902BEBE920F0D3F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/08.%20Rap/Outkast/Outkast%20-%20Skew%20It%20On%20The%20Bar-b%20(Featuring%20Raekwon).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2489 - - Track ID2489 - NameGuster - Airport Song - KindMPEG audio file - Size3273456 - Total Time204591 - Date Modified1999-09-20T17:48:50Z - Date Added2011-10-02T13:48:45Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3389377239 - Play Date UTC2011-05-28T01:40:39Z - Persistent ID444F7E5D4C63F2F7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Guster/Goldfly/Guster%20-%20Airport%20Song.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2491 - - Track ID2491 - NameVengaboys-We Are Going To Ibiza - KindMPEG audio file - Size3012408 - Total Time188682 - Date Modified2000-03-01T21:13:02Z - Date Added2011-10-02T13:48:45Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368036094 - Play Date UTC2010-09-23T01:34:54Z - Skip Count2 - Skip Date2011-05-21T21:35:27Z - Persistent ID564843353A879C59 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Vengaboys-We%20Are%20Going%20To%20Ibiza.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2493 - - Track ID2493 - NameReject - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size4758111 - Total Time125884 - Track Number14 - Track Count18 - Year1997 - Date Modified2008-11-23T15:43:14Z - Date Added2011-10-02T13:48:45Z - Bit Rate302 - Sample Rate44100 - Play Count2 - Play Date3422535408 - Play Date UTC2012-06-14T20:16:48Z - Skip Date2010-09-07T22:06:39Z - Persistent ID368C7039AE375F41 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/14%20-%20Reject.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2495 - - Track ID2495 - NameCool To Hate - ArtistThe Offspring - AlbumIxnay On The Hombre - GenrePunk - KindMPEG audio file - Size6513425 - Total Time167941 - Track Number5 - Track Count14 - Year1997 - Date Modified2008-11-25T00:49:15Z - Date Added2011-10-02T13:48:45Z - Bit Rate310 - Sample Rate44100 - Play Count2 - Play Date3424332717 - Play Date UTC2012-07-05T15:31:57Z - Skip Count3 - Skip Date2012-07-29T20:40:05Z - Sort ArtistOffspring - Persistent ID20379FC2B894C7A5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Offspring/Ixnay%20on%20the%20Hombre%20(1997)/05%20-%20Cool%20To%20Hate.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2497 - - Track ID2497 - NameSantana - 03 - Put Your Lights On (Featuring Everlast) - KindMPEG audio file - Size4560896 - Total Time285048 - Date Modified2000-01-21T23:58:16Z - Date Added2011-10-02T13:48:45Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3368035132 - Play Date UTC2010-09-23T01:18:52Z - Skip Count1 - Skip Date2010-07-02T15:31:30Z - Persistent IDBEF12B508CB27F1C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Santana/Santana%20-%2003%20-%20Put%20Your%20Lights%20On%20(Featuring%20Everlast).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2499 - - Track ID2499 - NameNofx- August 8th - KindMPEG audio file - Size1530774 - Total Time95869 - Date Modified1999-02-24T12:19:14Z - Date Added2011-10-02T13:48:45Z - Bit Rate128 - Sample Rate44100 - Play Count4 - Play Date3424186139 - Play Date UTC2012-07-03T22:48:59Z - Persistent ID6CBAE916FC9F2D90 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/NOFX/Nofx-%20August%208th.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2501 - - Track ID2501 - NameBeethoven - Fur Elise (Techno Remix) - KindMPEG audio file - Size3381948 - Total Time211356 - Date Modified2000-03-06T07:55:58Z - Date Added2011-10-02T13:48:45Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3424217775 - Play Date UTC2012-07-04T07:36:15Z - Skip Count1 - Skip Date2010-07-14T12:59:06Z - Persistent IDBC5D01470F6FED2B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Beethoven%20-%20Fur%20Elise%20(Techno%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2503 - - Track ID2503 - NameRape Me - ArtistNirvana - AlbumIn Utero - GenreGrunge - KindMPEG audio file - Size5904271 - Total Time169848 - Track Number4 - Track Count12 - Year1993 - Date Modified2008-11-25T01:03:03Z - Date Added2011-10-02T13:48:46Z - Bit Rate277 - Sample Rate44100 - Play Count1 - Play Date3354875182 - Play Date UTC2010-04-23T17:46:22Z - Skip Count1 - Skip Date2010-07-02T21:00:10Z - Persistent ID86FD640FDCC14B87 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Nirvana/In%20Utero%20(1993)/04%20-%20Rape%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2505 - - Track ID2505 - NameDragula - ArtistRob Zombie - AlbumHellbilly Deluxe - GenreHard Rock - KindMPEG audio file - Size3557971 - Total Time222876 - Year1998 - Date Modified2010-02-22T01:50:11Z - Date Added2011-10-02T13:48:46Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3424224764 - Play Date UTC2012-07-04T09:32:44Z - Persistent IDD3B3BFBC162BBBB6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Rob%20Zombie%20-%20White%20Zombie/Rob%20Zombie%20-%20Dragula.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2507 - - Track ID2507 - NameHaushinka - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size7939643 - Total Time205479 - Track Number12 - Track Count18 - Year1997 - Date Modified2010-02-22T01:42:32Z - Date Added2011-10-02T13:48:46Z - Bit Rate309 - Sample Rate44100 - Play Count2 - Play Date3426688481 - Play Date UTC2012-08-01T21:54:41Z - Persistent ID9E0B499D98395034 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/12%20-%20Haushinka.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2509 - - Track ID2509 - NameHigh - ArtistJimmies Chicken Shack - GenreRock - KindMPEG audio file - Size3651837 - Total Time228231 - Date Modified2010-02-22T01:42:30Z - Date Added2011-10-02T13:48:46Z - Bit Rate128 - Sample Rate44100 - Persistent ID6B6A17A5ED67167E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Jimmies%20Chicken%20Shack%20-%20High.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2511 - - Track ID2511 - NameWorld's Best Dad - ArtistTen Foot Pole - AlbumRev - GenrePunk - KindMPEG audio file - Size4531609 - Total Time134739 - Track Number5 - Track Count13 - Year1994 - Date Modified2008-11-22T23:38:08Z - Date Added2011-10-02T13:48:46Z - Bit Rate268 - Sample Rate44100 - CommentsSkate Punk Epitath Records YEAR: 1994 - Play Count4 - Play Date3391144424 - Play Date UTC2011-06-17T12:33:44Z - Persistent IDD2EAC296737B32AB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Ten%20Foot%20Pole/Rev/05%20-%20World's%20Best%20Dad.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2513 - - Track ID2513 - NameFreak on a leash - ArtistKorn - KindMPEG audio file - Size4094593 - Total Time255268 - Track Number14 - Date Modified2010-02-22T01:56:55Z - Date Added2011-10-02T13:48:46Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3424186043 - Play Date UTC2012-07-03T22:47:23Z - Skip Count1 - Skip Date2010-07-14T12:53:50Z - Persistent ID84D66E658A038404 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Korn/Follow%20the%20Leader/14%20-%20%20Freak%20on%20a%20leash.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2515 - - Track ID2515 - NameRecord Store - ArtistBuck-O-Nine - AlbumTwenty-Eight Teeth - GenreSka - KindMPEG audio file - Size7622828 - Total Time206994 - Track Number12 - Track Count14 - Year1997 - Date Modified2008-11-23T15:21:03Z - Date Added2011-10-02T13:48:46Z - Bit Rate294 - Sample Rate44100 - Play Count2 - Play Date3368040424 - Play Date UTC2010-09-23T02:47:04Z - Skip Count4 - Skip Date2012-07-31T12:39:28Z - Persistent ID200D99F19479C4DA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Buck-o-Nine/Twenty-Eight%20Teeth/12%20-%20Record%20Store.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2517 - - Track ID2517 - NameWalk The Walk - ArtistFace To Face - AlbumFace To Face - GenrePunk - KindMPEG audio file - Size3444947 - Total Time215301 - Year1996 - Date Modified2010-02-22T01:42:24Z - Date Added2011-10-02T13:48:46Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368033207 - Play Date UTC2010-09-23T00:46:47Z - Skip Count1 - Skip Date2010-08-26T22:07:25Z - Persistent IDF1A6739A605767D3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Face%20to%20Face/Face%20To%20Face%20-%20Walk%20The%20Walk.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2519 - - Track ID2519 - NameGot the life - ArtistKorn - GenreAlternative - KindMPEG audio file - Size3575871 - Total Time224000 - Date Modified2010-02-22T01:42:23Z - Date Added2011-10-02T13:48:46Z - Bit Rate128 - Sample Rate44100 - Commentsmove.to/random - Play Count3 - Play Date3426167262 - Play Date UTC2012-07-26T21:07:42Z - Skip Count1 - Skip Date2012-08-10T20:29:05Z - Persistent ID35FF06958CB08968 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Korn/Follow%20the%20Leader/15%20-%20Got%20The%20Life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2521 - - Track ID2521 - NameSomething To Believe In - ArtistOffspring - AlbumSmash - GenrePunk - KindMPEG audio file - Size6981532 - Total Time197564 - Track Number6 - Track Count14 - Year1994 - Date Modified2008-11-23T23:47:27Z - Date Added2011-10-02T13:48:47Z - Bit Rate282 - Sample Rate44100 - Play Count3 - Play Date3361858899 - Play Date UTC2010-07-13T13:41:39Z - Persistent ID5C8FFF1D8750D296 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Offspring/Smash%20(1994)/06%20-%20Something%20To%20Believe%20In.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2523 - - Track ID2523 - NameSometimes - ArtistStabbing Westward - KindMPEG audio file - Size4393117 - Total Time219141 - Date Modified2010-02-22T01:57:18Z - Date Added2011-10-02T13:48:47Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3424191810 - Play Date UTC2012-07-04T00:23:30Z - Skip Count2 - Skip Date2012-06-12T17:04:02Z - Persistent ID6FF6F51BCC4FD832 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stabbing%20Westward/Stabbing%20Westward%20-%20Sometimes.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2525 - - Track ID2525 - NameLiving Dead Girl - ArtistRob Zombie - KindMPEG audio file - Size4036977 - Total Time201325 - Date Modified2010-02-22T01:57:06Z - Date Added2011-10-02T13:48:47Z - Bit Rate160 - Sample Rate44100 - Play Count2 - Play Date3424217976 - Play Date UTC2012-07-04T07:39:36Z - Skip Count2 - Skip Date2011-05-21T21:49:52Z - Persistent ID409D38BFF3F4FEE3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Rob%20Zombie%20-%20White%20Zombie/Rob%20Zombie%20-%20Living%20Dead%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2527 - - Track ID2527 - NameBrain Stew - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size6338951 - Total Time192992 - Track Number10 - Track Count14 - Year1995 - Date Modified2010-02-22T01:42:16Z - Date Added2011-10-02T13:48:47Z - Bit Rate262 - Sample Rate44100 - Play Count1 - Play Date3414609236 - Play Date UTC2012-03-15T02:33:56Z - Persistent ID956B71C8DE3710A5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/10%20-%20Brain%20Stew.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2529 - - Track ID2529 - NameLongview - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size7486755 - Total Time239151 - Track Number4 - Track Count14 - Year1994 - Date Modified2010-02-22T01:42:14Z - Date Added2011-10-02T13:48:47Z - Bit Rate250 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count1 - Play Date3414595442 - Play Date UTC2012-03-14T22:44:02Z - Persistent IDA00664B58D58D9D4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/04%20-%20Longview.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2531 - - Track ID2531 - NameStellar - ArtistIncubus - KindMPEG audio file - Size4818984 - Total Time200359 - Date Modified2010-02-22T01:56:40Z - Date Added2011-10-02T13:48:47Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3368030641 - Play Date UTC2010-09-23T00:04:01Z - Skip Count2 - Skip Date2012-06-12T13:31:11Z - Persistent ID6E33406729747B86 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Incubus/Incubus%20-06%20-%20Stellar.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2533 - - Track ID2533 - NameStickin' In My Eye - ArtistNOFX - AlbumWhite Trash Two Heebs & A Bean - GenrePunk - KindMPEG audio file - Size2442406 - Total Time144509 - Date Modified2010-02-22T02:16:26Z - Date Added2011-10-02T13:48:47Z - Bit Rate128 - Sample Rate44100 - Play Count4 - Play Date3424186283 - Play Date UTC2012-07-03T22:51:23Z - Skip Count1 - Skip Date2012-04-19T22:35:17Z - Artwork Count1 - Persistent IDDAC82A4ECD3C17C6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/NOFX/02-Stickin'%20in%20my%20eye.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2535 - - Track ID2535 - NameDrugstore - ArtistStabbing Westward - AlbumDarkest Days - GenreIndustrial - KindMPEG audio file - Size4766116 - Total Time297874 - Year1998 - Date Modified2010-02-22T01:42:08Z - Date Added2011-10-02T13:48:47Z - Bit Rate128 - Sample Rate44100 - CommentsEncoded by MrP - Play Count1 - Play Date3368041354 - Play Date UTC2010-09-23T03:02:34Z - Skip Count1 - Skip Date2010-07-13T22:29:52Z - Persistent IDF03BD39A22C1A80A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stabbing%20Westward/Stabbing%20Westward%20-%20Drugstore.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2537 - - Track ID2537 - NameWhat's This Life For - ArtistCreed - AlbumMy Own Prison - GenreRock - KindMPEG audio file - Size8405215 - Total Time248267 - Track Number9 - Track Count10 - Year1997 - Date Modified2008-11-26T14:02:23Z - Date Added2011-10-02T13:48:47Z - Bit Rate270 - Sample Rate44100 - CommentsYEAR: 1997 ID3G: 17 - Play Count2 - Play Date3322846732 - Play Date UTC2009-04-18T00:58:52Z - Persistent IDE23BFC7D3AECCE9C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Creed/My%20Own%20Prison%20(1997)/09%20-%20What's%20This%20Life%20For.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2539 - - Track ID2539 - NameThe Real Slim Shady - ArtistEminem - AlbumThe Real Slim Shady (CD Single - GenreHip-Hop - KindMPEG audio file - Size6886588 - Total Time287346 - Year2000 - Date Modified2010-02-22T01:42:07Z - Date Added2011-10-02T13:48:47Z - Bit Rate192 - Sample Rate44100 - Comments[EGO] #ego on efnet [EGO] - Play Count2 - Play Date3424188171 - Play Date UTC2012-07-03T23:22:51Z - Skip Count3 - Skip Date2012-08-09T22:18:00Z - Sort AlbumReal Slim Shady (CD Single - Sort NameReal Slim Shady - Persistent ID9F85BB59124B7D8B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/08.%20Rap/Eminem/Eminem%20-%20The%20Real%20Slim%20Shady%20(Unedited).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2541 - - Track ID2541 - NameAin't my Bitch (Live) - ArtistMetallica - AlbumKing Nothing (Single) - GenrePop - KindMPEG audio file - Size7208356 - Total Time360411 - Year1999 - Date Modified2010-02-22T01:42:05Z - Date Added2011-10-02T13:48:48Z - Bit Rate160 - Sample Rate44100 - Comments, AG# E35923B1 - Skip Count2 - Skip Date2012-06-14T20:09:47Z - Persistent ID7DFEE8E221832C06 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/02%20-%20Ain't%20my%20Bitch%20(Live).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2543 - - Track ID2543 - NameStan (ft. Dido) - ArtistEminem - AlbumThe Marshall Mathers LP - GenreHip-Hop - KindMPEG audio file - Size9685600 - Total Time404166 - Track Number3 - Year2000 - Date Modified2010-02-22T01:42:04Z - Date Added2011-10-02T13:48:48Z - Bit Rate192 - Sample Rate44100 - Comments+-KSI-2000-+ - Play Count2 - Play Date3368041758 - Play Date UTC2010-09-23T03:09:18Z - Skip Count3 - Skip Date2012-07-09T21:57:10Z - Sort AlbumMarshall Mathers LP - Persistent ID4CF855F0DB2A8C90 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/08.%20Rap/Eminem/Eminem%20-%20Stan.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2545 - - Track ID2545 - NameLakini's Juice - ArtistLive - AlbumSecret Samadhi - GenreRock - KindMPEG audio file - Size4789230 - Total Time299311 - Year1997 - Date Modified2010-02-22T01:50:28Z - Date Added2011-10-02T13:48:50Z - Bit Rate128 - Sample Rate44100 - Commentschanceman (1997-02-17) - Play Count2 - Play Date3388842839 - Play Date UTC2011-05-21T21:13:59Z - Persistent IDAAB2B63AD89244C3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Live/Live%20-%20Lakini%20Juice.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2547 - - Track ID2547 - NameSix Underground - ArtistSneaker Pimps - KindMPEG audio file - Size3756066 - Total Time234109 - Date Modified2010-02-22T01:56:27Z - Date Added2011-10-02T13:48:50Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3368050131 - Play Date UTC2010-09-23T05:28:51Z - Skip Count1 - Skip Date2012-08-01T21:05:34Z - Persistent IDFC4EABC8958FB998 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Sneaker%20Pimps%20-%20Six%20Underground.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2549 - - Track ID2549 - NameBaba O' Reily - ArtistThe Who - KindMPEG audio file - Size4937728 - Total Time308480 - Date Modified1999-09-15T04:37:48Z - Date Added2011-10-02T13:48:50Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3362227547 - Play Date UTC2010-07-17T20:05:47Z - Skip Count2 - Skip Date2012-07-27T12:56:09Z - Sort ArtistWho - Persistent ID0BD0799E110A3752 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Who/The%20Who%20-%20Baba%20O'Reily.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2551 - - Track ID2551 - NameHey Boy Hey Girl - ArtistChemical Brothers - AlbumSurrender - KindMPEG audio file - Size4638720 - Total Time290455 - Year1999 - Date Modified2010-02-22T01:50:24Z - Date Added2011-10-02T13:48:50Z - Bit Rate128 - Sample Rate44100 - Persistent IDC4EA033792DB46C2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Chemical%20Brothers/Surrender/09%20Hey%20Boy%20Hey%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2553 - - Track ID2553 - NameMore Human Than Human - ArtistWhite Zombie - KindMPEG audio file - Size4281712 - Total Time266945 - Date Modified2010-02-22T01:56:15Z - Date Added2011-10-02T13:48:50Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3349844115 - Play Date UTC2010-02-24T12:15:15Z - Skip Count2 - Skip Date2012-05-15T21:42:39Z - Persistent ID4DB2CC1F8DB33883 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Rob%20Zombie%20-%20White%20Zombie/White%20Zombie%20-%20More%20Human%20Than%20Human.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2555 - - Track ID2555 - NameSteppin' stone - ArtistMinor Threat - KindMPEG audio file - Size2125145 - Total Time132179 - Track Number14 - Date Modified2010-02-22T01:38:25Z - Date Added2011-10-02T13:48:50Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3427205632 - Play Date UTC2012-08-07T21:33:52Z - Persistent IDEC4B54758BAA4615 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Minor%20Threat/14-Steppin'%20stone.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2557 - - Track ID2557 - NameBlue Monday - ArtistOrgy - KindMPEG audio file - Size5329461 - Total Time266187 - Date Modified2010-02-22T01:53:45Z - Date Added2011-10-02T13:48:50Z - Bit Rate160 - Sample Rate44100 - Play Count3 - Play Date3425286144 - Play Date UTC2012-07-16T16:22:24Z - Skip Count3 - Skip Date2011-05-21T21:51:47Z - Persistent ID92AF93D9A22CBEF7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Orgy%20-%20Blue%20Monday.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2559 - - Track ID2559 - NameCum On Feel The Noise - ArtistQuiet Riot - KindMPEG audio file - Size4675139 - Total Time291552 - Date Modified2010-02-22T01:38:42Z - Date Added2011-10-02T13:48:51Z - Bit Rate128 - Sample Rate44100 - Persistent ID7BF9F854A0132660 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/05.%2070's%20and%2080's/Quiet%20Riot%20-%20Cum%20On%20Feel%20The%20Noise.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2561 - - Track ID2561 - NameBrackish - ArtistKittie - AlbumSpit - GenreOther - KindMPEG audio file - Size3012340 - Total Time188264 - Date Modified2010-02-22T01:38:48Z - Date Added2011-10-02T13:48:51Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368051113 - Play Date UTC2010-09-23T05:45:13Z - Skip Count3 - Skip Date2012-08-07T21:59:15Z - Persistent ID013985EE6953EDDD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Kitty%20-%20Brackish.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2563 - - Track ID2563 - NameWe're Not Gonna Take It - ArtistTwisted Sister - KindMPEG audio file - Size3517398 - Total Time219193 - Date Modified2010-02-22T01:53:31Z - Date Added2011-10-02T13:48:51Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3389604185 - Play Date UTC2011-05-30T16:43:05Z - Persistent ID7FE0ABC13204D954 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/05.%2070's%20and%2080's/Twisted%20Sister%20-%20We're%20Not%20Gonna%20Take%20It.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2565 - - Track ID2565 - NameBetter of Alone - ArtistAlice Deejay - KindMPEG audio file - Size6604301 - Total Time412760 - Year1999 - Date Modified2010-02-22T01:38:53Z - Date Added2011-10-02T13:48:51Z - Bit Rate128 - Sample Rate44100 - Commentshttp://listen.to/ukchart - Play Count1 - Play Date3368045310 - Play Date UTC2010-09-23T04:08:30Z - Skip Count1 - Skip Date2012-05-30T21:55:58Z - Persistent IDB5E14811CB3D3EB8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Alice%20Deejay%20-%20Better%20off%20alone.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2567 - - Track ID2567 - NameBack That Azz Up - ArtistJuvenile - Album400 Degreez - GenreRap - KindMPEG audio file - Size5312389 - Total Time265613 - Date Modified2010-02-22T01:38:55Z - Date Added2011-10-02T13:48:51Z - Bit Rate160 - Sample Rate44100 - CommentsBrOuGhT tO yA By CpChiC - Play Count2 - Play Date3424329922 - Play Date UTC2012-07-05T14:45:22Z - Persistent ID7BC057D01EA9155B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/08.%20Rap/Juvenile%20-%20Back%20That%20Ass%20Up.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2569 - - Track ID2569 - NameHey Man Nice Shot - ArtistFilter - AlbumShort Bus - GenreRock - KindMPEG audio file - Size5029012 - Total Time314305 - Date Modified2010-03-14T00:03:39Z - Date Added2011-10-02T13:48:51Z - Bit Rate128 - Sample Rate44100 - Persistent ID2022B93DE06B4AFC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Filter/Filter%20-%20Hey%20Man%20Nice%20Shot.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2571 - - Track ID2571 - NameDie Die My Darling - ArtistMetallica - KindMPEG audio file - Size3590113 - Total Time149159 - Date Modified2010-02-22T01:39:13Z - Date Added2011-10-02T13:48:51Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3380255503 - Play Date UTC2011-02-11T11:51:43Z - Skip Count1 - Skip Date2012-08-09T22:17:21Z - Persistent IDF457FCB3CB01B47D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Metallica/Metallica%20-%205%20Die%20Die%20My%20Darling.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2573 - - Track ID2573 - NameMan In The Box - ArtistAlice In Chains - AlbumFacelift - GenrePop - KindMPEG audio file - Size5730348 - Total Time286511 - Year1999 - Date Modified1999-09-11T23:12:32Z - Date Added2011-10-02T13:48:51Z - Bit Rate160 - Sample Rate44100 - Comments, AG# 7D0D78E5 - Skip Count3 - Skip Date2012-04-25T12:46:58Z - Persistent ID41424DE5D3606203 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Alice%20in%20Chains/Facelift/02%20-%20Man%20In%20The%20Box.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2575 - - Track ID2575 - NameHigher - ArtistCreed - AlbumHuman Clay - GenreAlternRock - KindMPEG audio file - Size6331988 - Total Time316865 - Year1999 - Date Modified2010-02-22T01:39:23Z - Date Added2011-10-02T13:48:51Z - Bit Rate160 - Sample Rate44100 - Comments#apc on EFNET- JtHM [aPC] - Play Count1 - Play Date3424239108 - Play Date UTC2012-07-04T13:31:48Z - Skip Count1 - Skip Date2010-07-06T21:33:09Z - Persistent ID5F39FE0AE866A2B3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Creed/Human%20Clay/09.%20Higher.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2577 - - Track ID2577 - NameTrip Like I Do - ArtistFilter & The Crystal Method - KindMPEG audio file - Size4292447 - Total Time268225 - Date Modified2010-02-22T01:39:38Z - Date Added2011-10-02T13:48:52Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-08T23:13:34Z - Persistent ID77F260066C7CB32F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Filter/Filter%20&%20The%20Crystal%20Method%20-%20Trip%20Like%20I%20Do.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2579 - - Track ID2579 - NameA.D.I.D.A.S. - ArtistKoRn - AlbumLife Is Peachy - GenrePop - KindMPEG audio file - Size3056454 - Total Time152816 - Year1999 - Date Modified2010-02-22T01:39:43Z - Date Added2011-10-02T13:48:53Z - Bit Rate160 - Sample Rate44100 - Comments, AG# 985759D1 - Skip Count3 - Skip Date2010-09-08T21:58:50Z - Persistent ID9F6A622473C928B7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Limp%20Bizkit/Three%20Dollar%20Bill%20Yall$/11%20-%20A.D.I.D.A.S..mp3 - File Folder Count-1 - Library Folder Count-1 - - 2581 - - Track ID2581 - NameWhat's My Age Again - ArtistBlink 182 - AlbumEnema Of The State - GenrePunk - KindMPEG audio file - Size3556434 - Total Time148401 - Year1999 - Date Modified2010-02-22T01:39:44Z - Date Added2011-10-02T13:48:53Z - Bit Rate192 - Sample Rate44100 - Commentsripped by sinned soul [aPC] - Play Count1 - Play Date3368032108 - Play Date UTC2010-09-23T00:28:28Z - Persistent IDD332B97B816481EA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Blink182/Enema%20of%20the%20State/05%20What's%20My%20Age%20Again.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2583 - - Track ID2583 - NameBreak Stuff - ArtistLimp Bizkit - AlbumSignificant Other - GenreRock - KindMPEG audio file - Size3995886 - Total Time166739 - Year1999 - Date Modified2010-02-22T01:39:46Z - Date Added2011-10-02T13:48:54Z - Bit Rate192 - Sample Rate44100 - Commentsripped by sinned soul [aPC] - Play Count1 - Play Date3368033373 - Play Date UTC2010-09-23T00:49:33Z - Skip Count3 - Skip Date2011-02-04T21:45:15Z - Persistent ID60EA022B6AA0A639 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Limp%20Bizkit/limp_bizkit_-_break_stuff.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2585 - - Track ID2585 - NamePlush (Acoustic) - ArtistStone Temple Pilots - KindMPEG audio file - Size3755215 - Total Time234057 - Date Modified2010-02-22T01:40:05Z - Date Added2011-10-02T13:48:54Z - Bit Rate128 - Sample Rate44100 - Play Count4 - Play Date3426687429 - Play Date UTC2012-08-01T21:37:09Z - Skip Count1 - Skip Date2012-04-23T11:31:46Z - Persistent IDC39B6439F1341601 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Stone%20Temple%20Pilots%20-%20Plush%20(Acoustic)~1.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2587 - - Track ID2587 - NameCowboy - ArtistKid Rock - KindMPEG audio file - Size4136373 - Total Time257880 - Date Modified2010-02-22T01:40:24Z - Date Added2011-10-02T13:48:54Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3424194217 - Play Date UTC2012-07-04T01:03:37Z - Skip Count1 - Skip Date2012-06-11T21:31:35Z - Persistent IDA2BFC815C3CE119B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Kid%20Rock/Kid%20Rock%20-%20Cowboy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2589 - - Track ID2589 - NameBlind - ArtistKorn - AlbumKorn - KindMPEG audio file - Size4159502 - Total Time259448 - Date Modified2010-02-22T01:40:08Z - Date Added2011-10-02T13:48:54Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368035391 - Play Date UTC2010-09-23T01:23:11Z - Persistent IDEC37F7A83FFE680E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Korn/Life%20is%20Peachy/01%20-%20Blind.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2591 - - Track ID2591 - NameDon't Worry, Be Happy - ArtistBobby McFerrin - KindMPEG audio file - Size3749639 - Total Time234344 - Date Modified2010-02-22T01:40:10Z - Date Added2011-10-02T13:48:55Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368029010 - Play Date UTC2010-09-22T23:36:50Z - Skip Count1 - Skip Date2012-07-03T20:49:21Z - Persistent ID490317681D3AD65C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/05.%2070's%20and%2080's/Bobby%20McFerrin%20-%20Don't%20Worry,%20Be%20Happy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2593 - - Track ID2593 - NameLit up - ArtistBuckcherry - KindMPEG audio file - Size3463460 - Total Time215823 - Date Modified2010-02-22T01:40:39Z - Date Added2011-10-02T13:48:55Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3373711456 - Play Date UTC2010-11-27T18:04:16Z - Persistent IDE7846ED42ADA98FD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Buckcherry%20-%20Lit%20up.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2595 - - Track ID2595 - NameSellout - ArtistReel Big Fish - KindMPEG audio file - Size3638986 - Total Time226795 - Date Modified2010-02-22T01:40:49Z - Date Added2011-10-02T13:48:55Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3368038302 - Play Date UTC2010-09-23T02:11:42Z - Skip Count1 - Skip Date2012-04-19T22:41:07Z - Persistent ID94EEB3B69CA075E9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Misc/Reel%20Big%20Fish-%20Sellout.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2597 - - Track ID2597 - NameBoomtown - ArtistLess Than Jake - AlbumPezcore - GenrePunk/Ska - KindMPEG audio file - Size5402006 - Total Time165459 - Track Number17 - Track Count19 - Year1995 - Date Modified2008-11-23T01:07:24Z - Date Added2011-10-02T13:48:55Z - Bit Rate261 - Sample Rate44100 - Skip Count1 - Skip Date2011-06-07T22:00:07Z - Persistent ID6994991808204200 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Less%20Than%20Jake/Albums/Pezcore%20(1995)/17%20-%20Boomtown.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2599 - - Track ID2599 - NameThe Bad Touch (Eiffel 65 Remix) - ArtistBloodhound Gang - GenreEurodance - KindMPEG audio file - Size5271184 - Total Time263262 - Year2000 - Date Modified2010-02-22T01:41:25Z - Date Added2011-10-02T13:48:55Z - Bit Rate160 - Sample Rate44100 - Skip Count1 - Skip Date2010-04-23T17:38:51Z - Sort NameBad Touch (Eiffel 65 Remix) - Persistent ID1CE19BA2221863D2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Bloodhound%20Gang/Bloodhound%20Gang%20_%20BadTouch%20rmx2.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2601 - - Track ID2601 - NameMeet Virginia - ArtistTrain - AlbumTrain - KindMPEG audio file - Size3829810 - Total Time239908 - Year1996 - Date Modified2000-06-18T19:27:14Z - Date Added2011-10-02T13:48:57Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368053103 - Play Date UTC2010-09-23T06:18:23Z - Skip Count3 - Skip Date2012-07-27T22:33:01Z - Persistent IDEC0D274F4473304A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Train/train%20-%20meet%20virginia.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2603 - - Track ID2603 - NamePardon Me - ArtistIncubus - AlbumMake Yourself - GenreMetal - KindMPEG audio file - Size5374874 - Total Time223947 - Year1999 - Date Modified1999-10-13T13:55:52Z - Date Added2011-10-02T13:48:58Z - Bit Rate192 - Sample Rate44100 - Commentsfeedhog / KSI rockin again! - Skip Count1 - Skip Date2010-04-23T17:57:45Z - Persistent ID28C3237AF7861F84 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Incubus/Make%20Yourself/12%20-%20Pardon%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2605 - - Track ID2605 - NameAround The World - ArtistDaft Punk - KindMPEG audio file - Size3874323 - Total Time241502 - Date Modified2010-02-22T01:41:42Z - Date Added2011-10-02T13:48:58Z - Bit Rate128 - Sample Rate44100 - Play Count7 - Play Date3426853962 - Play Date UTC2012-08-03T19:52:42Z - Skip Count2 - Skip Date2012-08-05T13:16:11Z - Persistent IDC97CA22BC3DB4B20 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Daft%20Punk/Daft%20Punk%20-%20Around%20The%20World.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2607 - - Track ID2607 - Name(fatboy slim vs rollingstones) - Artistwww.homeofmusic.com - AlbumDJ EZG - GenreHouse - KindMPEG audio file - Size5878960 - Total Time366889 - Track Number34 - Date Modified2000-02-15T21:27:20Z - Date Added2011-10-02T13:48:58Z - Bit Rate128 - Sample Rate44100 - CommentsDJ008® http://i.am/dj008 - Play Count1 - Play Date3322845948 - Play Date UTC2009-04-18T00:45:48Z - Skip Count1 - Skip Date2012-06-12T21:25:45Z - Persistent ID32BD207FA761BD2A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Fatboy%20Slim/Fatboy%20Slim%20vs%20Rolling%20Stones%20-%20Rockerfaction%20Remix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2609 - - Track ID2609 - NameRight Here, Right Now - ArtistFat Boy Slim - AlbumYou've Come a Long Way, Baby - GenrePop - KindMPEG audio file - Size6203478 - Total Time387709 - Year1995 - Date Modified2010-02-22T01:41:44Z - Date Added2011-10-02T13:48:59Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 42CAB536 - Play Count3 - Play Date3389604588 - Play Date UTC2011-05-30T16:49:48Z - Skip Count1 - Skip Date2010-03-21T01:47:31Z - Persistent ID152DF38CDDA0AD11 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Fatboy%20Slim/You've%20Come%20a%20Long%20Way%20Baby/01%20-%20Right%20Here,%20Right%20Now.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2611 - - Track ID2611 - NameMaria Maria - ArtistCarlos Santana feat. Wyclef Jean - KindMPEG audio file - Size4208709 - Total Time262400 - Date Modified2010-02-22T01:42:01Z - Date Added2011-10-02T13:48:59Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3368040897 - Play Date UTC2010-09-23T02:54:57Z - Skip Count3 - Skip Date2011-06-17T12:37:03Z - Persistent ID16A3B657ECFE1736 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Santana/Carlos%20Santana%20feat.%20Wyclef%20Jean%20-%20Maria%20Maria.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2613 - - Track ID2613 - NameBurnout - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size4618498 - Total Time127582 - Track Number1 - Track Count14 - Year1994 - Date Modified2008-11-23T16:23:46Z - Date Added2011-10-02T13:48:59Z - Bit Rate289 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count3 - Play Date3420091308 - Play Date UTC2012-05-17T13:21:48Z - Persistent ID6AB25E31E54ADDF8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/01%20-%20Burnout.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2615 - - Track ID2615 - NameHaving A Blast - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size6037846 - Total Time164728 - Track Number2 - Track Count14 - Year1994 - Date Modified2008-11-23T16:23:54Z - Date Added2011-10-02T13:48:59Z - Bit Rate293 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count3 - Play Date3414595029 - Play Date UTC2012-03-14T22:37:09Z - Persistent ID7A7AB20753DC4BAC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/02%20-%20Having%20A%20Blast.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2617 - - Track ID2617 - NameChump - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size6083170 - Total Time174080 - Track Number3 - Track Count14 - Year1994 - Date Modified2008-11-23T16:24:03Z - Date Added2011-10-02T13:48:59Z - Bit Rate279 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count2 - Play Date3427300556 - Play Date UTC2012-08-08T23:55:56Z - Persistent ID700F6A401FA788D2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/03%20-%20Chump.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2619 - - Track ID2619 - NamePulling Teeth - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size5484016 - Total Time150883 - Track Number6 - Track Count14 - Year1994 - Date Modified2008-11-23T16:24:30Z - Date Added2011-10-02T13:48:59Z - Bit Rate290 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count3 - Play Date3421420857 - Play Date UTC2012-06-01T22:40:57Z - Persistent ID7238A6C65F436BE7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/06%20-%20Pulling%20Teeth.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2621 - - Track ID2621 - NameShe - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size4901929 - Total Time134321 - Track Number8 - Track Count14 - Year1994 - Date Modified2008-11-23T16:24:42Z - Date Added2011-10-02T13:48:59Z - Bit Rate291 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Skip Count2 - Skip Date2012-06-01T15:01:59Z - Persistent ID656AFC4AAA67C202 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/08%20-%20She.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2623 - - Track ID2623 - NameSassafrass Roots - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size5642057 - Total Time157675 - Track Number9 - Track Count14 - Year1994 - Date Modified2008-11-23T16:24:48Z - Date Added2011-10-02T13:49:00Z - Bit Rate286 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count5 - Play Date3423639923 - Play Date UTC2012-06-27T15:05:23Z - Persistent ID91E0F9CA0A5F40A0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/09%20-%20Sassafrass%20Roots.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2625 - - Track ID2625 - NameWhen I Come Around - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size6127006 - Total Time178233 - Track Number10 - Track Count14 - Year1994 - Date Modified2008-11-23T16:24:54Z - Date Added2011-10-02T13:49:00Z - Bit Rate274 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count2 - Play Date3414596342 - Play Date UTC2012-03-14T22:59:02Z - Skip Count2 - Skip Date2012-07-31T12:39:34Z - Persistent ID70065F9768F5CB65 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/10%20-%20When%20I%20Come%20Around.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2627 - - Track ID2627 - NameComing Clean - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size3531720 - Total Time94955 - Track Number11 - Track Count14 - Year1994 - Date Modified2008-11-23T16:24:57Z - Date Added2011-10-02T13:49:00Z - Bit Rate297 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count5 - Play Date3424178213 - Play Date UTC2012-07-03T20:36:53Z - Persistent IDBBF041B0C7DAED9E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/11%20-%20Coming%20Clean.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2629 - - Track ID2629 - NameEmenius Sleepus - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size3858144 - Total Time104019 - Track Number12 - Track Count14 - Year1994 - Date Modified2008-11-23T16:25:01Z - Date Added2011-10-02T13:49:00Z - Bit Rate296 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count6 - Play Date3424216484 - Play Date UTC2012-07-04T07:14:44Z - Persistent ID3758BA621F826C23 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/12%20-%20Emenius%20Sleepus.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2631 - - Track ID2631 - NameIn The End - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size3894878 - Total Time106448 - Track Number13 - Track Count14 - Year1994 - Date Modified2008-11-23T16:25:04Z - Date Added2011-10-02T13:49:00Z - Bit Rate292 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count4 - Play Date3426429377 - Play Date UTC2012-07-29T21:56:17Z - Skip Count1 - Skip Date2012-05-10T21:27:30Z - Persistent ID764FA99E162082B7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/13%20-%20In%20The%20End.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2633 - - Track ID2633 - NameF.O.D. - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size8648599 - Total Time346906 - Track Number14 - Track Count14 - Year1994 - Date Modified2008-11-23T16:25:16Z - Date Added2011-10-02T13:49:00Z - Bit Rate199 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Play Count1 - Play Date3426693460 - Play Date UTC2012-08-01T23:17:40Z - Persistent ID51B4D4AF681771F0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/14%20-%20F.O.D..mp3 - File Folder Count-1 - Library Folder Count-1 - - 2635 - - Track ID2635 - NameArmatage Shanks - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size5093680 - Total Time136646 - Track Number1 - Track Count14 - Year1995 - Date Modified2008-11-23T16:18:32Z - Date Added2011-10-02T13:49:00Z - Bit Rate298 - Sample Rate44100 - Play Count2 - Play Date3414608086 - Play Date UTC2012-03-15T02:14:46Z - Persistent ID878BF7334DAC2C11 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/01%20-%20Armatage%20Shanks.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2637 - - Track ID2637 - NameBrat - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size3915598 - Total Time103392 - Track Number2 - Track Count14 - Year1995 - Date Modified2008-11-23T16:18:37Z - Date Added2011-10-02T13:49:00Z - Bit Rate302 - Sample Rate44100 - Play Count1 - Play Date3414608190 - Play Date UTC2012-03-15T02:16:30Z - Persistent ID67EC88C895F96471 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/02%20-%20Brat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2639 - - Track ID2639 - NameStuck With Me - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size5264993 - Total Time135680 - Track Number3 - Track Count14 - Year1995 - Date Modified2008-11-23T16:18:43Z - Date Added2011-10-02T13:49:00Z - Bit Rate310 - Sample Rate44100 - Play Count5 - Play Date3428038992 - Play Date UTC2012-08-17T13:03:12Z - Persistent ID80CD3A6B4BDF4437 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/03%20-%20Stuck%20With%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2641 - - Track ID2641 - NameNo Pride - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size5070701 - Total Time139885 - Track Number5 - Track Count14 - Year1995 - Date Modified2008-11-23T16:18:54Z - Date Added2011-10-02T13:49:00Z - Bit Rate289 - Sample Rate44100 - Play Count6 - Play Date3427342317 - Play Date UTC2012-08-09T11:31:57Z - Persistent IDF1F66650A67C68DF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/05%20-%20No%20Pride.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2643 - - Track ID2643 - NameBab's Uvula Who? - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size4727158 - Total Time128261 - Track Number6 - Track Count14 - Year1995 - Date Modified2008-11-23T16:18:58Z - Date Added2011-10-02T13:49:00Z - Bit Rate294 - Sample Rate44100 - Play Count8 - Play Date3426428303 - Play Date UTC2012-07-29T21:38:23Z - Persistent ID0D1E889E60941514 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/06%20-%20Bab's%20Uvula%20Who_.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2645 - - Track ID2645 - Name86 - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size6201818 - Total Time167862 - Track Number7 - Track Count14 - Year1995 - Date Modified2008-11-23T16:19:04Z - Date Added2011-10-02T13:49:00Z - Bit Rate295 - Sample Rate44100 - Play Count2 - Play Date3414608704 - Play Date UTC2012-03-15T02:25:04Z - Persistent IDFB934CDC3352C814 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/07%20-%2086.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2647 - - Track ID2647 - NamePanic Song - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size7891256 - Total Time215484 - Track Number8 - Track Count14 - Year1995 - Date Modified2008-11-23T16:19:12Z - Date Added2011-10-02T13:49:00Z - Bit Rate292 - Sample Rate44100 - Play Count4 - Play Date3427298006 - Play Date UTC2012-08-08T23:13:26Z - Persistent ID45BFCB62E09251F2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/08%20-%20Panic%20Song.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2649 - - Track ID2649 - NameStuart And The Ave. - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size4432224 - Total Time123506 - Track Number9 - Track Count14 - Year1995 - Date Modified2008-11-23T16:19:16Z - Date Added2011-10-02T13:49:00Z - Bit Rate286 - Sample Rate44100 - Play Count3 - Play Date3424301105 - Play Date UTC2012-07-05T06:45:05Z - Persistent IDADBB473B3ECDCF2E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/09%20-%20Stuart%20And%20The%20Ave..mp3 - File Folder Count-1 - Library Folder Count-1 - - 2651 - - Track ID2651 - NameJaded - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size3368012 - Total Time90906 - Track Number11 - Track Count14 - Year1995 - Date Modified2008-11-23T16:19:25Z - Date Added2011-10-02T13:49:00Z - Bit Rate296 - Sample Rate44100 - Play Count4 - Play Date3426686950 - Play Date UTC2012-08-01T21:29:10Z - Persistent ID1097BDD619DB45F9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/11%20-%20Jaded.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2653 - - Track ID2653 - NameWestbound Sign - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size5006326 - Total Time133328 - Track Number12 - Track Count14 - Year1995 - Date Modified2008-11-23T16:19:30Z - Date Added2011-10-02T13:49:00Z - Bit Rate300 - Sample Rate44100 - Play Count5 - Play Date3422366480 - Play Date UTC2012-06-12T21:21:20Z - Persistent ID3FAE8892222EC4C6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/12%20-%20Westbound%20Sign.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2655 - - Track ID2655 - NameTight Wad Hill - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size4482067 - Total Time121077 - Track Number13 - Track Count14 - Year1995 - Date Modified2008-11-23T16:19:34Z - Date Added2011-10-02T13:49:00Z - Bit Rate295 - Sample Rate44100 - Play Count5 - Play Date3428066877 - Play Date UTC2012-08-17T20:47:57Z - Persistent IDB170C2F5321F1BF7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/13%20-%20Tight%20Wad%20Hill.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2657 - - Track ID2657 - NameWalking Contradiction - ArtistGreen Day - AlbumInsomniac - GenrePunk Rock - KindMPEG audio file - Size5483194 - Total Time151562 - Track Number14 - Track Count14 - Year1995 - Date Modified2008-11-23T16:19:40Z - Date Added2011-10-02T13:49:00Z - Bit Rate289 - Sample Rate44100 - Play Count5 - Play Date3426430021 - Play Date UTC2012-07-29T22:07:01Z - Persistent IDAB196B7CAD770F24 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Insomniac%20(1995)/14%20-%20Walking%20Contradiction.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2659 - - Track ID2659 - NameNice Guys Finish Last - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size6411674 - Total Time169247 - Track Number1 - Track Count18 - Year1997 - Date Modified2008-11-23T15:41:31Z - Date Added2011-10-02T13:49:00Z - Bit Rate302 - Sample Rate44100 - Play Count3 - Play Date3414609902 - Play Date UTC2012-03-15T02:45:02Z - Persistent ID139132AC73B3B5C9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/01%20-%20Nice%20Guys%20Finish%20Last.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2661 - - Track ID2661 - NameHitchin' A Ride - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size6466470 - Total Time171911 - Track Number2 - Track Count18 - Year1997 - Date Modified2008-11-23T15:41:39Z - Date Added2011-10-02T13:49:00Z - Bit Rate300 - Sample Rate44100 - Play Count4 - Play Date3423027981 - Play Date UTC2012-06-20T13:06:21Z - Persistent ID74D399663E25D899 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/02%20-%20Hitchin'%20A%20Ride.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2663 - - Track ID2663 - NameThe Grouch - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size4978746 - Total Time132284 - Track Number3 - Track Count18 - Year1997 - Date Modified2008-11-23T15:41:46Z - Date Added2011-10-02T13:49:00Z - Bit Rate300 - Sample Rate44100 - Play Count3 - Play Date3388843351 - Play Date UTC2011-05-21T21:22:31Z - Skip Count1 - Skip Date2012-08-07T21:42:08Z - Sort NameGrouch - Persistent IDDADDFEE771F23046 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/03%20-%20The%20Grouch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2665 - - Track ID2665 - NameRedundant - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size7366760 - Total Time197746 - Track Number4 - Track Count18 - Year1997 - Date Modified2008-11-23T15:41:55Z - Date Added2011-10-02T13:49:00Z - Bit Rate297 - Sample Rate44100 - Play Count2 - Play Date3380808258 - Play Date UTC2011-02-17T21:24:18Z - Skip Count1 - Skip Date2011-05-04T12:39:29Z - Persistent ID9E68A674EF1EF2F4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/04%20-%20Redundant.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2667 - - Track ID2667 - NameScattered - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size6879363 - Total Time182569 - Track Number5 - Track Count18 - Year1997 - Date Modified2008-11-23T15:42:02Z - Date Added2011-10-02T13:49:00Z - Bit Rate301 - Sample Rate44100 - Play Count1 - Play Date3365762964 - Play Date UTC2010-08-27T18:09:24Z - Persistent ID5F0F5053AD3EC2D4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/05%20-%20Scattered.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2669 - - Track ID2669 - NameAll The Time - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size4672333 - Total Time130612 - Track Number6 - Track Count18 - Year1997 - Date Modified2008-11-23T15:42:08Z - Date Added2011-10-02T13:49:00Z - Bit Rate286 - Sample Rate44100 - Play Count5 - Play Date3422424327 - Play Date UTC2012-06-13T13:25:27Z - Persistent IDBED64E6534A88AF4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/06%20-%20All%20The%20Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2671 - - Track ID2671 - NameWorry Rock - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size5463288 - Total Time147043 - Track Number7 - Track Count18 - Year1997 - Date Modified2008-11-23T15:42:14Z - Date Added2011-10-02T13:49:00Z - Bit Rate297 - Sample Rate44100 - Play Count5 - Play Date3426140363 - Play Date UTC2012-07-26T13:39:23Z - Persistent ID56718B8C128D5351 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/07%20-%20Worry%20Rock.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2673 - - Track ID2673 - NamePlatypus (I Hate You) - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size5291743 - Total Time141818 - Track Number8 - Track Count18 - Year1997 - Date Modified2008-11-23T15:42:19Z - Date Added2011-10-02T13:49:01Z - Bit Rate298 - Sample Rate44100 - Play Count2 - Play Date3390314556 - Play Date UTC2011-06-07T22:02:36Z - Persistent ID51F7C5F93844BE2D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/08%20-%20Platypus%20(I%20Hate%20You).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2675 - - Track ID2675 - NameUptight - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size6559163 - Total Time184215 - Track Number9 - Track Count18 - Year1997 - Date Modified2008-11-23T15:42:26Z - Date Added2011-10-02T13:49:01Z - Bit Rate284 - Sample Rate44100 - Play Count3 - Play Date3424301290 - Play Date UTC2012-07-05T06:48:10Z - Skip Count1 - Skip Date2012-05-10T12:43:27Z - Persistent ID76EF48D504DBD0A7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/09%20-%20Uptight.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2677 - - Track ID2677 - NameLast Ride In - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size8126704 - Total Time227892 - Track Number10 - Track Count18 - Year1997 - Date Modified2008-11-23T15:42:34Z - Date Added2011-10-02T13:49:01Z - Bit Rate285 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-09T11:24:23Z - Persistent ID62CCB8AF077F095E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/10%20-%20Last%20Ride%20In.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2679 - - Track ID2679 - NameJinx - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size5048032 - Total Time132623 - Track Number11 - Track Count18 - Year1997 - Date Modified2008-11-23T15:42:39Z - Date Added2011-10-02T13:49:01Z - Bit Rate304 - Sample Rate44100 - Play Count2 - Play Date3366727413 - Play Date UTC2010-09-07T22:03:33Z - Persistent ID45B3720E8A3E677C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/11%20-%20Jinx.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2681 - - Track ID2681 - NameWalking Alone - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size6098800 - Total Time165355 - Track Number13 - Track Count18 - Year1997 - Date Modified2008-11-23T15:43:10Z - Date Added2011-10-02T13:49:01Z - Bit Rate294 - Sample Rate44100 - Skip Count3 - Skip Date2012-06-01T16:05:52Z - Persistent ID544BE71105FECD38 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/13%20-%20Walking%20Alone.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2683 - - Track ID2683 - NameTake Back - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size2600741 - Total Time69407 - Track Number15 - Track Count18 - Year1997 - Date Modified2008-11-23T15:43:17Z - Date Added2011-10-02T13:49:01Z - Bit Rate299 - Sample Rate44100 - Play Count2 - Play Date3390831162 - Play Date UTC2011-06-13T21:32:42Z - Persistent ID2E6F686C5A9BFA75 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/15%20-%20Take%20Back.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2685 - - Track ID2685 - NameKing For A Day - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size7029776 - Total Time193567 - Track Number16 - Track Count18 - Year1997 - Date Modified2008-11-23T15:43:23Z - Date Added2011-10-02T13:49:01Z - Bit Rate290 - Sample Rate44100 - Play Count2 - Play Date3424191361 - Play Date UTC2012-07-04T00:16:01Z - Skip Count1 - Skip Date2010-09-14T21:43:40Z - Persistent ID16D849AE115AC183 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/16%20-%20King%20For%20A%20Day.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2687 - - Track ID2687 - NameProsthetic Head - ArtistGreen Day - AlbumNimrod - GenrePunk Rock - KindMPEG audio file - Size7755696 - Total Time218174 - Track Number18 - Track Count18 - Year1997 - Date Modified2008-11-23T15:43:36Z - Date Added2011-10-02T13:49:01Z - Bit Rate284 - Sample Rate44100 - Play Count1 - Play Date3424260408 - Play Date UTC2012-07-04T19:26:48Z - Skip Count1 - Skip Date2012-05-16T22:53:34Z - Persistent ID503D787836885628 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Nimrod%20(1997)/18%20-%20Prosthetic%20Head.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2689 - - Track ID2689 - NameLinoleum - ArtistNOFX - AlbumPunk In Drublic - GenrePunk - KindMPEG audio file - Size4717721 - Total Time130324 - Track Number1 - Track Count17 - Year1994 - Date Modified2008-11-23T15:46:48Z - Date Added2011-10-02T13:49:01Z - Bit Rate289 - Sample Rate44100 - Play Count5 - Play Date3422023193 - Play Date UTC2012-06-08T21:59:53Z - Persistent IDB6424F46C11E2902 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/NOFX/Punk%20In%20Drublic%20(1994)/01%20-%20Linoleum.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2691 - - Track ID2691 - NameDead & Bloated - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size11384757 - Total Time310308 - Track Number1 - Track Count12 - Year1992 - Date Modified2008-11-26T05:52:38Z - Date Added2011-10-02T13:49:01Z - Bit Rate293 - Sample Rate44100 - Play Count1 - Play Date3360853781 - Play Date UTC2010-07-01T22:29:41Z - Skip Count1 - Skip Date2011-03-02T11:51:18Z - Persistent ID59DB5B1F2AC9B275 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/01%20-%20Dead%20&%20Bloated.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2693 - - Track ID2693 - NameSex Type Thing - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size8539674 - Total Time218749 - Track Number2 - Track Count12 - Year1992 - Date Modified2008-11-26T05:52:48Z - Date Added2011-10-02T13:49:01Z - Bit Rate312 - Sample Rate44100 - Play Count2 - Play Date3390398165 - Play Date UTC2011-06-08T21:16:05Z - Persistent ID0CE5E76E142E7D7C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/02%20-%20Sex%20Type%20Thing.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2695 - - Track ID2695 - NameWicked Garden - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size8991813 - Total Time245394 - Track Number3 - Track Count12 - Year1992 - Date Modified2008-11-26T05:52:58Z - Date Added2011-10-02T13:49:01Z - Bit Rate293 - Sample Rate44100 - Play Count1 - Play Date3424188647 - Play Date UTC2012-07-03T23:30:47Z - Skip Count3 - Skip Date2012-06-11T13:41:19Z - Persistent IDEDE11C4EAEDD4C15 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/03%20-%20Wicked%20Garden.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2697 - - Track ID2697 - NameNo Memory - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size2277942 - Total Time80404 - Track Number4 - Track Count12 - Year1992 - Date Modified2008-11-26T05:53:01Z - Date Added2011-10-02T13:49:01Z - Bit Rate226 - Sample Rate44100 - Skip Count1 - Skip Date2011-06-16T23:01:00Z - Persistent ID4AD0B46D381CC7DF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/04%20-%20No%20Memory.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2699 - - Track ID2699 - NameSin - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size13092278 - Total Time365113 - Track Number5 - Track Count12 - Year1992 - Date Modified2008-11-26T05:53:13Z - Date Added2011-10-02T13:49:01Z - Bit Rate286 - Sample Rate44100 - Play Count1 - Play Date3424203372 - Play Date UTC2012-07-04T03:36:12Z - Persistent ID50E645A967D09215 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/05%20-%20Sin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2701 - - Track ID2701 - NameNaked Sunday - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size8793796 - Total Time229328 - Track Number6 - Track Count12 - Year1992 - Date Modified2008-11-26T05:53:21Z - Date Added2011-10-02T13:49:01Z - Bit Rate306 - Sample Rate44100 - Play Count1 - Play Date3424298423 - Play Date UTC2012-07-05T06:00:23Z - Skip Count1 - Skip Date2012-06-05T12:50:35Z - Persistent ID268EFC6923470030 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/06%20-%20Naked%20Sunday.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2703 - - Track ID2703 - NameCreep - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size11807979 - Total Time333348 - Track Number7 - Track Count12 - Year1992 - Date Modified2008-11-26T05:53:31Z - Date Added2011-10-02T13:49:01Z - Bit Rate283 - Sample Rate44100 - Play Count2 - Play Date3420954127 - Play Date UTC2012-05-27T13:02:07Z - Skip Count1 - Skip Date2012-08-17T19:46:32Z - Persistent ID2C7ACDFB7D32C87A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/07%20-%20Creep.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2705 - - Track ID2705 - NamePiece Of Pie - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size12272244 - Total Time324519 - Track Number8 - Track Count12 - Year1992 - Date Modified2008-11-26T05:53:42Z - Date Added2011-10-02T13:49:01Z - Bit Rate302 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-29T22:34:51Z - Persistent IDD627C13D62929141 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/08%20-%20Piece%20Of%20Pie.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2707 - - Track ID2707 - NamePlush - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size11326880 - Total Time314122 - Track Number9 - Track Count12 - Year1992 - Date Modified2008-11-26T05:53:52Z - Date Added2011-10-02T13:49:01Z - Bit Rate288 - Sample Rate44100 - Play Count4 - Play Date3422424187 - Play Date UTC2012-06-13T13:23:07Z - Skip Count2 - Skip Date2011-03-18T12:54:40Z - Persistent ID6FAC87072BF8ED8C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/09%20-%20Plush.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2709 - - Track ID2709 - NameWet My Bed - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size3100211 - Total Time96731 - Track Number10 - Track Count12 - Year1992 - Date Modified2008-11-26T05:53:55Z - Date Added2011-10-02T13:49:01Z - Bit Rate256 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-11T22:43:11Z - Persistent ID4C1F8D3CC7783F3A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/10%20-%20Wet%20My%20Bed.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2711 - - Track ID2711 - NameCrackerman - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size7444887 - Total Time194351 - Track Number11 - Track Count12 - Year1992 - Date Modified2008-11-26T05:54:02Z - Date Added2011-10-02T13:49:01Z - Bit Rate306 - Sample Rate44100 - Play Count1 - Play Date3383660429 - Play Date UTC2011-03-22T21:40:29Z - Skip Count1 - Skip Date2012-04-23T11:36:34Z - Persistent ID5DC1C0AFE6E01161 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/11%20-%20Crackerman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2713 - - Track ID2713 - NameWhere The River Goes - ArtistStone Temple Pilots - AlbumCore - GenreGrunge - KindMPEG audio file - Size18564541 - Total Time505782 - Track Number12 - Track Count12 - Year1992 - Date Modified2008-11-26T05:54:19Z - Date Added2011-10-02T13:49:01Z - Bit Rate293 - Sample Rate44100 - Play Count1 - Play Date3424222624 - Play Date UTC2012-07-04T08:57:04Z - Skip Count2 - Skip Date2012-05-18T23:07:31Z - Persistent ID3D2495E008848377 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Core%20(1992)/12%20-%20Where%20The%20River%20Goes.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2715 - - Track ID2715 - NameCrackerman - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size3743164 - Total Time232385 - Track Number1 - Date Modified2010-02-22T02:32:17Z - Date Added2011-10-02T13:49:02Z - Bit Rate128 - Sample Rate44100 - CommentsMTV Unplugged - Skip Count1 - Skip Date2011-02-04T12:21:14Z - Artwork Count1 - Persistent ID00F89F5BEFDDA652 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2001%20-%20Crackerman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2717 - - Track ID2717 - NameCreep - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size5571738 - Total Time349022 - Track Number2 - Date Modified2010-02-22T02:29:48Z - Date Added2011-10-02T13:49:02Z - Bit Rate128 - Sample Rate44100 - CommentsMTV Unplugged - Skip Count2 - Skip Date2012-05-17T13:21:52Z - Persistent ID68B5AC065D859EFA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2002%20-%20Creep.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2719 - - Track ID2719 - NamePlush - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size5408690 - Total Time338808 - Track Number3 - Date Modified2010-02-22T02:29:48Z - Date Added2011-10-02T13:49:03Z - Bit Rate128 - Sample Rate44100 - CommentsMTV Unplugged - Play Count1 - Play Date3350829526 - Play Date UTC2010-03-07T21:58:46Z - Persistent ID2643EE028CD8532B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2003%20-%20Plush.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2721 - - Track ID2721 - NameWicked Garden - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size3927924 - Total Time246047 - Track Number4 - Date Modified2010-02-22T02:29:48Z - Date Added2011-10-02T13:49:03Z - Bit Rate128 - Sample Rate44100 - CommentsMTV Unplugged - Skip Count2 - Skip Date2011-03-22T23:50:45Z - Persistent ID151C14CB70C241AE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2004%20-%20Wicked%20Garden.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2723 - - Track ID2723 - NameAndy Warhol - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size2859986 - Total Time179147 - Track Number5 - Date Modified2010-02-22T02:29:48Z - Date Added2011-10-02T13:49:04Z - Bit Rate128 - Sample Rate44100 - CommentsMTV Unplugged - Skip Count1 - Skip Date2012-08-17T20:31:55Z - Persistent IDD6EA13AA6E109227 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2005%20-%20Andy%20Warhol.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2725 - - Track ID2725 - NameBig Empty - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size4789862 - Total Time300042 - Track Number6 - Date Modified2010-02-22T02:29:48Z - Date Added2011-10-02T13:49:05Z - Bit Rate128 - Sample Rate44100 - CommentsMTV unplugged - Play Count1 - Play Date3424224542 - Play Date UTC2012-07-04T09:29:02Z - Persistent ID4A4EC633D91CB3A1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2006%20-%20Big%20Empty.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2727 - - Track ID2727 - NameSex Type Thing - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size4225662 - Total Time264698 - Track Number7 - Date Modified2010-02-22T02:29:48Z - Date Added2011-10-02T13:49:05Z - Bit Rate128 - Sample Rate44100 - CommentsMTV Unplugged - Persistent ID4657E911D14D80E8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2007%20-%20Sex%20Type%20Thing.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2729 - - Track ID2729 - NamePretty Penny - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size3770714 - Total Time236199 - Track Number8 - Date Modified2010-02-22T02:29:48Z - Date Added2011-10-02T13:49:06Z - Bit Rate128 - Sample Rate44100 - Comments94 MTV VMA - Persistent IDEF7E1AD08B267AE0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2008%20-%20Pretty%20Penny.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2731 - - Track ID2731 - NameMidnight Roundup - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size1199076 - Total Time75102 - Track Number9 - Date Modified2010-02-22T02:29:48Z - Date Added2011-10-02T13:49:06Z - Bit Rate128 - Sample Rate44100 - CommentsPurple Tour - Persistent ID73D67FC5510DC77E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2009%20-%20Midnight%20Roundup.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2733 - - Track ID2733 - NameKitchenware and Candybars - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size3389160 - Total Time212297 - Track Number10 - Date Modified2010-02-22T02:29:49Z - Date Added2011-10-02T13:49:06Z - Bit Rate128 - Sample Rate44100 - CommentsPurple Tour - Skip Count3 - Skip Date2012-06-28T16:43:41Z - Persistent IDA79606547BA81AB7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2010%20-%20Kitchenware%20And%20Candybars.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2735 - - Track ID2735 - NameChristmas Time Is Here - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size3405840 - Total Time213342 - Track Number11 - Date Modified2010-02-22T02:29:49Z - Date Added2011-10-02T13:49:07Z - Bit Rate128 - Sample Rate44100 - CommentsPurple Tour - Persistent ID15761F219C14F571 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2011%20-%20Christmas%20Time%20Is%20Here.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2737 - - Track ID2737 - NameLady Picture Show - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size4309062 - Total Time269923 - Track Number12 - Date Modified2010-02-22T02:29:49Z - Date Added2011-10-02T13:49:07Z - Bit Rate128 - Sample Rate44100 - CommentsKROQ Breakfast - Play Count1 - Play Date3360855707 - Play Date UTC2010-07-01T23:01:47Z - Skip Count3 - Skip Date2012-07-10T12:54:47Z - Persistent IDF473C2383F280EBB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2012%20-%20Lady%20Picture%20Show.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2739 - - Track ID2739 - NameDancing Days - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size3784892 - Total Time237087 - Track Number13 - Date Modified2010-02-22T02:29:49Z - Date Added2011-10-02T13:49:08Z - Bit Rate128 - Sample Rate44100 - CommentsHoward Stern - Persistent ID8D23D8C2496E2824 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2013%20-%20Dancing%20Days.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2741 - - Track ID2741 - NameSeven Caged Tigers - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size3697740 - Total Time231627 - Track Number14 - Date Modified2010-02-22T02:29:49Z - Date Added2011-10-02T13:49:08Z - Bit Rate128 - Sample Rate44100 - CommentsHoward Stern - Play Count1 - Play Date3360855437 - Play Date UTC2010-07-01T22:57:17Z - Skip Count1 - Skip Date2011-03-22T23:50:42Z - Persistent ID431F4FE7DA81EF38 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2014%20-%20Seven%20Caged%20Tigers.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2743 - - Track ID2743 - NamePeeling an Orange - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size3241124 - Total Time203023 - Track Number15 - Date Modified2010-02-22T02:29:49Z - Date Added2011-10-02T13:49:09Z - Bit Rate128 - Sample Rate44100 - CommentsLive on Rockline - Skip Count1 - Skip Date2010-05-20T12:45:51Z - Persistent ID96DC0A6E72594A17 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2015%20-%20Peeling%20an%20Orange.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2745 - - Track ID2745 - NameSon (+ hidden songs) - ArtistStone Temple Pilots - AlbumUnplugged - GenreGrunge - KindMPEG audio file - Size12760818 - Total Time799373 - Track Number16 - Date Modified2010-02-22T02:29:49Z - Date Added2011-10-02T13:49:09Z - Bit Rate128 - Sample Rate44100 - CommentsLive on the Buzz. - Persistent ID8B199C24C3761F7E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Unplugged/Stone%20Temple%20Pilots%20-%2016%20-%20Son.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2747 - - Track ID2747 - NameDumb Love - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size4098270 - Total Time170997 - Track Number1 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:11Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Play Count1 - Play Date3356789287 - Play Date UTC2010-05-15T21:28:07Z - Skip Count1 - Skip Date2011-02-07T11:01:45Z - Persistent IDC14E9C532C109FD8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/01.%20Dumb%20Love.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2749 - - Track ID2749 - NameDays of the Week - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size3723926 - Total Time155376 - Track Number2 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:11Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Play Count1 - Play Date3426687764 - Play Date UTC2012-08-01T21:42:44Z - Skip Count1 - Skip Date2011-02-07T10:59:12Z - Persistent ID0FC9645CFC652004 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/02.%20Days%20of%20the%20Week.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2751 - - Track ID2751 - NameComa - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size5308323 - Total Time221492 - Track Number3 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:12Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Play Count1 - Play Date3424186525 - Play Date UTC2012-07-03T22:55:25Z - Skip Count2 - Skip Date2012-05-31T21:07:12Z - Persistent ID404F693B9F1C28BB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/03.%20Coma.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2753 - - Track ID2753 - NameHollywood Bitch - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size3922362 - Total Time163657 - Track Number4 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:13Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Play Count2 - Play Date3356789097 - Play Date UTC2010-05-15T21:24:57Z - Skip Count1 - Skip Date2012-04-25T12:39:41Z - Persistent IDC05B5C3E87163EF6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/04.%20Hollywood%20Bitch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2755 - - Track ID2755 - NameWonderful - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size5456694 - Total Time227343 - Track Number5 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:13Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Play Count2 - Play Date3424215179 - Play Date UTC2012-07-04T06:52:59Z - Skip Count1 - Skip Date2011-06-16T22:52:58Z - Persistent IDC1941B76EB2971BC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/05.%20Wonderful.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2757 - - Track ID2757 - NameBlack Again - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size4950258 - Total Time206550 - Track Number6 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:13Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Skip Count3 - Skip Date2012-06-14T20:09:07Z - Persistent IDEFF68828C09269BF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/06.%20Black%20Again.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2759 - - Track ID2759 - NameHello Its Late - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size6286770 - Total Time261929 - Track Number7 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:14Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Skip Count1 - Skip Date2011-05-21T21:38:35Z - Persistent IDB86220C2AA8AA7AD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/07.%20Hello%20It's%20Late.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2761 - - Track ID2761 - NameToo Cool Queenie - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size4013765 - Total Time167235 - Track Number8 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:14Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Skip Count1 - Skip Date2012-06-12T21:11:21Z - Persistent ID12BD493FAB5DB4DA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/08.%20Too%20Cool%20Queenie.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2763 - - Track ID2763 - NameRegeneration - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size5643232 - Total Time235128 - Track Number9 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:14Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Persistent ID965839DCD473A5FD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/09.%20Regeneration.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2765 - - Track ID2765 - NameBi-Polar Bear - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size7306520 - Total Time304875 - Track Number10 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:14Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Play Count1 - Play Date3424193100 - Play Date UTC2012-07-04T00:45:00Z - Skip Count2 - Skip Date2012-06-29T22:33:33Z - Persistent ID0BECDDDCD62D3F69 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/10.%20Bi-Polar%20Bear.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2767 - - Track ID2767 - NameTransmissions From A lonely Ro - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size4689248 - Total Time195657 - Track Number11 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:15Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Play Count1 - Play Date3424240899 - Play Date UTC2012-07-04T14:01:39Z - Persistent ID00126CC1D9A02FF3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/11.%20Transmissions%20from%20a%20..mp3 - File Folder Count-1 - Library Folder Count-1 - - 2769 - - Track ID2769 - NameA Song for Sleeping - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size6119000 - Total Time255320 - Track Number12 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:17Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Sort NameSong for Sleeping - Persistent IDA2C822CA127057AF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/12.%20A%20Song%20for%20Sleeping.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2771 - - Track ID2771 - NameLong Way Home - ArtistStone Temple Pilots - AlbumShangri-La Dee Da - GenreGrunge - KindMPEG audio file - Size6531520 - Total Time272535 - Track Number13 - Year2001 - Date Modified2010-02-22T02:30:03Z - Date Added2011-10-02T13:49:18Z - Bit Rate192 - Sample Rate44100 - CommentsInferior - Skip Count2 - Skip Date2011-04-06T21:28:42Z - Persistent ID4F72C4EAD08A0450 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Shangri-La-Dee-Da/13.%20Long%20Way%20Home.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2773 - - Track ID2773 - NameTear The Club Up - ArtistDJ Isaac - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size6280589 - Total Time227291 - Track Number1 - Year2009 - Date Modified2010-05-29T18:31:21Z - Date Added2011-10-02T13:49:19Z - Bit Rate219 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count10 - Play Date3382270235 - Play Date UTC2011-03-06T19:30:35Z - Skip Count1 - Skip Date2010-05-15T21:25:16Z - Artwork Count1 - Persistent ID2A428C77EDAEF49D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/01.%20DJ%20Isaac%20-%20Tear%20The%20Club%20Up.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2775 - - Track ID2775 - NameWe Speak Music - ArtistShowtek - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size5707672 - Total Time254798 - Track Number2 - Year2009 - Date Modified2010-05-29T18:31:22Z - Date Added2011-10-02T13:49:19Z - Bit Rate177 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count14 - Play Date3425285591 - Play Date UTC2012-07-16T16:13:11Z - Skip Count1 - Skip Date2012-05-23T19:01:22Z - Artwork Count1 - Persistent IDCD403DF1FA5B0B41 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/02.%20Showtek%20-%20We%20Speak%20Music.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2777 - - Track ID2777 - NameEssence Of Sound - ArtistD-Block & S-Te-Fan - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size7231673 - Total Time273397 - Track Number3 - Year2009 - Date Modified2010-05-29T18:31:22Z - Date Added2011-10-02T13:49:19Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count12 - Play Date3389378933 - Play Date UTC2011-05-28T02:08:53Z - Artwork Count1 - Persistent ID1469A67BD111039F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/03.%20D-Block%20&%20S-Te-Fan%20-%20Essence%20Of%20Sound.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2779 - - Track ID2779 - NameA feeling (Tunebox Remix) - ArtistThe Raiders - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size4834561 - Total Time178102 - Track Number4 - Year2009 - Date Modified2010-05-29T18:31:22Z - Date Added2011-10-02T13:49:19Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count12 - Play Date3424216662 - Play Date UTC2012-07-04T07:17:42Z - Skip Count2 - Skip Date2012-08-09T11:23:03Z - Artwork Count1 - Sort ArtistRaiders - Sort Namefeeling (Tunebox Remix) - Persistent ID07A93D45DF11DB88 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/04.%20The%20Raiders%20-%20A%20feeling%20(Tunebox%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2781 - - Track ID2781 - NameCrank - ArtistCoone vs D-Block S-TE-FAN - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size7362251 - Total Time279719 - Track Number5 - Year2009 - Date Modified2010-05-29T18:31:22Z - Date Added2011-10-02T13:49:19Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count10 - Play Date3382271221 - Play Date UTC2011-03-06T19:47:01Z - Skip Count1 - Skip Date2012-06-26T13:50:21Z - Artwork Count1 - Persistent ID8DAD5B18C7D5DE23 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/05.%20Coone%20vs%20D-Block%20S-TE-FAN%20-%20Crank.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2783 - - Track ID2783 - NameA Complex Situation - ArtistWildstylez - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size6818134 - Total Time253857 - Track Number6 - Year2009 - Date Modified2010-05-29T18:31:22Z - Date Added2011-10-02T13:49:20Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count10 - Play Date3382271474 - Play Date UTC2011-03-06T19:51:14Z - Artwork Count1 - Sort NameComplex Situation - Persistent IDF363D8C356E42BE7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/06.%20Wildstylez%20-%20A%20Complex%20Situation.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2785 - - Track ID2785 - NameLet'z Dance - ArtistD-Block & S-Te-Fan - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size6770894 - Total Time265743 - Track Number7 - Year2009 - Date Modified2010-05-29T18:31:22Z - Date Added2011-10-02T13:49:20Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count7 - Play Date3382271740 - Play Date UTC2011-03-06T19:55:40Z - Skip Count1 - Skip Date2012-05-10T12:42:33Z - Artwork Count1 - Persistent ID67AEC65583EA8045 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/07.%20D-Block%20&%20S-Te-Fan%20-%20Let'z%20Dance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2787 - - Track ID2787 - NameEmpire Of The Sun - ArtistNoisecontrollers & Toneshifterz - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size4739762 - Total Time187715 - Track Number8 - Year2009 - Date Modified2010-05-29T18:31:23Z - Date Added2011-10-02T13:49:20Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count8 - Play Date3382271927 - Play Date UTC2011-03-06T19:58:47Z - Skip Count1 - Skip Date2012-07-31T12:39:10Z - Artwork Count1 - Persistent ID231E6648B235137F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/08.%20Noisecontrollers%20&%20Toneshifterz%20-%20Empire%20Of%20The%20Sun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2789 - - Track ID2789 - NameDreamers Dreamz - ArtistD-Block & S-Te-Fan - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size6450749 - Total Time237453 - Track Number9 - Year2009 - Date Modified2010-05-29T18:31:23Z - Date Added2011-10-02T13:49:20Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count7 - Play Date3382272165 - Play Date UTC2011-03-06T20:02:45Z - Artwork Count1 - Persistent IDEBD46D11583DA3E0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/09.%20D-Block%20&%20S-Te-Fan%20-%20Dreamers%20Dreamz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2791 - - Track ID2791 - NameThe Noisemaker - ArtistZatox - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size3841940 - Total Time144091 - Track Number10 - Year2009 - Date Modified2010-05-29T18:31:23Z - Date Added2011-10-02T13:49:20Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count7 - Play Date3424208223 - Play Date UTC2012-07-04T04:57:03Z - Artwork Count1 - Sort NameNoisemaker - Persistent ID780209B7C9919E29 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/10.%20Zatox%20-%20The%20Noisemaker.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2793 - - Track ID2793 - NameNature Of Our Mind (Qlimax 2009 Anthem) - ArtistD-Block & S-te-Fan - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size10861382 - Total Time411742 - Track Number11 - Year2009 - Date Modified2010-05-29T18:31:23Z - Date Added2011-10-02T13:49:20Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count6 - Play Date3382272720 - Play Date UTC2011-03-06T20:12:00Z - Artwork Count1 - Persistent IDBE90800E828904B3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/11.%20D-Block%20&%20S-te-Fan%20-%20Nature%20Of%20Our%20Mind%20(Qlimax%202009%20Anthem).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2795 - - Track ID2795 - NameFreak - ArtistShowtek - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size6244470 - Total Time257488 - Track Number12 - Year2009 - Date Modified2010-05-29T18:31:23Z - Date Added2011-10-02T13:49:20Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count7 - Play Date3424301547 - Play Date UTC2012-07-05T06:52:27Z - Skip Count2 - Skip Date2011-06-20T21:31:25Z - Artwork Count1 - Persistent ID67C7F0C3B66BE2E7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/12.%20Showtek%20-%20Freak.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2797 - - Track ID2797 - NameSexbusters (Scope DJ Remix) - ArtistTuneboy - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size5563273 - Total Time201822 - Track Number13 - Year2009 - Date Modified2010-05-29T18:31:23Z - Date Added2011-10-02T13:49:20Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count6 - Play Date3382273180 - Play Date UTC2011-03-06T20:19:40Z - Artwork Count1 - Persistent ID84CD91FAC1B22BE8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/13.%20Tuneboy%20-%20Sexbusters%20(Scope%20DJ%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2799 - - Track ID2799 - NameThe Human Soul - ArtistD-Block & S-TE-FAN Ft. Wildstylez - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size6739999 - Total Time261015 - Track Number14 - Year2009 - Date Modified2010-05-29T18:31:23Z - Date Added2011-10-02T13:49:20Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count5 - Play Date3382273440 - Play Date UTC2011-03-06T20:24:00Z - Artwork Count1 - Sort NameHuman Soul - Persistent ID706FA8CB13CB6EAA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/14.%20D-Block%20&%20S-TE-FAN%20Ft.%20Wildstylez%20-%20The%20Human%20Soul.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2801 - - Track ID2801 - NameRobin's Revenge - ArtistDozer - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size3251747 - Total Time126902 - Track Number15 - Year2009 - Date Modified2010-05-29T18:31:24Z - Date Added2011-10-02T13:49:20Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count6 - Play Date3383665275 - Play Date UTC2011-03-22T23:01:15Z - Skip Count1 - Skip Date2012-08-09T11:26:38Z - Artwork Count1 - Persistent IDD31A8204F1F6342F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/15.%20Dozer%20-%20Robin's%20Revenge.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2803 - - Track ID2803 - NameAfter Mtf-er - ArtistPsyko Punkz - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size4860068 - Total Time203441 - Track Number16 - Year2009 - Date Modified2010-05-29T18:31:24Z - Date Added2011-10-02T13:49:21Z - Bit Rate189 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count4 - Play Date3382273770 - Play Date UTC2011-03-06T20:29:30Z - Skip Count1 - Skip Date2010-04-22T12:50:45Z - Artwork Count1 - Persistent IDDE031D95AC8BF0C3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/16.%20Psyko%20Punkz%20-%20After%20Mtf-er.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2805 - - Track ID2805 - NameSound Of Thunder - ArtistD-Block & S-Te-Fan Ft. MC Villian - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size7124946 - Total Time260675 - Track Number17 - Year2009 - Date Modified2010-05-29T18:31:24Z - Date Added2011-10-02T13:49:21Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count5 - Play Date3382274031 - Play Date UTC2011-03-06T20:33:51Z - Skip Count2 - Skip Date2012-05-10T21:29:44Z - Artwork Count1 - Persistent ID096D391E8BFFC98C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/17.%20D-Block%20&%20S-Te-Fan%20%20Ft.%20MC%20Villian%20-%20Sound%20Of%20Thunder.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2807 - - Track ID2807 - NameI've Lost You - ArtistJosh & Wesz Ft. Low-E - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size7665203 - Total Time274546 - Track Number18 - Year2009 - Date Modified2010-05-29T18:31:24Z - Date Added2011-10-02T13:49:21Z - Bit Rate221 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count5 - Play Date3382274305 - Play Date UTC2011-03-06T20:38:25Z - Skip Count3 - Skip Date2012-06-29T13:09:27Z - Artwork Count1 - Persistent IDF5ECB88DDE336744 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/18.%20Josh%20&%20Wesz%20Ft.%20Low-E%20-%20I've%20Lost%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2809 - - Track ID2809 - NameFire In Tha Place - ArtistDeepack Ft. Mc Lan - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size1792956 - Total Time70400 - Track Number19 - Year2009 - Date Modified2010-05-29T18:31:24Z - Date Added2011-10-02T13:49:21Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count5 - Play Date3382274375 - Play Date UTC2011-03-06T20:39:35Z - Skip Count1 - Skip Date2011-05-13T21:46:14Z - Artwork Count1 - Persistent ID9986B203A44B04A6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/19.%20Deepack%20Ft.%20Mc%20Lan%20-%20Fire%20In%20Tha%20Place.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2811 - - Track ID2811 - NameShiverz - ArtistD-Block & S-TE-FAN Ft. High Voltage - Album ArtistVA - AlbumQlimax 2009: The Nature Of Our Mind - GenreHard trance - KindMPEG audio file - Size7561999 - Total Time300408 - Track Number20 - Year2009 - Date Modified2010-05-29T18:31:25Z - Date Added2011-10-02T13:49:21Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count4 - Play Date3382270008 - Play Date UTC2011-03-06T19:26:48Z - Skip Count1 - Skip Date2012-07-16T13:59:38Z - Artwork Count1 - Persistent IDC77937278BC6F6EE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/VA%20-%20Qlimax%20The%20Nature%20Of%20Our%20Mind%20(2009)/20.%20D-Block%20&%20S-TE-FAN%20Ft.%20High%20Voltage%20-%20Shiverz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2813 - - Track ID2813 - NameNever Alone (Vocal Mix) - ArtistDream Dance Alliance - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size4984002 - Total Time190902 - Disc Number1 - Disc Count2 - Track Number1 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:21Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3350742513 - Play Date UTC2010-03-06T21:48:33Z - Artwork Count1 - Persistent ID1980CB3F5B0637BD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/01.%20Dream%20Dance%20Alliance%20-%20Never%20Alone%20(Vocal%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2815 - - Track ID2815 - NameLove Sees No Colour (Rocco & Baa-T Remix) - ArtistBen Sander - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size3539971 - Total Time126720 - Disc Number1 - Disc Count2 - Track Number2 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:21Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3350742640 - Play Date UTC2010-03-06T21:50:40Z - Artwork Count1 - Persistent ID8B6278E1C9762C25 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/02.%20Ben%20Sander%20-%20Love%20Sees%20No%20Colour%20(Rocco%20&%20Baa-T%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2817 - - Track ID2817 - NamePeace (Instrumental Mix) - ArtistPulsedriver - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size3385263 - Total Time126589 - Disc Number1 - Disc Count2 - Track Number3 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:21Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3350742766 - Play Date UTC2010-03-06T21:52:46Z - Skip Count2 - Skip Date2012-05-17T13:21:55Z - Artwork Count1 - Persistent ID76C9CA2934E233B9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/03.%20Pulsedriver%20-%20Peace%20(Instrumental%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2819 - - Track ID2819 - NameGive It To Me (Club Mix) - ArtistMegara vs. DJ Lee - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size4991247 - Total Time178938 - Disc Number1 - Disc Count2 - Track Number4 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:21Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count4 - Skip Date2012-08-08T23:57:59Z - Artwork Count1 - Persistent ID73533191D4EB1D46 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/04.%20Megara%20vs.%20DJ%20Lee%20-%20Give%20It%20To%20Me%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2821 - - Track ID2821 - NameHamburg Rulez '09 - ArtistDJ Dean meets Barbarez - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size4290551 - Total Time160679 - Disc Number1 - Disc Count2 - Track Number5 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:21Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3354336707 - Play Date UTC2010-04-17T12:11:47Z - Skip Count1 - Skip Date2010-05-21T12:02:56Z - Artwork Count1 - Persistent ID14F81F54AEC5B0DE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/05.%20DJ%20Dean%20meets%20Barbarez%20-%20Hamburg%20Rulez%20'09.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2823 - - Track ID2823 - NameLoosing Myself (Backslash vs. Mikkas Remix) - ArtistKlischee - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size7183980 - Total Time274311 - Disc Number1 - Disc Count2 - Track Number6 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-11T21:28:18Z - Artwork Count1 - Persistent IDC9EF9526A180E1BB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/06.%20Klischee%20-%20Loosing%20Myself%20(Backslash%20vs.%20Mikkas%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2825 - - Track ID2825 - NameChildren Of Paradise 2k9 (DDA Remix) - ArtistAndy Jay Powell - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size4989748 - Total Time188969 - Disc Number1 - Disc Count2 - Track Number7 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count3 - Skip Date2012-06-13T13:23:16Z - Artwork Count1 - Persistent IDF3EB025A1F42A812 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/07.%20Andy%20Jay%20Powell%20-%20Children%20Of%20Paradise%202k9%20(DDA%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2827 - - Track ID2827 - NameDoping (Megara vs. DJ Lee Remix) - ArtistMr. Lee - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size4969889 - Total Time188786 - Disc Number1 - Disc Count2 - Track Number8 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2010-05-21T12:03:06Z - Artwork Count1 - Persistent ID34FB10E1217C830D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/08.%20Mr.%20Lee%20-%20Doping%20(Megara%20vs.%20DJ%20Lee%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2829 - - Track ID2829 - NameBecause Of You (Original Mix) - ArtistDJ Fait - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size4237377 - Total Time161541 - Disc Number1 - Disc Count2 - Track Number9 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-07-16T13:30:06Z - Artwork Count1 - Persistent IDAA75DB4951909AE5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/09.%20DJ%20Fait%20-%20Because%20Of%20You%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2831 - - Track ID2831 - NameRock The Bass (Bootleggerz Remix) - ArtistDJ Roxx - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size3302577 - Total Time137351 - Disc Number1 - Disc Count2 - Track Number10 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate189 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-06T12:37:49Z - Artwork Count1 - Persistent ID71031324AFD9394F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/10.%20DJ%20Roxx%20-%20Rock%20The%20Bass%20(Bootleggerz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2833 - - Track ID2833 - NameRaise Your Handz (Club Mix) - ArtistDedicate - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size3689531 - Total Time148218 - Disc Number1 - Disc Count2 - Track Number11 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424321304 - Play Date UTC2012-07-05T12:21:44Z - Skip Count1 - Skip Date2012-07-30T13:22:28Z - Artwork Count1 - Persistent IDCAD0758EBBF5EB25 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/11.%20Dedicate%20-%20Raise%20Your%20Handz%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2835 - - Track ID2835 - NameSpirit (Megara vs. DJ Lee Remix) - ArtistChemistry - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size5296515 - Total Time198661 - Disc Number1 - Disc Count2 - Track Number12 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3353744350 - Play Date UTC2010-04-10T15:39:10Z - Artwork Count1 - Persistent ID315ED3AD611C3560 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/12.%20Chemistry%20-%20Spirit%20(Megara%20vs.%20DJ%20Lee%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2837 - - Track ID2837 - NameIn Your Shirt 2009 (RainDropz! Alternative Mix) - ArtistSavon - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size2899228 - Total Time113371 - Disc Number1 - Disc Count2 - Track Number13 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-07-16T13:38:08Z - Artwork Count1 - Persistent ID7C3DD099D10ADD91 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/13.%20Savon%20-%20In%20Your%20Shirt%202009%20(RainDropz!%20Alternative%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2839 - - Track ID2839 - NameSpring Break (Extended Version) - ArtistJeckyl & Hyde - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size5716853 - Total Time213106 - Disc Number1 - Disc Count2 - Track Number14 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-11T21:43:30Z - Artwork Count1 - Persistent IDA35BE3F554455C9D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/14.%20Jeckyl%20&%20Hyde%20-%20Spring%20Break%20(Extended%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2841 - - Track ID2841 - NameFeelings Of My Heart (Giorno's Jump Dub Mix) - ArtistEmvace vs. Tierra - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size2724242 - Total Time101955 - Disc Number1 - Disc Count2 - Track Number15 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-08-10T11:35:44Z - Artwork Count1 - Persistent IDEF34090CC77CA490 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/15.%20Emvace%20vs.%20Tierra%20-%20Feelings%20Of%20My%20Heart%20(Giorno's%20Jump%20Dub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2843 - - Track ID2843 - NameParty (Ti-Mo Dub Remix) - ArtistHansebanger - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size3586755 - Total Time135000 - Disc Number1 - Disc Count2 - Track Number16 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count4 - Play Date3427205769 - Play Date UTC2012-08-07T21:36:09Z - Artwork Count1 - Persistent ID07044B0AD9375E21 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/16.%20Hansebanger%20-%20Party%20(Ti-Mo%20Dub%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2845 - - Track ID2845 - NameDon't Stop The Beat - ArtistAddicted Craze vs. Tierra - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size6978709 - Total Time266187 - Disc Number1 - Disc Count2 - Track Number17 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:22Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-07-30T13:22:19Z - Artwork Count1 - Persistent ID670FCBFAB30B2136 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/17.%20Addicted%20Craze%20vs.%20Tierra%20-%20Don't%20Stop%20The%20Beat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2847 - - Track ID2847 - NameOverdrive (Original Club Mix) - ArtistTim Weise - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size4898550 - Total Time183066 - Disc Number1 - Disc Count2 - Track Number18 - Year2009 - Date Modified2012-08-18T02:11:16Z - Date Added2011-10-02T13:49:23Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1F97EC7F7C6D6CB5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/18.%20Tim%20Weise%20-%20Overdrive%20(Original%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2849 - - Track ID2849 - NameLove in Heaven (Club Mix) - ArtistDon Cybex - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size7555781 - Total Time292780 - Disc Number1 - Disc Count2 - Track Number19 - Year2009 - Date Modified2012-08-18T02:11:17Z - Date Added2011-10-02T13:49:23Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2010-05-21T11:54:33Z - Artwork Count1 - Persistent ID928B7842B11987E7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/19.%20Don%20Cybex%20-%20Love%20in%20Heaven%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2851 - - Track ID2851 - NameDon't Leave Me Alone (Sunbase Inc. Remix) - ArtistJeany Kiss & Van Snyder - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size6125709 - Total Time229590 - Disc Number1 - Disc Count2 - Track Number20 - Year2009 - Date Modified2012-08-18T02:11:17Z - Date Added2011-10-02T13:49:23Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3350831972 - Play Date UTC2010-03-07T22:39:32Z - Artwork Count1 - Persistent ID7C51EB5A48BEFEF2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/20.%20Jeany%20Kiss%20&%20Van%20Snyder%20-%20Don't%20Leave%20Me%20Alone%20(Sunbase%20Inc.%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2853 - - Track ID2853 - NameNow That I Know (Club Mix) - ArtistDJ X Face - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size6834873 - Total Time261198 - Disc Number1 - Disc Count2 - Track Number21 - Year2009 - Date Modified2012-08-18T02:11:17Z - Date Added2011-10-02T13:49:23Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-07-03T20:49:39Z - Artwork Count1 - Persistent ID4649454891BC6F3D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/21.%20DJ%20X%20Face%20-%20Now%20That%20I%20Know%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2855 - - Track ID2855 - NameIII (Original Mix) - ArtistNolita - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size7544320 - Total Time266187 - Disc Number1 - Disc Count2 - Track Number22 - Year2009 - Date Modified2012-08-18T02:11:22Z - Date Added2011-10-02T13:49:23Z - Bit Rate225 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-06-27T15:05:42Z - Artwork Count1 - Persistent ID4FD77D2FE2991C9E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/22.%20Nolita%20-%20III%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2857 - - Track ID2857 - NameParanoia - ArtistImpegment Syndrom - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size6382433 - Total Time226272 - Disc Number1 - Disc Count2 - Track Number23 - Year2009 - Date Modified2012-08-18T02:11:22Z - Date Added2011-10-02T13:49:23Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-04-24T13:12:36Z - Artwork Count1 - Persistent IDD5A42349D0DE4E5F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/23.%20Impegment%20Syndrom%20-%20Paranoia.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2859 - - Track ID2859 - NameHow Can I Save You (High Energy Mix) - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size4572933 - Total Time169717 - Disc Number1 - Disc Count2 - Track Number24 - Year2009 - Date Modified2012-08-18T02:11:22Z - Date Added2011-10-02T13:49:23Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1C118E1DB6265012 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/24.%20Accuface%20-%20How%20Can%20I%20Save%20You%20(High%20Energy%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2861 - - Track ID2861 - NamePleasure - ArtistSilver Liquid - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD1 - GenreHard Trance - KindMPEG audio file - Size5846549 - Total Time233168 - Disc Number1 - Disc Count2 - Track Number25 - Year2009 - Date Modified2012-08-18T02:11:22Z - Date Added2011-10-02T13:49:23Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA4697320927D73F6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD1/25.%20Silver%20Liquid%20-%20Pleasure.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2863 - - Track ID2863 - NameDas Geht Ab (Wir Feiern Die Ganze Nacht)(Eric Chase... - ArtistFrauenarzt & Manny Marc - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size7570675 - Total Time278073 - Disc Number2 - Disc Count2 - Track Number26 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:23Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3422252290 - Play Date UTC2012-06-11T13:38:10Z - Artwork Count1 - Persistent IDD88A48E18D3E4AC0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/26.%20Frauenarzt%20&%20Manny%20Marc%20-%20Das%20Geht%20Ab%20(Wir%20Feiern%20Die%20Ganze%20Nacht)(Eric%20Chase....mp3 - File Folder Count-1 - Library Folder Count-1 - - 2865 - - Track ID2865 - NameFlash 2.9 (Dave Darrell Mix) - ArtistHi-Fi vs. Dave Darell - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size3076994 - Total Time127817 - Disc Number2 - Disc Count2 - Track Number27 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:23Z - Bit Rate189 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424339767 - Play Date UTC2012-07-05T17:29:27Z - Skip Count1 - Skip Date2012-06-11T21:43:37Z - Artwork Count1 - Persistent IDA0BF50D432376E48 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/27.%20Hi-Fi%20vs.%20Dave%20Darell%20-%20Flash%202.9%20(Dave%20Darrell%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2867 - - Track ID2867 - NameTake Me Away (Dave Darrell Remix) - Artist4 Strings - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size3646833 - Total Time140982 - Disc Number2 - Disc Count2 - Track Number28 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:23Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4A0CCAB86498F166 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/28.%204%20Strings%20-%20Take%20Me%20Away%20(Dave%20Darrell%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2869 - - Track ID2869 - NameLicht (Michael Mind Remix) - ArtistRockstroh - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size5406397 - Total Time217103 - Disc Number2 - Disc Count2 - Track Number29 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:23Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6AD7E08292D4FE39 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/29.%20Rockstroh%20-%20Licht%20(Michael%20Mind%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2871 - - Track ID2871 - NameFor An Angel 2009 (Spencer & Hill Remix) - ArtistPaul van Dyk - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size3749747 - Total Time155924 - Disc Number2 - Disc Count2 - Track Number30 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:23Z - Bit Rate189 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-08-09T22:39:28Z - Artwork Count1 - Persistent IDFEF7109E437E5887 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/30.%20Paul%20van%20Dyk%20-%20For%20An%20Angel%202009%20(Spencer%20&%20Hill%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2873 - - Track ID2873 - NameThen I Remember (Club Mix) - ArtistSam Walkertone feat. Francis Metthew - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size3646852 - Total Time133537 - Disc Number2 - Disc Count2 - Track Number31 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:24Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID975339B964805668 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/31.%20Sam%20Walkertone%20feat.%20Francis%20Metthew%20-%20Then%20I%20Remember%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2875 - - Track ID2875 - NameKiller (MDV Mix) - ArtistFM Audio - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size3152706 - Total Time121678 - Disc Number2 - Disc Count2 - Track Number32 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:24Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424245923 - Play Date UTC2012-07-04T15:25:23Z - Skip Count1 - Skip Date2012-07-29T20:40:02Z - Artwork Count1 - Persistent ID2272799091CC5600 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/32.%20FM%20Audio%20-%20Killer%20(MDV%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2877 - - Track ID2877 - NameScared Of Me (Extended Mix) - ArtistFedde Le Grand feat. Mitch Crown - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size5400012 - Total Time205400 - Disc Number2 - Disc Count2 - Track Number33 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:24Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424206764 - Play Date UTC2012-07-04T04:32:44Z - Artwork Count1 - Persistent ID75B867B1D565D63E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/33.%20Fedde%20Le%20Grand%20feat.%20Mitch%20Crown%20-%20Scared%20Of%20Me%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2879 - - Track ID2879 - NameStill Alive (Jay Frog's Dub Nation Mix) - ArtistBalla Nation - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size2344359 - Total Time92081 - Disc Number2 - Disc Count2 - Track Number34 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:24Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD5FD5CBCDEDC2E1B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/34.%20Balla%20Nation%20-%20Still%20Alive%20(Jay%20Frog's%20Dub%20Nation%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2881 - - Track ID2881 - NameWhat Ya Got 4 Me (Yvan Prog Trance Mix) - ArtistSignum - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size4602786 - Total Time166269 - Disc Number2 - Disc Count2 - Track Number35 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:24Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8FC3655110D29AD3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/35.%20Signum%20-%20What%20Ya%20Got%204%20Me%20(Yvan%20Prog%20Trance%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2883 - - Track ID2883 - NameFace To Face (Martin Roth Remix) - ArtistArmin Van Buuren - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size3985633 - Total Time142445 - Disc Number2 - Disc Count2 - Track Number36 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:24Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-07-29T22:04:16Z - Artwork Count1 - Persistent IDF0856A875D4EBD98 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/36.%20Armin%20Van%20Buuren%20-%20Face%20To%20Face%20(Martin%20Roth%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2885 - - Track ID2885 - NameWe Belong (Bingo Players Remix) - ArtistFerry Corsten - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size3670081 - Total Time125413 - Disc Number2 - Disc Count2 - Track Number37 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:24Z - Bit Rate230 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3428037826 - Play Date UTC2012-08-17T12:43:46Z - Artwork Count1 - Persistent IDE9519E8831C3C504 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/37.%20Ferry%20Corsten%20-%20We%20Belong%20(Bingo%20Players%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2887 - - Track ID2887 - NameInside Me (SPRfresh Remix) - ArtistMarcel Woods - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size4693514 - Total Time166974 - Disc Number2 - Disc Count2 - Track Number38 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:24Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2010-09-07T22:08:41Z - Artwork Count1 - Persistent ID3FA5876D5E075082 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/38.%20Marcel%20Woods%20-%20Inside%20Me%20(SPRfresh%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2889 - - Track ID2889 - NamePressure (Original Dub Mix) - ArtistJam X, Beam & Vace - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size5705022 - Total Time206576 - Disc Number2 - Disc Count2 - Track Number39 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:24Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID889EA1C0E94035D5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/39.%20Jam%20X,%20Beam%20&%20Vace%20-%20Pressure%20(Original%20Dub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2891 - - Track ID2891 - NameLove's Gonna Get You (Karami & Lewis Remix) - ArtistMichael Mind - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size2663361 - Total Time106213 - Disc Number2 - Disc Count2 - Track Number40 - Year2009 - Date Modified2012-08-18T02:11:28Z - Date Added2011-10-02T13:49:24Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5C2D99A24AFEC938 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/40.%20Michael%20Mind%20-%20Love's%20Gonna%20Get%20You%20(Karami%20&%20Lewis%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2893 - - Track ID2893 - NameHold On Tonight (Dabruck & Klein Remix) - ArtistLambda - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size3851868 - Total Time158275 - Disc Number2 - Disc Count2 - Track Number41 - Year2009 - Date Modified2012-08-18T02:11:34Z - Date Added2011-10-02T13:49:24Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDD0EA0B2C1CAEC69 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/41.%20Lambda%20-%20Hold%20On%20Tonight%20(Dabruck%20&%20Klein%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2895 - - Track ID2895 - NameNo Regrets (Chriss Ortega's Purple Mix) - ArtistAlex M.O.R.P.H. - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size3304393 - Total Time131840 - Disc Number2 - Disc Count2 - Track Number42 - Year2009 - Date Modified2012-08-18T02:11:34Z - Date Added2011-10-02T13:49:24Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-07-30T13:21:37Z - Artwork Count1 - Persistent IDEA3EBEA1092A2B42 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/42.%20Alex%20M.O.R.P.H.%20-%20No%20Regrets%20(Chriss%20Ortega's%20Purple%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2897 - - Track ID2897 - NameInspirando (Vocal Mix) - ArtistTreadstone - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size7782721 - Total Time300721 - Disc Number2 - Disc Count2 - Track Number43 - Year2009 - Date Modified2012-08-18T02:11:34Z - Date Added2011-10-02T13:49:24Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1875B29E9202307A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/43.%20Treadstone%20-%20Inspirando%20(Vocal%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2899 - - Track ID2899 - NameFace Value (Extended Mix) - ArtistJochen Miller - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size7299421 - Total Time279797 - Disc Number2 - Disc Count2 - Track Number44 - Year2009 - Date Modified2012-08-18T02:11:34Z - Date Added2011-10-02T13:49:24Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-11T21:28:08Z - Artwork Count1 - Persistent ID47AC5975DAAD98E6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/44.%20Jochen%20Miller%20-%20Face%20Value%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2901 - - Track ID2901 - NameE-Motion (Original Mix) - ArtistDavid Forbes & William Daniel - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size2801595 - Total Time97149 - Disc Number2 - Disc Count2 - Track Number45 - Year2009 - Date Modified2012-08-18T02:11:34Z - Date Added2011-10-02T13:49:24Z - Bit Rate226 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6FE4AA679F4E1319 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/45.%20David%20Forbes%20&%20William%20Daniel%20-%20E-Motion%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2903 - - Track ID2903 - NameShadows Of The Past - ArtistRalph Novell - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size6674342 - Total Time242520 - Disc Number2 - Disc Count2 - Track Number46 - Year2009 - Date Modified2012-08-18T02:11:34Z - Date Added2011-10-02T13:49:24Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-05-15T13:37:20Z - Artwork Count1 - Persistent ID64EDB7F95584B9B1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/46.%20Ralph%20Novell%20-%20Shadows%20Of%20The%20Past.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2905 - - Track ID2905 - NameShine On Me (Ayana Vocal Mix) - ArtistZirenz vs. Saint Rush - Album ArtistVA - AlbumTunnel Trance Force Vol. 50 / CD2 - GenreHard Trance - KindMPEG audio file - Size11984018 - Total Time418403 - Disc Number2 - Disc Count2 - Track Number47 - Year2009 - Date Modified2012-08-18T02:11:34Z - Date Added2011-10-02T13:49:24Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3422028859 - Play Date UTC2012-06-08T23:34:19Z - Artwork Count1 - Persistent ID82140D987CA350C6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2050%20(2009)/CD2/47.%20Zirenz%20vs.%20Saint%20Rush%20-%20Shine%20On%20Me%20(Ayana%20Vocal%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2907 - - Track ID2907 - NameSan Francisco (Ti-Mo Rmx) - ArtistPH Electro - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size4752960 - Total Time186932 - Track Number1 - Year2010 - Date Modified2010-05-29T18:23:21Z - Date Added2011-10-02T13:49:24Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3360502474 - Play Date UTC2010-06-27T20:54:34Z - Artwork Count1 - Persistent IDCE70F3B12EC31F41 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/101.%20PH%20Electro%20-%20San%20Francisco%20(Ti-Mo%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2909 - - Track ID2909 - NameSexy Bitch (Original Mix) - ArtistRivendell ft Cruncher - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size4352072 - Total Time216372 - Track Number2 - Year2010 - Date Modified2010-05-29T18:23:21Z - Date Added2011-10-02T13:49:25Z - Bit Rate159 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count3 - Play Date3424264253 - Play Date UTC2012-07-04T20:30:53Z - Artwork Count1 - Persistent ID386F6DEDE062920A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/102.%20Rivendell%20ft%20Cruncher%20-%20Sexy%20Bitch%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2911 - - Track ID2911 - NameCome On (Rocco & Bass-T Remix) - ArtistJavi Mula - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size5550575 - Total Time205949 - Track Number3 - Year2010 - Date Modified2010-05-29T18:23:21Z - Date Added2011-10-02T13:49:25Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE31877429828E2AF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/103.%20Javi%20Mula%20-%20Come%20On%20(Rocco%20&%20Bass-T%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2913 - - Track ID2913 - NameTi Sento (Extended Mix) - ArtistScooter - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size5283589 - Total Time207908 - Track Number4 - Year2010 - Date Modified2010-05-29T18:23:21Z - Date Added2011-10-02T13:49:25Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6EB489FDD6322EBD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/104.%20Scooter%20-%20Ti%20Sento%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2915 - - Track ID2915 - NameBattlefield (Ti-Mo Rmx) - ArtistDe-Grees ft Ivory - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size3606743 - Total Time148767 - Track Number5 - Year2010 - Date Modified2010-05-29T18:23:22Z - Date Added2011-10-02T13:49:25Z - Bit Rate191 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3425284785 - Play Date UTC2012-07-16T15:59:45Z - Skip Count3 - Skip Date2012-08-10T11:35:31Z - Artwork Count1 - Persistent ID21715A0C52276F1C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/105.%20De-Grees%20ft%20Ivory%20-%20Battlefield%20(Ti-Mo%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2917 - - Track ID2917 - NameFuck With The DJ (Ti-Mo Remix) - ArtistHubschek & Dubschek - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size3934463 - Total Time152137 - Track Number6 - Year2010 - Date Modified2010-05-29T18:23:22Z - Date Added2011-10-02T13:49:25Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID98B2F9D9ECF3494F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/106.%20Hubschek%20&%20Dubschek%20-%20Fuck%20With%20The%20DJ%20(Ti-Mo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2919 - - Track ID2919 - NamePlay With Me (Blue Nature Instrumental Mix) - ArtistBlue Nature vs DK - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size3517358 - Total Time128339 - Track Number7 - Year2010 - Date Modified2010-05-29T18:23:22Z - Date Added2011-10-02T13:49:25Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424241027 - Play Date UTC2012-07-04T14:03:47Z - Skip Count1 - Skip Date2012-06-29T12:57:27Z - Artwork Count1 - Persistent IDE45D8C083A1A356B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/107.%20Blue%20Nature%20vs%20DK%20-%20Play%20With%20Me%20(Blue%20Nature%20Instrumental%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2921 - - Track ID2921 - NameWhat Can I Say (Martial Hard Remix) - ArtistDragon & Hunter - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size4413523 - Total Time163213 - Track Number8 - Year2010 - Date Modified2010-05-29T18:23:23Z - Date Added2011-10-02T13:49:25Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5A7D898A12F3E765 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/108.%20Dragon%20&%20Hunter%20-%20What%20Can%20I%20Say%20(Martial%20Hard%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2923 - - Track ID2923 - NameRock This Party (DJ Zealot Remix) - ArtistKlubfiller & Viration - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size6316595 - Total Time233482 - Track Number9 - Year2010 - Date Modified2010-05-29T18:23:23Z - Date Added2011-10-02T13:49:25Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-08T22:08:36Z - Artwork Count1 - Persistent ID2BCF251A66ACC85C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/109.%20Klubfiller%20&%20Viration%20-%20Rock%20This%20Party%20(DJ%20Zealot%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2925 - - Track ID2925 - NameClose Your Eyes (Original Club Mix) - ArtistBig Room Society - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size6133669 - Total Time258351 - Track Number10 - Year2010 - Date Modified2010-05-29T18:23:23Z - Date Added2011-10-02T13:49:25Z - Bit Rate188 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8AD0B489DDA03101 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/110.%20Big%20Room%20Society%20-%20Close%20Your%20Eyes%20(Original%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2927 - - Track ID2927 - NamePlease Don't Go (Bootleg Mix) - ArtistAddicted Craze vs Tierra - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size4387107 - Total Time170031 - Track Number11 - Year2010 - Date Modified2010-05-29T18:23:23Z - Date Added2011-10-02T13:49:25Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID68E92446CCF77A17 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/111.%20Addicted%20Craze%20vs%20Tierra%20-%20Please%20Don't%20Go%20(Bootleg%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2929 - - Track ID2929 - NameGood Time (Overdrive Divisions Remix) - ArtistCooler & Alex Long - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size3784001 - Total Time150047 - Track Number12 - Year2010 - Date Modified2010-05-29T18:23:23Z - Date Added2011-10-02T13:49:25Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF4A2ED1FB1BC78A0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/112.%20Cooler%20&%20Alex%20Long%20-%20Good%20Time%20(Overdrive%20Divisions%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2931 - - Track ID2931 - NameDeeper (140 BPM Mix) - ArtistRock N Roller - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size2584072 - Total Time106684 - Track Number13 - Year2010 - Date Modified2010-05-29T18:23:23Z - Date Added2011-10-02T13:49:25Z - Bit Rate190 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424333558 - Play Date UTC2012-07-05T15:45:58Z - Artwork Count1 - Persistent IDA8BF4A69D9030777 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/113.%20Rock%20N%20Roller%20-%20Deeper%20(140%20BPM%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2933 - - Track ID2933 - NameF**k That Body - ArtistBunton Beats - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size3727302 - Total Time156447 - Track Number14 - Year2010 - Date Modified2010-05-29T18:23:24Z - Date Added2011-10-02T13:49:25Z - Bit Rate188 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE2C51229C77A1579 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/114.%20Bunton%20Beats%20-%20F--k%20That%20Body.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2935 - - Track ID2935 - NameColour Of My Dreams (Megastylez Club Mix) - ArtistSequenza meets Megastylez - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size4215357 - Total Time181942 - Track Number15 - Year2010 - Date Modified2010-05-29T18:23:24Z - Date Added2011-10-02T13:49:25Z - Bit Rate183 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-05-30T21:44:14Z - Artwork Count1 - Persistent IDE42E651517FF0082 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/115.%20Sequenza%20meets%20Megastylez%20-%20Colour%20Of%20My%20Dreams%20(Megastylez%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2937 - - Track ID2937 - NameThe Same (Club Mix) - ArtistDedicate - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size5790363 - Total Time249077 - Track Number16 - Year2010 - Date Modified2010-05-29T18:23:24Z - Date Added2011-10-02T13:49:25Z - Bit Rate184 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameSame (Club Mix) - Persistent IDA7AE248F73C01D61 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/116.%20Dedicate%20-%20The%20Same%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2939 - - Track ID2939 - NameReviens Moi (Original Mix) - ArtistStarbreeze 94 ft Mira - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size6355213 - Total Time240979 - Track Number17 - Year2010 - Date Modified2010-05-29T18:23:24Z - Date Added2011-10-02T13:49:25Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-28T16:44:33Z - Artwork Count1 - Persistent ID08F48FEF5A0F1CF4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/117.%20Starbreeze%2094%20ft%20Mira%20-%20Reviens%20Moi%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2941 - - Track ID2941 - NameLiving Without Your Love 09 (Dancetronix Remix) - ArtistMike Nero vs Interactive - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size3557108 - Total Time133146 - Track Number18 - Year2010 - Date Modified2010-05-29T18:23:24Z - Date Added2011-10-02T13:49:25Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424321156 - Play Date UTC2012-07-05T12:19:16Z - Skip Count1 - Skip Date2012-07-26T13:29:13Z - Artwork Count1 - Persistent IDACBB653374563352 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/118.%20Mike%20Nero%20vs%20Interactive%20-%20Living%20Without%20Your%20Love%2009%20(Dancetronix%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2943 - - Track ID2943 - NameRoad To Success (Cansis Remix) - ArtistOverdrive Division - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size3014218 - Total Time111882 - Track Number19 - Year2010 - Date Modified2010-05-29T18:23:24Z - Date Added2011-10-02T13:49:25Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID344786A6DF19A189 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/119.%20Overdrive%20Division%20-%20Road%20To%20Success%20(Cansis%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2945 - - Track ID2945 - NameThis Party - ArtistMichel Moriny - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size4621252 - Total Time218357 - Track Number20 - Year2010 - Date Modified2010-05-29T18:23:25Z - Date Added2011-10-02T13:49:26Z - Bit Rate167 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-06-01T15:02:08Z - Artwork Count1 - Persistent IDE014A982254ABDB1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/120.%20Michel%20Moriny%20-%20This%20Party.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2947 - - Track ID2947 - NameI Feel You (Jenny Kiss Remix) - ArtistDancetronic - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size4381156 - Total Time183327 - Track Number21 - Year2010 - Date Modified2010-05-29T18:23:25Z - Date Added2011-10-02T13:49:26Z - Bit Rate189 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-11T21:48:16Z - Artwork Count1 - Persistent ID2A09830B43B352BF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/121.%20Dancetronic%20-%20I%20Feel%20You%20(Jenny%20Kiss%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2949 - - Track ID2949 - NameThe Master's Gaze - ArtistHardface - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size4636391 - Total Time176718 - Track Number22 - Year2010 - Date Modified2010-05-29T18:23:25Z - Date Added2011-10-02T13:49:26Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424202410 - Play Date UTC2012-07-04T03:20:10Z - Artwork Count1 - Sort NameMaster's Gaze - Persistent ID01F20B15B8DE05FD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/122.%20Hardface%20-%20The%20Master's%20Gaze.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2951 - - Track ID2951 - NameRestart - ArtistHibeatz - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size5564558 - Total Time269949 - Track Number23 - Year2010 - Date Modified2010-05-29T18:23:25Z - Date Added2011-10-02T13:49:26Z - Bit Rate163 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424224050 - Play Date UTC2012-07-04T09:20:50Z - Artwork Count1 - Persistent ID6A4010273AA061D5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/123.%20Hibeatz%20-%20Restart.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2953 - - Track ID2953 - NameWahnsinn - ArtistDJ Mikesh - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size6028922 - Total Time236251 - Track Number24 - Year2010 - Date Modified2010-05-29T18:23:25Z - Date Added2011-10-02T13:49:26Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-08-17T20:31:10Z - Artwork Count1 - Persistent ID9CF29B5819800FD9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/124.%20DJ%20Mikesh%20-%20Wahnsinn.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2955 - - Track ID2955 - NameGive A Sign - ArtistVan Heeken & Van Der Vat - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD1 - GenreHard Trance - KindMPEG audio file - Size6303941 - Total Time252630 - Track Number25 - Year2010 - Date Modified2010-05-29T18:23:25Z - Date Added2011-10-02T13:49:26Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID19C46224754CCBC7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/125.%20Van%20Heeken%20&%20Van%20Der%20Vat%20-%20Give%20A%20Sign.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2957 - - Track ID2957 - NameRespect - ArtistHardstyle Masterz & Max Enforcer - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size8506835 - Total Time311405 - Track Number26 - Year2010 - Date Modified2010-05-29T18:23:43Z - Date Added2011-10-02T13:49:26Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count10 - Play Date3426428155 - Play Date UTC2012-07-29T21:35:55Z - Skip Count1 - Skip Date2010-03-08T22:01:34Z - Artwork Count1 - Persistent ID773189840AE43BB6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/201.%20Hardstyle%20Masterz%20&%20Max%20Enforcer%20-%20Respect.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2959 - - Track ID2959 - NameSamara (Original Mix) - ArtistNoisecontrollers - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size4689447 - Total Time178024 - Track Number27 - Year2010 - Date Modified2010-05-29T18:23:43Z - Date Added2011-10-02T13:49:26Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3360502515 - Play Date UTC2010-06-27T20:55:15Z - Skip Count5 - Skip Date2012-08-07T22:00:25Z - Artwork Count1 - Persistent IDB5D6C614D4DCCA30 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/202.%20Noisecontrollers%20-%20Samara%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2961 - - Track ID2961 - NameSpin That Shit (Scope DJ Remix) - ArtistFrontliner & Wildstylez - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size6539077 - Total Time251245 - Track Number28 - Year2010 - Date Modified2010-05-29T18:23:44Z - Date Added2011-10-02T13:49:26Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count11 - Play Date3426598897 - Play Date UTC2012-07-31T21:01:37Z - Skip Count1 - Skip Date2012-05-23T13:49:04Z - Artwork Count1 - Persistent ID0599CB797D79B941 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/203.%20Frontliner%20&%20Wildstylez%20-%20Spin%20That%20Shit%20(Scope%20DJ%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2963 - - Track ID2963 - NameLet'z Dance - ArtistD-Block & S-Te-Fan - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size5546347 - Total Time213995 - Track Number29 - Year2010 - Date Modified2010-05-29T18:23:44Z - Date Added2011-10-02T13:49:26Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count8 - Play Date3424298637 - Play Date UTC2012-07-05T06:03:57Z - Artwork Count1 - Persistent IDBB9434DAA5498BB3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/204.%20D-Block%20&%20S-Te-Fan%20-%20Let'z%20Dance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2965 - - Track ID2965 - NameNever Say Never - ArtistGostasa - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size5596929 - Total Time198844 - Track Number30 - Year2010 - Date Modified2010-05-29T18:23:44Z - Date Added2011-10-02T13:49:26Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count6 - Play Date3366812390 - Play Date UTC2010-09-08T21:39:50Z - Artwork Count1 - Persistent ID3EF5FE7ADFE3AE54 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/205.%20Gostasa%20-%20Never%20Say%20Never.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2967 - - Track ID2967 - NameOne Bananaz - ArtistFrontliner & Ruthless - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size6643902 - Total Time252839 - Track Number31 - Year2010 - Date Modified2010-05-29T18:23:44Z - Date Added2011-10-02T13:49:26Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count3 - Play Date3351442510 - Play Date UTC2010-03-15T00:15:10Z - Skip Count1 - Skip Date2010-09-08T21:39:56Z - Artwork Count1 - Persistent ID0E0DCCAD9111731E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/206.%20Frontliner%20&%20Ruthless%20-%20One%20Bananaz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2969 - - Track ID2969 - NameI Hate U - ArtistZatox - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size5283101 - Total Time195186 - Track Number32 - Year2010 - Date Modified2010-05-29T18:23:44Z - Date Added2011-10-02T13:49:26Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count3 - Play Date3351442705 - Play Date UTC2010-03-15T00:18:25Z - Artwork Count1 - Persistent ID9FB25E50FB292379 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/207.%20Zatox%20-%20I%20Hate%20U.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2971 - - Track ID2971 - NameDo You Want Heavy (Original Mix) - ArtistZany meets The Beholder - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size4759248 - Total Time190458 - Track Number33 - Year2010 - Date Modified2010-05-29T18:23:44Z - Date Added2011-10-02T13:49:26Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1A2217FDE178A312 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/208.%20Zany%20meets%20The%20Beholder%20-%20Do%20You%20Want%20Heavy%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2973 - - Track ID2973 - NameShiverz - ArtistD-Block & S-Te-Fan - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size4840546 - Total Time185730 - Track Number34 - Year2010 - Date Modified2010-05-29T18:23:44Z - Date Added2011-10-02T13:49:26Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3366812586 - Play Date UTC2010-09-08T21:43:06Z - Skip Count1 - Skip Date2012-07-09T16:15:22Z - Artwork Count1 - Persistent ID50D47DE2E44EA757 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/209.%20D-Block%20&%20S-Te-Fan%20-%20Shiverz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2975 - - Track ID2975 - NameTwo Worldz - ArtistFrontliner & Ruthless - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size5978930 - Total Time241528 - Track Number35 - Year2010 - Date Modified2010-05-29T18:23:45Z - Date Added2011-10-02T13:49:26Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3350981562 - Play Date UTC2010-03-09T16:12:42Z - Artwork Count1 - Persistent IDE037657383DEFB79 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/210.%20Frontliner%20&%20Ruthless%20-%20Two%20Worldz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2977 - - Track ID2977 - NameRock Diz - ArtistDeepack vs D-Block & S-Te-Fan - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size3138237 - Total Time121626 - Track Number36 - Year2010 - Date Modified2010-05-29T18:23:45Z - Date Added2011-10-02T13:49:27Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3350981684 - Play Date UTC2010-03-09T16:14:44Z - Artwork Count1 - Persistent ID4F1C0600F735B67B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/211.%20Deepack%20vs%20D-Block%20&%20S-Te-Fan%20-%20Rock%20Diz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2979 - - Track ID2979 - NameVintage - ArtistZatox - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size6720256 - Total Time262426 - Track Number37 - Year2010 - Date Modified2010-05-29T18:23:45Z - Date Added2011-10-02T13:49:27Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2010-09-08T21:44:25Z - Artwork Count1 - Persistent IDA71BE14687208910 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/212.%20Zatox%20-%20Vintage.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2981 - - Track ID2981 - NameHouse Music - ArtistD'stylerz - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size2493310 - Total Time105613 - Track Number38 - Year2010 - Date Modified2010-05-29T18:23:45Z - Date Added2011-10-02T13:49:27Z - Bit Rate185 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2010-09-08T21:44:29Z - Artwork Count1 - Persistent IDCA2AB5D573C457AC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/213.%20D'stylerz%20-%20House%20Music.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2983 - - Track ID2983 - NameThe First Cut - ArtistFrontliner - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size3610010 - Total Time134817 - Track Number39 - Year2010 - Date Modified2010-05-29T18:23:45Z - Date Added2011-10-02T13:49:27Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3420361288 - Play Date UTC2012-05-20T16:21:28Z - Skip Count1 - Skip Date2010-09-08T21:44:33Z - Artwork Count1 - Sort NameFirst Cut - Persistent ID61CB9AC40EE461C5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/214.%20Frontliner%20-%20The%20First%20Cut.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2985 - - Track ID2985 - NamePlay This Song (PTS) (Blutonium Boy Mix) - ArtistBlutonium Boy - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size6100850 - Total Time231627 - Track Number40 - Year2010 - Date Modified2010-05-29T18:23:45Z - Date Added2011-10-02T13:49:27Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3424283900 - Play Date UTC2012-07-05T01:58:20Z - Skip Count1 - Skip Date2012-06-11T13:43:27Z - Artwork Count1 - Persistent IDB0DC1A4EBFD2820F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/215.%20Blutonium%20Boy%20-%20Play%20This%20Song%20(PTS)%20(Blutonium%20Boy%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 2987 - - Track ID2987 - NameAnother Day In My Life - ArtistThe Pitcher ft Nikkita - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size1935454 - Total Time75206 - Track Number41 - Year2010 - Date Modified2010-05-29T18:23:46Z - Date Added2011-10-02T13:49:27Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3420038468 - Play Date UTC2012-05-16T22:41:08Z - Skip Count1 - Skip Date2010-09-10T13:02:44Z - Artwork Count1 - Sort ArtistPitcher ft Nikkita - Persistent ID039B96A82D0357A7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/216.%20The%20Pitcher%20ft%20Nikkita%20-%20Another%20Day%20In%20My%20Life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2989 - - Track ID2989 - NameFirst Time - ArtistThe R3bels - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size2988687 - Total Time111882 - Track Number42 - Year2010 - Date Modified2010-05-29T18:23:46Z - Date Added2011-10-02T13:49:27Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2010-05-21T11:54:24Z - Artwork Count1 - Sort ArtistR3bels - Persistent IDAE61D1E643752826 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/217.%20The%20R3bels%20-%20First%20Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2991 - - Track ID2991 - NameYou Try To Play Me - ArtistIvan Carsten - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size6468781 - Total Time260597 - Track Number43 - Year2010 - Date Modified2010-05-29T18:23:46Z - Date Added2011-10-02T13:49:27Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2010-09-10T13:16:00Z - Artwork Count1 - Persistent ID9A57A649E5676582 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/218.%20Ivan%20Carsten%20-%20You%20Try%20To%20Play%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2993 - - Track ID2993 - NameNever Enough - ArtistAlphaverb & Intractable One - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size4158317 - Total Time147173 - Track Number44 - Year2010 - Date Modified2010-05-29T18:23:46Z - Date Added2011-10-02T13:49:27Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2736818FF6CBCAF7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/219.%20Alphaverb%20&%20Intractable%20One%20-%20Never%20Enough.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2995 - - Track ID2995 - NameOur World - ArtistBass Modulators - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size3913685 - Total Time142419 - Track Number45 - Year2010 - Date Modified2010-05-29T18:23:46Z - Date Added2011-10-02T13:49:27Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-07-10T21:05:39Z - Artwork Count1 - Persistent ID547B9987A34CF33C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/220.%20Bass%20Modulators%20-%20Our%20World.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2997 - - Track ID2997 - NameRawk - ArtistB-Ware & Frequencerz ft MC Onid - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size1928877 - Total Time86439 - Track Number46 - Year2010 - Date Modified2010-05-29T18:23:46Z - Date Added2011-10-02T13:49:27Z - Bit Rate174 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8911BE4EEA431B0E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/221.%20B-Ware%20&%20Frequencerz%20ft%20MC%20Onid%20-%20Rawk.mp3 - File Folder Count-1 - Library Folder Count-1 - - 2999 - - Track ID2999 - NameUnited Az One (Club Mix) - ArtistG-Style Brothers - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size3711816 - Total Time151771 - Track Number47 - Year2010 - Date Modified2010-05-29T18:23:46Z - Date Added2011-10-02T13:49:27Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-04-24T21:24:57Z - Artwork Count1 - Persistent IDADB3CA61C3ECFAF7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/222.%20G-Style%20Brothers%20-%20United%20Az%20One%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3001 - - Track ID3001 - NameVendetta - ArtistLow-E vs AE - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size6728304 - Total Time244271 - Track Number48 - Year2010 - Date Modified2010-05-29T18:23:47Z - Date Added2011-10-02T13:49:27Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count4 - Play Date3424266087 - Play Date UTC2012-07-04T21:01:27Z - Artwork Count1 - Persistent ID9223E4572633DB12 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/223.%20Low-E%20vs%20AE%20-%20Vendetta.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3003 - - Track ID3003 - NameEdge Of Perception - ArtistInfecter - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size5646565 - Total Time236355 - Track Number49 - Year2010 - Date Modified2010-05-29T18:23:47Z - Date Added2011-10-02T13:49:27Z - Bit Rate189 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424192046 - Play Date UTC2012-07-04T00:27:26Z - Artwork Count1 - Persistent IDE785C85356B17465 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/224.%20Infecter%20-%20Edge%20Of%20Perception.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3005 - - Track ID3005 - NameInfection (G1 & Twizted Remix) - ArtistPrimax & Shitbusterz ft MC G-Angel - Album ArtistVA - AlbumDJ Networx Vol. 43 / CD2 - GenreHard Trance - KindMPEG audio file - Size4780917 - Total Time224679 - Track Number50 - Year2010 - Date Modified2010-05-29T18:23:47Z - Date Added2011-10-02T13:49:27Z - Bit Rate168 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF09947080014BD47 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2043%20(2010)/252.%20Primax%20&%20Shitbusterz%20ft%20MC%20G-Angel%20-%20Infection%20(G1%20&%20Twizted%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3007 - - Track ID3007 - NameTrance Energy 2009 Warm Up (2009.03.07) - ArtistVarious Artists - Album ArtistVA - AlbumTrance Energy 2009 - Main Stage - GenreTrance - KindMPEG audio file - Size81542616 - Total Time3397485 - Year2009 - Date Modified2010-03-13T19:57:52Z - Date Added2011-10-02T13:49:27Z - Bit Rate192 - Sample Rate44100 - Persistent IDF692EADD39AA4979 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Trance%20Energy/2009/Main%20Stage/Trance_Energy_2009-Jeff-Es%20WarmUp-07-03-2009_www.trancezone.nu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3009 - - Track ID3009 - NameLive at Trance Energy 2009 (2009.03.07) - ArtistTydi - Album ArtistVA - AlbumTrance Energy 2009 - Main Stage - GenreTrance - KindMPEG audio file - Size84383901 - Total Time3515872 - Year2009 - Date Modified2010-03-13T19:57:52Z - Date Added2011-10-02T13:49:28Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3420365963 - Play Date UTC2012-05-20T17:39:23Z - Skip Count1 - Skip Date2012-08-16T13:13:53Z - Persistent IDAFAC8E55E1A33E6D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Trance%20Energy/2009/Main%20Stage/Tydi-Live_at_Trance_Energy_2009-07-03-2009_www.trancezone.nu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3011 - - Track ID3011 - NameLive at Trance Energy 2009 (2009.03.07) - ArtistJohn O'Callaghan - Album ArtistVA - AlbumTrance Energy 2009 - Main Stage - GenreTrance - KindMPEG audio file - Size122941901 - Total Time5122403 - Year2009 - Date Modified2010-03-13T19:57:52Z - Date Added2011-10-02T13:49:28Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-09T16:15:12Z - Persistent ID180BE2267ABC3A5D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Trance%20Energy/2009/Main%20Stage/John_O_Callaghan-Live_at_Trance_Energy_2009-07-03-2009_www.trancezone.nu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3013 - - Track ID3013 - NameLive at Trance Energy 2009 (2009.03.07) - ArtistArmin Van Buuren - Album ArtistVA - AlbumTrance Energy 2009 - Main Stage - GenreTrance - KindMPEG audio file - Size169400824 - Total Time7058259 - Year2009 - Date Modified2010-03-13T19:57:52Z - Date Added2011-10-02T13:49:28Z - Bit Rate192 - Sample Rate44100 - Persistent IDCF88261502C86790 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Trance%20Energy/2009/Main%20Stage/Armin_Van_Buuren-Live_at_Trance_Energy_2009-07-03-2009_www.trancezone.nu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3015 - - Track ID3015 - NameLive at Trance Energy 2009 (2009.03.07) - ArtistPaul Van Dyk - Album ArtistVA - AlbumTrance Energy 2009 - Main Stage - GenreTrance - KindMPEG audio file - Size169942902 - Total Time7080855 - Disc Number1 - Track Number1 - Year2009 - Date Modified2010-03-13T19:57:52Z - Date Added2011-10-02T13:49:28Z - Bit Rate192 - Sample Rate44100 - Persistent ID96314862C8527923 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Trance%20Energy/2009/Main%20Stage/Paul_Van_Dyk-Live_at_Trance_Energy_2009-07-03-2009_www.trancezone.nu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3017 - - Track ID3017 - NameLive at Trance Energy 2009 (2009.03.07) - ArtistMarcel Woods - Album ArtistVA - AlbumTrance Energy 2009 - Main Stage - GenreTrance - KindMPEG audio file - Size122812125 - Total Time5116995 - Disc Number1 - Track Number1 - Year2009 - Date Modified2010-03-13T19:57:52Z - Date Added2011-10-02T13:49:28Z - Bit Rate192 - Sample Rate44100 - Persistent IDD3C46AFBE4D3109C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Trance%20Energy/2009/Main%20Stage/Marcel_Woods-Live_at_Trance_Energy_2009-07-03-2009_www.trancezone.nu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3019 - - Track ID3019 - NameLive at Trance Energy 2009 (2009.03.07) - ArtistFausto - Album ArtistVA - AlbumTrance Energy 2009 - Main Stage - GenreTrance - KindMPEG audio file - Size92088320 - Total Time3836943 - Track Number7 - Year2009 - Date Modified2010-03-13T19:57:52Z - Date Added2011-10-02T13:49:28Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-11T21:30:02Z - Persistent IDDF79DFA7C85C6AB8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Trance%20Energy/2009/Main%20Stage/Fausto-Live_at_Trance_Energy_2009-07-03-2009_www.trancezone.nu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3021 - - Track ID3021 - NameLive at Electric Zoo 2009 (2009.09.05) - ArtistArmin Van Buuren - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size164115838 - Total Time7843996 - Year2009 - Date Modified2010-03-13T23:39:56Z - Date Added2011-10-02T13:49:28Z - Bit Rate167 - Sample Rate44100 - CommentsResonant Vibes Network - Persistent ID38B4FD7FE9CA71A3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Armin_Van_Buuren_Live___Electric_Zoo_2009.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3023 - - Track ID3023 - NameLive at Electric Zoo 2009 (2009.09.06) - ArtistATB - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size57874268 - Total Time2411337 - Year2009 - Date Modified2010-03-13T23:39:57Z - Date Added2011-10-02T13:49:28Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2010-05-20T12:41:36Z - Persistent IDE8B649BA14AE0B24 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/ATB_-_09_06_09_Electric_Zoo_Set.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3025 - - Track ID3025 - NameLive at Electric Zoo 2009 (2009.09.05) - ArtistBen Watt - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size87461697 - Total Time4131892 - Year2009 - Date Modified2010-03-13T23:39:56Z - Date Added2011-10-02T13:49:28Z - Bit Rate169 - Sample Rate44100 - Persistent IDFBD28D48E1547785 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Ben_Watt_-_09_05_09_Electric_Zoo_Set.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3027 - - Track ID3027 - NameLive at Electric Zoo 2009 (2009.09.05) - ArtistBenny Benassi - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size108705662 - Total Time6136790 - Year2009 - Date Modified2010-03-13T23:39:56Z - Date Added2011-10-02T13:49:28Z - Bit Rate141 - Sample Rate44100 - CommentsResonant Vibes Network - Skip Count2 - Skip Date2012-06-20T13:13:17Z - Persistent ID7688049486C85FB5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Benny_Benassi_Live___Electric_Zoo_2009.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3029 - - Track ID3029 - NameLive at Electric Zoo 2009 (2009.09.05) - ArtistChus And Ceballos - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size92847030 - Total Time5378768 - Year2009 - Date Modified2010-03-13T23:39:56Z - Date Added2011-10-02T13:49:28Z - Bit Rate138 - Sample Rate44100 - CommentsResonant Vibes Network - Play Count1 - Play Date3424185312 - Play Date UTC2012-07-03T22:35:12Z - Persistent ID4C3730CFB755F01D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Chus_And_Ceballos_Live___Electric_Zoo_2009.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3031 - - Track ID3031 - NameLive at Electric Zoo 2009 (2009.09.06) - ArtistDavid Guetta - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size128828849 - Total Time6715428 - Track Number1 - Year2009 - Date Modified2010-03-13T23:39:57Z - Date Added2011-10-02T13:49:28Z - Bit Rate153 - Sample Rate44100 - CommentsTALiON - Persistent ID9EA4519C08B5D7C5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/David_Guetta_-_09_06_09_Electric_Zoo_Set.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3033 - - Track ID3033 - NameLive at Electric Zoo 2009 (2009.09.06) - ArtistFerry Corsten - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size98471235 - Total Time4650344 - Year2009 - Date Modified2010-03-13T23:39:57Z - Date Added2011-10-02T13:49:28Z - Bit Rate169 - Sample Rate44100 - CommentsRV Network - Play Count1 - Play Date3415110066 - Play Date UTC2012-03-20T21:41:06Z - Skip Count2 - Skip Date2012-07-29T22:04:02Z - Persistent ID10332FD84C99EFDE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Ferry_Corsten_-_09_06_09_Electric_Zoo_2009.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3035 - - Track ID3035 - NameLive at Electric Zoo 2009 (2009.09.06) - ArtistFrancois K - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size105536863 - Total Time4984764 - Track Number1 - Year2009 - Date Modified2010-03-13T23:39:57Z - Date Added2011-10-02T13:49:28Z - Bit Rate169 - Sample Rate44100 - CommentsRV Network - Skip Count1 - Skip Date2012-06-11T17:06:34Z - Persistent ID6F86533E232C80B1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Francois_K_-_09_06_09_Electric_Zoo_Set.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3037 - - Track ID3037 - NameLive at Electric Zoo 2009 (2009.09.05) - ArtistKaskade - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size72079429 - Total Time3531337 - Track Number1 - Year2009 - Date Modified2010-03-13T23:39:56Z - Date Added2011-10-02T13:49:28Z - Bit Rate163 - Sample Rate44100 - CommentsRV Network - Persistent ID091683E26526F414 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Kaskade_-_09_05_09_Electric_Zoo_Set.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3039 - - Track ID3039 - NameLive at Electric Zoo 2009 (2009.09.06) - ArtistMarkus Schulz - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size100638002 - Total Time4821603 - Year2009 - Date Modified2010-03-13T23:39:57Z - Date Added2011-10-02T13:49:28Z - Bit Rate166 - Sample Rate44100 - CommentsRV Network - Skip Count1 - Skip Date2012-06-26T13:40:55Z - Persistent IDEC6800167CBC6525 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Markus_Schulz_-_09_06_09_Electric_Zoo_Set.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3041 - - Track ID3041 - NameLive at Electric Zoo 2009 (2009.09.05) - ArtistSeth Troxler - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size128710683 - Total Time6690429 - Track Number1 - Year2009 - Date Modified2010-03-13T23:39:56Z - Date Added2011-10-02T13:49:28Z - Bit Rate153 - Sample Rate44100 - Persistent ID3880C6ADF4944C46 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/01_Seth_Troxler_Electric_Zoo_09-05-2009.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3043 - - Track ID3043 - NameLive at Electric Zoo 2009 (2009.09.05) - ArtistSteve Aoki - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size64246332 - Total Time3252924 - Year2009 - Date Modified2010-03-13T23:39:57Z - Date Added2011-10-02T13:49:28Z - Bit Rate157 - Sample Rate44100 - CommentsResonant Vibes Network - Skip Count4 - Skip Date2012-07-26T13:28:59Z - Persistent IDA31BEFC093BB7EC1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Steve_Aoki_Live___Electric_Zoo_2009.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3045 - - Track ID3045 - NameLive at Electric Zoo 2009 (2009.09.06) - ArtistSteve Bug - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size129308088 - Total Time5749028 - Year2009 - Date Modified2010-03-13T23:39:57Z - Date Added2011-10-02T13:49:28Z - Bit Rate179 - Sample Rate44100 - CommentsRV Network - Play Count1 - Play Date3424296254 - Play Date UTC2012-07-05T05:24:14Z - Skip Count1 - Skip Date2012-05-20T16:23:15Z - Persistent ID9A4EA29E2D525794 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Steve_Bug_-_09_06_09_Electric_Zoo_Set.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3047 - - Track ID3047 - NameLive at Electric Zoo 2009 (2009.09.06) - ArtistTom Middleton - Album ArtistVA - AlbumElectric Zoo 2009 - GenreTechno - KindMPEG audio file - Size68590447 - Total Time3733995 - Year2009 - Date Modified2010-03-13T23:39:57Z - Date Added2011-10-02T13:49:29Z - Bit Rate146 - Sample Rate44100 - CommentsRV Network - Skip Count2 - Skip Date2012-06-29T13:09:09Z - Persistent ID8FC4FAE95163F5D1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Electric%20Zoo%202009/Tom_Middleton_-_09_06_09_Electric_Zoo_Set.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3049 - - Track ID3049 - NameJudge_Jules_Cosmic_Gate_-_Weekend_Warmup_10-04-09 - KindMPEG audio file - Size172771820 - Total Time7198824 - Date Modified2009-05-04T01:34:03Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate48000 - Play Count1 - Play Date3424260190 - Play Date UTC2012-07-04T19:23:10Z - Skip Count3 - Skip Date2012-07-10T12:56:59Z - Persistent IDD8BD8E643BAACF2C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Judge_Jules_Cosmic_Gate_-_Weekend_Warmup_10-04-09.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3051 - - Track ID3051 - NameQuivver (John Graham) @ Transitions Proton (20-03-2009) - ArtistQuivver (John Graham) - AlbumQuivver (John Graham) Guestmix @ Transitions Proton (20-03-2009) - GenreTechhouse - KindMPEG audio file - Size51941760 - Total Time3246096 - Track Number1 - Year2009 - Date Modified2009-05-04T01:35:04Z - Date Added2011-10-02T13:49:29Z - Bit Rate128 - Sample Rate48000 - Commentswww.partysandnightlife.blogspot.com - Play Count1 - Play Date3351965411 - Play Date UTC2010-03-21T01:30:11Z - Skip Count3 - Skip Date2012-08-09T22:25:02Z - Persistent ID84C5E2D20645C38C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Quivver__John_Graham____Transitions_Proton__20-03-2009_.MP3 - File Folder Count-1 - Library Folder Count-1 - - 3053 - - Track ID3053 - NameI Like It Loud (2003 Hardstyle Rmx) - ArtistMARC ACARDIPANE FEAT. DICK RULES - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size4436413 - Total Time182883 - Track Number1 - Year2003 - Date Modified2010-05-29T18:22:55Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-08-09T22:29:57Z - Artwork Count1 - Persistent ID17DB7D7257E29FB3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/201.%20MARC%20ACARDIPANE%20FEAT.%20DICK%20RULES%20-%20I%20Like%20It%20Loud%20(2003%20Hardstyle%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3055 - - Track ID3055 - NameOK! (Raptor Rmx) - ArtistDJ MILL & MANUEL T - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size6688938 - Total Time276741 - Track Number2 - Year2003 - Date Modified2010-05-29T18:22:56Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-05-15T13:32:58Z - Artwork Count1 - Persistent ID3EF9A5109E694C8B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/202.%20DJ%20MILL%20&%20MANUEL%20T%20-%20OK!%20(Raptor%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3057 - - Track ID3057 - NameMeet My Beat (L.A. Mix) - ArtistPINCKY - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size5320321 - Total Time219715 - Track Number3 - Year2003 - Date Modified2010-05-29T18:22:56Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-14T20:05:41Z - Artwork Count1 - Persistent ID429D0303399A196F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/203.%20PINCKY%20-%20Meet%20My%20Beat%20(L.A.%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3059 - - Track ID3059 - NameMove - ArtistPILA, JORN & THE SCIENTIST - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size4309071 - Total Time177580 - Track Number4 - Year2003 - Date Modified2010-05-29T18:22:56Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD7BFD527DDAB44F8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/204.%20PILA,%20JORN%20&%20THE%20SCIENTIST%20-%20Move.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3061 - - Track ID3061 - NameVisions Of Paradize (DJ Scot Project Rmx) - ArtistAROME - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size7609936 - Total Time315115 - Track Number5 - Year2003 - Date Modified2010-05-29T18:22:56Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-08-09T11:24:32Z - Artwork Count1 - Persistent ID1AADD41F3EED5680 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/205.%20AROME%20-%20Visions%20Of%20Paradize%20(DJ%20Scot%20Project%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3063 - - Track ID3063 - NameOut Of Line - ArtistDJ ISAAC - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size2708474 - Total Time110889 - Track Number6 - Year2003 - Date Modified2010-05-29T18:22:56Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-06-20T21:40:35Z - Artwork Count1 - Persistent IDA1423A005D136BFD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/206.%20DJ%20ISAAC%20-%20Out%20Of%20Line.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3065 - - Track ID3065 - NameGo Go Go (Original Mix) - ArtistJULIAN DJ & DAVIDE SONAR - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size3902221 - Total Time160626 - Track Number7 - Year2003 - Date Modified2010-05-29T18:22:56Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-08-17T20:45:52Z - Artwork Count1 - Persistent IDD95C4F8E057BAA39 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/207.%20JULIAN%20DJ%20&%20DAVIDE%20SONAR%20-%20Go%20Go%20Go%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3067 - - Track ID3067 - NameBamm, Bamm (Underground) - ArtistDJ MIRKO MILANO - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size4336047 - Total Time178703 - Track Number8 - Year2003 - Date Modified2010-05-29T18:22:56Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424317256 - Play Date UTC2012-07-05T11:14:16Z - Artwork Count1 - Persistent ID5051B1352DF17CFE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/208.%20DJ%20MIRKO%20MILANO%20-%20Bamm,%20Bamm%20(Underground).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3069 - - Track ID3069 - NameHere's Johnny - ArtistDEEPACK - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size3419425 - Total Time140512 - Track Number9 - Year2003 - Date Modified2010-05-29T18:22:57Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3351345520 - Play Date UTC2010-03-13T21:18:40Z - Skip Count1 - Skip Date2012-07-27T12:56:57Z - Artwork Count1 - Persistent IDECABDAF5DEB1453C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/209.%20DEEPACK%20-%20Here's%20Johnny.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3071 - - Track ID3071 - NameWait A Second (Arena Mix) - ArtistANALOGIC DISTURBANCE - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size5198100 - Total Time214622 - Track Number10 - Year2003 - Date Modified2010-05-29T18:22:57Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-04-24T13:22:49Z - Artwork Count1 - Persistent ID2FACF8C7A303EE06 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/210.%20ANALOGIC%20DISTURBANCE%20-%20Wait%20A%20Second%20(Arena%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3073 - - Track ID3073 - NameThe Sound Of The Beast (Nexus Rmx) - ArtistDONKEY ROLLERS - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size5606870 - Total Time231653 - Track Number11 - Year2003 - Date Modified2010-05-29T18:22:57Z - Date Added2011-10-02T13:49:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameSound Of The Beast (Nexus Rmx) - Persistent IDEC460EBBDF87D64E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/211.%20DONKEY%20ROLLERS%20-%20The%20Sound%20Of%20The%20Beast%20(Nexus%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3075 - - Track ID3075 - NameLet The Bassline Get Ya (Hardmix) - ArtistCENOGINERZ - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size4473982 - Total Time184450 - Track Number12 - Year2003 - Date Modified2010-05-29T18:22:57Z - Date Added2011-10-02T13:49:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDCC4BD4D911880FB1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/212.%20CENOGINERZ%20-%20Let%20The%20Bassline%20Get%20Ya%20(Hardmix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3077 - - Track ID3077 - NameBack To The Beatbox (Shoko's Psychostyle Mix) - ArtistSHOKO VS. GROUNDZERO - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size6111590 - Total Time252682 - Track Number13 - Year2003 - Date Modified2010-05-29T18:22:57Z - Date Added2011-10-02T13:49:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-05-16T13:36:56Z - Artwork Count1 - Persistent IDF7C7B1A489A7C0AD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/213.%20SHOKO%20VS.%20GROUNDZERO%20-%20Back%20To%20The%20Beatbox%20(Shoko's%20Psychostyle%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3079 - - Track ID3079 - NamePumpin' Iron (Original Mix) - ArtistSPIRITUAL PROJECT - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size3415084 - Total Time140329 - Track Number14 - Year2003 - Date Modified2010-05-29T18:22:57Z - Date Added2011-10-02T13:49:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424289486 - Play Date UTC2012-07-05T03:31:26Z - Artwork Count1 - Persistent ID9941E0E2D49641F0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/214.%20SPIRITUAL%20PROJECT%20-%20Pumpin'%20Iron%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3081 - - Track ID3081 - NameSupersounds (Zany Mix) - ArtistDJ JEAN - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size5107162 - Total Time210834 - Track Number15 - Year2003 - Date Modified2010-05-29T18:22:57Z - Date Added2011-10-02T13:49:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424187234 - Play Date UTC2012-07-03T23:07:14Z - Artwork Count1 - Persistent ID17F5E95B0DCB73D6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/215.%20DJ%20JEAN%20-%20Supersounds%20(Zany%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3083 - - Track ID3083 - NameDrop That Beat - ArtistHAZE & ABYSS FEAT. THE PROSPEKTOR - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size2591920 - Total Time106031 - Track Number17 - Year2003 - Date Modified2010-05-29T18:22:58Z - Date Added2011-10-02T13:49:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9A60042A8122D9C4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/217.%20HAZE%20&%20ABYSS%20FEAT.%20THE%20PROSPEKTOR%20-%20Drop%20That%20Beat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3085 - - Track ID3085 - NameFollow The Leader (Original Mix) - ArtistTHE PROPHET - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size4659556 - Total Time192182 - Track Number18 - Year2003 - Date Modified2010-05-29T18:22:58Z - Date Added2011-10-02T13:49:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count3 - Skip Date2012-08-09T22:23:19Z - Artwork Count1 - Sort ArtistPROPHET - Persistent ID6266B195AA5664F9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/218.%20THE%20PROPHET%20-%20Follow%20The%20Leader%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3087 - - Track ID3087 - NameConverse (Raptor Mix) - ArtistR.O.T.A.R. - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size5443832 - Total Time224862 - Track Number19 - Year2003 - Date Modified2010-05-29T18:22:58Z - Date Added2011-10-02T13:49:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424190589 - Play Date UTC2012-07-04T00:03:09Z - Artwork Count1 - Persistent ID248E7B77F853CF01 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/219.%20R.O.T.A.R.%20-%20Converse%20(Raptor%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3089 - - Track ID3089 - NameB.A.S.S. Kick Down (Daywalker Rmx) - ArtistGARY D. - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size3019479 - Total Time123846 - Track Number20 - Year2003 - Date Modified2010-05-29T18:22:58Z - Date Added2011-10-02T13:49:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-08-14T12:37:07Z - Artwork Count1 - Persistent ID6C10FCA750EEF5A2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/220.%20GARY%20D.%20-%20B.A.S.S.%20Kick%20Down%20(Daywalker%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3091 - - Track ID3091 - NameAt The Opera - ArtistMEN-O-DEE - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size10449918 - Total Time433449 - Track Number21 - Year2003 - Date Modified2010-05-29T18:22:58Z - Date Added2011-10-02T13:49:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3351346107 - Play Date UTC2010-03-13T21:28:27Z - Skip Count1 - Skip Date2012-06-13T13:13:19Z - Artwork Count1 - Persistent ID272689C24E8156A0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/221.%20MEN-O-DEE%20-%20At%20The%20Opera.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3093 - - Track ID3093 - NameUnder Control (Club Edit) - ArtistGROUNDZERO DJ TEAM - Album ArtistVA - AlbumDJ Networx Vol. 19 / CD2 - GenreHard Trance - KindMPEG audio file - Size4871461 - Total Time201012 - Track Number22 - Year2003 - Date Modified2010-05-29T18:22:58Z - Date Added2011-10-02T13:49:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID45FEFBDA4EA2C3AE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2019%20(2003)/222.%20GROUNDZERO%20DJ%20TEAM%20-%20Under%20Control%20(Club%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3095 - - Track ID3095 - NameTi Sento (Extended Mix) - ArtistScooter - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size8564629 - Total Time320992 - Disc Number1 - Disc Count2 - Track Number1 - Year2009 - Date Modified2010-05-29T18:30:59Z - Date Added2011-10-02T13:49:30Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3351013277 - Play Date UTC2010-03-10T01:01:17Z - Artwork Count1 - Persistent ID3E19447AA155AB07 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/01.%20Scooter%20-%20Ti%20Sento%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3097 - - Track ID3097 - NameClose Your Eyes (Original Club Mix) - ArtistBig Room Society - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size4235703 - Total Time170213 - Disc Number1 - Disc Count2 - Track Number2 - Year2009 - Date Modified2010-05-29T18:30:59Z - Date Added2011-10-02T13:49:30Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3351013285 - Play Date UTC2010-03-10T01:01:25Z - Skip Count1 - Skip Date2012-04-19T22:33:11Z - Artwork Count1 - Persistent ID060FF40101A9A384 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/02.%20Big%20Room%20Society%20-%20Close%20Your%20Eyes%20(Original%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3099 - - Track ID3099 - NameScatman (SMP Remix) - ArtistMark 'Oh - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size3858271 - Total Time143124 - Disc Number1 - Disc Count2 - Track Number3 - Year2009 - Date Modified2010-05-29T18:30:59Z - Date Added2011-10-02T13:49:30Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3351001190 - Play Date UTC2010-03-09T21:39:50Z - Skip Count2 - Skip Date2012-06-12T13:31:44Z - Artwork Count1 - Persistent ID2AA96F7403E32C74 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/03.%20Mark%20'Oh%20-%20Scatman%20(SMP%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3101 - - Track ID3101 - NameSlave To The Music - ArtistPlaxx - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size3919767 - Total Time148427 - Disc Number1 - Disc Count2 - Track Number4 - Year2009 - Date Modified2010-05-29T18:30:59Z - Date Added2011-10-02T13:49:30Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3351001338 - Play Date UTC2010-03-09T21:42:18Z - Artwork Count1 - Persistent ID10C20F93A7D80C94 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/04.%20Plaxx%20-%20Slave%20To%20The%20Music.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3103 - - Track ID3103 - NameRocking To The Beat (Pulsedriver Remix) - ArtistPinball - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size3192814 - Total Time131892 - Disc Number1 - Disc Count2 - Track Number5 - Year2009 - Date Modified2010-05-29T18:31:00Z - Date Added2011-10-02T13:49:31Z - Bit Rate191 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3421393313 - Play Date UTC2012-06-01T15:01:53Z - Artwork Count1 - Persistent ID586F2759C6ED7BAC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/05.%20Pinball%20-%20Rocking%20To%20The%20Beat%20(Pulsedriver%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3105 - - Track ID3105 - NameLost In Dreams (Ti-Mo Remix) - ArtistDJ Sequenza - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size3801032 - Total Time148401 - Disc Number1 - Disc Count2 - Track Number6 - Year2009 - Date Modified2010-05-29T18:31:00Z - Date Added2011-10-02T13:49:31Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3426599067 - Play Date UTC2012-07-31T21:04:27Z - Artwork Count1 - Persistent IDF0B163F437038D62 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/06.%20DJ%20Sequenza%20-%20Lost%20In%20Dreams%20(Ti-Mo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3107 - - Track ID3107 - NameStrings Of Infinity 2009 (Extended Mix) - ArtistTopmodelz - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size5584947 - Total Time224078 - Disc Number1 - Disc Count2 - Track Number7 - Year2009 - Date Modified2010-05-29T18:31:00Z - Date Added2011-10-02T13:49:31Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3351001842 - Play Date UTC2010-03-09T21:50:42Z - Artwork Count1 - Persistent IDEA00B3065A0701A5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/07.%20Topmodelz%20-%20Strings%20Of%20Infinity%202009%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3109 - - Track ID3109 - NameFollow Up - ArtistDJ Digress - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size6013636 - Total Time232254 - Disc Number1 - Disc Count2 - Track Number8 - Year2009 - Date Modified2010-05-29T18:31:00Z - Date Added2011-10-02T13:49:31Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3351002074 - Play Date UTC2010-03-09T21:54:34Z - Artwork Count1 - Persistent ID4CBBE806ED2992A2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/08.%20DJ%20Digress%20-%20Follow%20Up.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3111 - - Track ID3111 - NameI Want You (Club Mix) - ArtistMegara vs DJ Lee - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size6914234 - Total Time280267 - Disc Number1 - Disc Count2 - Track Number9 - Year2009 - Date Modified2010-05-29T18:31:00Z - Date Added2011-10-02T13:49:31Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3351002355 - Play Date UTC2010-03-09T21:59:15Z - Skip Count2 - Skip Date2012-08-07T21:50:40Z - Artwork Count1 - Persistent IDE2DA27F7524377F8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/09.%20Megara%20vs%20DJ%20Lee%20-%20I%20Want%20You%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3113 - - Track ID3113 - NameI Got A Feeling (B-Tastic Remix) - ArtistOrangez - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size3719315 - Total Time151666 - Disc Number1 - Disc Count2 - Track Number10 - Year2009 - Date Modified2010-05-29T18:31:00Z - Date Added2011-10-02T13:49:31Z - Bit Rate194 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-08-17T12:43:53Z - Artwork Count1 - Persistent ID38FACBBF8F4DCB0A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/10.%20Orangez%20-%20I%20Got%20A%20Feeling%20(B-Tastic%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3115 - - Track ID3115 - NameFly Away (Club Mix) - ArtistAlex M. vs Marc van Damme - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size4055525 - Total Time161488 - Disc Number1 - Disc Count2 - Track Number11 - Year2009 - Date Modified2010-05-29T18:31:00Z - Date Added2011-10-02T13:49:31Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-08-16T16:41:26Z - Artwork Count1 - Persistent ID48CF5484F6E47839 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/11.%20Alex%20M.%20vs%20Marc%20van%20Damme%20-%20Fly%20Away%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3117 - - Track ID3117 - NameDanced Into The Moonlight (Instrumental) - ArtistDream Dance Alliance - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size4188833 - Total Time156264 - Disc Number1 - Disc Count2 - Track Number12 - Year2009 - Date Modified2010-05-29T18:31:00Z - Date Added2011-10-02T13:49:31Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424289643 - Play Date UTC2012-07-05T03:34:03Z - Skip Count1 - Skip Date2012-05-10T21:35:03Z - Artwork Count1 - Persistent ID9D8F8D6962F0EA33 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/12.%20Dream%20Dance%20Alliance%20-%20Danced%20Into%20The%20Moonlight%20(Instrumental).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3119 - - Track ID3119 - NameI Feel You - ArtistDancetronic - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size5470054 - Total Time209005 - Disc Number1 - Disc Count2 - Track Number13 - Year2009 - Date Modified2010-05-29T18:31:01Z - Date Added2011-10-02T13:49:31Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count3 - Skip Date2012-06-14T20:09:03Z - Artwork Count1 - Persistent IDA7118C81EAFDBFBB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/13.%20Dancetronic%20-%20I%20Feel%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3121 - - Track ID3121 - NameLiving Without Your Love '09 (Instrumental Mix) - ArtistMike Nero vs Interactive - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size4993542 - Total Time180297 - Disc Number1 - Disc Count2 - Track Number14 - Year2009 - Date Modified2010-05-29T18:31:01Z - Date Added2011-10-02T13:49:31Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-07-10T20:43:53Z - Artwork Count1 - Persistent ID06838F1A6AA829B8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/14.%20Mike%20Nero%20vs%20Interactive%20-%20Living%20Without%20Your%20Love%20'09%20(Instrumental%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3123 - - Track ID3123 - NameWhen Love Takes Over (Giorno's Jump & Run Remix) - ArtistRivendell - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size6228789 - Total Time236094 - Disc Number1 - Disc Count2 - Track Number15 - Year2009 - Date Modified2010-05-29T18:31:01Z - Date Added2011-10-02T13:49:31Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0FCF2D53B610B8CC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/15.%20Rivendell%20-%20When%20Love%20Takes%20Over%20(Giorno's%20Jump%20&%20Run%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3125 - - Track ID3125 - NameHamburg Rulez Reloaded (Primax Remix) - ArtistDJ Dean meets Barbarez - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size7410734 - Total Time285335 - Disc Number1 - Disc Count2 - Track Number16 - Year2009 - Date Modified2010-05-29T18:31:01Z - Date Added2011-10-02T13:49:31Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-11T21:41:40Z - Artwork Count1 - Persistent ID548C3F7D429DDB3E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/16.%20DJ%20Dean%20meets%20Barbarez%20-%20Hamburg%20Rulez%20Reloaded%20(Primax%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3127 - - Track ID3127 - NameTime 4 Dance (CeeAnDee) - ArtistMikesh - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size2928522 - Total Time106762 - Disc Number1 - Disc Count2 - Track Number17 - Year2009 - Date Modified2010-05-29T18:31:01Z - Date Added2011-10-02T13:49:31Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDCE957A42D5D43AE9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/17.%20Mikesh%20-%20Time%204%20Dance%20(CeeAnDee).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3129 - - Track ID3129 - NameCollapse (Original Mix) - ArtistSunray & Valle - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size3471812 - Total Time134608 - Disc Number1 - Disc Count2 - Track Number18 - Year2009 - Date Modified2010-05-29T18:31:01Z - Date Added2011-10-02T13:49:31Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID964E45F577085717 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/18.%20Sunray%20&%20Valle%20-%20Collapse%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3131 - - Track ID3131 - NameSayonara (Cc.K Remix) - ArtistMiradey - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size5679697 - Total Time245289 - Disc Number1 - Disc Count2 - Track Number19 - Year2009 - Date Modified2010-05-29T18:31:02Z - Date Added2011-10-02T13:49:31Z - Bit Rate184 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID092E5AE2025B2FF9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/19.%20Miradey%20-%20Sayonara%20(Cc.K%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3133 - - Track ID3133 - NameReviens Moi (Original Mix) - ArtistStarbreeze 94 ft Mira - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size4332003 - Total Time158302 - Disc Number1 - Disc Count2 - Track Number20 - Year2009 - Date Modified2010-05-29T18:31:02Z - Date Added2011-10-02T13:49:31Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0A8A53837BD71B6C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/20.%20Starbreeze%2094%20ft%20Mira%20-%20Reviens%20Moi%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3135 - - Track ID3135 - NameLove Will Save The Day (Instrumental Mix) - ArtistDJ Fait - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size4380635 - Total Time158955 - Disc Number1 - Disc Count2 - Track Number21 - Year2009 - Date Modified2010-05-29T18:31:02Z - Date Added2011-10-02T13:49:31Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424341880 - Play Date UTC2012-07-05T18:04:40Z - Skip Count1 - Skip Date2012-07-26T20:50:28Z - Artwork Count1 - Persistent IDD3450B24B1DFCF36 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/21.%20DJ%20Fait%20-%20Love%20Will%20Save%20The%20Day%20(Instrumental%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3137 - - Track ID3137 - NameGet Wicked (The Revialz Remix) - ArtistCeeAndDee - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size2229928 - Total Time88111 - Disc Number1 - Disc Count2 - Track Number22 - Year2009 - Date Modified2010-05-29T18:31:02Z - Date Added2011-10-02T13:49:31Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7D3C664853A0EB0A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/22.%20CeeAndDee%20-%20Get%20Wicked%20(The%20Revialz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3139 - - Track ID3139 - NameThe 5th (Original Mix) - ArtistRay Burton & Titus - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size4620261 - Total Time180244 - Disc Number1 - Disc Count2 - Track Number23 - Year2009 - Date Modified2010-05-29T18:31:02Z - Date Added2011-10-02T13:49:32Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3423839012 - Play Date UTC2012-06-29T22:23:32Z - Artwork Count1 - Sort Name5th (Original Mix) - Persistent IDFDA859E77D7AC2E6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/23.%20Ray%20Burton%20&%20Titus%20-%20The%205th%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3141 - - Track ID3141 - NameVisions Of Space (DJ Lanai Remix) - ArtistTechnojoe - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size5058142 - Total Time183196 - Disc Number1 - Disc Count2 - Track Number24 - Year2009 - Date Modified2010-05-29T18:31:02Z - Date Added2011-10-02T13:49:32Z - Bit Rate219 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID21F997D576350686 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/24.%20Technojoe%20-%20Visions%20Of%20Space%20(DJ%20Lanai%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3143 - - Track ID3143 - NameAnything Is Possible (High Energy Upgrade) - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD1 - GenreHard Trance - KindMPEG audio file - Size7622554 - Total Time281861 - Disc Number1 - Disc Count2 - Track Number25 - Year2009 - Date Modified2010-05-29T18:31:02Z - Date Added2011-10-02T13:49:32Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID89805C36F5E00C9B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/25.%20Accuface%20-%20Anything%20Is%20Possible%20(High%20Energy%20Upgrade).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3145 - - Track ID3145 - NameGod Is A DJ (Insomnia Booty Club Mix) - ArtistScotty - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size6091048 - Total Time238994 - Track Number26 - Year2009 - Date Modified2010-05-29T18:31:33Z - Date Added2011-10-02T13:49:32Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424187024 - Play Date UTC2012-07-03T23:03:44Z - Artwork Count1 - Persistent ID62964C0BA575E98E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/26.%20Scotty%20-%20God%20Is%20A%20DJ%20(Insomnia%20Booty%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3147 - - Track ID3147 - NameCrying In The Rain (Niels Van Gogh & Dave Ramone Remix) - ArtistGuru Josh Project - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size4046335 - Total Time161880 - Track Number27 - Year2009 - Date Modified2010-05-29T18:31:33Z - Date Added2011-10-02T13:49:32Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-05-10T12:43:09Z - Artwork Count1 - Persistent ID4549DA665743BF9D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/27.%20Guru%20Josh%20Project%20-%20Crying%20In%20The%20Rain%20(Niels%20Van%20Gogh%20&%20Dave%20Ramone%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3149 - - Track ID3149 - NameCan't Slow Down (Michael Mind Remix) - ArtistBastian Bates ft Nicco - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size3484669 - Total Time123245 - Track Number28 - Year2009 - Date Modified2010-05-29T18:31:33Z - Date Added2011-10-02T13:49:32Z - Bit Rate224 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-07-16T13:35:45Z - Artwork Count1 - Persistent IDB5E891A61769B11D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/28.%20Bastian%20Bates%20ft%20Nicco%20-%20Can't%20Slow%20Down%20(Michael%20Mind%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3151 - - Track ID3151 - NameI'll Be Watching You (Schuhmacher & Vanera Mix) - ArtistDavid May ft Kelvin Scott - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size5699903 - Total Time218148 - Track Number29 - Year2009 - Date Modified2010-05-29T18:31:33Z - Date Added2011-10-02T13:49:32Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID3A1F9077EA68BA84 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/29.%20David%20May%20ft%20Kelvin%20Scott%20-%20I'll%20Be%20Watching%20You%20(Schuhmacher%20&%20Vanera%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3153 - - Track ID3153 - NameGotta Let You Go (Dutch Mix) - ArtistMichael Mind - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size4206340 - Total Time158432 - Track Number30 - Year2009 - Date Modified2010-05-29T18:31:33Z - Date Added2011-10-02T13:49:32Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-08-09T22:32:57Z - Artwork Count1 - Persistent IDD821A0C4C370673E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/30.%20Michael%20Mind%20-%20Gotta%20Let%20You%20Go%20(Dutch%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3155 - - Track ID3155 - NameMy House Is Calling (Bodybangers Remix) - ArtistNiels Van Gogh vs Emilio Verdez - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size2793506 - Total Time109061 - Track Number31 - Year2009 - Date Modified2010-05-29T18:31:33Z - Date Added2011-10-02T13:49:32Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-04-24T13:29:28Z - Artwork Count1 - Persistent ID26CB4A52218032FA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/31.%20Niels%20Van%20Gogh%20vs%20Emilio%20Verdez%20-%20My%20House%20Is%20Calling%20(Bodybangers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3157 - - Track ID3157 - NameVampire's Kiss (Club Mix) - ArtistO-Mind ft Laura Nori - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size4677969 - Total Time180793 - Track Number32 - Year2009 - Date Modified2010-05-29T18:31:34Z - Date Added2011-10-02T13:49:32Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID9B2D4008AC9795EC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/32.%20O-Mind%20ft%20Laura%20Nori%20-%20Vampire's%20Kiss%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3159 - - Track ID3159 - NameEarth Song (Dave Manna & Marco Demark Remix) - ArtistD.O.N.S. - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size2496242 - Total Time101616 - Track Number33 - Year2009 - Date Modified2010-05-29T18:31:34Z - Date Added2011-10-02T13:49:32Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-01T15:02:22Z - Artwork Count1 - Persistent ID4A26F73C7CCEDA5D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/33.%20D.O.N.S.%20-%20Earth%20Song%20(Dave%20Manna%20&%20Marco%20Demark%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3161 - - Track ID3161 - NameSimulated 2010 (Original) - ArtistMarco V - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size2796071 - Total Time106788 - Track Number34 - Year2009 - Date Modified2010-05-29T18:31:34Z - Date Added2011-10-02T13:49:32Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID4B190640F8835DC0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/34.%20Marco%20V%20-%20Simulated%202010%20(Original).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3163 - - Track ID3163 - NameKidsos (Original Mix) - ArtistSebastian Ingrosso - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size5952213 - Total Time237505 - Track Number35 - Year2009 - Date Modified2010-05-29T18:31:34Z - Date Added2011-10-02T13:49:32Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDDDD648111C9AE5FC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/35.%20Sebastian%20Ingrosso%20-%20Kidsos%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3165 - - Track ID3165 - NameWe Are Alive (Thomas Gold Mix) - ArtistPaul van Dyk ft Jennifer Brown - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size4663818 - Total Time212767 - Track Number36 - Year2009 - Date Modified2010-05-29T18:31:34Z - Date Added2011-10-02T13:49:32Z - Bit Rate174 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-07-31T13:02:08Z - Artwork Count1 - Persistent IDCA62DC1F6C24E1C1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/36.%20Paul%20van%20Dyk%20ft%20Jennifer%20Brown%20-%20We%20Are%20Alive%20(Thomas%20Gold%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3167 - - Track ID3167 - NameTuvan (Original Mix) - ArtistGaia - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size9549794 - Total Time355213 - Track Number37 - Year2009 - Date Modified2010-05-29T18:31:34Z - Date Added2011-10-02T13:49:32Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424202765 - Play Date UTC2012-07-04T03:26:05Z - Artwork Count1 - Persistent ID35A8DA4EC5C996CC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/37.%20Gaia%20-%20Tuvan%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3169 - - Track ID3169 - NameDo You Dream (Uplifting Mix) - ArtistMarkus Schulz - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size8213935 - Total Time317335 - Track Number38 - Year2009 - Date Modified2010-05-29T18:31:34Z - Date Added2011-10-02T13:49:33Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID7A6D8988C1D6D125 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/38.%20Markus%20Schulz%20-%20Do%20You%20Dream%20(Uplifting%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3171 - - Track ID3171 - NameSymfo (Sunrise Festival Theme 2009) - ArtistRank 1 - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size4463103 - Total Time175386 - Track Number39 - Year2009 - Date Modified2010-05-29T18:31:35Z - Date Added2011-10-02T13:49:33Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID83AFABCF46E4CD23 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/39.%20Rank%201%20-%20Symfo%20(Sunrise%20Festival%20Theme%202009).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3173 - - Track ID3173 - NameLove & Peace (Extended Mix) - ArtistDriver & Face - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size2988824 - Total Time116897 - Track Number40 - Year2009 - Date Modified2010-05-29T18:31:35Z - Date Added2011-10-02T13:49:33Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID1A49786FD769C061 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/40.%20Driver%20&%20Face%20-%20Love%20&%20Peace%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3175 - - Track ID3175 - NameDeparture (Virtual Vault Remix) - ArtistDave202 - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size3111372 - Total Time123611 - Track Number41 - Year2009 - Date Modified2010-05-29T18:31:35Z - Date Added2011-10-02T13:49:33Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-11T21:18:32Z - Artwork Count1 - Persistent ID1C31999C0639E069 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/41.%20Dave202%20-%20Departure%20(Virtual%20Vault%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3177 - - Track ID3177 - NameBrace Yourself (Ben Gold Mix) - ArtistJochen Miller - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size5593547 - Total Time208692 - Track Number42 - Year2009 - Date Modified2010-05-29T18:31:35Z - Date Added2011-10-02T13:49:33Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3425280244 - Play Date UTC2012-07-16T14:44:04Z - Skip Count1 - Skip Date2010-09-14T21:43:37Z - Artwork Count1 - Persistent ID8D36BCA5A9839192 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/42.%20Jochen%20Miller%20-%20Brace%20Yourself%20(Ben%20Gold%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3179 - - Track ID3179 - NameSunrise (Dizmaster & Dave Joy Remix) - ArtistSpaceplanet - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size1838242 - Total Time67840 - Track Number43 - Year2009 - Date Modified2010-05-29T18:31:35Z - Date Added2011-10-02T13:49:33Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424340733 - Play Date UTC2012-07-05T17:45:33Z - Skip Count3 - Skip Date2012-07-30T13:21:51Z - Artwork Count1 - Persistent ID1D918602E6933C48 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/43.%20Spaceplanet%20-%20Sunrise%20(Dizmaster%20&%20Dave%20Joy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3181 - - Track ID3181 - NameThe Day After (RnM Project Mix) - ArtistRoni Meller - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size4682967 - Total Time179774 - Track Number44 - Year2009 - Date Modified2010-05-29T18:31:35Z - Date Added2011-10-02T13:49:33Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2010-05-20T12:42:24Z - Artwork Count1 - Sort NameDay After (RnM Project Mix) - Persistent ID9D1F86148B5B5170 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/44.%20Roni%20Meller%20-%20The%20Day%20After%20(RnM%20Project%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3183 - - Track ID3183 - NameMainstage (Original Mix) - ArtistW&W - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size2137152 - Total Time82128 - Track Number45 - Year2009 - Date Modified2010-05-29T18:31:36Z - Date Added2011-10-02T13:49:33Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDACCB0941EF226F40 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/45.%20W&W%20-%20Mainstage%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3185 - - Track ID3185 - NamePulse (TNR Remix) - Artist2XlC - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size3015152 - Total Time111281 - Track Number46 - Year2009 - Date Modified2010-05-29T18:31:36Z - Date Added2011-10-02T13:49:33Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDCE2ACCDCE23211C5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/46.%202XlC%20-%20Pulse%20(TNR%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3187 - - Track ID3187 - NameExperience (Matt Pincer Remix) - ArtistDizmaster ft Schack - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size7813309 - Total Time300564 - Track Number47 - Year2009 - Date Modified2010-05-29T18:31:36Z - Date Added2011-10-02T13:49:33Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2010-03-15T00:21:05Z - Artwork Count1 - Persistent ID7D0B4BCA866FED8A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/47.%20Dizmaster%20ft%20Schack%20-%20Experience%20(Matt%20Pincer%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3189 - - Track ID3189 - Name3rd Dimension - ArtistAngel Beats - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size4679121 - Total Time192574 - Track Number48 - Year2009 - Date Modified2010-05-29T18:31:36Z - Date Added2011-10-02T13:49:33Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID34396BF6D9C10A9A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/48.%20Angel%20Beats%20-%203rd%20Dimension.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3191 - - Track ID3191 - NameTora Bora - ArtistImpegment Syndrom - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size4546119 - Total Time185730 - Track Number49 - Year2009 - Date Modified2010-05-29T18:31:36Z - Date Added2011-10-02T13:49:33Z - Bit Rate194 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID74CA0F74A329D66E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/49.%20Impegment%20Syndrom%20-%20Tora%20Bora.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3193 - - Track ID3193 - NamePatrone (Original Mix) - ArtistDeep Care - Album ArtistVA - AlbumTunnel Trance Force Vol.51 / CD2 - GenreHard Trance - KindMPEG audio file - Size9883158 - Total Time389799 - Track Number50 - Year2009 - Date Modified2010-05-29T18:31:36Z - Date Added2011-10-02T13:49:33Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-05-30T21:42:10Z - Artwork Count1 - Persistent ID0E678B8698B95A31 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2051%20(2009)/50.%20Deep%20Care%20-%20Patrone%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3195 - - Track ID3195 - NameAmerican Idiot - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size5834444 - Total Time174367 - Track Number1 - Date Modified2010-03-09T23:25:25Z - Date Added2011-10-02T13:49:33Z - Bit Rate267 - Sample Rate44100 - Play Count1 - Play Date3424228992 - Play Date UTC2012-07-04T10:43:12Z - Persistent ID7A3A10BC5A821B5B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/01%20-%20American%20Idiot.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3197 - - Track ID3197 - NameJesus Of Suburbia - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size18290591 - Total Time548310 - Track Number2 - Year2004 - Date Modified2010-03-09T23:25:25Z - Date Added2011-10-02T13:49:33Z - Bit Rate266 - Sample Rate44100 - Skip Count1 - Skip Date2011-06-14T21:07:32Z - Persistent IDD1367FA50ABAC06C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/02%20-%20Jesus%20Of%20Suburbia.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3199 - - Track ID3199 - NameHoliday - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size7959210 - Total Time232698 - Track Number3 - Year2004 - Date Modified2010-03-09T23:25:25Z - Date Added2011-10-02T13:49:33Z - Bit Rate273 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-29T12:57:19Z - Persistent IDA735F992E230803E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/03%20-%20Holiday.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3201 - - Track ID3201 - NameBoulevard Of Broken Dreams - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size8702602 - Total Time260806 - Track Number4 - Year2004 - Date Modified2010-03-09T23:25:25Z - Date Added2011-10-02T13:49:33Z - Bit Rate266 - Sample Rate44100 - Play Count1 - Play Date3424185788 - Play Date UTC2012-07-03T22:43:08Z - Skip Count1 - Skip Date2012-07-29T21:41:31Z - Persistent ID2CD61FECDCD52187 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/04%20-%20Boulevard%20Of%20Broken%20Dreams.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3203 - - Track ID3203 - NameAre We The Waiting - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size4859658 - Total Time162977 - Track Number5 - Year2004 - Date Modified2010-03-09T23:25:25Z - Date Added2011-10-02T13:49:33Z - Bit Rate238 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-27T15:02:43Z - Persistent ID2FF0A39646B42A82 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/05%20-%20Are%20We%20The%20Waiting.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3205 - - Track ID3205 - NameSt. Jimmy - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size6354044 - Total Time175281 - Track Number6 - Year2004 - Date Modified2010-03-09T23:25:25Z - Date Added2011-10-02T13:49:34Z - Bit Rate289 - Sample Rate44100 - Skip Count1 - Skip Date2010-09-07T22:11:04Z - Persistent ID7B2FB567DDC1A9D3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/06%20-%20St.%20Jimmy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3207 - - Track ID3207 - NameGive Me Novacaine - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size6887323 - Total Time205818 - Track Number7 - Year2004 - Date Modified2010-03-09T23:25:25Z - Date Added2011-10-02T13:49:34Z - Bit Rate267 - Sample Rate44100 - Skip Count3 - Skip Date2012-06-29T22:33:16Z - Persistent IDE3D44AA53622D5F4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/07%20-%20Give%20Me%20Novacaine.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3209 - - Track ID3209 - NameShes A Rebel - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size4122799 - Total Time120476 - Track Number8 - Year2004 - Date Modified2010-03-09T23:25:26Z - Date Added2011-10-02T13:49:34Z - Bit Rate273 - Sample Rate44100 - Play Count1 - Play Date3351965873 - Play Date UTC2010-03-21T01:37:53Z - Skip Count2 - Skip Date2011-06-21T20:23:24Z - Persistent IDC84920E7D4AB697A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/08%20-%20Shes%20A%20Rebel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3211 - - Track ID3211 - NameExtraordinary Girl - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size7043333 - Total Time213995 - Track Number9 - Year2004 - Date Modified2010-03-09T23:25:26Z - Date Added2011-10-02T13:49:34Z - Bit Rate263 - Sample Rate44100 - Persistent ID60B11C8811B28B16 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/09%20-%20Extraordinary%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3213 - - Track ID3213 - NameLetterbomb - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size8142021 - Total Time246125 - Track Number10 - Year2004 - Date Modified2010-03-09T23:25:26Z - Date Added2011-10-02T13:49:34Z - Bit Rate264 - Sample Rate44100 - Skip Count4 - Skip Date2012-08-01T12:55:38Z - Persistent IDE78CAEA9C9AA096E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/10%20-%20Letterbomb.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3215 - - Track ID3215 - NameWake Me Up When September Ends - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size9061957 - Total Time285701 - Track Number11 - Year2004 - Date Modified2010-03-09T23:25:26Z - Date Added2011-10-02T13:49:34Z - Bit Rate253 - Sample Rate44100 - Persistent IDF6B56BD4F4C6A5C3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/11%20-%20Wake%20Me%20Up%20When%20September%20Ends.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3217 - - Track ID3217 - NameHomecoming - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size18459609 - Total Time558576 - Track Number12 - Year2004 - Date Modified2010-03-09T23:25:26Z - Date Added2011-10-02T13:49:34Z - Bit Rate264 - Sample Rate44100 - Skip Count2 - Skip Date2012-08-07T22:00:29Z - Persistent IDDDEF943C19BBA4DB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/12%20-%20Homecoming.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3219 - - Track ID3219 - NameWhatsername - ArtistGreen Day - AlbumAmerican Idiot - GenrePunk Rock - KindMPEG audio file - Size7508767 - Total Time252264 - Track Number13 - Year2004 - Date Modified2010-03-09T23:25:26Z - Date Added2011-10-02T13:49:34Z - Bit Rate238 - Sample Rate44100 - Play Count1 - Play Date3424290151 - Play Date UTC2012-07-05T03:42:31Z - Skip Count1 - Skip Date2012-06-06T12:39:26Z - Persistent ID097BA8BC92611433 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/American%20Idiot%20(2004)/13%20-%20Whatsername.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3221 - - Track ID3221 - NameSong Of The Century - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size2318672 - Total Time57861 - Track Number1 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:34Z - Bit Rate320 - Sample Rate44100 - Skip Count3 - Skip Date2012-07-26T13:29:06Z - Persistent ID9C79136CD513F4C4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/01%20%20Green%20Day%20-%20Song%20Of%20The%20Century.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3223 - - Track ID3223 - Name21st Century Breakdown - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size12369587 - Total Time309185 - Track Number2 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:34Z - Bit Rate320 - Sample Rate44100 - CommentsAct I - Heroes And Cons - Play Count1 - Play Date3424234146 - Play Date UTC2012-07-04T12:09:06Z - Skip Count1 - Skip Date2011-05-04T12:39:24Z - Persistent IDE1272F775A875B2A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/02%20%20Green%20Day%20-%2021st%20Century%20Breakdown.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3225 - - Track ID3225 - NameKnow Your Enemy - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size7614256 - Total Time190302 - Track Number3 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:34Z - Bit Rate320 - Sample Rate44100 - CommentsAct I - Heroes And Cons - Skip Count2 - Skip Date2011-06-08T21:09:20Z - Persistent IDBE0D5B86334DA844 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/03%20%20Green%20Day%20-%20Know%20Your%20Enemy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3227 - - Track ID3227 - NameViva La Gloria - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size8425097 - Total Time210573 - Track Number4 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:34Z - Bit Rate320 - Sample Rate44100 - CommentsAct I - Heroes And Cons - Play Count1 - Play Date3354253449 - Play Date UTC2010-04-16T13:04:09Z - Skip Count1 - Skip Date2010-05-21T11:47:57Z - Persistent ID472C3C1DBFC5BCEE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/04%20%20Green%20Day%20-%20Viva%20La%20Gloria.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3229 - - Track ID3229 - NameBefore The Lobotomy - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size11085407 - Total Time277080 - Track Number5 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:34Z - Bit Rate320 - Sample Rate44100 - CommentsAct I - Heroes And Cons - Persistent IDCA55431D14CE051E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/05%20%20Green%20Day%20-%20Before%20The%20Lobotomy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3231 - - Track ID3231 - NameChristian's Inferno - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size7487824 - Total Time187141 - Track Number6 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:34Z - Bit Rate320 - Sample Rate44100 - CommentsAct I - Heroes And Cons - Play Count1 - Play Date3424206951 - Play Date UTC2012-07-04T04:35:51Z - Skip Count1 - Skip Date2012-07-29T20:39:57Z - Persistent ID5BB1BCAE9DD2FDE0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/06%20%20Green%20Day%20-%20Christian's%20Inferno.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3233 - - Track ID3233 - NameLast Night On Earth - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size9466860 - Total Time236617 - Track Number7 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:34Z - Bit Rate320 - Sample Rate44100 - CommentsAct I - Heroes And Cons - Skip Count1 - Skip Date2012-06-14T20:09:50Z - Persistent ID585A8AA31649D0AE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/07%20%20Green%20Day%20-%20Last%20Night%20On%20Earth.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3235 - - Track ID3235 - NameEast Jesus Nowhere - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size10993456 - Total Time274782 - Track Number8 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:34Z - Bit Rate320 - Sample Rate44100 - CommentsAct II - Charlatans And Saints - Skip Count1 - Skip Date2012-08-05T13:26:47Z - Persistent ID56B461392C6A72EE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/08%20%20Green%20Day%20-%20East%20Jesus%20Nowhere.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3237 - - Track ID3237 - NamePeacemaker - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size8168052 - Total Time204146 - Track Number9 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:35Z - Bit Rate320 - Sample Rate44100 - CommentsAct II - Charlatans And Saints - Skip Count3 - Skip Date2012-06-12T13:31:40Z - Persistent IDDE1E1D85A47865E5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/09%20%20Green%20Day%20-%20Peacemaker.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3239 - - Track ID3239 - NameLast Of The American Girls - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size9246387 - Total Time231105 - Track Number10 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:35Z - Bit Rate320 - Sample Rate44100 - CommentsAct II - Charlatans And Saints - Skip Count3 - Skip Date2012-07-30T13:21:54Z - Persistent ID9DB889A092002012 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/10%20%20Green%20Day%20-%20Last%20Of%20The%20American%20Girls.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3241 - - Track ID3241 - NameMurder City - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size6982093 - Total Time174497 - Track Number11 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:35Z - Bit Rate320 - Sample Rate44100 - CommentsAct II - Charlatans And Saints - Skip Count3 - Skip Date2012-07-31T20:55:21Z - Persistent ID336F0A603B48D5D2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/11%20%20Green%20Day%20-%20Murder%20City.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3243 - - Track ID3243 - NameViva La Gloria [Little Girl] - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size9112640 - Total Time227761 - Track Number12 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:35Z - Bit Rate320 - Sample Rate44100 - CommentsAct II - Charlatans And Saints - Skip Count1 - Skip Date2012-05-30T21:55:41Z - Persistent ID7D27F6587F80C13E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/12%20%20Green%20Day%20-%20Viva%20La%20Gloria%20%5BLittle%20Girl%5D.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3245 - - Track ID3245 - NameRestless Heart Syndrome - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size10464738 - Total Time261564 - Track Number13 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:35Z - Bit Rate320 - Sample Rate44100 - CommentsAct II - Charlatans And Saints - Skip Count1 - Skip Date2012-06-08T22:08:33Z - Persistent ID94929993316E5730 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/13%20%20Green%20Day%20-%20Restless%20Heart%20Syndrome.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3247 - - Track ID3247 - NameHorseshoes And Handgrenades - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size7767856 - Total Time194142 - Track Number14 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:35Z - Bit Rate320 - Sample Rate44100 - CommentsAct III - Horseshoes And Handgrenades - Play Count2 - Play Date3383715267 - Play Date UTC2011-03-23T12:54:27Z - Persistent ID25475568E6FF3C5C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/14%20%20Green%20Day%20-%20Horseshoes%20And%20Handgrenades.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3249 - - Track ID3249 - NameThe Static Age - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size10270387 - Total Time256705 - Track Number15 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:35Z - Bit Rate320 - Sample Rate44100 - CommentsAct III - Horseshoes And Handgrenades - Play Count1 - Play Date3427206030 - Play Date UTC2012-08-07T21:40:30Z - Sort NameStatic Age - Persistent ID7AA88E3F8C3E7229 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/15%20%20Green%20Day%20-%20The%20Static%20Age.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3251 - - Track ID3251 - Name21 Guns - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size12849195 - Total Time321175 - Track Number16 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:35Z - Bit Rate320 - Sample Rate44100 - CommentsAct III - Horseshoes And Handgrenades - Skip Count1 - Skip Date2012-05-16T13:41:49Z - Persistent IDA1CF39DFA0A51650 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/16%20%20Green%20Day%20-%2021%20Guns.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3253 - - Track ID3253 - NameAmerican Eulogy - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size10649685 - Total Time266187 - Track Number17 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:35Z - Bit Rate320 - Sample Rate44100 - CommentsAct III - Horseshoes And Handgrenades - Play Count1 - Play Date3424333452 - Play Date UTC2012-07-05T15:44:12Z - Skip Count1 - Skip Date2012-06-08T22:04:09Z - Persistent IDB298C879E964976B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/17%20%20Green%20Day%20-%20American%20Eulogy%20(a)Mass%20Hysteria%20(b)Modern%20World.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3255 - - Track ID3255 - NameSee The Light - ArtistGreen Day - Album21st Century Breakdown - GenrePunk Rock - KindMPEG audio file - Size11042567 - Total Time276009 - Track Number18 - Year2009 - Date Modified2010-03-09T23:21:52Z - Date Added2011-10-02T13:49:35Z - Bit Rate320 - Sample Rate44100 - CommentsAct III - Horseshoes And Handgrenades - Skip Count3 - Skip Date2012-07-10T21:00:22Z - Persistent IDB1AC1054FE9D32F9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/21st%20Century%20Breakdown%20(2009)/18%20%20Green%20Day%20-%20See%20The%20Light.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3257 - - Track ID3257 - NameDisco Pogo (Wir Dreh’n Ab!)(megastylez.rmx) - ArtistRicky Rich feat. Disco Pogo - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size5744090 - Total Time223843 - Disc Number1 - Disc Count2 - Track Number1 - Year2010 - Date Modified2010-05-29T18:32:00Z - Date Added2011-10-02T13:49:35Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3423904348 - Play Date UTC2012-06-30T16:32:28Z - Skip Count1 - Skip Date2012-06-11T17:07:48Z - Artwork Count1 - Persistent ID22609A8C03BE86F5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/101.%20Ricky%20Rich%20feat.%20Disco%20Pogo%20-%20Disco%20Pogo%20(Wir%20Dreh'n%20Ab!)(megastylez.rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3259 - - Track ID3259 - NameThe Sound Above My Hair - ArtistScooter - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size4285575 - Total Time167549 - Disc Number1 - Disc Count2 - Track Number2 - Year2010 - Date Modified2010-05-29T18:32:00Z - Date Added2011-10-02T13:49:35Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count3 - Play Date3424192338 - Play Date UTC2012-07-04T00:32:18Z - Skip Count2 - Skip Date2012-08-01T21:05:52Z - Artwork Count1 - Sort NameSound Above My Hair - Persistent IDDC857964BCDBEB0C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/102.%20Scooter%20-%20The%20Sound%20Above%20My%20Hair.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3261 - - Track ID3261 - NameSuperstar (Empyre One Remix) - ArtistPulsedriver - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size2796013 - Total Time108643 - Disc Number1 - Disc Count2 - Track Number3 - Year2010 - Date Modified2010-05-29T18:32:01Z - Date Added2011-10-02T13:49:35Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count3 - Play Date3423904624 - Play Date UTC2012-06-30T16:37:04Z - Artwork Count1 - Persistent ID0041CAC1D4878CAB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/103.%20Pulsedriver%20-%20Superstar%20(Empyre%20One%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3263 - - Track ID3263 - NameEiskalt (Bitterkalt Mix) - ArtistDream Dance Alliance - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size4584351 - Total Time172329 - Disc Number1 - Disc Count2 - Track Number4 - Year2010 - Date Modified2010-05-29T18:32:01Z - Date Added2011-10-02T13:49:35Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count3 - Play Date3424216381 - Play Date UTC2012-07-04T07:13:01Z - Skip Count1 - Skip Date2012-06-08T22:15:39Z - Artwork Count1 - Persistent IDE030CEC90CB820FE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/104.%20Dream%20Dance%20Alliance%20-%20Eiskalt%20(Bitterkalt%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3265 - - Track ID3265 - NameBad Romance (Original Extended) - ArtistPandora BX - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size5917234 - Total Time230687 - Disc Number1 - Disc Count2 - Track Number5 - Year2010 - Date Modified2010-05-29T18:32:01Z - Date Added2011-10-02T13:49:35Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count3 - Skip Date2012-07-27T12:56:12Z - Artwork Count1 - Persistent IDEFDEE84001406AA6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/105.%20Pandora%20BX%20-%20Bad%20Romance%20(Original%20Extended).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3267 - - Track ID3267 - Name3 (Club Mix) - ArtistThe Real Booty Babes - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size5848171 - Total Time233404 - Disc Number1 - Disc Count2 - Track Number6 - Year2010 - Date Modified2010-05-29T18:32:01Z - Date Added2011-10-02T13:49:35Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3424179717 - Play Date UTC2012-07-03T21:01:57Z - Skip Count1 - Skip Date2012-06-20T13:10:46Z - Artwork Count1 - Sort ArtistReal Booty Babes - Persistent ID66FC73CA423BA17A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/106.%20The%20Real%20Booty%20Babes%20-%203%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3269 - - Track ID3269 - NameDj Play This Song (Rocco & Bass-T Remix) - ArtistPalm Springs - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size8027736 - Total Time297221 - Disc Number1 - Disc Count2 - Track Number7 - Year2010 - Date Modified2010-05-29T18:32:01Z - Date Added2011-10-02T13:49:35Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3423905484 - Play Date UTC2012-06-30T16:51:24Z - Artwork Count1 - Persistent ID3487529AA9508CD1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/107.%20Palm%20Springs%20-%20Dj%20Play%20This%20Song%20(Rocco%20&%20Bass-T%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3271 - - Track ID3271 - NameMaybe Tomorrow (RainDropz! Remix) - ArtistJaybee feat. Deshayla - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size5866793 - Total Time231418 - Disc Number1 - Disc Count2 - Track Number8 - Year2010 - Date Modified2010-05-29T18:32:01Z - Date Added2011-10-02T13:49:35Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-05-16T22:49:22Z - Artwork Count1 - Persistent IDFDD798113E4288C6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/108.%20Jaybee%20feat.%20Deshayla%20-%20Maybe%20Tomorrow%20(RainDropz!%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3273 - - Track ID3273 - NameBehind the Sun 2010 (Club Mix) - ArtistSavon - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size4562395 - Total Time174994 - Disc Number1 - Disc Count2 - Track Number9 - Year2010 - Date Modified2010-05-29T18:32:01Z - Date Added2011-10-02T13:49:36Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID357D7442E87FFF46 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/109.%20Savon%20-%20Behind%20the%20Sun%202010%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3275 - - Track ID3275 - NameMystical - ArtistDJ Dean - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size6665682 - Total Time236930 - Disc Number1 - Disc Count2 - Track Number10 - Year2010 - Date Modified2010-05-29T18:32:01Z - Date Added2011-10-02T13:49:36Z - Bit Rate224 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3351224448 - Play Date UTC2010-03-12T11:40:48Z - Artwork Count1 - Persistent IDD9FC834A031035CB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/110.%20DJ%20Dean%20-%20Mystical.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3277 - - Track ID3277 - NameDat Old Bass (Dezybill Remix) - ArtistBulljay - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size4101763 - Total Time148062 - Disc Number1 - Disc Count2 - Track Number11 - Year2010 - Date Modified2010-05-29T18:32:02Z - Date Added2011-10-02T13:49:36Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3424332009 - Play Date UTC2012-07-05T15:20:09Z - Skip Count1 - Skip Date2012-08-09T00:01:48Z - Artwork Count1 - Persistent IDA6A095837BD69AC1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/111.%20Bulljay%20-%20Dat%20Old%20Bass%20(Dezybill%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3279 - - Track ID3279 - NameAre you someone? (Club Mix) - ArtistDJ Fait - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size3193686 - Total Time123663 - Disc Number1 - Disc Count2 - Track Number12 - Year2010 - Date Modified2010-05-29T18:32:02Z - Date Added2011-10-02T13:49:36Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7B6F5CEB28A41045 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/112.%20DJ%20Fait%20-%20Are%20you%20someone-%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3281 - - Track ID3281 - NameUntil the Morning comes (Giorno Remix) - ArtistKate Shaheera - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size5585036 - Total Time225018 - Disc Number1 - Disc Count2 - Track Number13 - Year2010 - Date Modified2010-05-29T18:32:02Z - Date Added2011-10-02T13:49:36Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424317738 - Play Date UTC2012-07-05T11:22:18Z - Skip Count2 - Skip Date2012-05-30T21:41:50Z - Artwork Count1 - Persistent IDB4DB66D34492A89D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/113.%20Kate%20Shaheera%20-%20Until%20the%20Morning%20comes%20(Giorno%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3283 - - Track ID3283 - NameThis is my Time (Club Mix) - ArtistCalderone Inc. - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size3781684 - Total Time147539 - Disc Number1 - Disc Count2 - Track Number14 - Year2010 - Date Modified2010-05-29T18:32:02Z - Date Added2011-10-02T13:49:36Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-05-31T13:34:46Z - Artwork Count1 - Persistent IDD103F57325BB3BA8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/114.%20Calderone%20Inc.%20-%20This%20is%20my%20Time%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3285 - - Track ID3285 - NameFugly (Club Mix) - ArtistDJ Lee - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size6632810 - Total Time263549 - Disc Number1 - Disc Count2 - Track Number15 - Year2010 - Date Modified2010-05-29T18:32:02Z - Date Added2011-10-02T13:49:36Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424340300 - Play Date UTC2012-07-05T17:38:20Z - Skip Count1 - Skip Date2012-06-29T12:57:35Z - Artwork Count1 - Persistent IDF5F0C340E025422A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/115.%20DJ%20Lee%20-%20Fugly%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3287 - - Track ID3287 - NameCheck out the Bass - ArtistHennes Petersen - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size4951387 - Total Time186148 - Disc Number1 - Disc Count2 - Track Number16 - Year2010 - Date Modified2010-05-29T18:32:02Z - Date Added2011-10-02T13:49:36Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424285120 - Play Date UTC2012-07-05T02:18:40Z - Skip Count2 - Skip Date2012-07-12T11:47:16Z - Artwork Count1 - Persistent IDF7CE9F596A40CF6F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/116.%20Hennes%20Petersen%20-%20Check%20out%20the%20Bass.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3289 - - Track ID3289 - NameInfluenza - ArtistDynamic Dean - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size4468591 - Total Time156604 - Disc Number1 - Disc Count2 - Track Number17 - Year2010 - Date Modified2010-05-29T18:32:03Z - Date Added2011-10-02T13:49:36Z - Bit Rate226 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDB321129D5E784ABE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/117.%20Dynamic%20Dean%20-%20Influenza.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3291 - - Track ID3291 - NameFree Rider (Lowcash Remix) - ArtistMontana & The Revialz - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size3337636 - Total Time113502 - Disc Number1 - Disc Count2 - Track Number18 - Year2010 - Date Modified2010-05-29T18:32:03Z - Date Added2011-10-02T13:49:36Z - Bit Rate233 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3426687064 - Play Date UTC2012-08-01T21:31:04Z - Artwork Count1 - Persistent ID535A436FDF13E9B9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/118.%20Montana%20&%20The%20Revialz%20-%20Free%20Rider%20(Lowcash%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3293 - - Track ID3293 - NameEmotions 2010 (Accuface High Energy Mix) - ArtistMegasonic - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size4881698 - Total Time180662 - Disc Number1 - Disc Count2 - Track Number19 - Year2010 - Date Modified2010-05-29T18:32:03Z - Date Added2011-10-02T13:49:36Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0354CE7E0D85086A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/119.%20Megasonic%20-%20Emotions%202010%20(Accuface%20High%20Energy%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3295 - - Track ID3295 - NameYou may think (Arpeggiated Mix) - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size5117669 - Total Time180636 - Disc Number1 - Disc Count2 - Track Number20 - Year2010 - Date Modified2010-05-29T18:32:03Z - Date Added2011-10-02T13:49:36Z - Bit Rate225 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-08-16T13:07:33Z - Artwork Count1 - Persistent IDBFD6B8395D37495C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/120.%20Accuface%20-%20You%20may%20think%20(Arpeggiated%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3297 - - Track ID3297 - NamePleased About You (Club Mix) - ArtistDezybill - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size3701347 - Total Time139363 - Disc Number1 - Disc Count2 - Track Number21 - Year2010 - Date Modified2010-05-29T18:32:03Z - Date Added2011-10-02T13:49:36Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD53283E6E2B55F6D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/121.%20Dezybill%20-%20Pleased%20About%20You%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3299 - - Track ID3299 - NameTry (DJ Space Raven Remix) - ArtistTube Tonic - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size4645104 - Total Time171284 - Disc Number1 - Disc Count2 - Track Number22 - Year2010 - Date Modified2010-05-29T18:32:03Z - Date Added2011-10-02T13:49:36Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-05-09T12:44:44Z - Artwork Count1 - Persistent ID97604EA42545B95A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/122.%20Tube%20Tonic%20-%20Try%20(DJ%20Space%20Raven%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3301 - - Track ID3301 - NameDirty Beatz (Original Mix) - ArtistDickSun Gee - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size3280090 - Total Time131657 - Disc Number1 - Disc Count2 - Track Number23 - Year2010 - Date Modified2010-05-29T18:32:03Z - Date Added2011-10-02T13:49:36Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-07-16T16:27:01Z - Artwork Count1 - Persistent ID17496A1A916F1AC6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/123.%20DickSun%20Gee%20-%20Dirty%20Beatz%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3303 - - Track ID3303 - NameCocaine 2k9 remixes (Andrea Montorsi Remix) - ArtistDJ TOM X vs. WARMDUSCHER - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size3024673 - Total Time121652 - Disc Number1 - Disc Count2 - Track Number24 - Year2010 - Date Modified2010-05-29T18:32:03Z - Date Added2011-10-02T13:49:36Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID215DB959DE4AE088 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/124.%20DJ%20TOM%20X%20vs.%20WARMDUSCHER%20-%20Cocaine%202k9%20remixes%20(Andrea%20Montorsi%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3305 - - Track ID3305 - NameControl Your Body (Antolini & Montorsi Rmx) - ArtistLuca Antolini - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD1 - GenreHard Trance - KindMPEG audio file - Size9283768 - Total Time340662 - Disc Number1 - Disc Count2 - Track Number25 - Year2010 - Date Modified2010-05-29T18:32:04Z - Date Added2011-10-02T13:49:36Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA5C2F9B6A958219A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/125.%20Luca%20Antolini%20-%20Control%20Your%20Body%20(Antolini%20&%20Montorsi%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3307 - - Track ID3307 - NameLaut (Bigroom Mix Edit) - ArtistFinger & Kadel - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size5468492 - Total Time199941 - Disc Number2 - Disc Count2 - Track Number26 - Year2010 - Date Modified2010-05-29T18:32:12Z - Date Added2011-10-02T13:49:37Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3427429150 - Play Date UTC2012-08-10T11:39:10Z - Artwork Count1 - Persistent ID663E2AB80B6F9C04 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/226.%20Finger%20&%20Kadel%20-%20Laut%20(Bigroom%20Mix%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3309 - - Track ID3309 - NameWalk The Line (Club Mix) - ArtistLaurent Wolf - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size4288596 - Total Time165302 - Disc Number2 - Disc Count2 - Track Number27 - Year2010 - Date Modified2010-05-29T18:32:12Z - Date Added2011-10-02T13:49:37Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3351446040 - Play Date UTC2010-03-15T01:14:00Z - Skip Count1 - Skip Date2012-04-25T21:11:35Z - Artwork Count1 - Persistent IDB51627F095F42BD3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/227.%20Laurent%20Wolf%20-%20Walk%20The%20Line%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3311 - - Track ID3311 - NameRock To The Beat (Club Mix) - ArtistDarius & Finlay feat. Nicco - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size3274658 - Total Time126197 - Disc Number2 - Disc Count2 - Track Number28 - Year2010 - Date Modified2010-05-29T18:32:12Z - Date Added2011-10-02T13:49:37Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3424206005 - Play Date UTC2012-07-04T04:20:05Z - Skip Count1 - Skip Date2012-07-29T22:11:13Z - Artwork Count1 - Persistent ID69EB52434ACD1BAB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/228.%20Darius%20&%20Finlay%20feat.%20Nicco%20-%20Rock%20To%20The%20Beat%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3313 - - Track ID3313 - NameBetter Days (Bodybangers Remix) - ArtistKlaas - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size4113904 - Total Time155297 - Disc Number2 - Disc Count2 - Track Number29 - Year2010 - Date Modified2010-05-29T18:32:12Z - Date Added2011-10-02T13:49:37Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3424312067 - Play Date UTC2012-07-05T09:47:47Z - Skip Count1 - Skip Date2012-05-23T13:49:20Z - Artwork Count1 - Persistent IDFF8693779BC5E4A7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/229.%20Klaas%20-%20Better%20Days%20(Bodybangers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3315 - - Track ID3315 - NameHow Does It Feel (Club Mix) - ArtistMichael Mind Project - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size3451186 - Total Time137926 - Disc Number2 - Disc Count2 - Track Number30 - Year2010 - Date Modified2010-05-29T18:32:13Z - Date Added2011-10-02T13:49:37Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424215633 - Play Date UTC2012-07-04T07:00:33Z - Skip Count1 - Skip Date2012-05-10T12:51:55Z - Artwork Count1 - Persistent ID80BBCAFF17CD523D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/230.%20Michael%20Mind%20Project%20-%20How%20Does%20It%20Feel%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3317 - - Track ID3317 - NameBlack Is Black (Club Mix) - ArtistNiels Van Gogh vs. Emilio Verdez - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size2525116 - Total Time95973 - Disc Number2 - Disc Count2 - Track Number31 - Year2010 - Date Modified2010-05-29T18:32:13Z - Date Added2011-10-02T13:49:37Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID13EF828B13586AB2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/231.%20Niels%20Van%20Gogh%20vs.%20Emilio%20Verdez%20-%20Black%20Is%20Black%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3319 - - Track ID3319 - NameIn Your Dreams (No Fate 2010)(Club Mix) - ArtistSonic Palms - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size3359069 - Total Time127973 - Disc Number2 - Disc Count2 - Track Number32 - Year2010 - Date Modified2010-05-29T18:32:13Z - Date Added2011-10-02T13:49:37Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF67C9CF15F80DE04 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/232.%20Sonic%20Palms%20-%20In%20Your%20Dreams%20(No%20Fate%202010)(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3321 - - Track ID3321 - NameBroken Night (Hardwell Remix) - ArtistArmin van Buuren feat. VanVelzen - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size4418123 - Total Time170135 - Disc Number2 - Disc Count2 - Track Number33 - Year2010 - Date Modified2010-05-29T18:32:13Z - Date Added2011-10-02T13:49:37Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3092D1F3631FEF86 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/233.%20Armin%20van%20Buuren%20feat.%20VanVelzen%20-%20Broken%20Night%20(Hardwell%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3323 - - Track ID3323 - NameWaiting (First State Remix) - ArtistDash Berlin feat. Emma Hewitt - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size7096294 - Total Time278883 - Disc Number2 - Disc Count2 - Track Number34 - Year2010 - Date Modified2010-05-29T18:32:13Z - Date Added2011-10-02T13:49:37Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424246370 - Play Date UTC2012-07-04T15:32:50Z - Skip Count1 - Skip Date2012-06-11T17:06:16Z - Artwork Count1 - Persistent ID9EDD9D36714D4C2E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/234.%20Dash%20Berlin%20feat.%20Emma%20Hewitt%20-%20Waiting%20(First%20State%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3325 - - Track ID3325 - NameComing Back (Nic Chagall Remix) - ArtistMarco V feat. Jonathan Mendelsohn - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size2313753 - Total Time78942 - Disc Number2 - Disc Count2 - Track Number35 - Year2010 - Date Modified2010-05-29T18:32:13Z - Date Added2011-10-02T13:49:37Z - Bit Rate231 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4FBCAECCEC90CA71 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/235.%20Marco%20V%20feat.%20Jonathan%20Mendelsohn%20-%20Coming%20Back%20(Nic%20Chagall%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3327 - - Track ID3327 - NameEverything (Dub Mix) - ArtistMarcel Woods - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size3346889 - Total Time128313 - Disc Number2 - Disc Count2 - Track Number36 - Year2010 - Date Modified2010-05-29T18:32:13Z - Date Added2011-10-02T13:49:37Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-04-23T11:31:16Z - Artwork Count1 - Persistent ID2B35A4A5184415BD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/236.%20Marcel%20Woods%20-%20Everything%20(Dub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3329 - - Track ID3329 - NameOne - ArtistJoop - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size2846377 - Total Time108512 - Disc Number2 - Disc Count2 - Track Number37 - Year2010 - Date Modified2010-05-29T18:32:14Z - Date Added2011-10-02T13:49:37Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD48E7AC25ED31CDA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/237.%20Joop%20-%20One.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3331 - - Track ID3331 - NameBrain Box (MaRLo Remix) - ArtistFerry Corsten - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size3807206 - Total Time143438 - Disc Number2 - Disc Count2 - Track Number38 - Year2010 - Date Modified2010-05-29T18:32:14Z - Date Added2011-10-02T13:49:37Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7E5D884D0E28A751 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/238.%20Ferry%20Corsten%20-%20Brain%20Box%20(MaRLo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3333 - - Track ID3333 - NameMy G*O*D (Guns On Demo)(Tiësto Remix) - ArtistLaidback Luke - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size5593827 - Total Time217338 - Disc Number2 - Disc Count2 - Track Number39 - Year2010 - Date Modified2010-05-29T18:32:14Z - Date Added2011-10-02T13:49:37Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-07-27T22:25:05Z - Artwork Count1 - Persistent ID9C34DD6CC4470E76 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/239.%20Laidback%20Luke%20-%20My%20G-O-D%20(Guns%20On%20Demo)(Ti%C3%ABsto%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3335 - - Track ID3335 - NameUnlimited (Another Version) - ArtistSa.Vee.Oh - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size5735578 - Total Time205635 - Disc Number2 - Disc Count2 - Track Number40 - Year2010 - Date Modified2010-05-29T18:32:14Z - Date Added2011-10-02T13:49:37Z - Bit Rate221 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-29T22:25:43Z - Artwork Count1 - Persistent IDF3967D26CB28C449 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/240.%20Sa.Vee.Oh%20-%20Unlimited%20(Another%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3337 - - Track ID3337 - NameAcid Rain - ArtistEnergy Flash - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size3737092 - Total Time144091 - Disc Number2 - Disc Count2 - Track Number41 - Year2010 - Date Modified2010-05-29T18:32:14Z - Date Added2011-10-02T13:49:38Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2C312E5432E32818 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/241.%20Energy%20Flash%20-%20Acid%20Rain.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3339 - - Track ID3339 - NameTime (Dub Mix) - ArtistPaul Webster feat. Angelic Amanda - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size5950662 - Total Time234684 - Disc Number2 - Disc Count2 - Track Number42 - Year2010 - Date Modified2010-05-29T18:32:14Z - Date Added2011-10-02T13:49:38Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID229D42D8DFABAD78 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/242.%20Paul%20Webster%20feat.%20Angelic%20Amanda%20-%20Time%20(Dub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3341 - - Track ID3341 - NameWe are in Heaven - ArtistVan Nilson - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size7502470 - Total Time308950 - Disc Number2 - Disc Count2 - Track Number43 - Year2010 - Date Modified2010-05-29T18:32:15Z - Date Added2011-10-02T13:49:38Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID36C74A18DF1C273B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/243.%20Van%20Nilson%20-%20We%20are%20in%20Heaven.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3343 - - Track ID3343 - NameTornado (Original Mix) - ArtistJohn Miller - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size4574096 - Total Time183040 - Disc Number2 - Disc Count2 - Track Number44 - Year2010 - Date Modified2010-05-29T18:32:15Z - Date Added2011-10-02T13:49:38Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8924E0558DB267D1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/244.%20John%20Miller%20-%20Tornado%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3345 - - Track ID3345 - NameRAMsterdam (Jorn van Deynhoven Remix) - ArtistRAM - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size3762839 - Total Time134347 - Disc Number2 - Disc Count2 - Track Number45 - Year2010 - Date Modified2010-05-29T18:32:15Z - Date Added2011-10-02T13:49:38Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424300982 - Play Date UTC2012-07-05T06:43:02Z - Artwork Count1 - Persistent IDB22981811E507147 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/245.%20RAM%20-%20RAMsterdam%20(Jorn%20van%20Deynhoven%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3347 - - Track ID3347 - NameMaiden’s Tower (Original Mix) - ArtistFaruk Sabanci - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size8009346 - Total Time295758 - Disc Number2 - Disc Count2 - Track Number46 - Year2010 - Date Modified2010-05-29T18:32:15Z - Date Added2011-10-02T13:49:38Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424266382 - Play Date UTC2012-07-04T21:06:22Z - Artwork Count1 - Persistent IDD34AF1360BBD577F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/246.%20Faruk%20Sabanci%20-%20Maiden's%20Tower%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3349 - - Track ID3349 - NameBanana Sauce (Original Mix) - ArtistBraincreator - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size3682101 - Total Time141139 - Disc Number2 - Disc Count2 - Track Number47 - Year2010 - Date Modified2010-05-29T18:32:15Z - Date Added2011-10-02T13:49:38Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2B970EC42BB6AFFC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/247.%20Braincreator%20-%20Banana%20Sauce%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3351 - - Track ID3351 - NameThe First One (Original Mix) - ArtistPaul Miller pres. Meli - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size7171207 - Total Time285988 - Disc Number2 - Disc Count2 - Track Number48 - Year2010 - Date Modified2010-05-29T18:32:15Z - Date Added2011-10-02T13:49:38Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameFirst One (Original Mix) - Persistent IDFE6ED0C9C95CDE13 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/248.%20Paul%20Miller%20pres.%20Meli%20-%20The%20First%20One%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3353 - - Track ID3353 - NameCompassion (Lee Haslam Remix) - ArtistNurettin Colak - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size8096603 - Total Time341289 - Disc Number2 - Disc Count2 - Track Number49 - Year2010 - Date Modified2010-05-29T18:32:15Z - Date Added2011-10-02T13:49:38Z - Bit Rate189 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4AD6041B1823D516 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/249.%20Nurettin%20Colak%20-%20Compassion%20(Lee%20Haslam%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3355 - - Track ID3355 - NameToo Blind To See It (Pulsedriver Redriver) - ArtistLimelight - Album ArtistVA - AlbumTunnel Trance Force Vol.52 / CD2 - GenreHard Trance - KindMPEG audio file - Size6766425 - Total Time262635 - Disc Number2 - Disc Count2 - Track Number50 - Year2010 - Date Modified2010-05-29T18:32:16Z - Date Added2011-10-02T13:49:38Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3424237985 - Play Date UTC2012-07-04T13:13:05Z - Artwork Count1 - Persistent ID93572E8920559E0D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2052%20(2010)/250.%20Limelight%20-%20Too%20Blind%20To%20See%20It%20(Pulsedriver%20Redriver).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3357 - - Track ID3357 - NameParty Affair (Rocco Mix) - ArtistDJ Boozy Woozy - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size5967737 - Total Time248555 - Disc Number1 - Disc Count2 - Track Number1 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Play Count1 - Play Date3351051636 - Play Date UTC2010-03-10T11:40:36Z - Skip Count1 - Skip Date2012-08-01T21:05:22Z - Persistent IDF64C5A280E87E0EC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/101.%20DJ%20Boozy%20Woozy%20-%20Party%20Affair%20(Rocco%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3359 - - Track ID3359 - NameWhen I Rock - ArtistVoodoo and Serano - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size7070512 - Total Time294504 - Disc Number1 - Disc Count2 - Track Number2 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Play Count1 - Play Date3422280346 - Play Date UTC2012-06-11T21:25:46Z - Persistent ID881E26B108BD0492 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/102.%20Voodoo%20and%20Serano%20-%20When%20I%20Rock.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3361 - - Track ID3361 - NameFree (Club Mix) - ArtistStarsplash - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size7567045 - Total Time315193 - Disc Number1 - Disc Count2 - Track Number3 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Play Count2 - Play Date3424229307 - Play Date UTC2012-07-04T10:48:27Z - Persistent IDC45CCA9F3106450A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/103.%20Starsplash%20-%20Free%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3363 - - Track ID3363 - NameTrance and Acid - ArtistKai Tracid - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size3470627 - Total Time144509 - Disc Number1 - Disc Count2 - Track Number4 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Skip Count2 - Skip Date2012-05-18T13:29:27Z - Persistent ID9D372E62F7B982A6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/104.%20Kai%20Tracid%20-%20Trance%20and%20Acid.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3365 - - Track ID3365 - NameThe Drill (Evacuation Mix) - ArtistDirt Devils - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size3822979 - Total Time159190 - Disc Number1 - Disc Count2 - Track Number5 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Play Count1 - Play Date3424296730 - Play Date UTC2012-07-05T05:32:10Z - Sort NameDrill (Evacuation Mix) - Persistent ID0FED468A64B51A2F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/105.%20Dirt%20Devils%20-%20The%20Drill%20(Evacuation%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3367 - - Track ID3367 - NameFree your Mind (DJ Taylor and Flow Mix) - ArtistMario Lopez - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size8188993 - Total Time341106 - Disc Number1 - Disc Count2 - Track Number6 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Skip Count1 - Skip Date2012-05-15T13:37:40Z - Persistent ID9303A4B1DE8280D2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/106.%20Mario%20Lopez%20-%20Free%20your%20Mind%20(DJ%20Taylor%20and%20Flow%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3369 - - Track ID3369 - NameTwisted (Energy Mix) - ArtistSvenson and Gielen - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size5674957 - Total Time236355 - Disc Number1 - Disc Count2 - Track Number7 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Skip Count2 - Skip Date2012-07-16T13:59:47Z - Persistent ID051E1D343461C54D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/107.%20Svenson%20and%20Gielen%20-%20Twisted%20(Energy%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3371 - - Track ID3371 - NameLet the Party begin (Green Court Rmx) - ArtistKlubbheads - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size7804677 - Total Time325093 - Disc Number1 - Disc Count2 - Track Number8 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:38Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Persistent IDED0D73AE519B3D7A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/108.%20Klubbheads%20-%20Let%20the%20Party%20begin%20(Green%20Court%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3373 - - Track ID3373 - Name4 o Clock in the Morning ( DJs at Work Mix) - ArtistLazard - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size6352062 - Total Time264568 - Disc Number1 - Disc Count2 - Track Number9 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Persistent ID6737195482DFD50B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/109.%20Lazard%20-%204%20o%20Clock%20in%20the%20Morning%20(%20DJs%20at%20Work%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3375 - - Track ID3375 - NameIn my Dreams - ArtistNoemi - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size5908785 - Total Time246099 - Disc Number1 - Disc Count2 - Track Number10 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Play Count1 - Play Date3424222870 - Play Date UTC2012-07-04T09:01:10Z - Persistent ID1FA261770EC94EBD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/110.%20Noemi%20-%20In%20my%20Dreams.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3377 - - Track ID3377 - NameExpander (Flutlicht Remix) - ArtistMarc Dawn - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size5254279 - Total Time218827 - Disc Number1 - Disc Count2 - Track Number11 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Play Count1 - Play Date3424204893 - Play Date UTC2012-07-04T04:01:33Z - Persistent ID2C31ED98D9D60452 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/111.%20Marc%20Dawn%20-%20Expander%20(Flutlicht%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3379 - - Track ID3379 - NameWill I (Voodoo and Serrano Mix) - ArtistIan van Dahl - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size7428510 - Total Time309420 - Disc Number1 - Disc Count2 - Track Number12 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Persistent ID7DDEE33F7DED41E2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/112.%20Ian%20van%20Dahl%20-%20Will%20I%20(Voodoo%20and%20Serrano%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3381 - - Track ID3381 - NameGood Time (Pulsedriver Remix) - ArtistPeran - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size4940808 - Total Time205766 - Disc Number1 - Disc Count2 - Track Number13 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Skip Count1 - Skip Date2012-04-25T12:50:54Z - Persistent ID7D89070ABB795533 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/113.%20Peran%20-%20Good%20Time%20(Pulsedriver%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3383 - - Track ID3383 - NameAll Night long (Tom-X Rmx) - ArtistTales of DJ Phillip - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size4268114 - Total Time177737 - Disc Number1 - Disc Count2 - Track Number14 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Skip Count1 - Skip Date2012-08-08T23:57:52Z - Persistent ID9F1D4D4FEC3957F6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/114.%20Tales%20of%20DJ%20Phillip%20-%20All%20Night%20long%20(Tom-X%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3385 - - Track ID3385 - NameBack Up - ArtistAngel Beats - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size7914990 - Total Time329691 - Disc Number1 - Disc Count2 - Track Number15 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Play Count1 - Play Date3424332550 - Play Date UTC2012-07-05T15:29:10Z - Skip Count1 - Skip Date2012-05-23T18:33:27Z - Persistent ID27E3B3FF051487D5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/115.%20Angel%20Beats%20-%20Back%20Up.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3387 - - Track ID3387 - NameMusic was born in Paradise - ArtistAge of Space - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size5145194 - Total Time214282 - Disc Number1 - Disc Count2 - Track Number16 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Skip Count1 - Skip Date2012-06-11T17:06:12Z - Persistent ID670ECE899048BA15 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/116.%20Age%20of%20Space%20-%20Music%20was%20born%20in%20Paradise.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3389 - - Track ID3389 - NameJourney into Sound (DJs at work Rmx) - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size4603525 - Total Time191712 - Disc Number1 - Disc Count2 - Track Number17 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Play Count1 - Play Date3424224242 - Play Date UTC2012-07-04T09:24:02Z - Persistent IDDF8DEFF033FE2B0D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/117.%20Accuface%20-%20Journey%20into%20Sound%20(DJs%20at%20work%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3391 - - Track ID3391 - NameOver the Melody - ArtistJFS - Album ArtistVA - AlbumTunnel Trance Force Vol. 21 / CD1 - GenreTrance - KindMPEG audio file - Size5753305 - Total Time239621 - Disc Number1 - Disc Count2 - Track Number18 - Track Count18 - Year2002 - Date Modified2012-08-18T02:10:58Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - CommentsTeam NBD/ Tha Best - Skip Count1 - Skip Date2012-06-12T21:21:26Z - Persistent IDA37EE41D50F78D66 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2021%20(2002)/118.%20JFS%20-%20Over%20the%20Melody.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3393 - - Track ID3393 - NameWarning - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size5374804 - Total Time223843 - Date Modified2010-02-22T01:45:45Z - Date Added2011-10-02T13:49:39Z - Bit Rate192 - Sample Rate44100 - Skip Count3 - Skip Date2012-05-16T22:50:35Z - Persistent ID9247B3CC6E3475D6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/01%20-%20Warning.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3395 - - Track ID3395 - NameBlood Sex and Booze - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size5127551 - Total Time213524 - Date Modified2010-02-22T01:45:48Z - Date Added2011-10-02T13:49:40Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-28T16:45:05Z - Persistent ID61FF80B70F95A449 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/02%20-%20Blood%20Sex%20and%20Booze.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3397 - - Track ID3397 - NameChurch On Sunday - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size4765714 - Total Time198426 - Date Modified2010-02-22T01:45:52Z - Date Added2011-10-02T13:49:40Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3428072822 - Play Date UTC2012-08-17T22:27:02Z - Skip Count2 - Skip Date2012-08-17T12:44:37Z - Persistent IDE0EA7B9A790CC03C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/03%20-%20Church%20On%20Sunday.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3399 - - Track ID3399 - NameFashion Victim - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size4046435 - Total Time168411 - Date Modified2010-02-22T01:45:56Z - Date Added2011-10-02T13:49:41Z - Bit Rate192 - Sample Rate44100 - Skip Count4 - Skip Date2012-08-10T20:28:28Z - Persistent ID11211A2B86036B56 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/04%20-%20Fashion%20Victim.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3401 - - Track ID3401 - NameCastaway - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size5578876 - Total Time232359 - Date Modified2010-02-22T01:46:00Z - Date Added2011-10-02T13:49:43Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-08-17T19:50:27Z - Persistent ID97345DA1737323B7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/05%20-%20Castaway.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3403 - - Track ID3403 - NameMisery - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size7339189 - Total Time305371 - Date Modified2010-02-22T01:46:04Z - Date Added2011-10-02T13:49:44Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-11T21:43:19Z - Persistent ID83C7C528472A4317 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/06%20-%20Misery.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3405 - - Track ID3405 - NameDead Beat - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size5170757 - Total Time215327 - Date Modified2010-02-22T01:46:09Z - Date Added2011-10-02T13:49:44Z - Bit Rate192 - Sample Rate44100 - Skip Count3 - Skip Date2012-07-09T12:39:03Z - Persistent ID390FE0CDC0BE005A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/07%20-%20Dead%20Beat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3407 - - Track ID3407 - NameHold On - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size4248632 - Total Time176848 - Date Modified2010-02-22T01:46:12Z - Date Added2011-10-02T13:49:44Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3389604998 - Play Date UTC2011-05-30T16:56:38Z - Skip Count2 - Skip Date2012-06-27T15:06:35Z - Persistent IDAD2646A2FF4D2105 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/08%20-%20Hold%20On.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3409 - - Track ID3409 - NameJack Ass - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size3916847 - Total Time163004 - Date Modified2010-02-22T01:46:16Z - Date Added2011-10-02T13:49:45Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-06T12:37:32Z - Persistent ID068F713D94A326CF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/09%20-%20Jack%20Ass.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3411 - - Track ID3411 - NameWaiting - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size4656790 - Total Time193880 - Date Modified2010-02-22T01:46:20Z - Date Added2011-10-02T13:49:46Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3354336979 - Play Date UTC2010-04-17T12:16:19Z - Persistent ID4DF814C37D484EB5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/10%20-%20Waiting.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3413 - - Track ID3413 - NameMinority - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size4069616 - Total Time169377 - Date Modified2010-02-22T01:46:24Z - Date Added2011-10-02T13:49:46Z - Bit Rate192 - Sample Rate44100 - Play Count6 - Play Date3427381690 - Play Date UTC2012-08-09T22:28:10Z - Persistent ID8C380B45398C90CA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/11%20-%20Minority.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3415 - - Track ID3415 - NameMacy Day Parade - ArtistGreen Day - AlbumWarning - GenrePunk Rock - KindMPEG audio file - Size5182637 - Total Time215823 - Date Modified2010-02-22T01:46:27Z - Date Added2011-10-02T13:49:47Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-30T13:22:15Z - Persistent IDB2D37D2AC4EDF580 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Warning%20(2000)/12%20-%20Macy%20Day%20Parade.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3417 - - Track ID3417 - NameLive @ A State of Trance 400 - ArtistMyon & Shane 54 - Album ArtistVA - AlbumDay 1 - Club Butan, Wuppertal, DE (2009-04-16) - GenreTrance - KindMPEG audio file - Size112569737 - Total Time3517701 - Track Count9 - Year2009 - Date Modified2010-03-13T19:57:19Z - Date Added2011-10-02T13:49:47Z - Bit Rate256 - Sample Rate44100 - CommentsClub Butan, Wuppertal German - Skip Count1 - Skip Date2011-02-04T00:44:36Z - Persistent IDD647DA4AF1FC0228 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%201%20(Livesets%20by%20Various%20DJs%20at%20Club%20Butan,%20Wuppertal,%20Germany)%20(2009-04-16)/01.%20Myon%20&%20Shane%2054%20Live%20at%20Club%20Butan%20Wuppertal%20Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3419 - - Track ID3419 - NameLive @ A State of Trance 400 - ArtistArnej - Album ArtistVA - AlbumDay 1 - Club Butan, Wuppertal, DE (2009-04-16) - GenreTrance - KindMPEG audio file - Size113894402 - Total Time3558844 - Track Count9 - Year2009 - Date Modified2010-03-13T19:57:19Z - Date Added2011-10-02T13:49:47Z - Bit Rate256 - Sample Rate44100 - CommentsClub Butan, Wuppertal German - Skip Count1 - Skip Date2011-06-17T12:33:57Z - Persistent IDBBA6E93C0B635205 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%201%20(Livesets%20by%20Various%20DJs%20at%20Club%20Butan,%20Wuppertal,%20Germany)%20(2009-04-16)/02.%20Arnej_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3421 - - Track ID3421 - NameLive @ A State of Trance 400 - ArtistDuderstadt - Album ArtistVA - AlbumDay 1 - Club Butan, Wuppertal, DE (2009-04-16) - GenreTrance - KindMPEG audio file - Size109473077 - Total Time3420682 - Track Count9 - Year2009 - Date Modified2010-03-13T19:56:35Z - Date Added2011-10-02T13:49:47Z - Bit Rate256 - Sample Rate44100 - CommentsClub Butan, Wuppertal German - Skip Count1 - Skip Date2011-05-10T12:58:23Z - Persistent IDD77DDB735C0954EA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%201%20(Livesets%20by%20Various%20DJs%20at%20Club%20Butan,%20Wuppertal,%20Germany)%20(2009-04-16)/03.%20Duderstadt_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3423 - - Track ID3423 - NameLive @ A State of Trance 400 - ArtistRoger Shah - Album ArtistVA - AlbumDay 1 - Club Butan, Wuppertal, DE (2009-04-16) - GenreTrance - KindMPEG audio file - Size106472118 - Total Time3326902 - Track Count9 - Year2009 - Date Modified2010-03-13T19:56:35Z - Date Added2011-10-02T13:49:47Z - Bit Rate256 - Sample Rate44100 - CommentsClub Butan, Wuppertal German - Skip Count1 - Skip Date2012-05-14T13:37:49Z - Persistent ID0A4B22F7A09BE6CA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%201%20(Livesets%20by%20Various%20DJs%20at%20Club%20Butan,%20Wuppertal,%20Germany)%20(2009-04-16)/04.%20Roger_Shah_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3425 - - Track ID3425 - NameLive @ A State of Trance 400 - ArtistGareth Emery - Album ArtistVA - AlbumDay 1 - Club Butan, Wuppertal, DE (2009-04-16) - GenreTrance - KindMPEG audio file - Size114939822 - Total Time3591523 - Track Count9 - Year2009 - Date Modified2010-03-13T19:56:35Z - Date Added2011-10-02T13:49:48Z - Bit Rate256 - Sample Rate44100 - CommentsClub Butan, Wuppertal German - Skip Count1 - Skip Date2011-03-22T21:26:57Z - Persistent IDCE1679D79D110B11 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%201%20(Livesets%20by%20Various%20DJs%20at%20Club%20Butan,%20Wuppertal,%20Germany)%20(2009-04-16)/05.%20Gareth_Emery_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3427 - - Track ID3427 - NameLive @ A State of Trance 400 - ArtistArmin van Buuren - Album ArtistVA - AlbumDay 1 - Club Butan, Wuppertal, DE (2009-04-16) - GenreTrance - KindMPEG audio file - Size273411337 - Total Time6835173 - Track Number1 - Track Count9 - Year2009 - Date Modified2010-03-13T19:56:35Z - Date Added2011-10-02T13:49:48Z - Bit Rate320 - Sample Rate44100 - Comments.:TranceTraffic:. - Persistent IDCE17B17063D0EDBC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%201%20(Livesets%20by%20Various%20DJs%20at%20Club%20Butan,%20Wuppertal,%20Germany)%20(2009-04-16)/06.%20Armin_van_Buuren_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3429 - - Track ID3429 - NameLive @ A State of Trance 400 - ArtistSuper8 & Tab - Album ArtistVA - AlbumDay 1 - Club Butan, Wuppertal, DE (2009-04-16) - GenreTrance - KindMPEG audio file - Size112269254 - Total Time3508088 - Track Number1 - Track Count9 - Year2009 - Date Modified2010-03-13T19:56:36Z - Date Added2011-10-02T13:49:48Z - Bit Rate256 - Sample Rate44100 - CommentsClub Butan Wuppertal Germany - Persistent IDB1CBF85241587DFB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%201%20(Livesets%20by%20Various%20DJs%20at%20Club%20Butan,%20Wuppertal,%20Germany)%20(2009-04-16)/07.%20Super8_and_Tab_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3431 - - Track ID3431 - NameLive @ A State of Trance 400 - ArtistDaniel Kandi - Album ArtistVA - AlbumDay 1 - Club Butan, Wuppertal, DE (2009-04-16) - GenreTrance - KindMPEG audio file - Size111246192 - Total Time3476375 - Track Number1 - Track Count9 - Year2009 - Date Modified2010-03-13T19:56:36Z - Date Added2011-10-02T13:49:48Z - Bit Rate256 - Sample Rate44100 - CommentsClub Butan Wuppertal Germany - Persistent ID6365BA4E65EF6F53 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%201%20(Livesets%20by%20Various%20DJs%20at%20Club%20Butan,%20Wuppertal,%20Germany)%20(2009-04-16)/08.%20Daniel_Kandi_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3433 - - Track ID3433 - NameLive @ A State of Trance 400 - ArtistSied van Riel - Album ArtistVA - AlbumDay 1 - Club Butan, Wuppertal, DE (2009-04-16) - GenreTrance - KindMPEG audio file - Size104465395 - Total Time3264470 - Track Count9 - Year2009 - Date Modified2010-03-13T19:56:36Z - Date Added2011-10-02T13:49:48Z - Bit Rate256 - Sample Rate44100 - Persistent ID7ED2E8FC7FBAACDF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%201%20(Livesets%20by%20Various%20DJs%20at%20Club%20Butan,%20Wuppertal,%20Germany)%20(2009-04-16)/09.%20Sied_van_Riel_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3435 - - Track ID3435 - NameA State of Trance 400 - ArtistSean Tyas - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size78975417 - Total Time3290540 - Year2009 - Date Modified2010-03-13T19:56:49Z - Date Added2011-10-02T13:49:48Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424315356 - Play Date UTC2012-07-05T10:42:36Z - Skip Count2 - Skip Date2012-08-01T21:05:31Z - Sort NameState of Trance 400 - Persistent ID2084141B29871F32 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/01.%20Sean_Tyas_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3437 - - Track ID3437 - NameA State of Trance 400 - ArtistMarkus Schossow - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size62194133 - Total Time3680182 - Year2009 - Date Modified2010-03-13T19:56:49Z - Date Added2011-10-02T13:49:48Z - Bit Rate135 - Sample Rate44100 - Skip Count3 - Skip Date2012-08-08T23:58:15Z - Sort NameState of Trance 400 - Persistent ID3DCC2A13AAEBF912 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/02.%20Marcus_Schossow_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3439 - - Track ID3439 - NameA State of Trance 400 - ArtistRank 1 - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size58795322 - Total Time3464986 - Year2009 - Date Modified2010-03-13T19:56:50Z - Date Added2011-10-02T13:49:48Z - Bit Rate135 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-11T21:43:23Z - Sort NameState of Trance 400 - Persistent IDE0FFA788D0584B14 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/03.%20Rank1_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3441 - - Track ID3441 - NameA State of Trance 400 - ArtistThomas Bronzwaer - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size56680181 - Total Time3380140 - Year2009 - Date Modified2010-03-13T19:56:50Z - Date Added2011-10-02T13:49:48Z - Bit Rate134 - Sample Rate44100 - Sort NameState of Trance 400 - Persistent ID074AFC6FBF4E4F30 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/04.%20Thomas_Bronzwaer_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3443 - - Track ID3443 - NameA State of Trance 400 - ArtistW & W - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size59650319 - Total Time3541942 - Year2009 - Date Modified2010-03-13T19:56:50Z - Date Added2011-10-02T13:49:48Z - Bit Rate134 - Sample Rate44100 - Skip Count1 - Skip Date2010-04-10T15:50:50Z - Sort NameState of Trance 400 - Persistent ID7652C7F01719DC9C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/05.%20W_and_W_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3445 - - Track ID3445 - NameA State of Trance 400 - ArtistMike Foyle - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size61559486 - Total Time3655732 - Year2009 - Date Modified2010-03-13T19:56:50Z - Date Added2011-10-02T13:49:48Z - Bit Rate134 - Sample Rate44100 - Play Count1 - Play Date3424228818 - Play Date UTC2012-07-04T10:40:18Z - Skip Count1 - Skip Date2012-07-27T13:05:53Z - Sort NameState of Trance 400 - Persistent IDDB730114332515E8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/07.%20Mike_Foyle_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3447 - - Track ID3447 - NameA State of Trance 400 - ArtistHeatbeat - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size59077466 - Total Time3493250 - Year2009 - Date Modified2010-03-13T19:56:50Z - Date Added2011-10-02T13:49:48Z - Bit Rate135 - Sample Rate44100 - Skip Count4 - Skip Date2012-06-20T13:14:43Z - Sort NameState of Trance 400 - Persistent ID795997D0AFFC86E6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/08.%20Heatbeat_-A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3449 - - Track ID3449 - NameA State of Trance 400 - ArtistFirst State - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size61733603 - Total Time3622582 - Year2009 - Date Modified2010-03-13T19:56:50Z - Date Added2011-10-02T13:49:48Z - Bit Rate136 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-28T16:46:57Z - Sort NameState of Trance 400 - Persistent IDBEFFAA15D1B7A4E6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/09.%20First_State_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3451 - - Track ID3451 - NameA State of Trance 400 - ArtistSignalrunners - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size60458909 - Total Time3574073 - Year2009 - Date Modified2010-03-13T19:56:50Z - Date Added2011-10-02T13:49:48Z - Bit Rate135 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-12T13:31:04Z - Sort NameState of Trance 400 - Persistent ID91670AB0AC977C7D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/10.%20Signalrunners_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3453 - - Track ID3453 - NameA State of Trance 400 - ArtistDash Berlin - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size65137688 - Total Time3880542 - Year2009 - Date Modified2010-03-13T19:56:50Z - Date Added2011-10-02T13:49:48Z - Bit Rate134 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-01T15:11:34Z - Sort NameState of Trance 400 - Persistent ID3718FF4053C6F533 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/11.%20Dash_Berlin_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3455 - - Track ID3455 - NameA State of Trance 400 - ArtistFerry Corsten - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size82059663 - Total Time3419036 - Year2009 - Date Modified2010-03-13T19:56:50Z - Date Added2011-10-02T13:49:48Z - Bit Rate192 - Sample Rate44100 - Sort NameState of Trance 400 - Persistent IDCB6BA207EFAF4AE8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/12.%20Ferry_Corsten_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3457 - - Track ID3457 - NameA State of Trance 400 - ArtistSander van Doorn - Album ArtistVA - AlbumDay 2 - Guest Mixes (2009-04-17) - GenreTrance - KindMPEG audio file - Size89290880 - Total Time3720359 - Year2009 - Date Modified2010-03-13T19:56:50Z - Date Added2011-10-02T13:49:48Z - Bit Rate192 - Sample Rate44100 - Sort NameState of Trance 400 - Persistent ID364F7D8605B66EE3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Guestmixes)%20(2009-04-17)/13.%20Sander_van_Doorn_-_A_State_of_Trance_400_Day_2_GuestMix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3459 - - Track ID3459 - NameLive @ A State of Trance 400 - ArtistArnej - Album ArtistVA - AlbumDay 2 - Club Air, Birmingham, UK (2009-04-17) - GenreTrance - KindMPEG audio file - Size78502974 - Total Time3270504 - Track Count7 - Date Modified2010-03-13T19:56:51Z - Date Added2011-10-02T13:49:49Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424264037 - Play Date UTC2012-07-04T20:27:17Z - Persistent ID0D975922D617F215 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Livesets%20by%20Various%20DJs%20at%20Club%20Air%20Birmingham%20England)%20(2009-04-17)/01.%20Arnej_-_A_State_of_Trance_Episode_400_DAY2_17-04-2009-NET-4C.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3461 - - Track ID3461 - NameLive @ A State of Trance 400 - ArtistSied van Riel - Album ArtistVA - AlbumDay 2 - Club Air, Birmingham, UK (2009-04-17) - GenreTrance - KindMPEG audio file - Size108911678 - Total Time4537547 - Track Count7 - Date Modified2010-03-13T19:56:51Z - Date Added2011-10-02T13:49:49Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-16T13:35:34Z - Persistent IDE579B2CA635A365A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Livesets%20by%20Various%20DJs%20at%20Club%20Air%20Birmingham%20England)%20(2009-04-17)/02.%20Sied_van_Riel_-_A_State_of_Trance_Episode_400_DAY2_17-04-2009-NET-4C.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3463 - - Track ID3463 - NameLive @ A State of Trance 400 - ArtistGareth Emery - Album ArtistVA - AlbumDay 2 - Club Air, Birmingham, UK (2009-04-17) - GenreTrance - KindMPEG audio file - Size84947340 - Total Time3539043 - Track Count7 - Date Modified2010-03-13T19:56:51Z - Date Added2011-10-02T13:49:49Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2010-11-13T11:42:55Z - Persistent ID90786F3A51FD2682 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Livesets%20by%20Various%20DJs%20at%20Club%20Air%20Birmingham%20England)%20(2009-04-17)/03.%20Gareth%20Emery%20-%20A%20State%20Of%20Trance%20400%20%5BDay%202%5D%20-%20DJM.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3465 - - Track ID3465 - NameLive @ A State of Trance 400 - ArtistArmin Van Buuren - Album ArtistVA - AlbumDay 2 - Club Air, Birmingham, UK (2009-04-17) - GenreTrance - KindMPEG audio file - Size175116402 - Total Time7296313 - Disc Number1 - Track Number1 - Track Count7 - Year2009 - Date Modified2010-03-13T19:56:51Z - Date Added2011-10-02T13:49:49Z - Bit Rate192 - Sample Rate44100 - Skip Count3 - Skip Date2012-08-09T11:26:32Z - Persistent ID1BC7792B32C1E69F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Livesets%20by%20Various%20DJs%20at%20Club%20Air%20Birmingham%20England)%20(2009-04-17)/04.%20Armin%20Van%20Buuren%20%20A%20State%20Of%20Trance%20400%20Club%20Air,%20Birmingham%20UK%20(17-04-09).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3467 - - Track ID3467 - NameLive @ A State of Trance 400 - ArtistMarkus Schulz - Album ArtistVA - AlbumDay 2 - Club Air, Birmingham, UK (2009-04-17) - GenreTrance - KindMPEG audio file - Size92478526 - Total Time3852826 - Track Count7 - Date Modified2010-03-13T19:56:51Z - Date Added2011-10-02T13:49:49Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-08-17T13:14:24Z - Persistent IDE2CB1504A7494ACC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Livesets%20by%20Various%20DJs%20at%20Club%20Air%20Birmingham%20England)%20(2009-04-17)/05.%20Markus_Schulz_-_A_State_of_Trance_Episode_400_DAY2_17-04-2009-NET-4C.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3469 - - Track ID3469 - NameLive @ A State of Trance 400 - ArtistDaniel Kandi - Album ArtistVA - AlbumDay 2 - Club Air, Birmingham, UK (2009-04-17) - GenreTrance - KindMPEG audio file - Size81990718 - Total Time3415823 - Track Count7 - Date Modified2010-03-13T19:56:51Z - Date Added2011-10-02T13:49:49Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-29T22:11:24Z - Persistent ID054C07D5AA38451F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Livesets%20by%20Various%20DJs%20at%20Club%20Air%20Birmingham%20England)%20(2009-04-17)/06.%20Daniel_Kandi_-_A_State_of_Trance_Episode_400_DAY2_17-04-2009-NET-4C.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3471 - - Track ID3471 - NameLive @ A State of Trance 400 - ArtistSimon Patterson - Album ArtistVA - AlbumDay 2 - Club Air, Birmingham, UK (2009-04-17) - GenreTrance - KindMPEG audio file - Size86619198 - Total Time3608685 - Track Count7 - Date Modified2010-03-13T19:56:51Z - Date Added2011-10-02T13:49:49Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2011-05-10T12:47:54Z - Persistent ID47E20DB846D5F8FC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%202%20(Livesets%20by%20Various%20DJs%20at%20Club%20Air%20Birmingham%20England)%20(2009-04-17)/07.%20Simon_Patterson_-_A_State_of_Trance_Episode_400_DAY2_17-04-2009-NET-4C.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3473 - - Track ID3473 - Name1979 - ArtistSmashing Pumpkins - AlbumMellon Collie And The Infinite Sadness: Twilight To Starlight - GenreRock - KindMPEG audio file - Size4259221 - Total Time265900 - Track Number5 - Date Modified2002-05-17T01:20:24Z - Date Added2011-10-02T13:49:49Z - Bit Rate128 - Sample Rate44100 - CommentsTrack 5 - Play Count1 - Play Date3368034240 - Play Date UTC2010-09-23T01:04:00Z - Skip Count1 - Skip Date2012-08-09T22:29:52Z - Persistent ID230E7DC18DE362FE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Smashing%20Pumpkins/Smashing%20Pumpkins%20-%201979.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3475 - - Track ID3475 - NameMoby (feat. Gwen) - SouthSide - KindMPEG audio file - Size7405696 - Total Time229590 - Date Modified2001-01-28T18:48:46Z - Date Added2011-10-02T13:49:49Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3424191591 - Play Date UTC2012-07-04T00:19:51Z - Skip Count1 - Skip Date2010-07-06T21:37:07Z - Persistent ID11BF6D69360A64D9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Moby/Moby%20(feat.%20Gwen)%20-%20SouthSide.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3477 - - Track ID3477 - NameA State of Trance 400 - ArtistWippenberg - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size87853517 - Total Time3660382 - Track Number1 - Year2009 - Date Modified2010-03-13T19:56:52Z - Date Added2011-10-02T13:49:50Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2011-06-21T20:28:31Z - Sort NameState of Trance 400 - Persistent ID51BD677E0C42EEA0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/01-wippenberg_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3479 - - Track ID3479 - NameA State of Trance 400 - ArtistAirbase - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size88745650 - Total Time3697554 - Track Number2 - Year2009 - Date Modified2010-03-13T19:56:52Z - Date Added2011-10-02T13:49:50Z - Bit Rate192 - Sample Rate44100 - Sort NameState of Trance 400 - Persistent ID4809BA5A8C17D810 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/02-airbase_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3481 - - Track ID3481 - NameA State of Trance 400 - ArtistM.I.K.E. - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size86546350 - Total Time3605916 - Track Number3 - Year2009 - Date Modified2010-03-13T19:56:52Z - Date Added2011-10-02T13:49:50Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-10T20:45:08Z - Sort NameState of Trance 400 - Persistent IDAFB0C56EFF9F94F1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/03-m.i.k.e._-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3483 - - Track ID3483 - NameA State of Trance 400 - ArtistAlex M.O.R.P.H. & Woody Van Eyden - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size87797761 - Total Time3658057 - Track Number4 - Year2009 - Date Modified2010-03-13T19:56:52Z - Date Added2011-10-02T13:49:50Z - Bit Rate192 - Sample Rate44100 - Sort NameState of Trance 400 - Persistent IDD596B8632B8F748E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/04-alex_m.o.r.p.h._and_woody_van_eyden_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3485 - - Track ID3485 - NameA State of Trance 400 - ArtistSignum - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size84328867 - Total Time3513521 - Track Number5 - Year2009 - Date Modified2010-03-13T19:56:52Z - Date Added2011-10-02T13:49:50Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2011-06-13T21:40:34Z - Sort NameState of Trance 400 - Persistent ID0622E06A24EB982D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/05-signum_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3487 - - Track ID3487 - NameA State of Trance 182 (Yearmix 2004) - ArtistArmin Van Buuren - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size176181671 - Total Time7340721 - Track Number6 - Year2009 - Date Modified2010-03-13T19:56:52Z - Date Added2011-10-02T13:49:50Z - Bit Rate192 - Sample Rate44100 - Sort NameState of Trance 182 (Yearmix 2004) - Persistent ID5BF566054AF333B0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/06-armin_van_buuren_-_a_state_of_trance_182_(yearmix_2004)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3489 - - Track ID3489 - NameA State of Trance 400 - ArtistBlake Jarrell - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size86980818 - Total Time3624019 - Track Number7 - Year2009 - Date Modified2010-03-13T19:56:52Z - Date Added2011-10-02T13:49:50Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-07T21:33:56Z - Sort NameState of Trance 400 - Persistent ID6B3C7F633F058CAC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/07-blake_jarrell_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3491 - - Track ID3491 - NameA State of Trance 400 - ArtistThe Blizzard - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size80691995 - Total Time3361985 - Track Number8 - Year2009 - Date Modified2010-03-13T19:56:52Z - Date Added2011-10-02T13:49:50Z - Bit Rate192 - Sample Rate44100 - Sort ArtistBlizzard - Sort NameState of Trance 400 - Persistent IDE15189B0F8E14725 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/08-the_blizzard_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3493 - - Track ID3493 - NameA State of Trance 400 - ArtistSebastian Brandt - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size80711723 - Total Time3362795 - Track Number9 - Year2009 - Date Modified2010-03-13T19:56:53Z - Date Added2011-10-02T13:49:50Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424237522 - Play Date UTC2012-07-04T13:05:22Z - Skip Count1 - Skip Date2011-05-21T22:03:09Z - Sort NameState of Trance 400 - Persistent ID34E95425532BC02B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/09-sebastian_brandt_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3495 - - Track ID3495 - NameA State of Trance 400 - ArtistOrjan Nilsen - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size94085290 - Total Time3920039 - Track Number10 - Year2009 - Date Modified2010-03-13T19:56:53Z - Date Added2011-10-02T13:50:01Z - Bit Rate192 - Sample Rate44100 - Sort NameState of Trance 400 - Persistent ID6780E78F9CCAD26E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/10-orjan_nilsen_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3497 - - Track ID3497 - NameA State of Trance 400 - ArtistKyau & Albert - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size88245354 - Total Time3676708 - Track Number11 - Year2009 - Date Modified2010-03-13T19:56:53Z - Date Added2011-10-02T13:50:01Z - Bit Rate192 - Sample Rate44100 - Sort NameState of Trance 400 - Persistent ID4201A4408B037080 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/11-kyau_and_albert_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3499 - - Track ID3499 - NameA State of Trance 400 - ArtistAbove & Beyond - Album ArtistVA - AlbumDay 3 - Guest Mixes (2009-04-18) - GenreTrance - KindMPEG audio file - Size86983953 - Total Time3624150 - Track Number12 - Year2009 - Date Modified2010-03-13T19:56:53Z - Date Added2011-10-02T13:50:01Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2011-01-01T16:48:31Z - Sort NameState of Trance 400 - Persistent IDCA6972D2F3C11583 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Guestmixes)%20(2009-04-18)/12-above_and_beyond_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3501 - - Track ID3501 - NameLive @ A State of Trance 400 - ArtistRoger Shah - Album ArtistVA - AlbumDay 3 - Maassilo, Rotterdam, NL (2009-04-18) - GenreTrance - KindMPEG audio file - Size86885167 - Total Time3991928 - Track Number1 - Year2009 - Date Modified2010-03-13T19:56:53Z - Date Added2011-10-02T13:50:01Z - Bit Rate174 - Sample Rate44100 - CommentsTALiON - Persistent ID1D09B716D7E6B326 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Liveset%20by%20Various%20DJs%20at%20Maassilo,%20Rotterdam,%20Netherlands)%20(2009-04-18)/01b.%20Roger_Shah_-_A_State_of_Trance_400_Day3_Maassilo_Rotterdam_NL._SLAMFM.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3503 - - Track ID3503 - NameLive @ A State of Trance 400 - ArtistCosmic Gate - Album ArtistVA - AlbumDay 3 - Maassilo, Rotterdam, NL (2009-04-18) - GenreTrance - KindMPEG audio file - Size84509228 - Total Time3520783 - Year2009 - Date Modified2010-03-13T19:56:53Z - Date Added2011-10-02T13:50:01Z - Bit Rate192 - Sample Rate44100 - Persistent ID95C9C8B08140638C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Liveset%20by%20Various%20DJs%20at%20Maassilo,%20Rotterdam,%20Netherlands)%20(2009-04-18)/02b.%20Cosmic_Gate_-_A_State_of_Trance_400_Day3_Maassilo_Rotterdam_NL._SLAMFM.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3505 - - Track ID3505 - NameLive @ A State of Trance 400 - ArtistRichard Durrand - Album ArtistVA - AlbumDay 3 - Maassilo, Rotterdam, NL (2009-04-18) - GenreTrance - KindMPEG audio file - Size39975258 - Total Time1665201 - Year2009 - Date Modified2010-03-13T19:56:53Z - Date Added2011-10-02T13:50:01Z - Bit Rate192 - Sample Rate44100 - Persistent ID29B2B106D7E09C0B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Liveset%20by%20Various%20DJs%20at%20Maassilo,%20Rotterdam,%20Netherlands)%20(2009-04-18)/05b.%20Richard_Durrand_-_A_State_of_Trance_400_Day3_Maassilo_Rotterdam_NL_SLAMFM.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3507 - - Track ID3507 - NameLive @ A State of Trance 400 - ArtistMr. Sam - Album ArtistVA - AlbumDay 3 - Club Butan, Wuppertal, DE (2009-04-18) - GenreTrance - KindMPEG audio file - Size68136601 - Total Time3172179 - Track Number1 - Year2009 - Date Modified2010-03-13T19:56:54Z - Date Added2011-10-02T13:50:01Z - Bit Rate171 - Sample Rate44100 - Skip Count4 - Skip Date2012-07-12T11:46:58Z - Persistent ID06EEA420B7A8FE38 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Liveset%20by%20Various%20DJs%20at%20Maassilo,%20Rotterdam,%20Netherlands)%20(2009-04-18)/01a.%20Mr._Sam_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3509 - - Track ID3509 - NameLive @ A State of Trance 400 - ArtistArmin Van Buuren - Album ArtistVA - AlbumDay 3 - Club Butan, Wuppertal, DE (2009-04-18) - GenreTrance - KindMPEG audio file - Size158004383 - Total Time7436251 - Track Number1 - Year2009 - Date Modified2010-03-13T19:56:54Z - Date Added2011-10-02T13:50:01Z - Bit Rate169 - Sample Rate44100 - Play Count1 - Play Date3424283669 - Play Date UTC2012-07-05T01:54:29Z - Persistent ID6CC3FFEFB70FEC5D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Liveset%20by%20Various%20DJs%20at%20Maassilo,%20Rotterdam,%20Netherlands)%20(2009-04-18)/04a.%20Armin_Van_Buuren_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3511 - - Track ID3511 - NameLive @ A State of Trance 400 - ArtistFila - Album ArtistVA - AlbumDay 3 - Club Butan, Wuppertal, DE (2009-04-18) - GenreTrance - KindMPEG audio file - Size67481716 - Total Time3189394 - Track Number1 - Year2009 - Date Modified2010-03-13T19:56:54Z - Date Added2011-10-02T13:50:01Z - Bit Rate169 - Sample Rate44100 - Play Count1 - Play Date3426693114 - Play Date UTC2012-08-01T23:11:54Z - Skip Count2 - Skip Date2012-06-29T22:19:43Z - Persistent IDD73B4C73C2C33470 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Liveset%20by%20Various%20DJs%20at%20Maassilo,%20Rotterdam,%20Netherlands)%20(2009-04-18)/05a.%20Fila_-_A_State_of_Trance_400_Club_Butan_Wuppertal_Germany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3513 - - Track ID3513 - NameLive @ A State of Trance 400 - ArtistSimon Patterson - Album ArtistVA - AlbumDay 3 - Club Butan, Wuppertal, DE (2009-04-18) - GenreTrance - KindMPEG audio file - Size39550801 - Total Time1647516 - Year2009 - Date Modified2010-03-13T19:56:54Z - Date Added2011-10-02T13:50:01Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-28T16:44:36Z - Persistent ID220A089314CC4F28 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%203%20(Liveset%20by%20Various%20DJs%20at%20Maassilo,%20Rotterdam,%20Netherlands)%20(2009-04-18)/07a.%20Simon_Patterson_-_A_State_of_Trance_400_Day3_Maassilo_Rotterdam_NL_SLAMFM.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3515 - - Track ID3515 - NameTrance.nu Features - ArtistAirbase - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size86254201 - Total Time3593743 - Track Number1 - Year2009 - Date Modified2010-03-13T19:56:54Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Persistent IDED331289D4C3BB73 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/01-trance.nu_features_(mixed_by_airbase)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3517 - - Track ID3517 - NameA State of Trance 400 - ArtistRandy Boyer - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size86712502 - Total Time3612839 - Track Number2 - Year2009 - Date Modified2010-03-13T19:56:55Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2011-05-05T11:18:41Z - Sort NameState of Trance 400 - Persistent IDF511C271B6DDF316 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/02-randy_boyer_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3519 - - Track ID3519 - NameA State of Trance 400 - ArtistGenix - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size83592222 - Total Time3482827 - Track Number3 - Year2009 - Date Modified2010-03-13T19:56:55Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-16T13:32:40Z - Sort NameState of Trance 400 - Persistent ID022CBBA079802978 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/03-genix_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3521 - - Track ID3521 - NameA State of Trance 400 - ArtistStoneface & Terminal - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size87138202 - Total Time3630576 - Track Number4 - Year2009 - Date Modified2010-03-13T19:56:55Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2011-05-13T22:05:05Z - Sort NameState of Trance 400 - Persistent IDBDEEB02908B9772D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/04-stoneface_and_terminal_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3523 - - Track ID3523 - NameA State of Trance 400 - ArtistCerf, Mitiska & Jaren - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size87258576 - Total Time3635591 - Track Number5 - Year2009 - Date Modified2010-03-13T19:56:55Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Sort NameState of Trance 400 - Persistent ID1BCC687DE98CC8F4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/05-cerf_mitiska_and_jaren_-_s_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3525 - - Track ID3525 - NameA State of Trance 400 - ArtistGlenn Morisson - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size76615029 - Total Time3192111 - Track Number6 - Year2009 - Date Modified2010-03-13T19:56:55Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Skip Count3 - Skip Date2012-07-09T21:54:30Z - Sort NameState of Trance 400 - Persistent IDA9F8CCCF9C69E2FD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/06-glenn_morisson_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3527 - - Track ID3527 - NameA State of Trance 400 - ArtistTyDi - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size83257440 - Total Time3468878 - Track Number7 - Year2009 - Date Modified2010-03-13T19:56:55Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3424221443 - Play Date UTC2012-07-04T08:37:23Z - Sort NameState of Trance 400 - Persistent ID08942705B1B53151 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/07-tydi_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3529 - - Track ID3529 - NameA State of Trance 400 - ArtistSophie Sugar - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size87249789 - Total Time3635226 - Track Number8 - Year2009 - Date Modified2010-03-13T19:56:55Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Sort NameState of Trance 400 - Persistent IDB7914FA93B6DC488 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/08-sophie_sugar_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3531 - - Track ID3531 - NameA State of Trance 400 - ArtistLeon Bolier - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size91370660 - Total Time3806928 - Track Number9 - Year2009 - Date Modified2010-03-13T19:56:56Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Skip Count3 - Skip Date2012-07-16T14:01:35Z - Sort NameState of Trance 400 - Persistent IDA9DEA8C1B4C63445 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/09-leon_bolier_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3533 - - Track ID3533 - NameA State of Trance 400 - ArtistMartin Roth - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size87031614 - Total Time3626135 - Track Number10 - Year2009 - Date Modified2010-03-13T19:56:56Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Sort NameState of Trance 400 - Persistent ID9C96EEFEDB48530F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/10-martin_roth_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3535 - - Track ID3535 - NameA State of Trance 400 - ArtistTenishia - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size86521913 - Total Time3604819 - Track Number11 - Year2009 - Date Modified2010-03-13T19:56:56Z - Date Added2011-10-02T13:50:02Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-05-23T13:47:57Z - Sort NameState of Trance 400 - Persistent ID1D3667F80EC788E0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/11-tenishia_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3537 - - Track ID3537 - NameA State of Trance 400 - ArtistJohn O' Callaghan - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size90045313 - Total Time3751706 - Track Number12 - Year2009 - Date Modified2010-03-13T19:56:56Z - Date Added2011-10-02T13:50:13Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2010-09-10T13:02:49Z - Sort NameState of Trance 400 - Persistent ID32140A948EA05832 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/12-john_o_callaghan_-_a_state_of_trance_400_(guestmix)-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3539 - - Track ID3539 - NameA State of Trance Episode 001 - ArtistArmin Van Buuren - Album ArtistVA - AlbumDay 4 - Guest Mixes (2009-04-19) - GenreTrance - KindMPEG audio file - Size176765363 - Total Time7365041 - Track Number13 - Year2009 - Date Modified2010-03-13T19:56:56Z - Date Added2011-10-02T13:50:13Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424311230 - Play Date UTC2012-07-05T09:33:50Z - Sort NameState of Trance Episode 001 - Persistent ID76500F46D9B4808D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/A%20State%20of%20Trance%20400/Day%204%20(Guestmixes)%20(2009-04-19)/13-armin_van_buuren_-_a_state_of_trance_episode_001-tt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3541 - - Track ID3541 - NameLive @ Qlimax 2006 - ArtistYves De Ruyter - Album ArtistVA - AlbumQlimax 2006 - GenreHardStyle - KindMPEG audio file - Size67048249 - Total Time4190406 - Date Modified2010-03-13T20:01:45Z - Date Added2011-10-02T13:50:14Z - Bit Rate128 - Sample Rate44100 - Persistent ID88CF3B44D9E673BA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/01%20Yves%20de%20Ruyter%20live%20@%20Qlimax%202006.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3543 - - Track ID3543 - NameLive @ Qlimax 2006 - ArtistRuthless - Album ArtistVA - AlbumQlimax 2006 - GenreHardStyle - KindMPEG audio file - Size91207578 - Total Time3800267 - Date Modified2010-03-13T20:01:45Z - Date Added2011-10-02T13:50:14Z - Bit Rate192 - Sample Rate44100 - Persistent IDBBA0E9E0E3C3B5E4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/02%20Ruthless%20live%20@%20Qlimax%202006.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3545 - - Track ID3545 - NameLive @ Qlimax 2006 - ArtistShowtek - Album ArtistVA - AlbumQlimax 2006 - GenreHardStyle - KindMPEG audio file - Size54307939 - Total Time3401926 - Date Modified2010-03-13T20:01:45Z - Date Added2011-10-02T13:50:14Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-04-25T12:50:59Z - Persistent IDF1616C6E0454A165 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/03%20Showtek%20live%20@%20Qlimax%202006.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3547 - - Track ID3547 - NameLive @ Qlimax 2006 - ArtistThe Prophet ft. Headhunterz - Album ArtistVA - AlbumQlimax 2006 - GenreHardStyle - KindMPEG audio file - Size31873465 - Total Time1996564 - Date Modified2010-03-13T20:01:45Z - Date Added2011-10-02T13:50:20Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-11T21:48:41Z - Sort ArtistProphet ft. Headhunterz - Persistent ID67D36A434C215B6C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/04%20The%20Prophet%20ft.%20Headhunterz%20live%20@%20Qlimax%202006.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3549 - - Track ID3549 - NameLive @ Qlimax 2006 - ArtistTatanka - Album ArtistVA - AlbumQlimax 2006 - GenreHardStyle - KindMPEG audio file - Size83046716 - Total Time3460231 - Date Modified2010-03-13T20:01:45Z - Date Added2011-10-02T13:50:24Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424337964 - Play Date UTC2012-07-05T16:59:24Z - Skip Count1 - Skip Date2012-08-17T12:56:29Z - Persistent ID57721013C3FE2A5E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/05%20Tatanka%20live%20@%20Qlimax%202006.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3551 - - Track ID3551 - NameLive @ Qlimax 2006 - ArtistDonkey Rollers - Album ArtistVA - AlbumQlimax 2006 - GenreHardStyle - KindMPEG audio file - Size30463588 - Total Time1908244 - Date Modified2010-03-13T20:01:45Z - Date Added2011-10-02T13:50:24Z - Bit Rate128 - Sample Rate44100 - Persistent ID04FA3D5F46F2ED2A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/06%20Donkey%20Rollers%20live%20@%20Qlimax%202006.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3553 - - Track ID3553 - NameLive @ Qlimax 2006 - ArtistLuna - Album ArtistVA - AlbumQlimax 2006 - GenreHardStyle - KindMPEG audio file - Size56366377 - Total Time3530893 - Date Modified2010-03-13T20:01:45Z - Date Added2011-10-02T13:50:27Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-27T15:07:14Z - Persistent ID3BE2CE90947BB5D9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/07%20Luna%20live%20@%20Qlimax%202006.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3555 - - Track ID3555 - NameLive @ Qlimax 2006 - ArtistAlpha² - Album ArtistVA - AlbumQlimax 2006 - GenreHardStyle - KindMPEG audio file - Size57777922 - Total Time3611010 - Date Modified2010-03-13T20:01:45Z - Date Added2011-10-02T13:50:35Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-04-19T22:40:47Z - Persistent IDC4DCF34FCE6D1D4D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/08%20Alpha%C2%B2%20live%20@Qlimax_2006.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3557 - - Track ID3557 - NameLive @ Qlimax 2006 - ArtistDana - Album ArtistVA - AlbumQlimax 2006 - GenreHardStyle - KindMPEG audio file - Size58591893 - Total Time3670282 - Date Modified2010-03-13T20:01:45Z - Date Added2011-10-02T13:50:35Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424329656 - Play Date UTC2012-07-05T14:40:56Z - Persistent ID7C51222A55104E20 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/09%20Dana%20live%20@%20Qlimax%202006.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3559 - - Track ID3559 - NameLive @ Qlimax 2006 - ArtistPromo - Album ArtistVA - AlbumQlimax 2006 - GenreHardStyle - KindMPEG audio file - Size90336133 - Total Time3763957 - Date Modified2010-03-13T20:01:46Z - Date Added2011-10-02T13:50:42Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-17T12:52:34Z - Persistent IDBC37D329D52CB86D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/10%20Promo%20live%20@%20Qlimax%202006.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3561 - - Track ID3561 - Name@dj luna - live@ qlimax 2005@ - KindMPEG audio file - Size14400749 - Total Time900022 - Date Modified2010-03-04T06:48:23Z - Date Added2011-10-02T13:50:42Z - Bit Rate128 - Sample Rate44100 - Persistent ID17717ACB078BE6F5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/@dj%20luna%20-%20live@%20qlimax%202005@.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3563 - - Track ID3563 - NameLive @ Qlimax 2005 - ArtistAlpha Twins - Album ArtistVA - AlbumQlimax 2005 (2005-11-19) - GenreHardStyle - KindMPEG audio file - Size85115549 - Total Time3546409 - Date Modified2010-03-13T20:01:55Z - Date Added2011-10-02T13:50:42Z - Bit Rate192 - Sample Rate44100 - Persistent ID89C997A9A035DF4C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/Alpha%20Twins%20Qlimax_2005_-_Alpha_Twins_Live-LINE-19-11-2005.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3565 - - Track ID3565 - Namedj luna - hardstyle mix qlimax 2005 - KindMPEG audio file - Size14400365 - Total Time900022 - Date Modified2010-03-04T06:50:14Z - Date Added2011-10-02T13:50:42Z - Bit Rate128 - Sample Rate44100 - Persistent ID21F6E16447EA42A6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/dj%20luna%20-%20hardstyle%20mix%20qlimax%202005.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3567 - - Track ID3567 - NameDJ Luna - Live Qlimax 2005 - ArtistVA - Album ArtistVA - AlbumQlimax 2005 (2005-11-19) - KindMPEG audio file - Size85072386 - Total Time3544607 - Date Modified2010-03-13T20:01:56Z - Date Added2011-10-02T13:50:42Z - Bit Rate192 - Sample Rate44100 - Skip Count3 - Skip Date2012-08-17T20:31:20Z - Persistent IDBA38C021D493DC86 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/Dj%20Luna%20-%20Live%20Qlimax%202005.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3569 - - Track ID3569 - Nameqlimax 2005 - luna live - ArtistVA - Album ArtistVA - AlbumQlimax 2005 (2005-11-19) - KindMPEG audio file - Size90543374 - Total Time3772186 - Date Modified2010-03-13T20:01:56Z - Date Added2011-10-02T13:50:42Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-31T12:55:42Z - Persistent IDFB7181A30558BDA1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/qlimax%202005%20-%20luna%20live.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3571 - - Track ID3571 - NameLive @ Qlimax 2005 - ArtistTechnoboy - Album ArtistVA - AlbumQlimax 2005 (2005-11-19) - KindMPEG audio file - Size83472560 - Total Time3483036 - Date Modified2010-03-13T20:01:56Z - Date Added2011-10-02T13:50:42Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-09T12:39:17Z - Persistent ID11088A8B37CC3BF3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/technoboy%20qlimax%202005%20(1).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3573 - - Track ID3573 - NameLive @ Qlimax 2005 - ArtistThe Prophet - Album ArtistVA - AlbumQlimax 2005 (2005-11-19) - GenreDance - KindMPEG audio file - Size26521213 - Total Time3329462 - Year2005 - Date Modified2010-03-13T20:02:13Z - Date Added2011-10-02T13:50:52Z - Bit Rate64 - Sample Rate44100 - CommentsZoR - Skip Count1 - Skip Date2012-08-10T11:35:49Z - Sort ArtistProphet - Persistent ID06F794FD88E1A80F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/The_Prophet_-_Live___Qlimax-19-11-2005.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3575 - - Track ID3575 - NameDj Zany @ Qlimax 2005 - Album ArtistVA - AlbumQlimax 2005 (2005-11-19) - KindAAC audio file - Size112347282 - Total Time3393503 - Date Modified2010-03-13T20:02:14Z - Date Added2011-10-02T13:50:55Z - Bit Rate256 - Sample Rate44100 - Persistent ID4D47D861A6EEA5E3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/Dj%20Zany%20@%20Qlimax%202005.m4a - File Folder Count-1 - Library Folder Count-1 - - 3577 - - Track ID3577 - NameQ-radio-2005-03_outblast__qlimax - Album ArtistVA - AlbumQlimax 2005 (2005-11-19) - KindAAC audio file - Size87512159 - Total Time3437760 - Date Modified2010-03-13T20:02:15Z - Date Added2011-10-02T13:50:55Z - Bit Rate256 - Sample Rate44100 - Persistent ID7BBA56F17F683762 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/Q-radio-2005-03_outblast__qlimax.m4a - File Folder Count-1 - Library Folder Count-1 - - 3579 - - Track ID3579 - Namedj isaac live set qlimax 2005 - Album ArtistVA - AlbumQlimax 2005 (2005-11-19) - KindAAC audio file - Size118193706 - Total Time3570811 - Date Modified2010-03-13T20:02:14Z - Date Added2011-10-02T13:50:55Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3424270681 - Play Date UTC2012-07-04T22:18:01Z - Persistent ID7EACAA7052231A6B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Qlimax%20Live%20Sets/dj%20isaac%20live%20set%20qlimax%202005.m4a - File Folder Count-1 - Library Folder Count-1 - - 3581 - - Track ID3581 - NameBeat Bangs (Dub Mix) - ArtistPulsedriver - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size5630375 - Total Time232907 - Track Number1 - Year2004 - Date Modified2010-05-29T18:23:09Z - Date Added2011-10-02T13:50:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD2FE15CEBF8EEAE6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/101.%20Pulsedriver%20-%20Beat%20Bangs%20(Dub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3583 - - Track ID3583 - NameCome With Me (Club Version) - ArtistManuel Es - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size7873572 - Total Time326373 - Track Number2 - Year2004 - Date Modified2010-05-29T18:23:10Z - Date Added2011-10-02T13:50:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-20T13:14:39Z - Artwork Count1 - Persistent ID95E6466755300CB9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/102.%20Manuel%20Es%20-%20Come%20With%20Me%20(Club%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3585 - - Track ID3585 - NameX-Perience (Club Mix) - ArtistDJ Lee - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size8388897 - Total Time347846 - Track Number3 - Year2004 - Date Modified2010-05-29T18:23:10Z - Date Added2011-10-02T13:50:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-08-17T20:48:03Z - Artwork Count1 - Persistent IDFC28B82A336CC712 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/103.%20DJ%20Lee%20-%20X-Perience%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3587 - - Track ID3587 - NameAnother Black Sunday - ArtistRave Creator - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size6079893 - Total Time251637 - Track Number4 - Year2004 - Date Modified2010-05-29T18:23:10Z - Date Added2011-10-02T13:50:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3428065713 - Play Date UTC2012-08-17T20:28:33Z - Artwork Count1 - Persistent IDA316AEA2EB842ED7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/104.%20Rave%20Creator%20-%20Another%20Black%20Sunday.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3589 - - Track ID3589 - NameIt's A Dream (Club Mix) - ArtistDJ Dean presents Barbarez - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size7832218 - Total Time324649 - Track Number5 - Year2004 - Date Modified2010-05-29T18:23:10Z - Date Added2011-10-02T13:50:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424289239 - Play Date UTC2012-07-05T03:27:19Z - Skip Count2 - Skip Date2010-05-21T11:51:45Z - Artwork Count1 - Persistent ID69C467DB43032BCD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/105.%20DJ%20Dean%20presents%20Barbarez%20-%20It's%20A%20Dream%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3591 - - Track ID3591 - NameLightness (Original Mix) - ArtistDJ C.A. - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size6843501 - Total Time283454 - Track Number6 - Year2004 - Date Modified2010-05-29T18:23:10Z - Date Added2011-10-02T13:50:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID89FB87CD25E1C54B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/106.%20DJ%20C.A.%20-%20Lightness%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3593 - - Track ID3593 - NameSensation (Aura DJ Team Remix) - ArtistChris Cooper - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size5761428 - Total Time238367 - Track Number7 - Year2004 - Date Modified2010-05-29T18:23:10Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-13T13:26:22Z - Artwork Count1 - Persistent ID17C4A1991F3DA11F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/107.%20Chris%20Cooper%20-%20Sensation%20(Aura%20DJ%20Team%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3595 - - Track ID3595 - NameThe Journey (Original Edit) - ArtistTP One - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size3695019 - Total Time152267 - Track Number8 - Year2004 - Date Modified2010-05-29T18:23:10Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-08-14T17:30:30Z - Artwork Count1 - Sort NameJourney (Original Edit) - Persistent IDE6DBBDFB756FD446 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/108.%20TP%20One%20-%20The%20Journey%20(Original%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3597 - - Track ID3597 - NameWhen Love Comes (Club Mix) - ArtistSol-7 - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size5025379 - Total Time207699 - Track Number9 - Year2004 - Date Modified2010-05-29T18:23:10Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424189072 - Play Date UTC2012-07-03T23:37:52Z - Skip Count1 - Skip Date2012-07-26T21:07:50Z - Artwork Count1 - Persistent ID6ED0E6EF55978CB3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/109.%20Sol-7%20-%20When%20Love%20Comes%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3599 - - Track ID3599 - NameDon't Explain (Hard Mix) - ArtistBenicio - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size5934441 - Total Time245577 - Track Number10 - Year2004 - Date Modified2010-05-29T18:23:10Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-04-24T13:12:12Z - Artwork Count1 - Persistent IDDB2BC955BCF07385 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/110.%20Benicio%20-%20Don't%20Explain%20(Hard%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3601 - - Track ID3601 - NameTimemachine (Future Mix) - ArtistMartin van Nilson - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size7721862 - Total Time320052 - Track Number11 - Year2004 - Date Modified2010-05-29T18:23:11Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-08-09T11:32:00Z - Artwork Count1 - Persistent IDF6FBF55F63CDAF99 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/111.%20Martin%20van%20Nilson%20-%20Timemachine%20(Future%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3603 - - Track ID3603 - NameI Feel Free (DJ Choose & F's That Mucho Remix) - ArtistMichael Splint pres. Eruption - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size7715662 - Total Time319791 - Track Number12 - Year2004 - Date Modified2010-05-29T18:23:11Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBEC709AC8A6CD61B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/112.%20Michael%20Splint%20pres.%20Eruption%20-%20I%20Feel%20Free%20(DJ%20Choose%20&%20F's%20That%20Mucho%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3605 - - Track ID3605 - NameTime Is Running Out (No Tech No Trance Mix) - ArtistMarcel Woods - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size4866812 - Total Time201090 - Track Number13 - Year2004 - Date Modified2010-05-29T18:23:11Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424340501 - Play Date UTC2012-07-05T17:41:41Z - Artwork Count1 - Persistent ID5AD20E85542D8371 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/113.%20Marcel%20Woods%20-%20Time%20Is%20Running%20Out%20(No%20Tech%20No%20Trance%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3607 - - Track ID3607 - NameLet's Go - ArtistM.U.M.M.S. - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size4751381 - Total Time196284 - Track Number14 - Year2004 - Date Modified2010-05-29T18:23:11Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3425280440 - Play Date UTC2012-07-16T14:47:20Z - Skip Count1 - Skip Date2012-07-26T13:35:56Z - Artwork Count1 - Persistent IDE6F497BB954A986A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/114.%20M.U.M.M.S.%20-%20Let's%20Go.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3609 - - Track ID3609 - NameHigh Volume - ArtistHardface - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size4592140 - Total Time189648 - Track Number15 - Year2004 - Date Modified2010-05-29T18:23:11Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9B5337BC9ADED912 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/115.%20Hardface%20-%20High%20Volume.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3611 - - Track ID3611 - NameBlockbuster (Club Mix) - ArtistNostrum - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size2083779 - Total Time85133 - Track Number16 - Year2004 - Date Modified2010-05-29T18:23:11Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-05-10T12:42:49Z - Artwork Count1 - Persistent ID7B9861899A7C1E01 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/116.%20Nostrum%20-%20Blockbuster%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3613 - - Track ID3613 - NameDune (Progressive Mix) - ArtistMDK - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size2446768 - Total Time100257 - Track Number17 - Year2004 - Date Modified2010-05-29T18:23:11Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-08-07T21:50:43Z - Artwork Count1 - Persistent IDB8147DC617A67C1D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/117.%20MDK%20-%20Dune%20(Progressive%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3615 - - Track ID3615 - NameLas Vossas (Original Mix) - ArtistThe Body feat. Danny C. - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size3252430 - Total Time133825 - Track Number18 - Year2004 - Date Modified2010-05-29T18:23:12Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistBody feat. Danny C. - Persistent ID6718FCABA353E30A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/118.%20The%20Body%20feat.%20Danny%20C.%20-%20Las%20Vossas%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3617 - - Track ID3617 - NameNo More Sun (Hell Mix) - ArtistShivago - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size2991586 - Total Time122958 - Track Number19 - Year2004 - Date Modified2010-05-29T18:23:12Z - Date Added2011-10-02T13:50:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3426656129 - Play Date UTC2012-08-01T12:55:29Z - Artwork Count1 - Persistent IDE161B1A006726AB2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/119.%20Shivago%20-%20No%20More%20Sun%20(Hell%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3619 - - Track ID3619 - NameStill Waiting - ArtistMax Savietto - Album ArtistVA - AlbumDJ Networx Vol. 21 / CD1 - GenreHard Trance - KindMPEG audio file - Size7776374 - Total Time322324 - Track Number20 - Year2004 - Date Modified2010-05-29T18:23:12Z - Date Added2011-10-02T13:50:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424239824 - Play Date UTC2012-07-04T13:43:44Z - Skip Count1 - Skip Date2012-06-28T16:46:29Z - Artwork Count1 - Persistent ID1D85645AB43BA122 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2021%20(2004)/120.%20Max%20Savietto%20-%20Still%20Waiting.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3621 - - Track ID3621 - NameA hard day's night - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2479646 - Total Time154331 - Year1999 - Date Modified2010-03-14T00:14:02Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3351349062 - Play Date UTC2010-03-13T22:17:42Z - Sort ArtistBeatles - Sort Namehard day's night - Persistent IDA1DD0404903A8896 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20A%20hard%20day's%20night.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3623 - - Track ID3623 - NameAll my loving - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2061084 - Total Time128809 - Year1999 - Date Modified2010-03-14T00:12:40Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Skip Date2011-05-21T21:51:50Z - Sort ArtistBeatles - Persistent ID6B36EA29195DABEF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20All%20my%20loving.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3625 - - Track ID3625 - NameAnd I love her - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2420529 - Total Time151275 - Year1999 - Date Modified2010-03-14T00:12:40Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID73DA097B658FA9DC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20And%20I%20love%20her.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3627 - - Track ID3627 - NameCan't buy me love - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2138825 - Total Time133668 - Year1999 - Date Modified2010-03-14T00:12:40Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Play Date3387543759 - Play Date UTC2011-05-06T20:22:39Z - Sort ArtistBeatles - Persistent ID2F99307A404508DD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20Can't%20buy%20me%20love.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3629 - - Track ID3629 - NameEight Days a week - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2642465 - Total Time165146 - Year1999 - Date Modified2010-03-14T00:12:40Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent IDF145196CBBA18E11 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20Eight%20Days%20a%20week.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3631 - - Track ID3631 - NameFrom me to You - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size1879690 - Total Time117472 - Year1999 - Date Modified2010-03-14T00:12:40Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID62D8F956B05D2503 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20From%20me%20to%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3633 - - Track ID3633 - NameI feel fine - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2237045 - Total Time139807 - Year1999 - Date Modified2010-03-14T00:12:40Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID5E4B4A86DCF936B3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20I%20feel%20fine.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3635 - - Track ID3635 - NameI want to hold your hand - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2348222 - Total Time146755 - Year1999 - Date Modified2010-03-14T00:12:40Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID84F0103AC3A12798 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20I%20want%20to%20hold%20your%20hand.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3637 - - Track ID3637 - NameLove me do - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2296395 - Total Time143516 - Year1999 - Date Modified2010-03-14T00:12:40Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Skip Date2010-08-26T22:03:25Z - Sort ArtistBeatles - Persistent ID60E90E3FD4CF33E9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20Love%20me%20do.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3639 - - Track ID3639 - NamePlease Please Me - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size1972059 - Total Time123245 - Year1999 - Date Modified2010-03-14T00:12:40Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID6879D97F66931987 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20Please%20Please%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3641 - - Track ID3641 - NameShe loves you - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2275079 - Total Time142184 - Year1999 - Date Modified2010-03-14T00:12:40Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID1BC9B208C08FEBCF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20She%20loves%20you.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3643 - - Track ID3643 - NameTicket to ride - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size3054155 - Total Time190876 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent IDBCCC01984AD092E2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20Ticket%20to%20ride.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3645 - - Track ID3645 - NameYesterday - ArtistThe Beatles - Album1962-1966 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2001734 - Total Time125100 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID1AD3FC64A5C4B0C7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%201)/Beatles%20-%20Yesterday.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3647 - - Track ID3647 - NameDay Tripper - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2715608 - Total Time169717 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent IDED7D83EC5E6E04B7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20Day%20Tripper.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3649 - - Track ID3649 - NameDrive my Car - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2364523 - Total Time147774 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3388839832 - Play Date UTC2011-05-21T20:23:52Z - Sort ArtistBeatles - Persistent ID8A06A4ACF00193DB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20Drive%20my%20Car.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3651 - - Track ID3651 - NameEleanor Rigby - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2048545 - Total Time128026 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID3195FC7F5C61C36E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20Eleanor%20Rigby.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3653 - - Track ID3653 - NameGirl - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2424291 - Total Time151510 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent IDFF45A41EDCF75F2B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3655 - - Track ID3655 - NameHelp! - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2233283 - Total Time139572 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Skip Date2011-06-20T21:38:01Z - Sort ArtistBeatles - Persistent ID9F3111DEF5A86733 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20Help!.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3657 - - Track ID3657 - NameIn my life - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2351984 - Total Time146991 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Skip Date2011-02-04T21:45:19Z - Sort ArtistBeatles - Persistent ID36B1421203870995 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20In%20my%20life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3659 - - Track ID3659 - NameMichelle - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2598580 - Total Time162403 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Skip Date2011-05-13T21:52:32Z - Sort ArtistBeatles - Persistent IDA6A4AF8C4444D66B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20Michelle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3661 - - Track ID3661 - NameNorwegian Wood - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2003406 - Total Time125204 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:57Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3356772234 - Play Date UTC2010-05-15T16:43:54Z - Sort ArtistBeatles - Persistent ID8D96EC98E0CC8FE2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20Norwegian%20Wood.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3663 - - Track ID3663 - NameNowhere Man - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2628673 - Total Time164284 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent IDFBFC258059948324 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20Nowhere%20Man.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3665 - - Track ID3665 - NamePaperback Writer - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2217819 - Total Time138605 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Play Date3390831769 - Play Date UTC2011-06-13T21:42:49Z - Sort ArtistBeatles - Persistent ID7546C062960DA84D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20Paperback%20Writer.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3667 - - Track ID3667 - NameWe can work it out - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2177695 - Total Time136097 - Year1999 - Date Modified2010-03-14T00:12:41Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Play Date3379594487 - Play Date UTC2011-02-03T20:14:47Z - Sort ArtistBeatles - Persistent IDAD5B1F209E5812B2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20We%20can%20work%20it%20out.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3669 - - Track ID3669 - NameYellow Submarine - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2518332 - Total Time157387 - Year1999 - Date Modified2010-03-14T00:12:42Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID315BDB39B23E3282 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20Yellow%20Submarine.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3671 - - Track ID3671 - NameYou've got to hide your love away - ArtistThe Beatles - Album1962-1966 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2112689 - Total Time131395 - Year1999 - Date Modified2010-03-14T00:14:32Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2010-04-10T15:58:30Z - Sort ArtistBeatles - Persistent ID9BB535D020755884 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1962-1966%20(disc%202)/Beatles%20-%20You've%20got%20to%20hide%20your%20love%20away.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3673 - - Track ID3673 - NameA day in the life - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size4901117 - Total Time306311 - Year1999 - Date Modified2010-03-14T00:12:42Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Sort Nameday in the life - Persistent ID67CCE49F05F46C23 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20A%20day%20in%20the%20life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3675 - - Track ID3675 - NameAll you need is love - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size3663958 - Total Time228989 - Year1999 - Date Modified2010-03-14T00:12:42Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID560398A9BE634518 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20All%20you%20need%20is%20love.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3677 - - Track ID3677 - NameHello, Goodbye - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size3357594 - Total Time209841 - Year1999 - Date Modified2010-03-14T00:12:42Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID57659EF6DE3E3362 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20Hello,%20Goodbye.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3679 - - Track ID3679 - NameI am the walrus - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size4396640 - Total Time274782 - Year1999 - Date Modified2010-03-14T00:12:42Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID15AC53D4BC4E22D7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20I%20am%20the%20walrus.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3681 - - Track ID3681 - NameLady Madonna - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2224088 - Total Time138997 - Year1999 - Date Modified2010-03-14T00:12:42Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Play Date3366986332 - Play Date UTC2010-09-10T21:58:52Z - Sort ArtistBeatles - Persistent ID7721514C0B8AB0BB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20Lady%20Madonna.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3683 - - Track ID3683 - NameLucy in the sky with diamonds - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size3319977 - Total Time207490 - Year1999 - Date Modified2010-03-14T00:12:43Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Skip Date2011-05-30T16:23:54Z - Sort ArtistBeatles - Persistent ID1BF1112D6B88D20A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20Lucy%20in%20the%20sky%20with%20diamonds.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3685 - - Track ID3685 - NameMagical Mystery Tour - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2699308 - Total Time168698 - Year1999 - Date Modified2010-03-14T00:12:43Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID4DFDFC986224C1C6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20Magical%20Mystery%20Tour.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3687 - - Track ID3687 - NamePenny Lane - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2906616 - Total Time181655 - Year1999 - Date Modified2010-03-14T00:12:43Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Play Date3383660235 - Play Date UTC2011-03-22T21:37:15Z - Sort ArtistBeatles - Persistent IDD39CD9D2BCEA377F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20Penny%20Lane.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3689 - - Track ID3689 - NameRevolution - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size3256865 - Total Time203546 - Year1999 - Date Modified2010-03-14T00:12:43Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent IDDBC8609BC40A6FB0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20Revolution.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3691 - - Track ID3691 - NameSgt. Pepper's Lonely Hearts Club Band - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size1947599 - Total Time121077 - Year1999 - Date Modified2010-03-14T00:14:27Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent IDFBEB5DF30AAD4DAF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3693 - - Track ID3693 - NameStrawberry Fields Forever - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size3965306 - Total Time247823 - Year1999 - Date Modified2010-03-14T00:12:43Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Skip Date2011-05-06T13:24:04Z - Sort ArtistBeatles - Persistent ID06636229A5905319 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20Strawberry%20Fields%20Forever.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3695 - - Track ID3695 - NameThe fool on the hill - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2876105 - Total Time179748 - Year1999 - Date Modified2010-03-14T00:12:43Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Skip Date2010-08-26T22:03:15Z - Sort ArtistBeatles - Sort Namefool on the hill - Persistent ID508E1FA7C03AC8EA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20The%20fool%20on%20the%20hill.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3697 - - Track ID3697 - NameWith a little help from my friends - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size2633464 - Total Time163944 - Year1999 - Date Modified2010-03-14T00:12:43Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Play Date3391261785 - Play Date UTC2011-06-18T21:09:45Z - Sort ArtistBeatles - Persistent IDBB54D3223F4FFF96 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles%20-%20With%20a%20little%20help%20from%20my%20friends.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3699 - - Track ID3699 - NameHey Jude - ArtistThe Beatles - Album1967-1970 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size6866901 - Total Time428538 - Date Modified2010-03-14T00:12:43Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2011-05-21T21:42:00Z - Sort ArtistBeatles - Persistent IDC1D3DDE5212A1C3C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%201)/Beatles-%20Hey%20Jude.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3701 - - Track ID3701 - NameCome Together - ArtistThe Beatles - Album1967-1970 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size4143775 - Total Time258977 - Year1999 - Date Modified2010-03-14T00:12:44Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Skip Date2009-04-18T00:35:41Z - Sort ArtistBeatles - Persistent IDB359F60E5293A401 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%202)/Beatles%20-%20Come%20Together.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3703 - - Track ID3703 - NameDon't let me down - ArtistThe Beatles - Album1967-1970 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size3437424 - Total Time214831 - Year1999 - Date Modified2010-03-14T00:12:44Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-31T20:55:18Z - Sort ArtistBeatles - Persistent IDAD77E42A0C61DA97 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%202)/Beatles%20-%20Don't%20let%20me%20down.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3705 - - Track ID3705 - NameGet Back - ArtistThe Beatles - Album1967-1970 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size3080905 - Total Time192548 - Year1999 - Date Modified2010-03-14T00:12:44Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Skip Date2011-05-04T12:39:32Z - Sort ArtistBeatles - Persistent ID7D04C5FA39CD802A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%202)/Beatles%20-%20Get%20Back.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3707 - - Track ID3707 - NameHere comes the sun - ArtistThe Beatles - Album1967-1970 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2995223 - Total Time187193 - Year1999 - Date Modified2010-03-14T00:12:44Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID9B21FBC94D0A7898 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%202)/Beatles%20-%20Here%20comes%20the%20sun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3709 - - Track ID3709 - NameLet it be - ArtistThe Beatles - Album1967-1970 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size3718292 - Total Time232385 - Year1999 - Date Modified2010-03-14T00:12:44Z - Date Added2011-10-02T13:50:58Z - Bit Rate128 - Sample Rate44100 - Skip Date2010-08-26T22:07:16Z - Sort ArtistBeatles - Persistent ID2A09E6928571658B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%202)/Beatles%20-%20Let%20it%20be.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3711 - - Track ID3711 - NameSomething - ArtistThe Beatles - Album1967-1970 (disc 2) - GenreClassic Rock - KindMPEG audio file - Size2924170 - Total Time182752 - Year1999 - Date Modified2010-03-14T00:12:44Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Skip Date2010-08-26T22:10:09Z - Sort ArtistBeatles - Persistent ID755B5B1712DAC29B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/1967-1970%20(disc%202)/Beatles%20-%20Something.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3713 - - Track ID3713 - NameFree as a Bird - ArtistThe Beatles - AlbumAntholgy 1 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size4245125 - Total Time264672 - Year1999 - Date Modified2010-03-14T00:14:02Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 03DDBB83 - Sort ArtistBeatles - Persistent ID481D9BC61C138B4B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%20Free%20as%20a%20Bird.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3715 - - Track ID3715 - NameReal Love - ArtistThe Beatles - AlbumAnthology 2 (disc 1) - GenreClassic Rock - KindMPEG audio file - Size3754437 - Total Time234004 - Year1999 - Date Modified2010-03-14T00:14:02Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 17CF5DAF - Play Date3353744896 - Play Date UTC2010-04-10T15:48:16Z - Sort ArtistBeatles - Persistent ID4C84C67F003516F3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%20Real%20Love.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3717 - - Track ID3717 - NameLooking Through You - ArtistThe Beatles - GenreClassic Rock - KindMPEG audio file - Size2888791 - Total Time143908 - Date Modified2010-03-14T00:24:14Z - Date Added2011-10-02T13:50:59Z - Bit Rate160 - Sample Rate44100 - Sort ArtistBeatles - Persistent IDF099B604C3CC6DDA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%20Looking%20Through%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3719 - - Track ID3719 - Name I Saw Her Standing There - ArtistThe Beatles - AlbumPlease Please Me (1963) - GenreClassic Rock - KindMPEG audio file - Size2767568 - Total Time172329 - Date Modified2010-03-14T00:24:23Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3354195918 - Play Date UTC2010-04-15T21:05:18Z - Skip Count2 - Skip Date2012-07-16T13:32:32Z - Sort ArtistBeatles - Persistent ID1EBDE9FF2266C280 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20Please%20Please%20Me%20(UK)/01%20-%20I%20Saw%20Her%20Standing%20There.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3721 - - Track ID3721 - Name Do You Want To Know A Secret - ArtistThe Beatles - AlbumPlease Please Me (1963) - GenreClassic Rock - KindMPEG audio file - Size1845550 - Total Time114703 - Date Modified2010-03-14T00:24:23Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-10T13:03:37Z - Sort ArtistBeatles - Persistent ID284059C7A8E7F738 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20Please%20Please%20Me%20(UK)/11%20-%20Do%20You%20Want%20To%20Know%20A%20Secret.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3723 - - Track ID3723 - Name Twist And Shout - ArtistThe Beatles - AlbumPlease Please Me (1963) - GenreClassic Rock - KindMPEG audio file - Size2457443 - Total Time152946 - Date Modified2010-03-14T00:24:24Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3426827676 - Play Date UTC2012-08-03T12:34:36Z - Skip Count1 - Skip Date2011-03-02T11:51:15Z - Sort ArtistBeatles - Persistent ID4ACF35C11DDBACBA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20Please%20Please%20Me%20(UK)/14%20-%20Twist%20And%20Shout.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3725 - - Track ID3725 - NamePlease Mr. Postman - ArtistThe Beatles - AlbumWith The Beatles - GenreClassic Rock - KindMPEG audio file - Size2499991 - Total Time153861 - Track Number7 - Year1963 - Date Modified2010-03-14T00:26:22Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3389276497 - Play Date UTC2011-05-26T21:41:37Z - Skip Count2 - Skip Date2012-07-16T14:01:43Z - Artwork Count1 - Sort ArtistBeatles - Persistent IDAC59F02526D9B07B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20With%20The%20Beatles%20(UK)/07-%20please%20mr.%20postman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3727 - - Track ID3727 - NameRoll Over Beethoven - ArtistThe Beatles - AlbumWith The Beatles - GenreClassic Rock - KindMPEG audio file - Size2722346 - Total Time167758 - Year1963 - Date Modified2010-03-14T00:26:24Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3419398078 - Play Date UTC2012-05-09T12:47:58Z - Artwork Count1 - Sort ArtistBeatles - Persistent ID55C8EE716B53F98F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20With%20The%20Beatles%20(UK)/08-%20Roll%20Over%20Beethoven.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3729 - - Track ID3729 - NameYou Really Got A Hold On Me - ArtistThe Beatles - AlbumWith The Beatles - GenreClassic Rock - KindMPEG audio file - Size2966861 - Total Time183040 - Year1963 - Date Modified2010-03-14T00:26:26Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424288915 - Play Date UTC2012-07-05T03:21:55Z - Skip Count1 - Skip Date2011-02-04T00:53:11Z - Artwork Count1 - Sort ArtistBeatles - Persistent IDC8C0B67589BFDD46 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20With%20The%20Beatles%20(UK)/10-%20You%20Really%20Got%20A%20Hold%20On%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3731 - - Track ID3731 - NameI Wanna Be Your Man - ArtistThe Beatles - AlbumWith The Beatles - GenreClassic Rock - KindMPEG audio file - Size1944106 - Total Time119118 - Year1963 - Date Modified2010-03-14T00:26:27Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2011-05-03T21:54:08Z - Artwork Count1 - Sort ArtistBeatles - Persistent IDEDC0BC71C82454C6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20With%20The%20Beatles%20(UK)/11-%20I%20Wanna%20Be%20Your%20Man.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3733 - - Track ID3733 - NameDevil In Her Heart - ArtistThe Beatles - AlbumWith The Beatles - GenreClassic Rock - KindMPEG audio file - Size2403025 - Total Time147800 - Year1963 - Date Modified2010-03-14T00:26:28Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424287901 - Play Date UTC2012-07-05T03:05:01Z - Skip Count1 - Skip Date2012-06-08T21:51:12Z - Artwork Count1 - Sort ArtistBeatles - Persistent ID04348334DE7689E6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20With%20The%20Beatles%20(UK)/12-%20Devil%20In%20Her%20Heart.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3735 - - Track ID3735 - NameNot A Second Time - ArtistThe Beatles - AlbumWith The Beatles - GenreClassic Rock - KindMPEG audio file - Size2093734 - Total Time128470 - Year1963 - Date Modified2010-03-14T00:26:30Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-04-23T11:43:57Z - Artwork Count1 - Sort ArtistBeatles - Persistent IDC0EC4A23E7DD6EE2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20With%20The%20Beatles%20(UK)/13-%20Not%20A%20Second%20Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3737 - - Track ID3737 - NameMoney - ArtistThe Beatles - AlbumWith The Beatles - GenreClassic Rock - KindMPEG audio file - Size2721497 - Total Time167706 - Year1963 - Date Modified2010-03-14T00:26:31Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Skip Count3 - Skip Date2012-06-11T21:32:23Z - Artwork Count1 - Sort ArtistBeatles - Persistent IDFAF28EB28C32AF1E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20With%20The%20Beatles%20(UK)/14-%20Money.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3739 - - Track ID3739 - NameLittle Child - ArtistThe Beatles - Albumwww.sexysongs4u.com - GenreRock - KindMPEG audio file - Size1730688 - Total Time108146 - Year1963 - Date Modified2005-03-07T02:05:06Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Commentswww.sexysongs4u.com - Sort ArtistBeatles - Persistent ID5AFBE95CC5CB4E7C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201963%20-%20With%20The%20Beatles%20(UK)/05-%20Little%20Child.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3741 - - Track ID3741 - Name You Can't Do That - ArtistThe Beatles - AlbumA Hard Day's Night - KindMPEG audio file - Size2473783 - Total Time153965 - Year1964 - Date Modified2010-03-14T00:20:45Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3390398486 - Play Date UTC2011-06-08T21:21:26Z - Sort AlbumHard Day's Night - Sort ArtistBeatles - Persistent IDA60D86022C127655 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201964%20-%20A%20Hard%20Day's%20Night%20(UK)/12%20-%20You%20Can't%20Do%20That.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3743 - - Track ID3743 - NameRock and Roll Music - ArtistThe Beatles - AlbumBeatles For Sale - GenrePop - KindMPEG audio file - Size2398336 - Total Time149760 - Year1964 - Date Modified2005-03-07T02:47:28Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - CommentsMP3 Berry - Sort ArtistBeatles - Persistent IDAC2C64E89581A56A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201964%20-%20Beatles%20For%20Sale%20(UK)/04%20-%20Rock%20And%20Roll%20Music.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3745 - - Track ID3745 - Name10 - Honey Don't - ArtistThe Beatles - AlbumBeatles For Sale - GenreClassic Rock - KindMPEG audio file - Size2828602 - Total Time176143 - Year1964 - Date Modified2010-03-14T00:24:00Z - Date Added2011-10-02T13:50:59Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-05-24T14:17:17Z - Sort ArtistBeatles - Persistent ID7EC886E683615CC3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201964%20-%20Beatles%20For%20Sale%20(UK)/10%20-%20Honey%20Don't.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3747 - - Track ID3747 - Name02 - I'm A Loser - ArtistThe Beatles - AlbumBeatles For Sale - GenreClassic Rock - KindMPEG audio file - Size2354637 - Total Time146520 - Year1964 - Date Modified2010-03-14T00:24:00Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-08-07T21:46:56Z - Sort ArtistBeatles - Persistent ID98603F83B6C4EB4F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201964%20-%20Beatles%20For%20Sale%20(UK)/02%20-%20I'm%20A%20Loser.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3749 - - Track ID3749 - NameNo Reply - ArtistThe Beatles - AlbumBeatles For Sale - GenreClassic Rock - KindMPEG audio file - Size2134144 - Total Time133302 - Year1964 - Date Modified2010-03-14T00:24:00Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - CommentsMP3 Lennon - Skip Count1 - Skip Date2010-09-14T21:48:21Z - Sort ArtistBeatles - Persistent IDAA35770333366ED7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201964%20-%20Beatles%20For%20Sale%20(UK)/01%20-%20No%20Reply.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3751 - - Track ID3751 - Name05 - I'll Follow The Sun - ArtistThe Beatles - AlbumBeatles For Sale - GenreClassic Rock - KindMPEG audio file - Size1724354 - Total Time107128 - Year1964 - Date Modified2010-03-14T00:24:00Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424289346 - Play Date UTC2012-07-05T03:29:06Z - Skip Count1 - Skip Date2011-05-31T21:45:13Z - Sort ArtistBeatles - Persistent ID7D36E1CBAD878C5D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201964%20-%20Beatles%20For%20Sale%20(UK)/05%20-%20I'll%20Follow%20The%20Sun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3753 - - Track ID3753 - Name03 - Baby's In Black - KindMPEG audio file - Size1976528 - Total Time123533 - Date Modified2005-03-07T02:45:54Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - Persistent ID796FE17292986894 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201964%20-%20Beatles%20For%20Sale%20(UK)/03%20-%20Baby's%20In%20Black.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3755 - - Track ID3755 - Name14 - Everybody's Trying to Be My Baby - ArtistThe Beatles - AlbumBeatles For Sale - GenreClassic Rock - KindMPEG audio file - Size2306153 - Total Time143490 - Year1964 - Date Modified2010-03-14T00:24:00Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424284382 - Play Date UTC2012-07-05T02:06:22Z - Skip Count2 - Skip Date2012-06-12T13:26:48Z - Sort ArtistBeatles - Persistent IDF2BF1F518047CAAF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201964%20-%20Beatles%20For%20Sale%20(UK)/14%20-%20Everybody's%20Trying%20to%20Be%20My%20Baby.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3757 - - Track ID3757 - NameOwner of a Lonely Heart - Artist277 - Yes - Album500 Best Rock and Roll Songs - KindMPEG audio file - Size3725312 - Total Time232698 - Date Modified2004-04-01T02:48:54Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3372480648 - Play Date UTC2010-11-13T12:10:48Z - Skip Count1 - Skip Date2012-05-10T21:40:53Z - Persistent ID0DC13FC3443B9B61 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Top%20500%20Rock%20N'%20Roll/277%20-%20Yes%20-%20Owner%20of%20a%20Lonely%20Heart.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3759 - - Track ID3759 - NameAmerica - Horse with no Name - KindMPEG audio file - Size3981479 - Total Time248842 - Date Modified1997-09-09T04:00:00Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - Persistent ID9494B376874D27E2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/America%20-%20Horse%20with%20no%20Name.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3761 - - Track ID3761 - NameDon't Let Me Be Misunderstood - ArtistAnimals - KindMPEG audio file - Size2369898 - Total Time148088 - Date Modified1999-02-28T20:46:20Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-08-03T12:32:03Z - Persistent IDEED07E33A2F272AE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Animals%20-%20Don't%20let%20me%20be%20misunderstood.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3763 - - Track ID3763 - NameAssociation - Everyone Knows It's Wendy - KindMPEG audio file - Size2754560 - Total Time172146 - Date Modified2001-02-01T22:20:10Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - Persistent ID74A645AD0AE905FD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Association%20-%20Everyone%20Knows%20It's%20Wendy.MP3 - File Folder Count-1 - Library Folder Count-1 - - 3765 - - Track ID3765 - NameBachman Turner Overdrive - You Ain't Seen Nothing Yet - KindMPEG audio file - Size2941805 - Total Time210128 - Date Modified1999-01-29T02:01:34Z - Date Added2011-10-02T13:51:00Z - Bit Rate112 - Sample Rate44100 - Play Count1 - Play Date3376733712 - Play Date UTC2011-01-01T17:35:12Z - Skip Count1 - Skip Date2012-05-15T21:43:34Z - Persistent ID3FDB3B38A6D298A2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Bachman%20Turner%20Overdrive%20-%20You%20Ain't%20Seen%20Nothing%20Yet.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3767 - - Track ID3767 - NameBack to the Future - Johnny B. Goode - KindMPEG audio file - Size2967552 - Total Time185469 - Date Modified2000-04-10T13:49:50Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-05-31T21:11:56Z - Persistent ID441EE0652EDCBB21 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Back%20to%20the%20Future%20-%20Johnny%20B.%20Goode.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3769 - - Track ID3769 - NameBad Company - Feel like making love - KindMPEG audio file - Size4977270 - Total Time311771 - Date Modified1998-09-23T06:25:38Z - Date Added2011-10-02T13:51:00Z - Bit Rate128 - Sample Rate44100 - Persistent ID5FDA148B4ADAD82B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Bad%20Company%20-%20Feel%20like%20making%20love.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3771 - - Track ID3771 - NameCome and Get It - ArtistBadfinger - KindMPEG audio file - Size2284463 - Total Time142576 - Year1970 - Date Modified2000-02-15T21:14:10Z - Date Added2011-10-02T13:51:01Z - Bit Rate128 - Sample Rate44100 - Persistent ID74EB3C4DE0701626 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Badfinger%20-%20Come%20and%20Get%20It.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3773 - - Track ID3773 - NameBartenders and their Wives - ArtistThe Left Banke - KindMPEG audio file - Size4800598 - Total Time200019 - Track Number3 - Date Modified2002-03-20T01:07:16Z - Date Added2011-10-02T13:51:01Z - Bit Rate192 - Sample Rate44100 - Sort ArtistLeft Banke - Persistent ID96FBA350677908D4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Left%20Banke/Bartenders%20and%20their%20Wives.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3775 - - Track ID3775 - NameBeach Boys - Barbara Ann - KindMPEG audio file - Size2986405 - Total Time124421 - Date Modified1999-02-26T13:38:00Z - Date Added2011-10-02T13:51:01Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3354113317 - Play Date UTC2010-04-14T22:08:37Z - Skip Count1 - Skip Date2011-06-19T13:55:45Z - Persistent IDB1B03EB7A542B76F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beach%20Boys/Beach%20Boys%20-%20Barbara%20Ann.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3777 - - Track ID3777 - NameBeach Boys - California Girls - KindMPEG audio file - Size3157767 - Total Time157884 - Date Modified1999-02-26T13:38:40Z - Date Added2011-10-02T13:51:01Z - Bit Rate160 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-11T17:08:06Z - Persistent ID8D7F85A5A64D5881 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beach%20Boys/Beach%20Boys%20-%20California%20Girls.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3779 - - Track ID3779 - NameBeach Boys - Fun Fun Fun - KindMPEG audio file - Size2477016 - Total Time123846 - Date Modified1999-02-26T13:38:56Z - Date Added2011-10-02T13:51:01Z - Bit Rate160 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-13T13:15:50Z - Persistent IDA333379F74D39B11 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beach%20Boys/Beach%20Boys%20-%20Fun%20Fun%20Fun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3781 - - Track ID3781 - NameBeach Boys - I get arnd - KindMPEG audio file - Size2137443 - Total Time133590 - Date Modified1999-02-26T13:41:48Z - Date Added2011-10-02T13:51:01Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3426258918 - Play Date UTC2012-07-27T22:35:18Z - Persistent ID31DB477F166CD748 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beach%20Boys/Beach%20Boys%20-%20I%20get%20arnd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3783 - - Track ID3783 - NameBeach Boys - Little Deuce Coupe - KindMPEG audio file - Size1587826 - Total Time99239 - Date Modified1999-02-26T13:42:00Z - Date Added2011-10-02T13:51:01Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424290250 - Play Date UTC2012-07-05T03:44:10Z - Persistent ID841E8711806E218A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beach%20Boys/Beach%20Boys%20-%20Little%20Deuce%20Coupe.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3785 - - Track ID3785 - NameBack in the USSR - GenrePunk - KindMPEG audio file - Size2609865 - Total Time163108 - Year1999 - Date Modified1999-02-19T02:10:44Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Comments, AG# E59AD58C - Persistent ID9CDE1E83D09AD46E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%201)/Beatles%20-%20Back%20in%20the%20USSR.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3787 - - Track ID3787 - NameBIRTHDAY - ArtistTHE BEATLES - AlbumTHE BEATLES - KindMPEG audio file - Size2613626 - Total Time163343 - Year1968 - Date Modified2005-03-07T04:49:02Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Sort AlbumBEATLES - Sort ArtistBEATLES - Persistent IDC25BDF4552190800 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201968%20-%20The%20Beatles%20(White%20Album)%20(UK+US)/Disc2/Beatles%20-%20Birthday.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3789 - - Track ID3789 - NameBLACKBIRD - ArtistTHE BEATLES - AlbumTHE BEATLES - KindMPEG audio file - Size2214475 - Total Time138396 - Year1968 - Date Modified2005-03-07T04:26:26Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Sort AlbumBEATLES - Sort ArtistBEATLES - Persistent ID27514A0BE3BBE202 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201968%20-%20The%20Beatles%20(White%20Album)%20(UK+US)/Disc1/Beatles%20-%20Blackbird.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3791 - - Track ID3791 - NameCry baby Cry - ArtistThe Beatles - AlbumWhite Album - GenreClassic Rock - KindMPEG audio file - Size3055827 - Total Time190981 - Year1999 - Date Modified2010-03-14T00:41:52Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 3FF9D788 - Sort ArtistBeatles - Persistent IDCF3F9C208B82FA6F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%202)/Beatles%20-%20Cry%20baby%20Cry.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3793 - - Track ID3793 - NameUnknown Artist - Dear Prudence - KindMPEG audio file - Size3670935 - Total Time229433 - Date Modified2005-03-07T04:28:28Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Persistent IDB7AD214C23ADB708 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201968%20-%20The%20Beatles%20(White%20Album)%20(UK+US)/Disc1/Beatles%20-%20Dear%20Prudence.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3795 - - Track ID3795 - NameEverybody's got something to hide - ArtistThe Beatles - AlbumWhite Album - GenreClassic Rock - KindMPEG audio file - Size2325862 - Total Time144718 - Year1999 - Date Modified2010-03-14T00:42:13Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 66F7FB2D - Sort ArtistBeatles - Persistent ID7676A67E115C517D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%202)/Beatles%20-%20Everybody's%20got%20something%20to%20hide%20except%20me%20and%20my%20monkey.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3797 - - Track ID3797 - NameGLASS ONION - ArtistTHE BEATLES - AlbumTHE BEATLES - KindMPEG audio file - Size2214475 - Total Time138396 - Year1968 - Date Modified2005-03-07T04:31:36Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Sort AlbumBEATLES - Sort ArtistBEATLES - Persistent ID2AD1268D98457C20 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201968%20-%20The%20Beatles%20(White%20Album)%20(UK+US)/Disc1/Beatles%20-%20Glass%20Onion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3799 - - Track ID3799 - NameHappiness is a warm gun - GenrePunk - KindMPEG audio file - Size2617806 - Total Time163604 - Year1999 - Date Modified1999-02-19T02:16:34Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 2D4BD46C - Persistent IDFC0EC656C3AA2AB0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%201)/Beatles%20-%20Happiness%20is%20a%20warm%20gun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3801 - - Track ID3801 - NameI will - GenrePunk - KindMPEG audio file - Size1697042 - Total Time106057 - Year1999 - Date Modified1999-02-19T02:20:32Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Comments, AG# A409C8D2 - Persistent ID7ADB74938618B28C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%201)/Beatles%20-%20I%20will.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3803 - - Track ID3803 - NameI'm so tired - GenrePunk - KindMPEG audio file - Size1972477 - Total Time123271 - Year1999 - Date Modified1999-02-19T02:17:52Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 5578E62E - Persistent IDCE8FEE69079AE7E9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%201)/Beatles%20-%20I'm%20so%20tired.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3805 - - Track ID3805 - NameJULIA - ArtistTHE BEATLES - AlbumTHE BEATLES - KindMPEG audio file - Size2787915 - Total Time174236 - Year1968 - Date Modified2005-03-07T04:36:10Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Sort AlbumBEATLES - Sort ArtistBEATLES - Persistent ID1B96C2D25B9D84F6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201968%20-%20The%20Beatles%20(White%20Album)%20(UK+US)/Disc1/Beatles%20-%20Julia.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3807 - - Track ID3807 - NameMarha my dear - GenrePunk - KindMPEG audio file - Size2379569 - Total Time148715 - Year1999 - Date Modified1999-02-19T02:17:16Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Comments, AG# A7C0505D - Play Count1 - Play Date3387023565 - Play Date UTC2011-04-30T19:52:45Z - Persistent IDF875044D14D1659A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%201)/Beatles%20-%20Marha%20my%20dear.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3809 - - Track ID3809 - Nameob-la-di, ob-la-da - GenrePunk - KindMPEG audio file - Size3021554 - Total Time188839 - Year1999 - Date Modified1999-02-19T02:13:24Z - Date Added2011-10-02T13:51:02Z - Bit Rate128 - Sample Rate44100 - Comments, AG# ADB62AD9 - Persistent ID05B3B3FF8EE0745C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%201)/Beatles%20-%20ob-la-di,%20ob-la-da.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3811 - - Track ID3811 - NameROCKY RACCOON - ArtistTHE BEATLES - AlbumTHE BEATLES - KindMPEG audio file - Size3412346 - Total Time213263 - Year1968 - Date Modified2005-03-07T04:41:56Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Sort AlbumBEATLES - Sort ArtistBEATLES - Persistent ID422CD81725E331A6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201968%20-%20The%20Beatles%20(White%20Album)%20(UK+US)/Disc1/Beatles%20-%20Rocky%20Raccoon.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3813 - - Track ID3813 - NameThe Continuing Story of Bungal - GenrePunk - KindMPEG audio file - Size2970981 - Total Time185678 - Year1999 - Date Modified1999-02-19T02:14:18Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 7BF529EE - Sort NameContinuing Story of Bungal - Persistent ID74141770AA0E1A5C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%201)/Beatles%20-%20The%20Continuing%20Story%20of%20Bungalo%20Bill.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3815 - - Track ID3815 - NameBeatles - The Word - KindMPEG audio file - Size3215998 - Total Time160783 - Date Modified1999-02-25T02:50:08Z - Date Added2011-10-02T13:51:03Z - Bit Rate160 - Sample Rate44100 - Persistent ID4FD251D05FED09CA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%20The%20Word.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3817 - - Track ID3817 - NameWhile my guitar gently weeps - GenrePunk - KindMPEG audio file - Size4563406 - Total Time285204 - Year1999 - Date Modified1999-02-19T02:15:46Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Comments, AG# AA294CDD - Persistent ID0075209E6D6FBFE3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%201)/Beatles%20-%20While%20my%20guitar%20gently%20weeps.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3819 - - Track ID3819 - NameBill Haley & His Comets - Rock Around The Clock - KindMPEG audio file - Size2093296 - Total Time131108 - Date Modified1999-03-05T01:29:34Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Play Count4 - Play Date3422280477 - Play Date UTC2012-06-11T21:27:57Z - Persistent IDBD1120954D392285 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Bill%20Haley%20&%20His%20Comets%20-%20Rock%20Around%20The%20Clock.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3821 - - Track ID3821 - NameBilly Joel - Uptown Girl - KindMPEG audio file - Size3155968 - Total Time197224 - Date Modified2002-03-24T21:02:04Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3424286872 - Play Date UTC2012-07-05T02:47:52Z - Skip Count1 - Skip Date2012-04-25T12:40:26Z - Persistent IDAB6ED3001C1366F3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Billy%20Joel%20-%20Uptown%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3823 - - Track ID3823 - NameBob Dylan - House of the Rising Sun - KindMPEG audio file - Size4462592 - Total Time318746 - Date Modified1999-12-21T02:10:26Z - Date Added2011-10-02T13:51:03Z - Bit Rate112 - Sample Rate44100 - Play Count1 - Play Date3322734828 - Play Date UTC2009-04-16T17:53:48Z - Skip Count1 - Skip Date2012-06-12T17:03:59Z - Persistent ID5ABFFE5E3822D515 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Bob%20Dylan%20-%20House%20of%20the%20Rising%20Sun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3825 - - Track ID3825 - NameMan Gave Names To All the Animals - ArtistBob Dylan - AlbumSlow Train Coming - Genrerock - KindMPEG audio file - Size4257792 - Total Time266031 - Track Number8 - Date Modified2000-07-27T05:30:00Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-27T12:56:51Z - Persistent IDBFFB803607BD60C1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Bob%20Dylan%20-%20Man%20Gave%20Names%20To%20All%20the%20Animals.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3827 - - Track ID3827 - NameBeyond The Sea - ArtistBobby Darin - AlbumUnknown - GenreBlues - KindMPEG audio file - Size2730946 - Total Time170657 - Date Modified1999-02-25T03:33:56Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - CommentsBy TaggerMp v2.30 - Play Count1 - Play Date3387862278 - Play Date UTC2011-05-10T12:51:18Z - Persistent ID147821FEFA4E78F1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Bobby%20Darin%20-%20Beyond%20The%20Sea.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3829 - - Track ID3829 - NameMore Than A Feeling - ArtistBoston - GenrePop - KindMPEG audio file - Size4543786 - Total Time283951 - Date Modified1999-02-15T17:49:08Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3380254817 - Play Date UTC2011-02-11T11:40:17Z - Skip Count1 - Skip Date2012-06-11T21:41:51Z - Persistent ID163D962C805B8D61 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Boston%20-%20More%20Than%20a%20Feeling.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3831 - - Track ID3831 - NameThat'll Be The Day - ArtistBuddy Holly - GenreOldies - KindMPEG audio file - Size2143876 - Total Time133982 - Date Modified1999-02-05T13:50:18Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Persistent ID55363F357947ED56 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Buddy%20Holly%20-%20That'll%20Be%20The%20Day.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3833 - - Track ID3833 - NameByrds - Turn Turn Turn - KindMPEG audio file - Size3800084 - Total Time237505 - Date Modified1999-02-05T13:22:28Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-31T12:48:42Z - Persistent ID49B83A847E571B93 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Byrds%20-%20Turn%20Turn%20Turn.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3835 - - Track ID3835 - NameMoonshadow - ArtistCat Stevens - AlbumTeaser And The Firecat - GenrePop - KindMPEG audio file - Size5385114 - Total Time168280 - Year1970 - Date Modified1999-02-05T14:35:06Z - Date Added2011-10-02T13:51:03Z - Bit Rate256 - Sample Rate44100 - Persistent IDE49C45504E37FB2E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Cat%20Stevens%20-%20Moonshadow.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3837 - - Track ID3837 - NameCHUCK BERRY-Johnny B Goode - KindMPEG audio file - Size2606811 - Total Time162925 - Date Modified2000-04-10T13:47:32Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-05-24T14:17:14Z - Persistent IDECF5A4AD981504E4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Chuck%20Berry/CHUCK%20BERRY-Johnny%20B%20Goode.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3839 - - Track ID3839 - NameCHUCK BERRY-No Particular Place To Go - KindMPEG audio file - Size2622892 - Total Time164284 - Date Modified2000-04-10T13:46:58Z - Date Added2011-10-02T13:51:03Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424288065 - Play Date UTC2012-07-05T03:07:45Z - Skip Count2 - Skip Date2011-06-19T13:43:53Z - Persistent ID14B8EB65AC7A6D32 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Chuck%20Berry/CHUCK%20BERRY-No%20Particular%20Place%20To%20Go.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3841 - - Track ID3841 - NameCHUCK BERRY-School Days - KindMPEG audio file - Size2557842 - Total Time160208 - Date Modified2000-04-10T13:47:18Z - Date Added2011-10-02T13:51:04Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424204675 - Play Date UTC2012-07-04T03:57:55Z - Skip Count1 - Skip Date2012-06-11T21:19:01Z - Persistent IDC2EF215CDB61A68D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Chuck%20Berry/CHUCK%20BERRY-School%20Days.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3843 - - Track ID3843 - NameCHUCK BERRY-Sweet Little Sixteen - KindMPEG audio file - Size2922710 - Total Time183066 - Date Modified2000-04-10T13:47:20Z - Date Added2011-10-02T13:51:04Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-20T13:13:47Z - Persistent ID93F33901C9B536DC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Chuck%20Berry/CHUCK%20BERRY-Sweet%20Little%20Sixteen.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3845 - - Track ID3845 - NameCreedence Clearwater Revival - Down on the Corner - KindMPEG audio file - Size2628545 - Total Time164284 - Date Modified1999-02-05T14:35:52Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-09T12:38:59Z - Persistent IDC2DA0C6F853D65DA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/CCR/Creedence%20Clearwater%20Revival%20-%20Down%20on%20the%20Corner.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3847 - - Track ID3847 - NameDave Clark Five - Bits And Pieces - KindMPEG audio file - Size1926791 - Total Time120424 - Date Modified2002-01-20T23:52:38Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Play Count3 - Play Date3426428840 - Play Date UTC2012-07-29T21:47:20Z - Skip Count1 - Skip Date2012-06-20T21:37:20Z - Persistent IDDE9AB99124E4D674 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Dave%20Clark%20Five/The%20History%20Of/Disc%201/Dave%20Clark%20Five%20-%20Bits%20And%20Pieces.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3849 - - Track ID3849 - NameDave Clark Five - Catch Us If You Can - KindMPEG audio file - Size1868695 - Total Time116793 - Date Modified2002-01-21T00:05:22Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3389277091 - Play Date UTC2011-05-26T21:51:31Z - Skip Count2 - Skip Date2012-07-31T12:48:49Z - Persistent IDF2FAC1146838FB41 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Dave%20Clark%20Five/The%20History%20Of/Disc%201/Dave%20Clark%20Five%20-%20Catch%20Us%20If%20You%20Can.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3851 - - Track ID3851 - NameDave Clark Five - Do You Love Me - KindMPEG audio file - Size2651533 - Total Time165720 - Date Modified2002-01-20T23:53:30Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3391144617 - Play Date UTC2011-06-17T12:36:57Z - Persistent IDD336D6F12F9E3BA2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Dave%20Clark%20Five/The%20History%20Of/Disc%201/Dave%20Clark%20Five%20-%20Do%20You%20Love%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3853 - - Track ID3853 - NameDave Clark Five - Glad All Over - KindMPEG audio file - Size2626455 - Total Time164153 - Date Modified2002-01-20T23:51:58Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3388843770 - Play Date UTC2011-05-21T21:29:30Z - Persistent ID17132F301BA82F0A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Dave%20Clark%20Five/The%20History%20Of/Disc%201/Dave%20Clark%20Five%20-%20Glad%20All%20Over.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3855 - - Track ID3855 - NameDave Clark Five - Little Bitty Pretty One - KindMPEG audio file - Size1465364 - Total Time91585 - Date Modified2002-01-20T23:59:18Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3426259010 - Play Date UTC2012-07-27T22:36:50Z - Skip Count1 - Skip Date2012-06-01T15:11:41Z - Persistent IDA4685C58F16C1485 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Dave%20Clark%20Five/The%20History%20Of/Disc%201/Dave%20Clark%20Five%20-%20Little%20Bitty%20Pretty%20One.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3857 - - Track ID3857 - NameDeep Purple - Smoke On The Water - KindMPEG audio file - Size3678876 - Total Time229929 - Date Modified1999-09-11T00:25:52Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-05-10T21:30:25Z - Persistent IDA5CE516652415694 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Deep%20Purple%20-%20Smoke%20On%20The%20Water.MP3 - File Folder Count-1 - Library Folder Count-1 - - 3859 - - Track ID3859 - NameThe Wanderer - ArtistDion - GenreOldies - KindMPEG audio file - Size2673515 - Total Time167471 - Date Modified2000-07-05T06:07:32Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3388154417 - Play Date UTC2011-05-13T22:00:17Z - Skip Count2 - Skip Date2012-06-26T13:43:38Z - Sort NameWanderer - Persistent ID0AB071FDBC3519D3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Dion%20&%20the%20Belmonts%20The%20Wanderer.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3861 - - Track ID3861 - Namehotel california - Artisteagles - Albumhotel california - GenreRock - KindMPEG audio file - Size6269804 - Total Time391836 - Year1976 - Date Modified1999-02-15T17:48:16Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424331658 - Play Date UTC2012-07-05T15:14:18Z - Skip Count3 - Skip Date2012-08-09T00:18:34Z - Persistent ID4B614DF0E3B7B0BD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Eagles%20-%20Hotel%20California.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3863 - - Track ID3863 - NameEddie Cochran - Summertimes Blues - KindMPEG audio file - Size1894609 - Total Time118413 - Date Modified1999-04-25T16:15:52Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3379610353 - Play Date UTC2011-02-04T00:39:13Z - Skip Count1 - Skip Date2010-09-14T12:49:49Z - Persistent ID89214F9D6AF1AA00 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Eddie%20Cochran%20-%20Summertimes%20Blues.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3865 - - Track ID3865 - NameRoll Over Beethoven - ArtistELO - AlbumBest of ELO Disc 1 - Genrerock - KindMPEG audio file - Size7834308 - Total Time490762 - Date Modified1999-02-05T13:48:40Z - Date Added2011-10-02T13:51:05Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3389377035 - Play Date UTC2011-05-28T01:37:15Z - Persistent ID858E2B0F8A1FB21C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Electric%20Light%20Orchestra%20-%20Roll%20Over%20Beethoven.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3867 - - Track ID3867 - NameEric Clapton - Change the World - KindMPEG audio file - Size3777515 - Total Time236094 - Date Modified1998-07-30T05:34:24Z - Date Added2011-10-02T13:51:07Z - Bit Rate128 - Sample Rate44100 - Persistent IDB5A5CCF7CE2D2427 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Eric%20Clapton/Eric%20Clapton%20-%20Change%20the%20World.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3869 - - Track ID3869 - NameLayla (Unplugged) - ArtistEric Clapton - GenreOther - KindMPEG audio file - Size4578452 - Total Time286145 - Date Modified1999-01-29T20:00:54Z - Date Added2011-10-02T13:51:07Z - Bit Rate128 - Sample Rate44100 - CommentsProcessed by MusicVac - Play Count1 - Play Date3389376162 - Play Date UTC2011-05-28T01:22:42Z - Skip Count2 - Skip Date2012-06-11T17:06:25Z - Persistent ID8D99BD5584018337 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Eric%20Clapton/Eric%20Clapton%20-%20Layla%20(unplugged).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3871 - - Track ID3871 - NameFleetwood Mac- Go Your Own Way - KindMPEG audio file - Size3519540 - Total Time219951 - Date Modified1999-01-31T15:51:36Z - Date Added2011-10-02T13:51:07Z - Bit Rate128 - Sample Rate44100 - Persistent IDDB2887C4A1159D7F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Fleetwood%20Mac-%20Go%20Your%20Own%20Way.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3873 - - Track ID3873 - NameGene Kelly - Singin' in the Rain - KindMPEG audio file - Size4564440 - Total Time285910 - Date Modified2000-02-15T21:17:40Z - Date Added2011-10-02T13:51:07Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-08T21:57:43Z - Persistent ID3BA62B5193A78F1C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Gene%20Kelly%20-%20Singin'%20in%20the%20Rain.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3875 - - Track ID3875 - NameBad To The Bone - ArtistGeorge Thorogood And The Destr - AlbumThe Baddest Of George Thorogoo - GenrePop - KindMPEG audio file - Size5927834 - Total Time296385 - Year1999 - Date Modified1999-08-28T16:04:18Z - Date Added2011-10-02T13:51:08Z - Bit Rate160 - Sample Rate44100 - Comments, AG# 92626D0D - Skip Count3 - Skip Date2012-08-10T20:28:53Z - Sort AlbumBaddest Of George Thorogoo - Persistent IDCA91F977A094AD4C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/George%20Thorogood/George%20Thorogood%20And%20The%20Destroyers%20-%20Bad%20To%20The%20Bone.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3877 - - Track ID3877 - NameOne Bourbon, One Scotch, One B - ArtistGeorge Thorogood And The Destr - AlbumThe Baddest Of George Thorogoo - GenrePop - KindMPEG audio file - Size10141907 - Total Time507088 - Year1999 - Date Modified1999-08-28T16:07:08Z - Date Added2011-10-02T13:51:08Z - Bit Rate160 - Sample Rate44100 - Comments, AG# 1F2B9A2A - Skip Count1 - Skip Date2010-08-21T19:30:42Z - Sort AlbumBaddest Of George Thorogoo - Persistent ID26335C53F42A793A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/George%20Thorogood/George%20Thorogood%20And%20The%20Destroyers%20-%20One%20Bourbon,%20One%20Scotch,%20One%20Beer.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3879 - - Track ID3879 - NameI'm Henry the VIII, I Am - ArtistHerman's Hermits - AlbumUnknown - KindMPEG audio file - Size1799036 - Total Time112431 - Date Modified2000-02-15T21:19:08Z - Date Added2011-10-02T13:51:08Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-30T13:22:10Z - Persistent ID49FCBB24D3B07139 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Herman's%20Hermits/Herman's%20Hermits%20-%20I'm%20Henry%20the%20VIII,%20I%20Am.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3881 - - Track ID3881 - NameHerman's Hermits - Into something good - KindMPEG audio file - Size2476112 - Total Time155088 - Date Modified1999-04-25T16:02:48Z - Date Added2011-10-02T13:51:08Z - Bit Rate128 - Sample Rate44100 - Persistent ID3E1C8C607B0B44B1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Herman's%20Hermits/Herman's%20Hermits%20-%20Into%20something%20good.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3883 - - Track ID3883 - NameI haven't got the nerve - ArtistThe Left Banke - KindMPEG audio file - Size3192500 - Total Time133015 - Track Number10 - Date Modified2002-03-20T01:15:38Z - Date Added2011-10-02T13:51:08Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424321023 - Play Date UTC2012-07-05T12:17:03Z - Sort ArtistLeft Banke - Persistent ID0FF567C8D8383E53 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Left%20Banke/I%20haven't%20got%20the%20nerve.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3885 - - Track ID3885 - NameI've got something on my mind - ArtistThe Left Banke - KindMPEG audio file - Size4068333 - Total Time169508 - Track Number4 - Date Modified2002-03-20T01:08:40Z - Date Added2011-10-02T13:51:08Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3426258771 - Play Date UTC2012-07-27T22:32:51Z - Sort ArtistLeft Banke - Persistent IDDEEDE22C98AAD775 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Left%20Banke/I've%20got%20something%20on%20my%20mind.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3887 - - Track ID3887 - NameGreat Balls Of Fire - ArtistJerry Lee Lewis - AlbumUnknown - GenreBlues - KindMPEG audio file - Size1794008 - Total Time112117 - Date Modified1999-02-25T03:40:16Z - Date Added2011-10-02T13:51:08Z - Bit Rate128 - Sample Rate44100 - CommentsBy TaggerMp v2.30 - Persistent ID19CE2AC7E09CDFA9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Jerry%20Lee%20Lewis%20-%20Great%20Balls%20Of%20Fire.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3889 - - Track ID3889 - NameJethro Tull - Aqualung - KindMPEG audio file - Size6290694 - Total Time393168 - Date Modified1998-09-17T14:21:48Z - Date Added2011-10-02T13:51:08Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424298194 - Play Date UTC2012-07-05T05:56:34Z - Skip Count1 - Skip Date2011-05-13T21:46:48Z - Persistent IDBFACD3ACE953BCDD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Jethro%20Tull/Jethro%20Tull%20-%20Aqualung.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3891 - - Track ID3891 - NameJethro Tull - Bungle in the jungle - KindMPEG audio file - Size3404271 - Total Time212767 - Date Modified1998-09-17T14:35:42Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3425278443 - Play Date UTC2012-07-16T14:14:03Z - Skip Count1 - Skip Date2011-02-11T11:51:59Z - Persistent IDB2E0DFC80B610349 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Jethro%20Tull/Jethro%20Tull%20-%20Bungle%20in%20the%20jungle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3893 - - Track ID3893 - NameSo This is Christmas - ArtistJohn Lennon - KindMPEG audio file - Size3453179 - Total Time215797 - Date Modified1999-01-30T18:38:10Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424264469 - Play Date UTC2012-07-04T20:34:29Z - Skip Count1 - Skip Date2012-08-17T13:14:18Z - Persistent IDB3388B752F1C2551 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/John%20Lennon%20-%20So%20This%20is%20Christmas.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3895 - - Track ID3895 - NameKinks - 20th Century Man - KindMPEG audio file - Size7136641 - Total Time356832 - Date Modified1998-08-19T15:07:26Z - Date Added2011-10-02T13:51:09Z - Bit Rate160 - Sample Rate44100 - Persistent IDA35ECEDC62895265 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Kinks/Kinks%20-%2020th%20Century%20Man.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3897 - - Track ID3897 - NameKinks - Lola - KindMPEG audio file - Size3913351 - Total Time244584 - Date Modified1999-02-05T14:34:00Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Persistent ID3BB9FACA4B78FDAA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Kinks/Kinks%20-%20Lola.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3899 - - Track ID3899 - NameLittle Richard - Good Golly Miss Molly - KindMPEG audio file - Size2082145 - Total Time130115 - Date Modified1999-03-03T21:55:30Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-04-19T22:42:33Z - Persistent IDB7366CE8A88A08F0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Little%20Richard%20-%20Good%20Golly%20Miss%20Molly.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3901 - - Track ID3901 - NameLouis Armstrong - What a Wonderful World - KindMPEG audio file - Size2267862 - Total Time141740 - Date Modified1999-02-05T13:50:42Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Persistent IDB982526C58F17114 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Louis%20Armstrong%20-%20What%20a%20Wonderful%20World.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3903 - - Track ID3903 - NameSweet Home Alabama - ArtistLynyrd Skynrd - GenreClassic Rock - KindMPEG audio file - Size4800807 - Total Time300042 - Date Modified1998-09-28T03:04:32Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-10T11:33:39Z - Persistent ID62591E228B65C11C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Lynard%20Skynard%20-%20Sweet%20Home%20Alabama.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3905 - - Track ID3905 - NameMamas and the Papas - California Dreaming - KindMPEG audio file - Size3876989 - Total Time161541 - Date Modified2002-04-06T20:09:10Z - Date Added2011-10-02T13:51:09Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-05-24T14:08:38Z - Persistent IDAA98CFCBDAF266DB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Mamas%20and%20the%20Papas%20-%20California%20Dreaming.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3907 - - Track ID3907 - NameBreaking Up Is Hard To Do - ArtistNeil Sedaka - GenreOldies - KindMPEG audio file - Size2146766 - Total Time134164 - Date Modified2000-04-09T04:27:00Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3384006469 - Play Date UTC2011-03-26T21:47:49Z - Persistent ID1DC8E659DFF81843 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Neil%20Sedaka%20-%20Breaking%20Up%20Is%20Hard%20To%20Do.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3909 - - Track ID3909 - NameOtis Redding - Dock of the bay - KindMPEG audio file - Size2316068 - Total Time165433 - Date Modified1999-02-27T21:14:20Z - Date Added2011-10-02T13:51:09Z - Bit Rate112 - Sample Rate44100 - Play Count1 - Play Date3389375863 - Play Date UTC2011-05-28T01:17:43Z - Skip Count1 - Skip Date2012-05-16T22:50:54Z - Persistent ID87C81E2753ECDDB3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Otis%20Redding%20-%20Dock%20of%20the%20bay.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3911 - - Track ID3911 - NameLive & let die - ArtistPaul McCartney & Wings - AlbumJames Bond collection (LME) - GenreSoundtrack - KindMPEG audio file - Size3097892 - Total Time193593 - Year1997 - Date Modified1999-02-25T02:00:02Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Skip Count3 - Skip Date2012-05-16T22:50:21Z - Persistent IDE1A80ABEC7168997 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Paul%20McCartney%20-%20Live%20and%20Let%20die.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3913 - - Track ID3913 - NamePretty Ballerina - ArtistThe Left Banke - KindMPEG audio file - Size3815050 - Total Time158955 - Track Number1 - Date Modified2002-03-20T01:04:26Z - Date Added2011-10-02T13:51:09Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-12T13:36:22Z - Sort ArtistLeft Banke - Persistent ID6D1C3F25304CBC5B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Left%20Banke/Pretty%20Ballerina.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3915 - - Track ID3915 - NameLet's Spend the Night Together - ArtistRolling Stones - KindMPEG audio file - Size3688576 - Total Time230504 - Date Modified2000-09-27T22:03:16Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424241258 - Play Date UTC2012-07-04T14:07:38Z - Skip Count1 - Skip Date2010-05-20T12:38:44Z - Persistent ID8A368F8632B93B46 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Rolling%20Stones/Rolling%20Stones%20-%20Let's%20Spend%20the%20Night%20Together.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3917 - - Track ID3917 - NamePaint it Black - ArtistRolling Stones - KindMPEG audio file - Size3696977 - Total Time231053 - Date Modified1999-10-24T22:16:44Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3425278880 - Play Date UTC2012-07-16T14:21:20Z - Skip Count1 - Skip Date2012-05-23T13:49:15Z - Persistent ID1D7CAC359E9B0D68 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Rolling%20Stones/Rolling%20Stones%20-%20Paint%20it%20Black.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3919 - - Track ID3919 - NameSatisfaction - ArtistRolling Stones - GenreOther - KindMPEG audio file - Size3621743 - Total Time226351 - Date Modified1999-01-29T02:03:38Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3354340664 - Play Date UTC2010-04-17T13:17:44Z - Skip Count1 - Skip Date2012-06-26T13:50:13Z - Persistent IDAE29721D7665A9C7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Rolling%20Stones/Rolling%20Stones%20-%20Satisfaction.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3921 - - Track ID3921 - NameOye Como Va - ArtistSantana - GenreBlues - KindMPEG audio file - Size4055168 - Total Time253440 - Date Modified1999-02-15T17:49:42Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2011-06-07T21:42:03Z - Persistent ID0B19067833F6C6BD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Santana/Santana%20-%20Oye%20Como%20Va.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3923 - - Track ID3923 - NameSmooth - ArtistSantana - AlbumSupernatural - GenrePop - KindMPEG audio file - Size4769460 - Total Time298083 - Year1999 - Date Modified1999-08-01T01:42:04Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Comments, AG# 00000000 - Skip Count2 - Skip Date2012-07-26T13:28:53Z - Persistent IDA79321C97459D9DC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Santana/Santana%20-%20Smooth.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3925 - - Track ID3925 - NameShe May Call You Up Tonight - ArtistThe Left Banke - KindMPEG audio file - Size3314753 - Total Time138109 - Track Number2 - Date Modified2002-03-20T01:05:38Z - Date Added2011-10-02T13:51:09Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2011-02-07T10:55:53Z - Sort ArtistLeft Banke - Persistent ID032A26478801F1C9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Left%20Banke/She%20May%20Call%20You%20Up%20Tonight.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3927 - - Track ID3927 - NameDirty Water - ArtistStandells - KindMPEG audio file - Size2627837 - Total Time164231 - Date Modified2002-01-15T14:19:52Z - Date Added2011-10-02T13:51:09Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-28T16:43:33Z - Persistent IDCB2A66928E9CF1EE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Standells%20-%20Dirty%20Water.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3929 - - Track ID3929 - NameThe Doors - Riders of the Storm - KindMPEG audio file - Size8034827 - Total Time401737 - Date Modified2000-08-27T05:39:34Z - Date Added2011-10-02T13:51:09Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3424299462 - Play Date UTC2012-07-05T06:17:42Z - Skip Count2 - Skip Date2012-05-31T21:06:43Z - Sort NameDoors - Riders of the Storm - Persistent ID368DBD745AF6F74F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Doors%20-%20Riders%20of%20the%20Storm.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3931 - - Track ID3931 - NameThe Who - Magic Bus - KindMPEG audio file - Size3145820 - Total Time197041 - Date Modified1998-08-03T04:27:10Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3424264846 - Play Date UTC2012-07-04T20:40:46Z - Sort NameWho - Magic Bus - Persistent ID3C713B93C5F3B880 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Who/The%20Who%20-%20Magic%20Bus.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3933 - - Track ID3933 - NameThe Who - Pinball Wizard - KindMPEG audio file - Size2901858 - Total Time181342 - Date Modified1998-08-03T04:44:16Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3422534936 - Play Date UTC2012-06-14T20:08:56Z - Skip Count2 - Skip Date2012-08-09T22:22:42Z - Sort NameWho - Pinball Wizard - Persistent ID8BD3625EEA2BB33E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Who/The%20Who%20-%20Pinball%20Wizard.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3935 - - Track ID3935 - NameTom Petty - Last Dance With Mary Jane - KindMPEG audio file - Size4345810 - Total Time271595 - Date Modified1999-09-28T04:08:54Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Persistent IDDA1999985985EA7C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Tom%20Petty%20-%20Last%20Dance%20With%20Mary%20Jane.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3937 - - Track ID3937 - NameYou Dont Know How It Feels - ArtistTom Petty - GenrePop - KindMPEG audio file - Size4631951 - Total Time289488 - Date Modified1999-02-05T14:33:18Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Persistent ID258972CE7A179987 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Tom%20Petty/Tom%20Petty%20-%20You%20Dont%20Know%20How%20it%20Feels.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3939 - - Track ID3939 - NameTommy James And the Shondells - KindMPEG audio file - Size2071533 - Total Time129462 - Track Number1 - Date Modified2000-09-07T17:06:54Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Play Date3420638736 - Play Date UTC2012-05-23T21:25:36Z - Skip Date2011-05-31T21:39:58Z - Persistent IDFBE19FA1B8D07736 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Tommy%20James%20And%20the%20Shondells%20-%20I%20Think%20We're%20Alone%20Now.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3941 - - Track ID3941 - NameHappy Together - ArtistTurtles - GenrePop - KindMPEG audio file - Size2801290 - Total Time175072 - Date Modified2000-04-01T23:10:22Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3388844305 - Play Date UTC2011-05-21T21:38:25Z - Skip Count2 - Skip Date2012-08-16T13:07:29Z - Persistent ID686B0CB4CC0329E2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Turtles%20-%20Happy%20Together.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3943 - - Track ID3943 - NameBrown Eyed Girl - AlbumSpencer's Greatest Hits - GenreOther - KindMPEG audio file - Size2934201 - Total Time183379 - Date Modified1999-02-05T13:21:56Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-11T22:43:04Z - Persistent ID7CB4F7119925EDA6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Van%20Morrison%20-%20Brown%20Eyed%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3945 - - Track ID3945 - NameWalk Away Renee - ArtistThe Left Banke - KindMPEG audio file - Size3909718 - Total Time162899 - Track Number7 - Date Modified2002-03-20T01:12:08Z - Date Added2011-10-02T13:51:10Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2011-05-13T22:01:42Z - Sort ArtistLeft Banke - Persistent IDEB5BFA12572E18DB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Left%20Banke/Walk%20Away%20Renee.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3947 - - Track ID3947 - Name03 - You Won't See Me - ArtistThe Beatles - AlbumRubber Soul - GenreClassic Rock - KindMPEG audio file - Size3216057 - Total Time200359 - Year1965 - Date Modified2010-03-14T00:36:26Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3389605319 - Play Date UTC2011-05-30T17:01:59Z - Sort ArtistBeatles - Persistent ID8678E03B25B81D42 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201965%20-%20Rubber%20Soul%20(UK)/03%20-%20You%20Won't%20See%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3949 - - Track ID3949 - Name06 - The Word - ArtistThe Beatles - AlbumRubber Soul - GenreClassic Rock - KindMPEG audio file - Size2574907 - Total Time160287 - Year1965 - Date Modified2010-03-14T00:36:28Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-04-19T22:33:03Z - Sort ArtistBeatles - Persistent ID3F40E2740884D438 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201965%20-%20Rubber%20Soul%20(UK)/06%20-%20The%20Word.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3951 - - Track ID3951 - NameMichelle - ArtistThe Beatles - AlbumRubber Soul - GenreClassic Rock - KindMPEG audio file - Size2558080 - Total Time159791 - Year1965 - Date Modified2010-03-14T00:36:28Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - CommentsMP3 McCartney - Play Count1 - Play Date3373702565 - Play Date UTC2010-11-27T15:36:05Z - Sort ArtistBeatles - Persistent ID76469D1140FCD69B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201965%20-%20Rubber%20Soul%20(UK)/07%20-%20Michelle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3953 - - Track ID3953 - Name10 - I'm Looking Through You - ArtistThe Beatles - AlbumRubber Soul - GenreClassic Rock - KindMPEG audio file - Size2343776 - Total Time145841 - Year1965 - Date Modified2010-03-14T00:36:30Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3426686860 - Play Date UTC2012-08-01T21:27:40Z - Sort ArtistBeatles - Persistent ID9AFBF01BD81C2783 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201965%20-%20Rubber%20Soul%20(UK)/10%20-%20I'm%20Looking%20Through%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3955 - - Track ID3955 - Name13 - If I Needed Someone - ArtistThe Beatles - AlbumRubber Soul - GenreClassic Rock - KindMPEG audio file - Size2238450 - Total Time139258 - Year1965 - Date Modified2010-03-14T00:36:32Z - Date Added2011-10-02T13:51:10Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-30T13:26:03Z - Sort ArtistBeatles - Persistent ID953EFAE29FDA4550 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201965%20-%20Rubber%20Soul%20(UK)/13%20-%20If%20I%20Needed%20Someone.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3957 - - Track ID3957 - Name01 The Beatles - Taxman - ArtistThe Beatles - AlbumRevolver - GenreClassic Rock - KindMPEG audio file - Size1878364 - Total Time155898 - Year1966 - Date Modified2010-03-14T00:38:39Z - Date Added2011-10-02T13:51:10Z - Bit Rate96 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-10T12:53:57Z - Sort ArtistBeatles - Persistent ID59B8709B30791CE4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201966%20-%20Revolver%20(UK)/01%20The%20Beatles%20-%20Taxman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3959 - - Track ID3959 - Name02 The Beatles - Eleanor Rigby - ArtistThe Beatles - AlbumRevolver - GenreClassic Rock - KindMPEG audio file - Size1497444 - Total Time124107 - Year1966 - Date Modified2010-03-14T00:38:39Z - Date Added2011-10-02T13:51:11Z - Bit Rate96 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-11T21:32:47Z - Sort ArtistBeatles - Persistent ID4F747CA7DC0639C5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201966%20-%20Revolver%20(UK)/02%20The%20Beatles%20-%20Eleanor%20Rigby.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3961 - - Track ID3961 - Name03 The Beatles - I'm only sleeping - ArtistThe Beatles - AlbumRevolver - GenreClassic Rock - KindMPEG audio file - Size2136902 - Total Time177475 - Year1966 - Date Modified2010-03-14T00:38:41Z - Date Added2011-10-02T13:51:11Z - Bit Rate96 - Sample Rate44100 - Skip Count5 - Skip Date2012-07-27T13:07:13Z - Sort ArtistBeatles - Persistent ID664B96DEFC2C9BB1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201966%20-%20Revolver%20(UK)/03%20The%20Beatles%20-%20I'm%20only%20sleeping.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3963 - - Track ID3963 - Name07 The Beatles - She said she said - ArtistThe Beatles - AlbumRevolver - GenreClassic Rock - KindMPEG audio file - Size1856454 - Total Time154070 - Year1966 - Date Modified2010-03-14T00:38:42Z - Date Added2011-10-02T13:51:11Z - Bit Rate96 - Sample Rate44100 - Play Count1 - Play Date3424215787 - Play Date UTC2012-07-04T07:03:07Z - Skip Count2 - Skip Date2012-08-17T12:49:44Z - Sort ArtistBeatles - Persistent IDE4A298402A1ED6DC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201966%20-%20Revolver%20(UK)/07%20The%20Beatles%20-%20She%20said%20she%20said.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3965 - - Track ID3965 - Name08 The Beatles - Good day sunshine - ArtistThe Beatles - AlbumRevolver - GenreClassic Rock - KindMPEG audio file - Size1535630 - Total Time127294 - Year1966 - Date Modified2010-03-14T00:38:43Z - Date Added2011-10-02T13:51:11Z - Bit Rate96 - Sample Rate44100 - Play Count1 - Play Date3424229434 - Play Date UTC2012-07-04T10:50:34Z - Skip Count2 - Skip Date2012-05-10T21:29:39Z - Sort ArtistBeatles - Persistent ID360999AA29F5F918 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201966%20-%20Revolver%20(UK)/08%20The%20Beatles%20-%20Good%20day%20sunshine.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3967 - - Track ID3967 - Name09 The Beatles - And your bird can sing - ArtistThe Beatles - AlbumRevolver - GenreClassic Rock - KindMPEG audio file - Size1428584 - Total Time118360 - Year1966 - Date Modified2010-03-14T00:38:44Z - Date Added2011-10-02T13:51:12Z - Bit Rate96 - Sample Rate44100 - Skip Count2 - Skip Date2011-05-30T18:38:34Z - Sort ArtistBeatles - Persistent ID0C07E52977F57455 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201966%20-%20Revolver%20(UK)/09%20The%20Beatles%20-%20And%20your%20bird%20can%20sing.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3969 - - Track ID3969 - Name12 The Beatles - I want to tell you - KindMPEG audio file - Size1750682 - Total Time146102 - Date Modified2005-03-07T03:59:54Z - Date Added2011-10-02T13:51:12Z - Bit Rate96 - Sample Rate44100 - Persistent ID3F46B47F9044F33B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201966%20-%20Revolver%20(UK)/12%20The%20Beatles%20-%20I%20want%20to%20tell%20you.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3971 - - Track ID3971 - Name13 The Beatles - Got to get you into my life - ArtistThe Beatles - AlbumRevolver - GenreClassic Rock - KindMPEG audio file - Size1777578 - Total Time147487 - Year1966 - Date Modified2010-03-14T00:38:45Z - Date Added2011-10-02T13:51:12Z - Bit Rate96 - Sample Rate44100 - Sort ArtistBeatles - Persistent ID5B130E38907AF93E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201966%20-%20Revolver%20(UK)/13%20The%20Beatles%20-%20Got%20to%20get%20you%20into%20my%20life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3973 - - Track ID3973 - Name04 - Getting Better - ArtistThe Beatles - Album ArtistThe Beatles - AlbumSgt. Pepper's Lonely Heart's Club Band - GenreClassic Rock - KindMPEG audio file - Size2696523 - Total Time167888 - Year1967 - Date Modified2010-03-14T00:40:27Z - Date Added2011-10-02T13:51:13Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2012-05-23T13:45:45Z - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent ID50FF715600BF0B40 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201967%20-%20Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band%20(UK+US)/04%20-%20Getting%20Better.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3975 - - Track ID3975 - Name07 - Being For The Benefit Of Mr. Kite! - ArtistThe Beatles - Album ArtistThe Beatles - AlbumSgt. Pepper's Lonely Heart's Club Band - GenreClassic Rock - KindMPEG audio file - Size2523906 - Total Time157100 - Year1967 - Date Modified2010-03-14T00:40:27Z - Date Added2011-10-02T13:51:13Z - Bit Rate128 - Sample Rate44100 - Skip Count3 - Skip Date2012-07-09T12:34:17Z - Sort Album ArtistBeatles - Sort ArtistBeatles - Persistent ID5FA28EBAE1273D02 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201967%20-%20Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band%20(UK+US)/07%20-%20Being%20For%20The%20Benefit%20Of%20Mr.%20Kite!.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3977 - - Track ID3977 - Name13 - A Day In The Life - ArtistThe Beatles - AlbumSgt. Pepper's Lonely Heart's Club Band - GenreClassic Rock - KindMPEG audio file - Size5351020 - Total Time333792 - Year1967 - Date Modified2010-03-14T00:40:32Z - Date Added2011-10-02T13:51:13Z - Bit Rate128 - Sample Rate44100 - Skip Count2 - Skip Date2012-05-14T13:37:40Z - Sort ArtistBeatles - Persistent ID303E5F08199D4AAD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/Beatles%20-%201967%20-%20Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band%20(UK+US)/13%20-%20A%20Day%20In%20The%20Life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3979 - - Track ID3979 - NameBirthday - ArtistThe Beatles - AlbumWhite Album - GenreClassic Rock - KindMPEG audio file - Size2605685 - Total Time162847 - Year1999 - Date Modified2010-03-14T00:41:52Z - Date Added2011-10-02T13:51:13Z - Bit Rate128 - Sample Rate44100 - Comments, AG# E1AF0A7D - Play Count2 - Play Date3379687643 - Play Date UTC2011-02-04T22:07:23Z - Sort ArtistBeatles - Persistent IDB4D066636780A0BA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Beatles/White%20Album%20(disc%202)/Beatles%20-%20Birthday.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3981 - - Track ID3981 - NameJohn_Digweed_-_Transitions_-_01-May-2009_mixing.dj - Artistmixing.dj - Albumwww.mixing.dj - KindMPEG audio file - Size77770731 - Total Time3240280 - Track Number2 - Date Modified2009-05-03T19:15:15Z - Date Added2011-10-02T13:51:13Z - Bit Rate192 - Sample Rate44100 - Persistent ID6E728E80D768D56B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/John_Digweed_-_Transitions_-_01-May-2009_mixing.dj.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3983 - - Track ID3983 - NameJohn Digweed - ArtistTransitions (2010-03-12) Part 1 - KindMPEG audio file - Size53647089 - Total Time3352842 - Track Number81 - Date Modified2010-03-13T09:53:33Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate44100 - Skip Count1 - Skip Date2011-06-07T22:04:50Z - Persistent ID536B8AD326C597CD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Transitions%20(2010-03-12)%20Part%201%20-%20John%20Digweed.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3985 - - Track ID3985 - NameAgoria - ArtistTransitions (2010-03-12) Part 2 - KindMPEG audio file - Size53702678 - Total Time3356316 - Track Number82 - Date Modified2010-03-13T10:49:30Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3425284636 - Play Date UTC2012-07-16T15:57:16Z - Skip Count2 - Skip Date2012-07-26T13:36:51Z - Persistent IDD12AB551BE1C2D1A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Transitions%20(2010-03-12)%20Part%202%20-%20Agoria.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3987 - - Track ID3987 - NameIn The Mix ep168 on ETN.fm 2009-04-06 - ArtistManuel Tilca - KindMPEG audio file - Size124851161 - Total Time3901544 - Track Number2 - Date Modified2009-05-08T22:09:16Z - Date Added2011-10-02T13:51:14Z - Bit Rate256 - Sample Rate44100 - Play Count1 - Play Date3363519136 - Play Date UTC2010-08-01T18:52:16Z - Skip Count1 - Skip Date2012-06-05T12:50:40Z - Persistent ID9A72C44ABD9ED25F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Manuel%20Tilca%20-%20In%20The%20Mix%20ep168%20on%20ETN.fm%202009-04-06.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3989 - - Track ID3989 - NameMarkus Schulz presents - Global DJ Broadcast World Tour (12 March 2009) - KindMPEG audio file - Size172818807 - Total Time7200783 - Date Modified2009-05-04T01:34:29Z - Date Added2011-10-02T13:51:14Z - Bit Rate192 - Sample Rate44100 - Skip Count3 - Skip Date2012-08-09T22:39:17Z - Persistent IDC0BE9FAC4B940738 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Markus%20Schulz%20presents%20-%20Global%20DJ%20Broadcast%20World%20Tour%20(12%20March%202009).mp3 - File Folder Count-1 - Library Folder Count-1 - - 3991 - - Track ID3991 - NameGlobal DJ Broadcast (19 March 2009) - ArtistMarkus Schulz presents - KindMPEG audio file - Size174050600 - Total Time7252035 - Date Modified2009-05-04T01:34:57Z - Date Added2011-10-02T13:51:14Z - Bit Rate192 - Sample Rate44100 - Skip Count2 - Skip Date2012-05-24T14:03:42Z - Persistent IDC42B48C7332CD74C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/25.%20Techno%20Shows/Markus-Schulz-presents---Global-DJ-Broadcast--19-March-2009-.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3993 - - Track ID3993 - Name01 Headhunterz & Wildstylez - It's A Sine - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3144564 - Total Time196440 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count2 - Play Date3359906691 - Play Date UTC2010-06-20T23:24:51Z - Skip Count2 - Skip Date2012-06-01T15:12:09Z - Persistent ID960BE79B4550E932 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/01%20Headhunterz%20&%20Wildstylez%20-%20It's%20A%20Sine.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3995 - - Track ID3995 - Name02 Frontliner - Time - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size4731636 - Total Time295632 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:41Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424338260 - Play Date UTC2012-07-05T17:04:20Z - Skip Count3 - Skip Date2012-07-30T13:26:00Z - Persistent ID1D4FFCCEF7F3E65A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/02%20Frontliner%20-%20Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3997 - - Track ID3997 - Name03 Kingsman & Nego Presents Heatzone - Godlines - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3113460 - Total Time194496 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:41Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2010-08-20T13:50:30Z - Persistent ID8E48ABF49170C2C0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/03%20Kingsman%20&%20Nego%20Presents%20Heatzone%20-%20Godlines.mp3 - File Folder Count-1 - Library Folder Count-1 - - 3999 - - Track ID3999 - Name04 Jimmy The Sound - Piano Man - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size4799220 - Total Time299856 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:41Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424193929 - Play Date UTC2012-07-04T00:58:49Z - Skip Count3 - Skip Date2012-06-28T16:46:49Z - Persistent ID56C32964CDFC5357 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/04%20Jimmy%20The%20Sound%20-%20Piano%20Man.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4001 - - Track ID4001 - Name05 Josh & Wesh - Fucking Posers - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3614580 - Total Time225816 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:41Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424339639 - Play Date UTC2012-07-05T17:27:19Z - Skip Count4 - Skip Date2012-06-11T21:48:27Z - Persistent ID9A87D4275C9D446E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/05%20Josh%20&%20Wesh%20-%20Fucking%20Posers.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4003 - - Track ID4003 - Name06 Wildstylez - The Moon - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size4318068 - Total Time269784 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:41Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count4 - Play Date3424325771 - Play Date UTC2012-07-05T13:36:11Z - Skip Count1 - Skip Date2012-07-30T13:26:17Z - Persistent IDDE9C63202E3AAF1C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/06%20Wildstylez%20-%20The%20Moon.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4005 - - Track ID4005 - Name07 B-Twinz - Sex FM - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3885300 - Total Time242736 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:41Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count2 - Skip Date2012-07-29T21:41:28Z - Persistent IDDAA112A5BBB2FC5B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/07%20B-Twinz%20-%20Sex%20FM.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4007 - - Track ID4007 - Name08 Digital Punk & Profyler & Dark Symphony - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size4609524 - Total Time288000 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:41Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count3 - Skip Date2012-08-10T20:21:59Z - Persistent ID6D1FD0D24EE9E439 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/08%20Digital%20Punk%20&%20Profyler%20&%20Dark%20Symphony.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4009 - - Track ID4009 - Name09 Psyko Punkz - Overclipping - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3105012 - Total Time193968 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424302625 - Play Date UTC2012-07-05T07:10:25Z - Skip Count1 - Skip Date2009-04-18T00:36:52Z - Persistent ID848E1BC0012810F7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/09%20Psyko%20Punkz%20-%20Overclipping.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4011 - - Track ID4011 - Name10 Headhunterz - Subsonic - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size4532724 - Total Time283200 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2011-05-31T21:40:21Z - Persistent IDC9248211D258A80A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/10%20Headhunterz%20-%20Subsonic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4013 - - Track ID4013 - Name11 Silver Nikan - Life Is Like A Soundtrack - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3236724 - Total Time202200 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424190363 - Play Date UTC2012-07-03T23:59:23Z - Skip Count1 - Skip Date2011-06-08T21:09:36Z - Persistent ID366540F2E6E1B4CA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/11%20Silver%20Nikan%20-%20Life%20Is%20Like%20A%20Soundtrack.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4015 - - Track ID4015 - Name12 The Machine - Lucid Dreams - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3796596 - Total Time237192 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3357908548 - Play Date UTC2010-05-28T20:22:28Z - Skip Count1 - Skip Date2012-06-12T21:21:31Z - Persistent ID21B7EF685EEE5A83 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/12%20The%20Machine%20-%20Lucid%20Dreams.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4017 - - Track ID4017 - Name13 Frontliner - Rollin - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3977844 - Total Time248520 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:14Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424230128 - Play Date UTC2012-07-04T11:02:08Z - Skip Count2 - Skip Date2012-06-11T17:08:11Z - Persistent IDED4DD8FAC1033759 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/13%20Frontliner%20-%20Rollin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4019 - - Track ID4019 - Name14 Fransesco Zeta - What The Hell Is Going On - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size4096884 - Total Time255960 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent ID68C5447034CBFBAB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/14%20Fransesco%20Zeta%20-%20What%20The%20Hell%20Is%20Going%20On.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4021 - - Track ID4021 - Name15 Headhunterz - Raiders Of The Sun - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size4238580 - Total Time264816 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424333823 - Play Date UTC2012-07-05T15:50:23Z - Skip Count5 - Skip Date2012-08-09T22:23:29Z - Persistent ID8A5661C50071C948 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/15%20Headhunterz%20-%20Raiders%20Of%20The%20Sun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4023 - - Track ID4023 - Name16 Wildstylez - Muzic Or Noize - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3714036 - Total Time232032 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count8 - Play Date3414587321 - Play Date UTC2012-03-14T20:28:41Z - Persistent ID74AD6F479280E6DB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/16%20Wildstylez%20-%20Muzic%20Or%20Noize.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4025 - - Track ID4025 - Name17 Headhunterz - Just Say My name - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3450996 - Total Time215592 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count16 - Play Date3424325986 - Play Date UTC2012-07-05T13:39:46Z - Persistent ID1BB8DC5921567B01 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/17%20Headhunterz%20-%20Just%20Say%20My%20name.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4027 - - Track ID4027 - Name18 Josh & Wesh - Like This - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3776628 - Total Time235944 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count12 - Play Date3422535269 - Play Date UTC2012-06-14T20:14:29Z - Skip Count1 - Skip Date2012-05-21T13:31:13Z - Persistent IDC3617296521B1F3B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/18%20Josh%20&%20Wesh%20-%20Like%20This.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4029 - - Track ID4029 - Name19 Silver Nikan - Get This Party Started - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD3 - KindMPEG audio file - Size3299316 - Total Time206112 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:40Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count5 - Play Date3414587978 - Play Date UTC2012-03-14T20:39:38Z - Persistent IDF104FA0D22ADA564 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd3/19%20Silver%20Nikan%20-%20Get%20This%20Party%20Started.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4031 - - Track ID4031 - Name01 The Beholder vs Max Enforcer - Be Amazed (Official Hard Bass 2009 Anthem) - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size4998516 - Total Time312312 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:20Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424271430 - Play Date UTC2012-07-04T22:30:30Z - Persistent ID5852E2F35628B470 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/01%20The%20Beholder%20vs%20Max%20Enforcer%20-%20Be%20Amazed%20(Official%20Hard%20Bass%202009%20Anthem).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4033 - - Track ID4033 - Name02 Technoboy Feat Shayla - Oh My Komodo (DJ Tool remix) - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size4690548 - Total Time293064 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:20Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent ID141487ED031CD6FF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/02%20Technoboy%20Feat%20Shayla%20-%20Oh%20My%20Komodo%20(DJ%20Tool%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4035 - - Track ID4035 - Name03 Zenith vs Avex - Pussy Eaters (Club Version) - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size4889076 - Total Time305472 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:20Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count2 - Skip Date2012-06-12T13:30:11Z - Persistent ID3EC0BC735D5F7AD1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/03%20Zenith%20vs%20Avex%20-%20Pussy%20Eaters%20(Club%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4037 - - Track ID4037 - Name04 Silver Nikan - Miracle - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size3068148 - Total Time191664 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:20Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424316543 - Play Date UTC2012-07-05T11:02:23Z - Skip Count1 - Skip Date2012-08-03T17:35:58Z - Persistent ID07EAD6F336F61030 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/04%20Silver%20Nikan%20-%20Miracle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4039 - - Track ID4039 - Name05 Josh & Wesh - Houze Muzik - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size3571188 - Total Time223104 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:20Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424221671 - Play Date UTC2012-07-04T08:41:11Z - Persistent IDAB314ABD4A170F58 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/05%20Josh%20&%20Wesh%20-%20Houze%20Muzik.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4041 - - Track ID4041 - Name06 DJ Phil Ty - A Kay A (Ehm Mix) - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size4306932 - Total Time269088 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:20Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2012-06-29T22:26:00Z - Persistent ID28804E3EEE3D69C0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/06%20DJ%20Phil%20Ty%20-%20A%20Kay%20A%20(Ehm%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4043 - - Track ID4043 - Name07 Da Tweekaz - Very Nice - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size3667956 - Total Time229152 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:20Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424251970 - Play Date UTC2012-07-04T17:06:10Z - Skip Count2 - Skip Date2012-08-07T22:03:06Z - Persistent ID504DEAD0D12EA989 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/07%20Da%20Tweekaz%20-%20Very%20Nice.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4045 - - Track ID4045 - Name08 Hardstyle Kid - Xperience - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size3952116 - Total Time246912 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424332965 - Play Date UTC2012-07-05T15:36:05Z - Skip Count2 - Skip Date2012-07-12T11:46:46Z - Persistent ID0796EF745608B52E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/08%20Hardstyle%20Kid%20-%20Xperience.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4047 - - Track ID4047 - Name09 Brainkicker Presents Atmozfears - Inflicing You - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size4558836 - Total Time284832 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424330471 - Play Date UTC2012-07-05T14:54:31Z - Skip Count1 - Skip Date2011-02-11T11:42:14Z - Persistent ID6510A9A822729E6B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/09%20Brainkicker%20Presents%20Atmozfears%20-%20Inflicing%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4049 - - Track ID4049 - Name10 Headhunterz - Left Some Answerz - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size2358900 - Total Time147336 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent ID50A513429AEAE4F0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/10%20Headhunterz%20-%20Left%20Some%20Answerz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4051 - - Track ID4051 - Name11 Ivan Carsten - Bumpin Hard (Tuneboy remix) - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size4805748 - Total Time300264 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count2 - Skip Date2012-05-23T13:41:29Z - Persistent IDDD62D322075C510B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/11%20Ivan%20Carsten%20-%20Bumpin%20Hard%20(Tuneboy%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4053 - - Track ID4053 - Name12 Headhunterz - Rock Civilazation - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size3143412 - Total Time196368 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3357909875 - Play Date UTC2010-05-28T20:44:35Z - Skip Count1 - Skip Date2011-06-07T22:00:11Z - Persistent ID0C0F8CDF65F188D3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/12%20Headhunterz%20-%20Rock%20Civilazation.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4055 - - Track ID4055 - Name13 Kingsman & Nego Presents Heatzone - Condimentum - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size3322740 - Total Time207576 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count2 - Play Date3421329892 - Play Date UTC2012-05-31T21:24:52Z - Persistent ID9863399E7A896443 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/13%20Kingsman%20&%20Nego%20Presents%20Heatzone%20-%20Condimentum.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4057 - - Track ID4057 - Name14 The Beholder vs Max Enforcer - The Preacher (Instumental Mix) - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size2486772 - Total Time155328 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2012-07-29T22:35:06Z - Persistent IDE18BA0F2D617FF43 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/14%20The%20Beholder%20vs%20Max%20Enforcer%20-%20The%20Preacher%20(Instumental%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4059 - - Track ID4059 - Name15 Zany - Solar - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size3758196 - Total Time234792 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent IDDD4634C2E48582D0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/15%20Zany%20-%20Solar.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4061 - - Track ID4061 - Name16 The Machine - Green Forest - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size4557684 - Total Time284760 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2012-07-11T22:38:04Z - Persistent ID9D41832F74A803FF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/16%20The%20Machine%20-%20Green%20Forest.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4063 - - Track ID4063 - Name17 W4cko & Cortesis Meet Critus - Lemuria (In-Phase Mix) - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size4907892 - Total Time306648 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2011-05-10T12:48:22Z - Persistent ID9A453094E003D9E4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/17%20W4cko%20&%20Cortesis%20Meet%20Critus%20-%20Lemuria%20(In-Phase%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4065 - - Track ID4065 - Name18 Teequee - And No One Carez - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size4054644 - Total Time253320 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2012-06-26T13:48:55Z - Persistent ID24816D3E9ADD8551 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/18%20Teequee%20-%20And%20No%20One%20Carez.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4067 - - Track ID4067 - Name19 The R3bels - Keep The Rythm - Album ArtistVA - AlbumMonthly Hardstyle Mix 02 March 2009 CD2 - KindMPEG audio file - Size3655668 - Total Time228384 - Track Number1 - Year2009 - Date Modified2010-05-29T19:28:21Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424187883 - Play Date UTC2012-07-03T23:18:03Z - Skip Count3 - Skip Date2012-08-09T22:36:07Z - Persistent IDF979B4424C8AEAA8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd2/19%20The%20R3bels%20-%20Keep%20The%20Rythm.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4069 - - Track ID4069 - Name01 Teequee - Wishes - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size4897524 - Total Time306000 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:15Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2012-04-25T21:17:12Z - Persistent IDDD1C71619629D00F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/01%20Teequee%20-%20Wishes.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4071 - - Track ID4071 - Name02 The Machine - Emergency Call - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size3355380 - Total Time209616 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:21Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent ID909C1D00ADAFC132 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/02%20The%20Machine%20-%20Emergency%20Call.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4073 - - Track ID4073 - Name03 Brian NRG - World Of War - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size4301556 - Total Time268752 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:21Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent ID0FDA9D15BE42BD15 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/03%20Brian%20NRG%20-%20World%20Of%20War.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4075 - - Track ID4075 - Name04 Headhunterz - D-Tuned - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size5081076 - Total Time317472 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:21Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count2 - Skip Date2012-08-16T16:41:18Z - Persistent IDA8BAE29B94C23DC5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/04%20Headhunterz%20-%20D-Tuned.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4077 - - Track ID4077 - Name05 Francesco Zeta - Tragedy - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size4373748 - Total Time273264 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:21Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent ID54447BA0DD4F4EBE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/05%20Francesco%20Zeta%20-%20Tragedy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4079 - - Track ID4079 - Name06 B-Twinz - Showroom - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size3222900 - Total Time201336 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:21Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent ID2574AAD2E72575EB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/06%20B-Twinz%20-%20Showroom.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4081 - - Track ID4081 - Name07 Digital Punk & Profyler - Rock The Party - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size4463220 - Total Time278856 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent IDBF3221D27643F8E0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/07%20Digital%20Punk%20&%20Profyler%20-%20Rock%20The%20Party.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4083 - - Track ID4083 - Name08 Da Tweekaz - Daydre4m - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size3660276 - Total Time228672 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2010-09-10T13:02:57Z - Persistent ID4B141386B9B86B9B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/08%20Da%20Tweekaz%20-%20Daydre4m.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4085 - - Track ID4085 - Name09 Brainkicker - Mash-Hairy - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size5170932 - Total Time323088 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent ID9FF252C5996281A0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/09%20Brainkicker%20-%20Mash-Hairy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4087 - - Track ID4087 - Name10 Headhunterz - The Sacrifice - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size3837300 - Total Time239736 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count2 - Play Date3424190161 - Play Date UTC2012-07-03T23:56:01Z - Persistent ID39F563EC62BC0DC1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/10%20Headhunterz%20-%20The%20Sacrifice.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4089 - - Track ID4089 - Name11 Brainkicker Presents Atmozfears - Supernatural - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size3941748 - Total Time246264 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Persistent IDBAA020505A756EE8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/11%20Brainkicker%20Presents%20Atmozfears%20-%20Supernatural.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4091 - - Track ID4091 - Name12 Headhunterz - End Of My Existence - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size3789300 - Total Time236736 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2011-05-06T20:23:12Z - Persistent ID003C186D3BAA2ED6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/12%20Headhunterz%20-%20End%20Of%20My%20Existence.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4093 - - Track ID4093 - Name13 Bassmodulators vs B-Front - Quarantine - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size4200564 - Total Time262440 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424287135 - Play Date UTC2012-07-05T02:52:15Z - Skip Count1 - Skip Date2012-06-29T13:09:32Z - Persistent ID97663EA0725D4B2E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/13%20Bassmodulators%20vs%20B-Front%20-%20Quarantine.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4095 - - Track ID4095 - Name14 The Machine - Measure - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size3071604 - Total Time191880 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count2 - Skip Date2012-08-16T16:41:55Z - Persistent ID582FC0EE36779489 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/14%20The%20Machine%20-%20Measure.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4097 - - Track ID4097 - Name15 Zany - Razr - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size4293876 - Total Time268272 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424340036 - Play Date UTC2012-07-05T17:33:56Z - Skip Count1 - Skip Date2012-04-23T11:36:05Z - Persistent IDC00E347634D8CB60 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/15%20Zany%20-%20Razr.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4099 - - Track ID4099 - Name16 Psyko Punkz - Uncut - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size4506612 - Total Time281568 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count2 - Skip Date2012-08-01T21:05:54Z - Persistent ID8505B3C019AC10C6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/16%20Psyko%20Punkz%20-%20Uncut.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4101 - - Track ID4101 - Name17 Headhunterz - The Lost Soul - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size3353460 - Total Time209496 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count2 - Skip Date2012-08-09T11:24:28Z - Persistent ID11F507C4BB5A7C8C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/17%20Headhunterz%20-%20The%20Lost%20Soul.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4103 - - Track ID4103 - Name18 Brian NRG - Impressive - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size4553844 - Total Time284520 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Skip Count1 - Skip Date2012-08-14T17:28:12Z - Persistent ID1F17636CEB5619D9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/18%20Brian%20NRG%20-%20Impressive.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4105 - - Track ID4105 - Name19 Teequee - White Stripes - Album ArtistVA - AlbumMonthly Hardstyle Mix 03 March 2009 CD1 - KindMPEG audio file - Size2201460 - Total Time137496 - Track Number1 - Year2009 - Date Modified2010-05-29T19:27:20Z - Date Added2011-10-02T13:51:16Z - Bit Rate128 - Sample Rate48000 - Part Of Gapless Album - Volume Adjustment255 - Play Count1 - Play Date3424284933 - Play Date UTC2012-07-05T02:15:33Z - Skip Count3 - Skip Date2012-07-29T21:56:45Z - Persistent IDEA21ABEFF723D930 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/monthly%20hardstyle%20mix%2003%20march%202009%20cd1/19%20Teequee%20-%20White%20Stripes.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4107 - - Track ID4107 - NameTechnobase.FM We Are One Vol 1 CD 1 - ArtistVA - Album ArtistDJ G4bby - AlbumTechnobase.FM We Are One Volume 1 - GenreDance - KindMPEG audio file - Size113180644 - Total Time4568659 - Track Number1 - Year2010 - Date Modified2010-05-28T23:23:29Z - Date Added2011-10-02T13:51:16Z - Bit Rate198 - Sample Rate44100 - Persistent ID14A88F4EA3AB0274 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/TechnoBase.FM%20-%20We%20aRe%20oNe%20Vol.1%20(2CD)-2010/101-va_-_technobase.fm_we_are_one_vol_1_cd1_(mixed_by_dj_g4bby).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4109 - - Track ID4109 - NameTechnobase.FM We Are One Vol 1 CD 2 - ArtistVA - Album ArtistDJ Lanai - AlbumTechnobase.FM We Are One Volume 1 - GenreDance - KindMPEG audio file - Size107527937 - Total Time4306050 - Track Number2 - Year2010 - Date Modified2010-05-28T23:23:44Z - Date Added2011-10-02T13:51:16Z - Bit Rate199 - Sample Rate44100 - Persistent ID28219D77E11632BC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/TechnoBase.FM%20-%20We%20aRe%20oNe%20Vol.1%20(2CD)-2010/201-va_-_technobase.fm_we_are_one_vol_1_cd2_(mixed_by_dj_lanai).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4111 - - Track ID4111 - NameFt Chino XL Xzibit - The Wake Up Show - ArtistTha Mexakinz - AlbumRealism VLS - GenreHip-Hop - KindMPEG audio file - Size4435117 - Total Time200933 - Track Number2 - Year1998 - Date Modified2010-05-29T19:06:52Z - Date Added2011-10-02T13:51:16Z - Bit Rate176 - Sample Rate44100 - Play Count5 - Play Date3426425885 - Play Date UTC2012-07-29T20:58:05Z - Persistent ID720EED2840DFB622 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/tha%20mexakinz%20-%20realism%20(vls)%20-%201998/02-tha_mexakinz-ft_chino_xl_xzibit-the_wake_up_show-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4113 - - Track ID4113 - NameBass Modulators - Sequel Anthem (HQ) - GenreBlues - KindMPEG audio file - Size5721984 - Total Time238368 - Track Number1 - Year2009 - Date Modified2010-05-28T23:31:49Z - Date Added2011-10-02T13:51:16Z - Bit Rate192 - Sample Rate48000 - Commentswww.dvdvideosoft.com - Play Count1 - Play Date3358013730 - Play Date UTC2010-05-30T01:35:30Z - Persistent ID02FCFEA2DFB88E80 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Bass%20Modulators%20-%20Sequel%20Anthem.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4115 - - Track ID4115 - NameWhite Mouse - ArtistAudible - Album ArtistAudible - ComposerOla Pettersson - AlbumWhite Mouse / Carbine - Single - GenreDance - KindMPEG audio file - Size13031804 - Total Time399438 - Disc Number1 - Disc Count1 - Track Number1 - Year2009 - Date Modified2010-03-13T15:31:22Z - Date Added2011-10-02T13:51:16Z - Bit Rate256 - Sample Rate44100 - Play Count2 - Play Date3426429833 - Play Date UTC2012-07-29T22:03:53Z - Artwork Count1 - Persistent ID6430B8AF490DB96A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Audible%20-%20White%20Mouse.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4117 - - Track ID4117 - NameMuzic Or Noize - ArtistWildstylez - AlbumMuzic Or Noize__The Moon Vinyl - GenreTechno - KindMPEG audio file - Size9022095 - Total Time361064 - Track Number1 - Year2009 - Date Modified2010-05-26T18:11:59Z - Date Added2011-10-02T13:51:17Z - Bit Rate199 - Sample Rate44100 - CommentsJust Quality - Play Count1 - Play Date3358014091 - Play Date UTC2010-05-30T01:41:31Z - Persistent IDEA18A236D9D9C86C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/01-wildstylez_-_muzic_or_noize.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4119 - - Track ID4119 - NameSomething Good (Warren Clarke Remix) - ArtistUtah Saints - AlbumSomething Good (Warren Clarke Remix) - GenreElectronic - KindMPEG audio file - Size8654333 - Total Time372767 - Track Number1 - Date Modified2010-05-29T19:09:32Z - Date Added2011-10-02T13:51:17Z - Bit Rate185 - Sample Rate44100 - Play Count1 - Play Date3424341721 - Play Date UTC2012-07-05T18:02:01Z - Skip Count1 - Skip Date2012-04-24T21:26:33Z - Persistent IDCF7D8186A196A334 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/01-utah_saints-something_good_(warren_clarke_remix)-gti.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4121 - - Track ID4121 - NameNothing But You (Club Mix) - ArtistPaul Van Dyke - GenreTrance - KindMPEG audio file - Size8387052 - Total Time506174 - Year2008 - Date Modified2009-11-05T03:28:03Z - Date Added2011-10-02T13:51:17Z - Bit Rate128 - Sample Rate44100 - Artwork Count1 - Persistent IDDA97470F6C415060 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Paul%20Van%20Dyke%20-%20Nothing%20But%20You%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4123 - - Track ID4123 - NameTime To Burn - ArtistStorm - AlbumMixmania Vol. 11 - GenreDance - KindMPEG audio file - Size5930436 - Total Time206053 - Track Number24 - Year2000 - Date Modified2010-03-01T01:23:15Z - Date Added2011-10-02T13:51:17Z - Bit Rate192 - Sample Rate44100 - Artwork Count2 - Persistent ID3CE77B9E77A19648 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Storm%20-%20Time%20To%20Burn/24%20Storm%20-%20Time%20To%20Burn.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4125 - - Track ID4125 - NameDon't Get Back - ArtistLowriders - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size6768640 - Total Time338364 - Track Number1 - Year2006 - Date Modified2010-05-29T19:25:52Z - Date Added2011-10-02T13:51:17Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-06-11T21:35:09Z - Persistent ID471A8EB97F50E935 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/01%20-%20lowriders%20-%20don't%20get%20back.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4127 - - Track ID4127 - NameGrindin - ArtistThe Pitcher - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size5218304 - Total Time260858 - Track Number2 - Year2006 - Date Modified2010-05-29T19:25:52Z - Date Added2011-10-02T13:51:17Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424204341 - Play Date UTC2012-07-04T03:52:21Z - Skip Count1 - Skip Date2011-05-04T12:39:21Z - Sort ArtistPitcher - Persistent ID3DA5390F41F17FB9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/02%20-%20the%20pitcher%20-%20grindin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4129 - - Track ID4129 - NameSpunk - ArtistDJ Zany - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size5455872 - Total Time272744 - Track Number3 - Year2006 - Date Modified2010-05-29T19:25:52Z - Date Added2011-10-02T13:51:17Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2011-05-13T21:52:45Z - Persistent IDC2BA8AEB37637AEF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/03%20-%20dj%20zany%20-%20spunk.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4131 - - Track ID4131 - NameCut The Break - ArtistDJ Luna - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size3727360 - Total Time186331 - Track Number4 - Year2006 - Date Modified2010-05-29T19:25:52Z - Date Added2011-10-02T13:51:17Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2010-11-13T12:16:51Z - Persistent IDEAC116B19980C95B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/04%20-%20dj%20luna%20-%20cut%20the%20break.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4133 - - Track ID4133 - NameInfinity - ArtistKGB'S - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size6201344 - Total Time310047 - Track Number5 - Year2006 - Date Modified2010-05-29T19:25:53Z - Date Added2011-10-02T13:51:17Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2011-05-21T22:21:50Z - Persistent IDC22D47295098BA07 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/05%20-%20kgb's%20-%20infinity.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4135 - - Track ID4135 - NameBring It Down - ArtistMax Enforcer - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size5085184 - Total Time254171 - Track Number6 - Year2006 - Date Modified2010-05-29T19:25:53Z - Date Added2011-10-02T13:51:17Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Skip Count3 - Skip Date2012-06-14T20:22:48Z - Persistent IDA0BE409A06485615 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/06%20-%20max%20enforcer%20-%20bring%20it%20down.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4137 - - Track ID4137 - NameSilver Bullet - ArtistDonkeyrollers - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size5785600 - Total Time289227 - Track Number7 - Year2006 - Date Modified2010-05-29T19:25:53Z - Date Added2011-10-02T13:51:17Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424252991 - Play Date UTC2012-07-04T17:23:11Z - Skip Count3 - Skip Date2012-08-10T20:28:47Z - Persistent ID9E03CDD2B7AFAAC8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/07%20-%20donkeyrollers%20-%20silver%20bullet.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4139 - - Track ID4139 - NameOctavius Augustus - ArtistJack Overdose - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size5388288 - Total Time269348 - Track Number8 - Year2006 - Date Modified2010-05-29T19:25:53Z - Date Added2011-10-02T13:51:17Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-07-30T13:25:42Z - Persistent ID7A9ABED65348456B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/08%20-%20jack%20overdose%20-%20octavius%20augustus.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4141 - - Track ID4141 - NameMind Lay #3 - ArtistAutomatic DJ's - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size6238232 - Total Time311379 - Track Number9 - Year2006 - Date Modified2010-05-29T19:25:53Z - Date Added2011-10-02T13:51:17Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2011-05-08T12:18:57Z - Persistent IDB6BC798B25AFB18B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/09%20-%20automatic%20dj's%20-%20mind%20lay%20%233.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4143 - - Track ID4143 - NameFront 2 Back - ArtistZany & Tatanka - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size5429248 - Total Time271412 - Track Number10 - Year2006 - Date Modified2010-05-29T19:25:53Z - Date Added2011-10-02T13:51:18Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-07-27T12:55:13Z - Persistent IDDDC78B39C8410053 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/10%20-%20dj%20zany%20&%20tatanka%20-%20front%202%20back.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4145 - - Track ID4145 - NameThe Colour Of The Harder Styles - ArtistShowtek - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size3850240 - Total Time192444 - Track Number11 - Year2006 - Date Modified2010-05-29T19:25:53Z - Date Added2011-10-02T13:51:18Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3424209085 - Play Date UTC2012-07-04T05:11:25Z - Sort NameColour Of The Harder Styles - Persistent ID38EB41D88ECD4470 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/11%20-%20showtek%20-%20the%20colour%20of%20the%20harder%20styles.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4147 - - Track ID4147 - NameMidnight - ArtistThe Beholder Meets Zany - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size5750784 - Total Time287477 - Track Number12 - Year2006 - Date Modified2010-05-29T19:25:54Z - Date Added2011-10-02T13:51:18Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3424233837 - Play Date UTC2012-07-04T12:03:57Z - Sort ArtistBeholder Meets Zany - Persistent IDE29BFC6CB8AA95F4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/12%20-%20the%20beholder%20meets%20zany%20-%20midnight.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4149 - - Track ID4149 - NameWicked Generation (Zany’s Overdrive mix) - ArtistSouthstylers - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size4610048 - Total Time230400 - Track Number13 - Year2006 - Date Modified2010-05-29T19:25:54Z - Date Added2011-10-02T13:51:18Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3358012690 - Play Date UTC2010-05-30T01:18:10Z - Skip Count1 - Skip Date2012-05-16T22:37:40Z - Persistent IDD8AB9900F027E30C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/13%20-%20southstylers%20-%20wicked%20generation%20(zany's%20overdrive%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4151 - - Track ID4151 - NameThe Anthem - ArtistOverload - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size4077568 - Total Time203781 - Track Number14 - Year2006 - Date Modified2010-05-29T19:25:54Z - Date Added2011-10-02T13:51:18Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3358012893 - Play Date UTC2010-05-30T01:21:33Z - Skip Count1 - Skip Date2011-02-04T22:04:29Z - Sort NameAnthem - Persistent ID7D40972219C9A7FE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/14%20-%20overload%20-%20the%20anthem.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4153 - - Track ID4153 - NameTanz Elektric - ArtistZatox - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size6156288 - Total Time307722 - Track Number15 - Year2006 - Date Modified2010-05-29T19:25:54Z - Date Added2011-10-02T13:51:18Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3358013201 - Play Date UTC2010-05-30T01:26:41Z - Persistent IDAB1A734BBE04DA02 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/15%20-%20zatox%20-%20tanz%20elektric.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4155 - - Track ID4155 - NameFloor Massacre - ArtistTatanka - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size5478400 - Total Time273867 - Track Number16 - Year2006 - Date Modified2010-05-29T19:25:54Z - Date Added2011-10-02T13:51:18Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3425280035 - Play Date UTC2012-07-16T14:40:35Z - Skip Count1 - Skip Date2012-07-26T13:35:48Z - Persistent IDA5237C8F29950D04 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/16%20-%20tatanka%20-%20floor%20massacre.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4157 - - Track ID4157 - NameCocaine Bizznizz - ArtistThe Prophet - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size4800512 - Total Time239908 - Track Number17 - Year2006 - Date Modified2010-05-29T19:25:54Z - Date Added2011-10-02T13:51:18Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424339394 - Play Date UTC2012-07-05T17:23:14Z - Sort ArtistProphet - Persistent ID9606ABEFE862114E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/17%20-%20the%20prophet%20-%20cocaine%20bizznizz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4159 - - Track ID4159 - NameTechnological Terror - ArtistDJ Duro - Album ArtistVA - AlbumDefqon 2006 - GenreHardstyle - KindMPEG audio file - Size4050944 - Total Time202475 - Track Number18 - Year2006 - Date Modified2010-05-29T19:25:54Z - Date Added2011-10-02T13:51:18Z - Bit Rate160 - Sample Rate44100 - Part Of Gapless Album - Skip Count3 - Skip Date2012-06-08T21:54:03Z - Persistent ID31D2B4BA8BF6BD73 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/defqon%202006/18%20-%20dj%20duro%20-%20technological%20terror.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4161 - - Track ID4161 - NameReinvented - ArtistKrusaders - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4365970 - Total Time272352 - Track Number1 - Year2010 - Date Modified2010-05-29T19:19:09Z - Date Added2011-10-02T13:51:18Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent ID03FAF9DDAC14C2BD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/01.%20Krusaders%20-%20Reinvented.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4163 - - Track ID4163 - NameIdentify - ArtistSecond Identity - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3967318 - Total Time248006 - Track Number2 - Year2010 - Date Modified2010-05-29T19:19:09Z - Date Added2011-10-02T13:51:18Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent ID8B4BEA2DAFDC8940 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/02.%20Second%20Identity%20-%20Identify.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4165 - - Track ID4165 - NameKarma - ArtistThe Pitcher - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size2530336 - Total Time157988 - Track Number3 - Year2010 - Date Modified2010-05-29T19:19:09Z - Date Added2011-10-02T13:51:18Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Sort ArtistPitcher - Persistent IDA33DA7573942D00F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/03.%20The%20Pitcher%20-%20Karma.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4167 - - Track ID4167 - NameA Feeling (Tuneboy Remix) - ArtistThe Raiders - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4047382 - Total Time253022 - Track Number4 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:19Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Sort ArtistRaiders - Sort NameFeeling (Tuneboy Remix) - Persistent ID0664B3390F6D7645 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/04.%20The%20Raiders%20-%20A%20Feeling%20(Tuneboy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4169 - - Track ID4169 - NameI Survived (Different Edit) - ArtistThe Hose - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4637437 - Total Time289985 - Track Number5 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:19Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Sort ArtistHose - Persistent ID958C82BD449752B5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/05.%20The%20Hose%20-%20I%20Survived%20(Different%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4171 - - Track ID4171 - NameKnock On Wood - ArtistDJ Stephanie - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4079074 - Total Time255007 - Track Number6 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:20Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count4 - Play Date3359193884 - Play Date UTC2010-06-12T17:24:44Z - Persistent IDAA7D8C44454A687D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/06.%20DJ%20Stephanie%20-%20Knock%20On%20Wood.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4173 - - Track ID4173 - NameFood For Woofers (Ivan Carsten Mix) - ArtistDark Oscillators - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3855562 - Total Time241005 - Track Number7 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:20Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count3 - Play Date3359194147 - Play Date UTC2010-06-12T17:29:07Z - Persistent ID28AC1FCE146BA52F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/07.%20Dark%20Oscillators%20-%20Food%20For%20Woofers%20(Ivan%20Carsten%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4175 - - Track ID4175 - NameInfinity (DJ Phil TY Remix) - ArtistThe KGB's - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3504031 - Total Time218984 - Track Number8 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:21Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count3 - Play Date3359195171 - Play Date UTC2010-06-12T17:46:11Z - Sort ArtistKGB's - Persistent IDFF17C1EFDEED3D13 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/08.%20The%20KGB's%20-%20Infinity%20(DJ%20Phil%20TY%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4177 - - Track ID4177 - NameTunebeat - ArtistTuneboy - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3871408 - Total Time241998 - Track Number9 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:21Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3359195413 - Play Date UTC2010-06-12T17:50:13Z - Persistent IDBBF6D9215F49E1DB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/09.%20Tuneboy%20-%20Tunebeat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4179 - - Track ID4179 - NameSutra - ArtistGostosa - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3504448 - Total Time219010 - Track Number10 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:22Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3359195633 - Play Date UTC2010-06-12T17:53:53Z - Persistent IDEA12ACF0D5FC5213 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/10.%20Gostosa%20-%20Sutra.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4181 - - Track ID4181 - NameLike Thiz - ArtistJosh & Wesz - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4637854 - Total Time290011 - Track Number11 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:22Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3359201379 - Play Date UTC2010-06-12T19:29:39Z - Persistent IDAEEF1AE628414BCE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/11.%20Josh%20&%20Wesz%20-%20Like%20Thiz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4183 - - Track ID4183 - NameUnity - Artist2 Best Enemies - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4222522 - Total Time263993 - Track Number12 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:23Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count2 - Play Date3359201643 - Play Date UTC2010-06-12T19:34:03Z - Persistent ID3078FA1019D2D051 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/12.%202%20Best%20Enemies%20-%20Unity.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4185 - - Track ID4185 - NameCity Of Intensity - ArtistBrennan Heart - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4509835 - Total Time281991 - Track Number13 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:24Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358154142 - Play Date UTC2010-05-31T16:35:42Z - Persistent ID1A3E75B9F6BE6926 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/13.%20Brennan%20Heart%20-%20City%20Of%20Intensity.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4187 - - Track ID4187 - NameK.Y.H.U. (Noisecontrollers Remix) - ArtistWildstylez - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3456493 - Total Time215510 - Track Number14 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:25Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358154358 - Play Date UTC2010-05-31T16:39:18Z - Persistent ID1A549C08AEEFB3E6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/14.%20Wildstylez%20-%20K.Y.H.U.%20(Noisecontrollers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4189 - - Track ID4189 - NameTonight - ArtistHeadhunterz & Wildstylez vs Noisecontrollers - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4126612 - Total Time257985 - Track Number15 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:25Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358154616 - Play Date UTC2010-05-31T16:43:36Z - Persistent IDFF2CF5B307AF2AAA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/15.%20Headhunterz%20&%20Wildstylez%20vs%20Noisecontrollers%20-%20Tonight.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4191 - - Track ID4191 - NameThrow Ya Handz - ArtistCoone - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3504448 - Total Time219010 - Track Number16 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:25Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358154835 - Play Date UTC2010-05-31T16:47:15Z - Persistent IDCDC65BF0C6C95C1A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/16.%20Coone%20-%20Throw%20Ya%20Handz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4193 - - Track ID4193 - NameAttack Again - ArtistNoisecontrollers - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4127029 - Total Time258011 - Track Number17 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:25Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358155094 - Play Date UTC2010-05-31T16:51:34Z - Persistent IDC029CA42056E7280 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/17.%20Noisecontrollers%20-%20Attack%20Again.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4195 - - Track ID4195 - NameTogether - ArtistD-Block & S-Te-Fan - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3759652 - Total Time234997 - Track Number18 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:26Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358155329 - Play Date UTC2010-05-31T16:55:29Z - Persistent ID5A94A1A611DB0948 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/18.%20D-Block%20&%20S-Te-Fan%20-%20Together.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4197 - - Track ID4197 - NamePsychedelic - ArtistHeadhunterz - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size5515639 - Total Time344999 - Track Number19 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:26Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358155985 - Play Date UTC2010-05-31T17:06:25Z - Persistent ID2EEFE498316CD22A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/19.%20Headhunterz%20-%20Psychedelic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4199 - - Track ID4199 - NameRecalled to Life - ArtistDutchmaster - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4701238 - Total Time293982 - Track Number20 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:27Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358156279 - Play Date UTC2010-05-31T17:11:19Z - Persistent ID19C4520A5DD66313 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/20.%20Dutchmaster%20-%20Recalled%20to%20Life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4201 - - Track ID4201 - NameJaydee - ArtistNoisecontrollers & Toneshifterz - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3408538 - Total Time213002 - Track Number21 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:27Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358156492 - Play Date UTC2010-05-31T17:14:52Z - Persistent IDDC69257B9B401195 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/21.%20Noisecontrollers%20&%20Toneshifterz%20-%20Jaydee.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4203 - - Track ID4203 - NameGangsta - ArtistTAT & ZAT - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4142875 - Total Time259004 - Track Number22 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:28Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358156694 - Play Date UTC2010-05-31T17:18:14Z - Persistent ID3E67739F590E2B28 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/22.%20TAT%20&%20ZAT%20-%20Gangsta.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4205 - - Track ID4205 - NameHouseheads - ArtistScope DJ - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3376429 - Total Time210991 - Track Number23 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:29Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358156880 - Play Date UTC2010-05-31T17:21:20Z - Persistent ID17459E56A10F1D27 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/23.%20Scope%20DJ%20-%20Househeads.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4207 - - Track ID4207 - NameRaven - ArtistPavo - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3839716 - Total Time240013 - Track Number24 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:29Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358157120 - Play Date UTC2010-05-31T17:25:20Z - Persistent IDB22262B49C2EB973 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/24.%20Pavo%20-%20Raven.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4209 - - Track ID4209 - NameMusic Made Addict - ArtistD-Block & S-Te-Fan - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4302586 - Total Time269008 - Track Number25 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:30Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358157389 - Play Date UTC2010-05-31T17:29:49Z - Persistent IDD61A24900F7FD535 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/25.%20D-Block%20&%20S-Te-Fan%20-%20Music%20Made%20Addict.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4211 - - Track ID4211 - NameMashed Up Volume 1 - ArtistScope DJ - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4733347 - Total Time295314 - Track Number26 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:31Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358157684 - Play Date UTC2010-05-31T17:34:44Z - Persistent ID337C69E8EB413A5B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/26.%20Scope%20DJ%20-%20Mashed%20Up%20Volume%201.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4213 - - Track ID4213 - NameBlame It On The Muzic (D-Block & S-Te-Fan remix) - ArtistHeadhunterz & Wildstylez - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size4541944 - Total Time284003 - Track Number27 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:31Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358157969 - Play Date UTC2010-05-31T17:39:29Z - Persistent IDC6E40C01F9D60340 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/27.%20Headhunterz%20&%20Wildstylez%20-%20Blame%20It%20On%20The%20Muzic%20(D-Block%20&%20S-Te-Fan%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4215 - - Track ID4215 - NameSunblast (J-Force Kick Edit) - ArtistFrontliner - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size2514490 - Total Time156995 - Track Number28 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:31Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358158126 - Play Date UTC2010-05-31T17:42:06Z - Persistent ID8400B0A3FE3505B7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/28.%20Frontliner%20-%20Sunblast%20(J-Force%20Kick%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4217 - - Track ID4217 - NameDa Phunk - ArtistToneshifterz - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size5004814 - Total Time312999 - Track Number29 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:32Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358158439 - Play Date UTC2010-05-31T17:47:19Z - Persistent IDCF00774A47C5BE9C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/29.%20Toneshifterz%20-%20Da%20Phunk.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4219 - - Track ID4219 - NameJosh & Wesz - ArtistAutumn Green - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size5244172 - Total Time327993 - Track Number30 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:32Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358158767 - Play Date UTC2010-05-31T17:52:47Z - Persistent IDFD4B8CF49D444443 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/30.%20Autumn%20Green%20-%20Josh%20&%20Wesz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4221 - - Track ID4221 - NameWeapon (The R3bels & Zatox Mix) - ArtistR3zonance - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size2865604 - Total Time178991 - Track Number31 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:33Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3358158946 - Play Date UTC2010-05-31T17:55:46Z - Persistent ID33891953470A91C6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/31.%20R3zonance%20-%20Weapon%20(The%20R3bels%20&%20Zatox%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4223 - - Track ID4223 - NameAngel of the Sun - ArtistZany - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3999427 - Total Time249443 - Track Number32 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:34Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent IDCA486914BA3F1402 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/32.%20Zany%20-%20Angel%20of%20the%20Sun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4225 - - Track ID4225 - NameDays To Come - ArtistDeepack - Album ArtistJ-Force - AlbumHardstyle Summer Mix 2010 - Genre - KindMPEG audio file - Size3755482 - Total Time234736 - Track Number33 - Year2010 - Date Modified2010-05-29T19:19:10Z - Date Added2011-10-02T13:51:34Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent IDADE2F39BCE5B0657 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/33.%20Deepack%20-%20Days%20To%20Come.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4227 - - Track ID4227 - NameEssential Mix part 1 - ArtistDaft Punk - AlbumBBC Radio 1 - 02 Mar 97 - KindMPEG audio file - Size73184920 - Total Time3659128 - Date Modified2002-08-03T02:41:50Z - Date Added2011-10-02T13:51:34Z - Bit Rate160 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-01T22:12:22Z - Persistent IDA390955CEB1F3DA1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Daft%20Punk/Daft%20Punk%20-%20Live%20@%20Essential%20Mix%201997.02.23%20Part%201.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4229 - - Track ID4229 - NameEssential Mix part 2 - ArtistDaft Punk - AlbumBBC Radio 1 - 02 Mar 97 - KindMPEG audio file - Size67939042 - Total Time3396832 - Date Modified2002-08-03T02:42:28Z - Date Added2011-10-02T13:51:34Z - Bit Rate160 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-28T13:21:54Z - Persistent IDE254570E50B6681D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Daft%20Punk/Daft%20Punk%20-%20Live%20@%20Essential%20Mix%201997.02.23%20Part%202.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4231 - - Track ID4231 - NameLive @ Essential Mix 1997.12.30 Part 1 - ArtistDaft Punk - GenreHouse - KindMPEG audio file - Size85698445 - Total Time3570337 - Date Modified2010-05-29T18:47:28Z - Date Added2011-10-02T13:51:34Z - Bit Rate192 - Sample Rate44100 - Persistent IDB1802A2B3F69A765 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Daft%20Punk/Daft%20Punk%20-%20Live%20@%20Essential%20Mix%201997.12.30%20Part%201.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4233 - - Track ID4233 - NameLive @ Essential Mix 1997.12.30 Part 2 - ArtistDaft Punk - GenreHouse - KindMPEG audio file - Size87917012 - Total Time3668218 - Year1997 - Date Modified2010-05-29T18:48:50Z - Date Added2011-10-02T13:51:34Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3424250640 - Play Date UTC2012-07-04T16:44:00Z - Skip Count2 - Skip Date2012-07-11T13:41:05Z - Persistent IDD0D0285FBC7CF993 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/Daft%20Punk/Daft%20Punk%20-%20Live%20@%20Essential%20Mix%201997.12.30%20Part%202.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4235 - - Track ID4235 - NameIntro Very Hardstyle Vol.2. 2010 Editions - ArtistDJ Mastermind - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size1649855 - Total Time41038 - Track Number1 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424317513 - Play Date UTC2012-07-05T11:18:33Z - Persistent IDE9063D880FF297EF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/01.%20DJ%20Mastermind%20-%20Intro%20Very%20Hardstyle%20Vol.2.%202010%20Editions.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4237 - - Track ID4237 - NameThe Test 2.0 (crypsis remix) - ArtistDJ Thera - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size8617234 - Total Time215222 - Track Number2 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424207381 - Play Date UTC2012-07-04T04:43:01Z - Skip Count1 - Skip Date2011-02-17T21:11:33Z - Sort NameTest 2.0 (crypsis remix) - Persistent IDCAAA670E6B7BEFB6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/02.%20DJ%20Thera%20-%20The%20Test%202.0%20(crypsis%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4239 - - Track ID4239 - NameLellebel - ArtistChain Reaction - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size9127144 - Total Time227970 - Track Number3 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count3 - Skip Date2012-07-03T13:34:30Z - Persistent ID1ABEA9F5C1E1CC5A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/03.%20Chain%20Reaction%20-%20Lellebel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4241 - - Track ID4241 - NameCounterfeit - ArtistThe Prophet - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size5085480 - Total Time126928 - Track Number4 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2011-02-07T11:02:05Z - Sort ArtistProphet - Persistent ID1BB13A619F67756F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/04.%20The%20Prophet%20-%20Counterfeit.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4243 - - Track ID4243 - NameNightmare - ArtistTitan - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size5893185 - Total Time147121 - Track Number5 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424252118 - Play Date UTC2012-07-04T17:08:38Z - Skip Count1 - Skip Date2012-08-17T19:46:29Z - Persistent IDEDBAAE21EA39092B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/05.%20Titan%20-%20Nightmare.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4245 - - Track ID4245 - NameKnock On Wood - ArtistDJ Stephanie - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size6508630 - Total Time162507 - Track Number6 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-07-29T22:11:19Z - Persistent ID5A1DEB9187E53A75 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/06.%20DJ%20Stephanie%20-%20Knock%20On%20Wood.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4247 - - Track ID4247 - NameBazooka Girl - ArtistIvan Carsten - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size7683096 - Total Time191869 - Track Number7 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count3 - Play Date3426224079 - Play Date UTC2012-07-27T12:54:39Z - Skip Count1 - Skip Date2012-04-24T13:12:47Z - Persistent IDB84C5CDB36DAA884 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/07.%20Ivan%20Carsten%20-%20Bazooka%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4249 - - Track ID4249 - NameDritton - ArtistDJ Stephanie - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size6486687 - Total Time161959 - Track Number8 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent ID5CA312D11ACB666B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/08.%20DJ%20Stephanie%20-%20Dritton.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4251 - - Track ID4251 - NameAngel of the Sun - ArtistZany - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size7842965 - Total Time195866 - Track Number9 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424317078 - Play Date UTC2012-07-05T11:11:18Z - Skip Count2 - Skip Date2012-05-23T13:38:08Z - Persistent IDB41C5ED6ADD2B495 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/09.%20Zany%20-%20Angel%20of%20the%20Sun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4253 - - Track ID4253 - NameReputation Game - ArtistBrennan Heart & Wildstylez - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size6525348 - Total Time162925 - Track Number10 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2011-05-08T12:19:09Z - Persistent ID1098793664A178D0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/10.%20Brennan%20Heart%20&%20Wildstylez%20-%20Reputation%20Game.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4255 - - Track ID4255 - NameOut with A Bang - ArtistChain Reaction - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size10413414 - Total Time260127 - Track Number11 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-05-18T13:29:39Z - Persistent ID707514071D271DC8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/11.%20Chain%20Reaction%20-%20Out%20with%20A%20Bang.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4257 - - Track ID4257 - NamePurify Your Senses - ArtistZany - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size8841888 - Total Time220839 - Track Number12 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent ID5C23E5989BA89335 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/12.%20Zany%20-%20Purify%20Your%20Senses.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4259 - - Track ID4259 - NameCold Rockking (gostosa remix) - ArtistThe Prophet Feat. Wildstylez - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size5126230 - Total Time127947 - Track Number13 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3379594045 - Play Date UTC2011-02-03T20:07:25Z - Skip Count1 - Skip Date2011-06-07T22:04:46Z - Sort ArtistProphet Feat. Wildstylez - Persistent ID689BC65C05D5E4BF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/13.%20The%20Prophet%20Feat.%20Wildstylez%20-%20Cold%20Rockking%20(gostosa%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4261 - - Track ID4261 - NameSutra - ArtistGostosa - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size8623504 - Total Time215379 - Track Number14 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-08-09T22:25:20Z - Persistent IDCF66A2381A8B66BA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/14.%20Gostosa%20-%20Sutra.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4263 - - Track ID4263 - NameAll About Music - ArtistBioweapon - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size8847111 - Total Time220969 - Track Number15 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count3 - Skip Date2012-07-31T12:39:51Z - Persistent ID2DE6C2905BA1FED5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/15.%20Bioweapon%20-%20All%20About%20Music.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4265 - - Track ID4265 - NameAudiobot - ArtistThe Machine - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size7358133 - Total Time183745 - Track Number16 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2011-05-31T21:40:04Z - Sort ArtistMachine - Persistent ID22F6FE64D9D30122 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/16.%20The%20Machine%20-%20Audiobot.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4267 - - Track ID4267 - NameStrength & Fury - ArtistTitan - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size8075977 - Total Time201691 - Track Number17 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424208425 - Play Date UTC2012-07-04T05:00:25Z - Skip Count2 - Skip Date2012-06-01T22:12:10Z - Persistent ID92280D4A7D10DD31 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/17.%20Titan%20-%20Strength%20&%20Fury.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4269 - - Track ID4269 - NameI've Lost You - ArtistJosh and Wesz Vs Low-E - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size5681071 - Total Time141818 - Track Number18 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2010-09-14T21:43:57Z - Persistent IDFD954EA83F72572F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/18.%20Josh%20and%20Wesz%20Vs%20Low-E%20-%20I've%20Lost%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4271 - - Track ID4271 - NameMistress of Darkness - ArtistThe Machine - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size6399961 - Total Time159791 - Track Number19 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Sort ArtistMachine - Persistent IDA0D1DB82F6350998 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/19.%20The%20Machine%20-%20Mistress%20of%20Darkness.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4273 - - Track ID4273 - NameLet Yourself Go - ArtistThe R3bels - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size10455209 - Total Time261172 - Track Number20 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Sort ArtistR3bels - Persistent ID0B1ACF432220CBF8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/20.%20The%20R3bels%20-%20Let%20Yourself%20Go.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4275 - - Track ID4275 - NameWan Taim - ArtistJDX - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size8789643 - Total Time219533 - Track Number21 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent IDAB62EA16EDAB6997 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/21.%20JDX%20-%20Wan%20Taim.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4277 - - Track ID4277 - NameParanoid - ArtistNoisecontrollers & Zany - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size10576418 - Total Time264202 - Track Number22 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-08-17T12:52:45Z - Persistent ID24616F22FEB13073 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/22.%20Noisecontrollers%20&%20Zany%20-%20Paranoid.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4279 - - Track ID4279 - NameThe Great Zany Show - ArtistZany - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size9401953 - Total Time234840 - Track Number23 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424252352 - Play Date UTC2012-07-04T17:12:32Z - Skip Count3 - Skip Date2012-07-16T14:03:45Z - Sort NameGreat Zany Show - Persistent ID151A1C00E5ABCE52 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/23.%20Zany%20-%20The%20Great%20Zany%20Show.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4281 - - Track ID4281 - NameWe Live For The Music (noisecontrollers remix) - ArtistShowtek - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size9916042 - Total Time247693 - Track Number24 - Year2010 - Date Modified2010-05-29T19:39:38Z - Date Added2011-10-02T13:51:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3425281087 - Play Date UTC2012-07-16T14:58:07Z - Skip Count1 - Skip Date2012-07-26T13:36:42Z - Persistent IDC9D707D8B21E1847 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/24.%20Showtek%20-%20We%20Live%20For%20The%20Music%20(noisecontrollers%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4283 - - Track ID4283 - NameOutro Very Hardstyle Vol.2. 2010 Editions - ArtistDJ Mastermind - Album ArtistDJ Mastermind - AlbumVery Hardstyle Vol. 2 - 2010 Editions - Genre - KindMPEG audio file - Size911112 - Total Time22569 - Track Number25 - Year2010 - Date Modified2010-05-29T19:39:39Z - Date Added2011-10-02T13:51:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3421329159 - Play Date UTC2012-05-31T21:12:39Z - Persistent IDCE355F42E820A1A6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/DJ%20Mastermind%20presents%20-%20Very%20Hardstyle%20Vol.%202%20-%202010%20Editions/25.%20DJ%20Mastermind%20-%20Outro%20Very%20Hardstyle%20Vol.2.%202010%20Editions.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4285 - - Track ID4285 - NameCtrl.Alt.Delete (In Control Anthem 2009) - ArtistNoisecontrollers - AlbumHardstyle Attack 2009 - GenreTechno - KindMPEG audio file - Size8737002 - Total Time361377 - Track Number1 - Year2009 - Date Modified2010-03-04T06:33:21Z - Date Added2011-10-02T13:51:47Z - Bit Rate193 - Sample Rate44100 - CommentsJust Quality - Skip Count1 - Skip Date2011-01-01T17:02:29Z - Persistent ID6408F2FEDABAE3F0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Attack%20(2%20CD)%20(2009)/101-noisecontrollers_-_ctrl.alt.delete_(in_control_anthem_2009).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4287 - - Track ID4287 - NameScrap Attack (Defqon.1 2009 Anthem) - ArtistHeadhunterz - AlbumHardstyle Attack 2009 - GenreTechno - KindMPEG audio file - Size9218816 - Total Time360986 - Track Number8 - Year2009 - Date Modified2010-03-04T06:34:03Z - Date Added2011-10-02T13:51:48Z - Bit Rate204 - Sample Rate44100 - CommentsJust Quality - Play Count1 - Play Date3358014515 - Play Date UTC2010-05-30T01:48:35Z - Skip Count3 - Skip Date2012-07-30T13:21:44Z - Persistent IDBDD4ABEB99D803D1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Attack%20(2%20CD)%20(2009)/108-headhunterz_-_scrap_attack_(defqon.1_2009_anthem).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4289 - - Track ID4289 - NameReinvented - ArtistKrusaders - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4371718 - Total Time273084 - Track Number1 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count2 - Play Date3414419639 - Play Date UTC2012-03-12T21:53:59Z - Skip Count1 - Skip Date2012-05-18T23:08:51Z - Persistent IDB5C9308250802C2B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/01.%20Krusaders%20-%20Reinvented.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4291 - - Track ID4291 - NameIdentify - ArtistSecond Identity - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3971735 - Total Time248084 - Track Number2 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count1 - Play Date3414419886 - Play Date UTC2012-03-12T21:58:06Z - Skip Count1 - Skip Date2012-04-19T22:42:30Z - Persistent ID203D042DAC3FF443 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/02.%20Second%20Identity%20-%20Identify.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4293 - - Track ID4293 - NameKarma - ArtistThe Pitcher - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size2531441 - Total Time158066 - Track Number3 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count1 - Play Date3414420044 - Play Date UTC2012-03-12T22:00:44Z - Skip Count1 - Skip Date2011-06-17T12:34:11Z - Sort ArtistPitcher - Persistent ID579600EB0BD00A01 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/03.%20The%20Pitcher%20-%20Karma.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4295 - - Track ID4295 - NameA Feeling (Tuneboy Remix) - ArtistThe Raiders - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4051578 - Total Time253074 - Track Number4 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count1 - Play Date3414420297 - Play Date UTC2012-03-12T22:04:57Z - Skip Count1 - Skip Date2012-08-10T11:33:28Z - Sort ArtistRaiders - Sort NameFeeling (Tuneboy Remix) - Persistent ID6073425BB493A8F8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/04.%20The%20Raiders%20-%20A%20Feeling%20(Tuneboy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4297 - - Track ID4297 - NameI Survived (Different Edit) - ArtistThe Hose - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4643825 - Total Time290089 - Track Number5 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count2 - Play Date3426598489 - Play Date UTC2012-07-31T20:54:49Z - Skip Count1 - Skip Date2012-05-23T18:33:31Z - Sort ArtistHose - Persistent ID6C21394DD32FD663 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/05.%20The%20Hose%20-%20I%20Survived%20(Different%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4299 - - Track ID4299 - NameKnock On Wood - ArtistDJ Stephanie - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4083750 - Total Time255085 - Track Number6 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count12 - Play Date3426656006 - Play Date UTC2012-08-01T12:53:26Z - Persistent ID079692E122513921 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/06.%20DJ%20Stephanie%20-%20Knock%20On%20Wood.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4301 - - Track ID4301 - NameFood For Woofers (Ivan Carsten Mix) - ArtistDark Oscillators - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3859750 - Total Time241084 - Track Number7 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count11 - Play Date3427428717 - Play Date UTC2012-08-10T11:31:57Z - Persistent IDC0FCFC8D91C0E4E4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/07.%20Dark%20Oscillators%20-%20Food%20For%20Woofers%20(Ivan%20Carsten%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4303 - - Track ID4303 - NameInfinity (DJ Phil TY Remix) - ArtistThe KGB's - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3507813 - Total Time219088 - Track Number8 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count5 - Play Date3414421302 - Play Date UTC2012-03-12T22:21:42Z - Skip Count2 - Skip Date2012-06-12T13:32:13Z - Sort ArtistKGB's - Persistent ID169E1096CD6BF0D5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/08.%20The%20KGB's%20-%20Infinity%20(DJ%20Phil%20TY%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4305 - - Track ID4305 - NameTunebeat - ArtistTuneboy - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3875596 - Total Time242076 - Track Number9 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count6 - Play Date3414421544 - Play Date UTC2012-03-12T22:25:44Z - Skip Count2 - Skip Date2012-06-12T17:04:08Z - Persistent IDECF2A722BBA9C0A4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/09.%20Tuneboy%20-%20Tunebeat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4307 - - Track ID4307 - NameSutra - ArtistGostosa - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3507790 - Total Time219088 - Track Number10 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count3 - Play Date3414421762 - Play Date UTC2012-03-12T22:29:22Z - Skip Count4 - Skip Date2012-08-17T20:45:30Z - Persistent ID1B4E0366A5AF3299 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/10.%20Gostosa%20-%20Sutra.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4309 - - Track ID4309 - NameLike Thiz - ArtistJosh & Wesz - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4643811 - Total Time290089 - Track Number11 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:54Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count5 - Play Date3418275200 - Play Date UTC2012-04-26T12:53:20Z - Skip Count1 - Skip Date2011-03-22T23:44:46Z - Persistent IDC018BF4A4E561465 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/11.%20Josh%20&%20Wesz%20-%20Like%20Thiz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4311 - - Track ID4311 - NameUnity - Artist2 Best Enemies - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4227523 - Total Time264071 - Track Number12 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count4 - Play Date3424250904 - Play Date UTC2012-07-04T16:48:24Z - Skip Count2 - Skip Date2012-06-08T22:22:06Z - Persistent ID62F59F71A2F5B7DB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/12.%202%20Best%20Enemies%20-%20Unity.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4313 - - Track ID4313 - NameCity Of Intensity - ArtistBrennan Heart - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4515508 - Total Time282070 - Track Number13 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count7 - Play Date3424311511 - Play Date UTC2012-07-05T09:38:31Z - Skip Count1 - Skip Date2012-08-14T17:27:43Z - Persistent IDDC91CA35688BF0B4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/13.%20Brennan%20Heart%20-%20City%20Of%20Intensity.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4315 - - Track ID4315 - NameK.Y.H.U. (Noisecontrollers Remix) - ArtistWildstylez - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3459756 - Total Time216084 - Track Number14 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count3 - Play Date3424317472 - Play Date UTC2012-07-05T11:17:52Z - Skip Count2 - Skip Date2012-05-14T13:39:17Z - Persistent ID262626C94A810C5C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/14.%20Wildstylez%20-%20K.Y.H.U.%20(Noisecontrollers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4317 - - Track ID4317 - NameTonight - ArtistHeadhunterz & Wildstylez vs Noisecontrollers - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4131842 - Total Time258089 - Track Number15 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:48Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count3 - Play Date3414422920 - Play Date UTC2012-03-12T22:48:40Z - Skip Count2 - Skip Date2012-08-01T12:57:26Z - Persistent IDB1CCFBBA7FB050A9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/15.%20Headhunterz%20&%20Wildstylez%20vs%20Noisecontrollers%20-%20Tonight.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4319 - - Track ID4319 - NameThrow Ya Handz - ArtistCoone - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3507797 - Total Time219088 - Track Number16 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count3 - Play Date3427003190 - Play Date UTC2012-08-05T13:19:50Z - Persistent ID277E125C159545DD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/16.%20Coone%20-%20Throw%20Ya%20Handz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4321 - - Track ID4321 - NameAttack Again - ArtistNoisecontrollers - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4131819 - Total Time258089 - Track Number17 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count3 - Play Date3424316882 - Play Date UTC2012-07-05T11:08:02Z - Persistent ID970C380ED49EEC74 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/17.%20Noisecontrollers%20-%20Attack%20Again.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4323 - - Track ID4323 - NameTogether - ArtistD-Block & S-Te-Fan - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3763595 - Total Time235075 - Track Number18 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count2 - Play Date3414423632 - Play Date UTC2012-03-12T23:00:32Z - Persistent ID264F364F48B0E0FA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/18.%20D-Block%20&%20S-Te-Fan%20-%20Together.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4325 - - Track ID4325 - NamePsychedelic - ArtistHeadhunterz - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size5523617 - Total Time345077 - Track Number19 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count2 - Play Date3414423976 - Play Date UTC2012-03-12T23:06:16Z - Skip Count2 - Skip Date2012-08-17T12:56:53Z - Persistent IDA9954C1447A9AEF1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/19.%20Headhunterz%20-%20Psychedelic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4327 - - Track ID4327 - NameRecalled to Life - ArtistDutchmaster - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4707766 - Total Time294086 - Track Number20 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count4 - Play Date3418187974 - Play Date UTC2012-04-25T12:39:34Z - Persistent IDFC68300694ADC3CD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/20.%20Dutchmaster%20-%20Recalled%20to%20Life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4329 - - Track ID4329 - NameJaydee - ArtistNoisecontrollers & Toneshifterz - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3411685 - Total Time213080 - Track Number21 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count1 - Play Date3414584610 - Play Date UTC2012-03-14T19:43:30Z - Skip Count2 - Skip Date2012-06-01T22:56:45Z - Persistent ID8C1919B07D7C0A5D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/21.%20Noisecontrollers%20&%20Toneshifterz%20-%20Jaydee.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4331 - - Track ID4331 - NameGangsta - ArtistTAT & ZAT - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4147690 - Total Time259082 - Track Number22 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count1 - Play Date3424266641 - Play Date UTC2012-07-04T21:10:41Z - Skip Count1 - Skip Date2011-05-26T21:41:41Z - Persistent ID986927BCEA90FB65 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/22.%20TAT%20&%20ZAT%20-%20Gangsta.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4333 - - Track ID4333 - NameHouseheads - ArtistScope DJ - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3379483 - Total Time211069 - Track Number23 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Skip Count1 - Skip Date2011-06-21T20:28:27Z - Persistent IDC3B7952E7447E29E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/23.%20Scope%20DJ%20-%20Househeads.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4335 - - Track ID4335 - NameRaven - ArtistPavo - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3843408 - Total Time240065 - Track Number24 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count2 - Play Date3414584902 - Play Date UTC2012-03-14T19:48:22Z - Persistent ID582E0B239704D684 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/24.%20Pavo%20-%20Raven.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4337 - - Track ID4337 - NameMusic Made Addict - ArtistD-Block & S-Te-Fan - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4307787 - Total Time269087 - Track Number25 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count3 - Play Date3424303868 - Play Date UTC2012-07-05T07:31:08Z - Persistent ID4F5D7A69F8AB10AC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/25.%20D-Block%20&%20S-Te-Fan%20-%20Music%20Made%20Addict.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4339 - - Track ID4339 - NameMashed Up Volume 1 - ArtistScope DJ - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4739530 - Total Time296071 - Track Number26 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count1 - Play Date3414585467 - Play Date UTC2012-03-14T19:57:47Z - Persistent IDB5052A0B078C1C87 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/26.%20Scope%20DJ%20-%20Mashed%20Up%20Volume%201.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4341 - - Track ID4341 - NameBlame It On The Muzic (D-Block & S-Te-Fan remix) - ArtistHeadhunterz & Wildstylez - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4547733 - Total Time284081 - Track Number27 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count1 - Play Date3414585750 - Play Date UTC2012-03-14T20:02:30Z - Skip Count1 - Skip Date2011-05-28T01:40:46Z - Persistent ID6F5BA84183D7EC1D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/27.%20Headhunterz%20&%20Wildstylez%20-%20Blame%20It%20On%20The%20Muzic%20(D-Block%20&%20S-Te-Fan%20remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4343 - - Track ID4343 - NameSunblast (J-Force Kick Edit) - ArtistFrontliner - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size2515581 - Total Time157074 - Track Number28 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count2 - Play Date3414585907 - Play Date UTC2012-03-14T20:05:07Z - Skip Count1 - Skip Date2012-06-29T22:30:28Z - Persistent ID437747231C301A89 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/28.%20Frontliner%20-%20Sunblast%20(J-Force%20Kick%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4345 - - Track ID4345 - NameDa Phunk - ArtistToneshifterz - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size5011615 - Total Time313077 - Track Number29 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Skip Count1 - Skip Date2012-03-14T20:05:23Z - Persistent IDCDFBF3E4B298EA86 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/29.%20Toneshifterz%20-%20Da%20Phunk.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4347 - - Track ID4347 - NameJosh & Wesz - ArtistAutumn Green - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size5251527 - Total Time328071 - Track Number30 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:49Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count1 - Play Date3414586251 - Play Date UTC2012-03-14T20:10:51Z - Skip Count1 - Skip Date2012-07-31T12:55:54Z - Persistent ID48ED6C8887651E25 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/30.%20Autumn%20Green%20-%20Josh%20&%20Wesz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4349 - - Track ID4349 - NameWeapon (The R3bels & Zatox Mix) - ArtistR3zonance - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size2867505 - Total Time179069 - Track Number31 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:50Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count1 - Play Date3414586430 - Play Date UTC2012-03-14T20:13:50Z - Persistent ID405F3CF4C9B2DFB1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/31.%20R3zonance%20-%20Weapon%20(The%20R3bels%20&%20Zatox%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4351 - - Track ID4351 - NameAngel of the Sun - ArtistZany - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size4003498 - Total Time250070 - Track Number32 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:55Z - Date Added2011-10-02T13:51:50Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count1 - Play Date3414586680 - Play Date UTC2012-03-14T20:18:00Z - Persistent ID4530D804C07C77D0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/32.%20Zany%20-%20Angel%20of%20the%20Sun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4353 - - Track ID4353 - NameDays To Come - ArtistDeepack - AlbumHardstyle Summer Mix 2010 - GenreHardstyle - KindMPEG audio file - Size3758991 - Total Time234788 - Track Number33 - Track Count33 - Year2010 - Date Modified2010-06-25T11:57:56Z - Date Added2011-10-02T13:51:50Z - Bit Rate128 - Sample Rate44100 - Part Of Gapless Album - CommentsJ-Force - Play Count2 - Play Date3424325500 - Play Date UTC2012-07-05T13:31:40Z - Skip Count2 - Skip Date2012-08-09T22:33:17Z - Persistent ID95C8B65025D69D5B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/J-Force%20-%20Hardstyle%20Summer%20Mix%202010/33.%20Deepack%20-%20Days%20To%20Come.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4355 - - Track ID4355 - NameLet's Celebrate (Club Mix) - ArtistScotty - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size6842409 - Total Time283324 - Disc Number1 - Disc Count2 - Track Number1 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:50Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3360496742 - Play Date UTC2010-06-27T19:19:02Z - Skip Count2 - Skip Date2012-08-17T20:32:39Z - Artwork Count1 - Persistent IDEBAC3026F7751B6B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/101.%20Scotty%20-%20Let's%20Celebrate%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4357 - - Track ID4357 - NameDreams 2002 (Cosmic Gate Remix) - ArtistMiss Shiva - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size8769000 - Total Time363598 - Disc Number1 - Disc Count2 - Track Number2 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:50Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3360497114 - Play Date UTC2010-06-27T19:25:14Z - Artwork Count1 - Persistent IDB1993B06A2E67571 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/102.%20Miss%20Shiva%20-%20Dreams%202002%20(Cosmic%20Gate%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4359 - - Track ID4359 - NameLifestyle (Megara vs. DJ Lee Remix) - ArtistBeam vs. Cyrus - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size5969727 - Total Time246961 - Disc Number1 - Disc Count2 - Track Number3 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:50Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3423028227 - Play Date UTC2012-06-20T13:10:27Z - Skip Count1 - Skip Date2012-06-13T13:13:36Z - Artwork Count1 - Persistent IDACD8B133717ECFD9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/103.%20Beam%20vs.%20Cyrus%20-%20Lifestyle%20(Megara%20vs.%20DJ%20Lee%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4361 - - Track ID4361 - NameCan't Stop Raving (Club Mix) - ArtistAdrima - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size8063060 - Total Time334184 - Disc Number1 - Disc Count2 - Track Number4 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:50Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-07-26T21:03:38Z - Artwork Count1 - Persistent IDC61DF8DAB3463BA9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/104.%20Adrima%20-%20Can't%20Stop%20Raving%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4363 - - Track ID4363 - NameHeaven (Green Court Mix) - ArtistDJ Sammy & Yanou - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size6891318 - Total Time285361 - Disc Number1 - Disc Count2 - Track Number5 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:50Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID811FBBED7D020E36 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/105.%20DJ%20Sammy%20&%20Yanou%20-%20Heaven%20(Green%20Court%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4365 - - Track ID4365 - NameL'Esperanza (Extended Mix) - ArtistTopmodelz - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size5028678 - Total Time207751 - Disc Number1 - Disc Count2 - Track Number6 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:50Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDE2DEC68533197A49 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/106.%20Topmodelz%20-%20L'Esperanza%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4367 - - Track ID4367 - NameInto The Sea (Voodoo & Serano Mix) - ArtistCJ Stone - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size7673739 - Total Time317962 - Disc Number1 - Disc Count2 - Track Number7 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:50Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3426431126 - Play Date UTC2012-07-29T22:25:26Z - Skip Count1 - Skip Date2012-05-16T22:50:15Z - Artwork Count1 - Persistent ID4C432930E763DCB8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/107.%20CJ%20Stone%20-%20Into%20The%20Sea%20(Voodoo%20&%20Serano%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4369 - - Track ID4369 - NameOng-Diggi-Dong (Essential Hard House Club Mix) - ArtistEssential DJ Team - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size5996072 - Total Time248058 - Disc Number1 - Disc Count2 - Track Number8 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:50Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3423719980 - Play Date UTC2012-06-28T13:19:40Z - Skip Count1 - Skip Date2012-06-14T20:09:39Z - Artwork Count1 - Persistent IDE19E3D04A852E6D2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/108.%20Essential%20DJ%20Team%20-%20Ong-Diggi-Dong%20(Essential%20Hard%20House%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4371 - - Track ID4371 - NameCome With Me (DJ Scot Project Remix) - ArtistTalla 2XLC - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size7964643 - Total Time330083 - Disc Number1 - Disc Count2 - Track Number9 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:50Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID4EA65CF8BCA43283 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/109.%20Talla%202XLC%20-%20Come%20With%20Me%20(DJ%20Scot%20Project%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4373 - - Track ID4373 - NamePrepare To Qualify (Elephant Mix) - ArtistBassraiders - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size5896371 - Total Time243905 - Disc Number1 - Disc Count2 - Track Number10 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:50Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3426258549 - Play Date UTC2012-07-27T22:29:09Z - Artwork Count1 - Persistent IDABF07B58A77597D6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/110.%20Bassraiders%20-%20Prepare%20To%20Qualify%20(Elephant%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4375 - - Track ID4375 - NameBlue Planet - ArtistImpegement Synrom - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size7379065 - Total Time305684 - Disc Number1 - Disc Count2 - Track Number11 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID2CEA766E88DA14BB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/111.%20Impegement%20Synrom%20-%20Blue%20Planet.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4377 - - Track ID4377 - NameUrban Train (Cosmic Gate Mix) - ArtistDJ Tiesto feat. Kirsty Hawkshaw - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size4329040 - Total Time178599 - Disc Number1 - Disc Count2 - Track Number12 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDE09190B879320E3D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/112.%20DJ%20Tiesto%20feat.%20Kirsty%20Hawkshaw%20-%20Urban%20Train%20(Cosmic%20Gate%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4379 - - Track ID4379 - NameRed Planet (Reverb's Mix) - ArtistAvatar - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size9416619 - Total Time390582 - Disc Number1 - Disc Count2 - Track Number13 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3427342729 - Play Date UTC2012-08-09T11:38:49Z - Skip Count2 - Skip Date2012-08-09T11:32:16Z - Artwork Count1 - Persistent IDC2488AA18D7B6286 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/113.%20Avatar%20-%20Red%20Planet%20(Reverb's%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4381 - - Track ID4381 - NameThe Trance-All Anthem (Gary D's Tranced Out Remix) - ArtistTrance-All DJ Team - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size4189868 - Total Time172800 - Disc Number1 - Disc Count2 - Track Number14 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-01T23:00:29Z - Artwork Count1 - Sort NameTrance-All Anthem (Gary D's Tranced Out Remix) - Persistent ID9816EAAF82C60C8F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/114.%20Trance-All%20DJ%20Team%20-%20The%20Trance-All%20Anthem%20(Gary%20D's%20Tranced%20Out%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4383 - - Track ID4383 - NamePandora (Fridge Trance Mix) - ArtistDragon - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size4152843 - Total Time171258 - Disc Number1 - Disc Count2 - Track Number15 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3423572103 - Play Date UTC2012-06-26T20:15:03Z - Skip Count1 - Skip Date2012-05-23T21:23:22Z - Artwork Count1 - Persistent ID0DACB6F53C294816 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/115.%20Dragon%20-%20Pandora%20(Fridge%20Trance%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4385 - - Track ID4385 - NameThe Change - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size6277524 - Total Time259787 - Disc Number1 - Disc Count2 - Track Number16 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Sort NameChange - Persistent IDE112874058C1396E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/116.%20Accuface%20-%20The%20Change.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4387 - - Track ID4387 - NameI Feel For You - ArtistSonic Inc. - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD1 - KindMPEG audio file - Size5284459 - Total Time218409 - Disc Number1 - Disc Count2 - Track Number17 - Track Count17 - Date Modified2012-08-18T03:37:22Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDFEEFEADF95E9174A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/117.%20Sonic%20Inc.%20-%20I%20Feel%20For%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4389 - - Track ID4389 - NameBalla Nation (Episode II) - ArtistDJ Dean - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size5660629 - Total Time234083 - Disc Number2 - Disc Count2 - Track Number1 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3426686714 - Play Date UTC2012-08-01T21:25:14Z - Skip Count1 - Skip Date2012-07-16T13:59:33Z - Artwork Count1 - Persistent IDE276DF82A822DD8A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/201.%20DJ%20Dean%20-%20Balla%20Nation%20(Episode%20II).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4391 - - Track ID4391 - NameListen To Me Mama (DJ Scot Project Mix) - ArtistTwisters Silence - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size10201570 - Total Time423288 - Disc Number2 - Disc Count2 - Track Number2 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3370762643 - Play Date UTC2010-10-24T14:57:23Z - Artwork Count1 - Persistent IDEF4205A2AC07D1BE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/202.%20Twisters%20Silence%20-%20Listen%20To%20Me%20Mama%20(DJ%20Scot%20Project%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4393 - - Track ID4393 - NameWild Pleasure (Club Mix) - ArtistUnix - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size4644357 - Total Time191738 - Disc Number2 - Disc Count2 - Track Number3 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3370762835 - Play Date UTC2010-10-24T15:00:35Z - Skip Count1 - Skip Date2012-08-17T20:31:13Z - Artwork Count1 - Persistent ID5EE80B5530B34D97 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/203.%20Unix%20-%20Wild%20Pleasure%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4395 - - Track ID4395 - NameEndless Horny (Ohne Ende Geil) (Ueberdruck Mix) - ArtistO.E.G. - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size3895817 - Total Time160548 - Disc Number2 - Disc Count2 - Track Number4 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3370762995 - Play Date UTC2010-10-24T15:03:15Z - Skip Count1 - Skip Date2012-04-23T11:31:48Z - Artwork Count1 - Persistent ID1FB3AAEC780399B5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/204.%20O.E.G.%20-%20Endless%20Horny%20(Ohne%20Ende%20Geil)%20(Ueberdruck%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4397 - - Track ID4397 - NameAbuse (Schwarzende Mix) - ArtistSchwarzende - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size4799844 - Total Time198217 - Disc Number2 - Disc Count2 - Track Number5 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3370763193 - Play Date UTC2010-10-24T15:06:33Z - Artwork Count1 - Persistent IDBBFD99A9DABE5E36 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/205.%20Schwarzende%20-%20Abuse%20(Schwarzende%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4399 - - Track ID4399 - NameCosmic Fusion (Full Vox Edit) - ArtistDJ Kird-Kid vs. DJ T-Rob - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size5227435 - Total Time216032 - Disc Number2 - Disc Count2 - Track Number6 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3370763409 - Play Date UTC2010-10-24T15:10:09Z - Artwork Count1 - Persistent ID1B1A57491D5052AF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/206.%20DJ%20Kird-Kid%20vs.%20DJ%20T-Rob%20-%20Cosmic%20Fusion%20(Full%20Vox%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4401 - - Track ID4401 - NameLiving On The Edge - ArtistDave 202 - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size6604166 - Total Time273397 - Disc Number2 - Disc Count2 - Track Number7 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3424339018 - Play Date UTC2012-07-05T17:16:58Z - Skip Count1 - Skip Date2012-06-11T17:05:53Z - Artwork Count1 - Persistent ID1B2B689F336A2E81 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/207.%20Dave%20202%20-%20Living%20On%20The%20Edge.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4403 - - Track ID4403 - NameGive Me Some More (Tom X vs. Steve Cypress Club Mix) - ArtistGee Rossi - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size3814950 - Total Time157178 - Disc Number2 - Disc Count2 - Track Number8 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:51Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-11T21:18:13Z - Artwork Count1 - Persistent ID7CB2550743743C7C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/208.%20Gee%20Rossi%20-%20Give%20Me%20Some%20More%20(Tom%20X%20vs.%20Steve%20Cypress%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4405 - - Track ID4405 - NameHappiness (Club Mix) - ArtistDJ Jo vs. Tom-X - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size5990402 - Total Time247823 - Disc Number2 - Disc Count2 - Track Number9 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-04-23T11:31:41Z - Artwork Count1 - Persistent ID3323BE16AD2C9565 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/209.%20DJ%20Jo%20vs.%20Tom-X%20-%20Happiness%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4407 - - Track ID4407 - NameT-Storms (Tornado Mix) - ArtistDJ Dean & Danny K. - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size8169647 - Total Time338625 - Disc Number2 - Disc Count2 - Track Number10 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424284239 - Play Date UTC2012-07-05T02:03:59Z - Skip Count1 - Skip Date2010-09-14T21:40:15Z - Artwork Count1 - Persistent ID0A6C21747B916B8E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/210.%20DJ%20Dean%20&%20Danny%20K.%20-%20T-Storms%20(Tornado%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4409 - - Track ID4409 - NameI Need Your Love (Paul Hutch Mix) - ArtistRave Allstars - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size4503942 - Total Time185887 - Disc Number2 - Disc Count2 - Track Number11 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-12T13:30:06Z - Artwork Count1 - Persistent IDA1020647D43A0A8D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/211.%20Rave%20Allstars%20-%20I%20Need%20Your%20Love%20(Paul%20Hutch%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4411 - - Track ID4411 - NameX-Perience - Artist2OU - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size6159027 - Total Time254850 - Disc Number2 - Disc Count2 - Track Number12 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-11T13:39:36Z - Artwork Count1 - Persistent IDD04F164EFD97E1B5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/212.%202OU%20-%20X-Perience.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4413 - - Track ID4413 - NameE.A.S.E. - ArtistOrange Inc. - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size4395455 - Total Time181368 - Disc Number2 - Disc Count2 - Track Number13 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDE160DCE4BE7BEC5E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/213.%20Orange%20Inc.%20-%20E.A.S.E..mp3 - File Folder Count-1 - Library Folder Count-1 - - 4415 - - Track ID4415 - NameDouble Speeded (DJs At Work Mix) - ArtistPlastic Enemy - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size5807974 - Total Time240222 - Disc Number2 - Disc Count2 - Track Number14 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-06-26T13:48:23Z - Artwork Count1 - Persistent ID5EAA052E6105A52C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/214.%20Plastic%20Enemy%20-%20Double%20Speeded%20(DJs%20At%20Work%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4417 - - Track ID4417 - NameThis Is My Sound (Wavescope Remix) - ArtistDJ Shog - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size4071976 - Total Time167888 - Disc Number2 - Disc Count2 - Track Number15 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-07-29T21:36:14Z - Artwork Count1 - Persistent ID46DBB3FF48673B3C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/215.%20DJ%20Shog%20-%20This%20Is%20My%20Sound%20(Wavescope%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4419 - - Track ID4419 - NameBrainbow - ArtistSoulfighter - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size5071295 - Total Time209528 - Disc Number2 - Disc Count2 - Track Number16 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID19EACD1914B9DCA4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/216.%20Soulfighter%20-%20Brainbow.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4421 - - Track ID4421 - NameBass Poison - ArtistJohn Tox - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size4678831 - Total Time193175 - Disc Number2 - Disc Count2 - Track Number17 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-05-18T13:28:56Z - Artwork Count1 - Persistent ID81D0D17A860F8E05 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/217.%20John%20Tox%20-%20Bass%20Poison.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4423 - - Track ID4423 - NameBreath Of Imagination - ArtistSpace Planet - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size4802979 - Total Time198347 - Disc Number2 - Disc Count2 - Track Number18 - Track Count19 - Date Modified2012-08-18T02:10:40Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-08-16T16:42:11Z - Artwork Count1 - Persistent IDE2BB1CC88EFDAA87 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/218.%20Space%20Planet%20-%20Breath%20Of%20Imagination.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4425 - - Track ID4425 - NameLike An Ocean - ArtistJFS - Album ArtistVA - AlbumTunnel Trance Force Vol. 20 / CD2 - KindMPEG audio file - Size8887468 - Total Time368535 - Disc Number2 - Disc Count2 - Track Number19 - Track Count19 - Date Modified2012-08-18T02:10:41Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3426689378 - Play Date UTC2012-08-01T22:09:38Z - Skip Count1 - Skip Date2012-06-27T15:19:26Z - Artwork Count1 - Persistent IDE89A75CDFF4C722F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2020%20(2002)/219.%20JFS%20-%20Like%20An%20Ocean.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4427 - - Track ID4427 - NameMoinsen (Sonntag Morgen-Shogga Mix) - ArtistLangenhagen - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size8532842 - Total Time354246 - Track Number1 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:07Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3360499612 - Play Date UTC2010-06-27T20:06:52Z - Skip Count1 - Skip Date2012-08-14T12:37:15Z - Artwork Count1 - Persistent ID29ED0F2AC9A69FE2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/201.%20Langenhagen%20-%20Moinsen%20(Sonntag%20Morgen-Shogga%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4429 - - Track ID4429 - NamePull Down - ArtistDas Licht - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size5003776 - Total Time207203 - Track Number2 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:07Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3360499803 - Play Date UTC2010-06-27T20:10:03Z - Skip Count1 - Skip Date2012-08-05T13:20:02Z - Artwork Count1 - Persistent IDAE34C6F95D326B2C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/202.%20Das%20Licht%20-%20Pull%20Down.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4431 - - Track ID4431 - NameAll Bitches 2002 (Hennes & Cold Remix) - ArtistMiss JMA - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size4730459 - Total Time195813 - Track Number3 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:07Z - Date Added2011-10-02T13:51:52Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-08-10T11:32:58Z - Artwork Count1 - Persistent IDED42FA99E9C098F8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/203.%20Miss%20JMA%20-%20All%20Bitches%202002%20(Hennes%20&%20Cold%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4433 - - Track ID4433 - NameBrainshooter (Thomas Trouble Remix) - ArtistBlutonium Boy - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size3773125 - Total Time155924 - Track Number4 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:07Z - Date Added2011-10-02T13:51:53Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-06T12:37:51Z - Artwork Count1 - Persistent ID0E2E8085F9CADE47 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/204.%20Blutonium%20Boy%20-%20Brainshooter%20(Thomas%20Trouble%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4435 - - Track ID4435 - NameRussian Melody - ArtistNetwork Red - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size8981710 - Total Time372950 - Track Number5 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:07Z - Date Added2011-10-02T13:51:53Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-05-10T12:42:52Z - Artwork Count1 - Persistent ID14899F377A58CDE0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/205.%20Network%20Red%20-%20Russian%20Melody.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4437 - - Track ID4437 - NameDon't Cry (DJ Jean Remix) - ArtistPresswerk - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size7924700 - Total Time328907 - Track Number6 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:07Z - Date Added2011-10-02T13:51:53Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID041003728D7FE9CD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/206.%20Presswerk%20-%20Don't%20Cry%20(DJ%20Jean%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4439 - - Track ID4439 - NameWatch Out - ArtistGollum & Yanny - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size8238158 - Total Time341968 - Track Number7 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:07Z - Date Added2011-10-02T13:51:53Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDDB5421D45D69E191 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/207.%20Gollum%20&%20Yanny%20-%20Watch%20Out.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4441 - - Track ID4441 - NameBack To The Beat - ArtistIndigo - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size4568058 - Total Time189048 - Track Number8 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:07Z - Date Added2011-10-02T13:51:53Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID59AB76126D14D2D9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/208.%20Indigo%20-%20Back%20To%20The%20Beat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4443 - - Track ID4443 - Name4 O'clock In The Morning (The Crow Remix) - ArtistLazard - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size3814502 - Total Time157648 - Track Number9 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:07Z - Date Added2011-10-02T13:51:53Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDAB8710CBBCB61814 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/209.%20Lazard%20-%204%20O'clock%20In%20The%20Morning%20(The%20Crow%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4445 - - Track ID4445 - NameAlways Hardcore (Yeeeaah...) (Speaker Freakz Mix) - ArtistStacccato - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size4864010 - Total Time201377 - Track Number10 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:53Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3423570899 - Play Date UTC2012-06-26T19:54:59Z - Artwork Count1 - Persistent IDDD827B454BC83EE1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/210.%20Stacccato%20-%20Always%20Hardcore%20(Yeeeaah...)%20(Speaker%20Freakz%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4447 - - Track ID4447 - NameMotherf-ck (DJ Zany Remix) - ArtistDonkey Rollers - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size4277804 - Total Time176953 - Track Number11 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:53Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID4FF94B1A63161A2D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/211.%20Donkey%20Rollers%20-%20Motherf-ck%20(DJ%20Zany%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4449 - - Track ID4449 - NameScream (Yakooza Full Remix) - ArtistDJ Genetic - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size5683398 - Total Time235520 - Track Number12 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:53Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-07-31T20:55:16Z - Artwork Count1 - Persistent ID4DFD3FAB5F56106B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/212.%20DJ%20Genetic%20-%20Scream%20(Yakooza%20Full%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4451 - - Track ID4451 - NameCocaine Speaking - ArtistPI-Factor - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size3808212 - Total Time157387 - Track Number13 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:53Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-07-16T14:01:24Z - Artwork Count1 - Persistent ID3B3F696233B8B35E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/213.%20PI-Factor%20-%20Cocaine%20Speaking.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4453 - - Track ID4453 - NameProgressive Halloween (The Crow Remix) - ArtistMax B.Grant - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size5146750 - Total Time213159 - Track Number14 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424297254 - Play Date UTC2012-07-05T05:40:54Z - Artwork Count1 - Persistent ID203E784AACE6BF11 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/214.%20Max%20B.Grant%20-%20Progressive%20Halloween%20(The%20Crow%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4455 - - Track ID4455 - NameGo Back (Club Mix) - ArtistNorman DJ - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size5230738 - Total Time216659 - Track Number15 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-11T13:43:55Z - Artwork Count1 - Persistent ID78FFCA2003C03CE2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/215.%20Norman%20DJ%20-%20Go%20Back%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4457 - - Track ID4457 - NameSky (Altronik Mix) - ArtistTronik - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size3039584 - Total Time125361 - Track Number16 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID3DF2560C0BBE2A92 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/216.%20Tronik%20-%20Sky%20(Altronik%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4459 - - Track ID4459 - NameAlphabet Lead - ArtistPSR Dream Team (DJ Spoke & Vespa 63) - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size7361725 - Total Time305449 - Track Number17 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-04-24T21:22:40Z - Artwork Count1 - Persistent ID5B4AA1F3C9DA26CA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/217.%20PSR%20Dream%20Team%20(DJ%20Spoke%20&%20Vespa%2063)%20-%20Alphabet%20Lead.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4461 - - Track ID4461 - NameCross The Limit - ArtistAccuface - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size5213806 - Total Time215954 - Track Number18 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count3 - Skip Date2012-07-26T13:28:46Z - Artwork Count1 - Persistent ID6D347ABDB14D5B61 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/218.%20Accuface%20-%20Cross%20The%20Limit.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4463 - - Track ID4463 - NameMy House (Club Mix) - ArtistImpegement Syndrom - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size7241967 - Total Time300460 - Track Number19 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID66CE75EB3A25067F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/219.%20Impegement%20Syndrom%20-%20My%20House%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4465 - - Track ID4465 - NameNino - ArtistSergeant Pepper - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD2 - GenreHard trance - KindMPEG audio file - Size1982555 - Total Time81319 - Track Number20 - Track Count20 - Year2002 - Date Modified2010-10-06T12:21:08Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424316624 - Play Date UTC2012-07-05T11:03:44Z - Skip Count2 - Skip Date2012-08-17T20:32:54Z - Artwork Count1 - Persistent ID22453135A5F20A08 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/220.%20Sergeant%20Pepper%20-%20Nino.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4467 - - Track ID4467 - NameChina Lounge - ArtistStarsplash - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size6859519 - Total Time284525 - Track Number1 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3360501084 - Play Date UTC2010-06-27T20:31:24Z - Artwork Count1 - Persistent ID79DB8FCC14528E82 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/101.%20Starsplash%20-%20China%20Lounge.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4469 - - Track ID4469 - NameHard to Say I'm Sorry (Club Mix) - ArtistAquagen - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size5422592 - Total Time224653 - Track Number2 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count6 - Play Date3424222119 - Play Date UTC2012-07-04T08:48:39Z - Artwork Count1 - Persistent IDEE6891E0B788233E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/102.%20Aquagen%20-%20Hard%20to%20Say%20I'm%20Sorry%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4471 - - Track ID4471 - NameBack to Earth (S.H.O.K.K. Remix) - ArtistCosmic Gate - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size6535412 - Total Time271020 - Track Number3 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3400395722 - Play Date UTC2011-10-02T14:22:02Z - Skip Count1 - Skip Date2012-06-12T21:11:25Z - Artwork Count1 - Persistent ID59A116C02BC94180 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/103.%20Cosmic%20Gate%20-%20Back%20to%20Earth%20(S.H.O.K.K.%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4473 - - Track ID4473 - NameChildren (Future Breeze vs Junkfood Junkies Mix - Artist4 Clubbers - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size6412546 - Total Time265900 - Track Number4 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3400395988 - Play Date UTC2011-10-02T14:26:28Z - Skip Count1 - Skip Date2012-07-12T11:50:06Z - Artwork Count1 - Persistent ID22268FE479D38883 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/104.%204%20Clubbers%20-%20Children%20(Future%20Breeze%20vs%20Junkfood%20Junkies%20Mix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4475 - - Track ID4475 - NameScratchin (... my Voice) - ArtistFull House - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size4420112 - Total Time182883 - Track Number5 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3426845729 - Play Date UTC2012-08-03T17:35:29Z - Skip Count1 - Skip Date2012-07-16T13:35:31Z - Artwork Count1 - Persistent IDF36EB4742DED0791 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/105.%20Full%20House%20-%20Scratchin%20(...%20my%20Voice).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4477 - - Track ID4477 - NameClose your Eyes 2002 (OCP Extended Mix) - ArtistOC Project - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size6224457 - Total Time258063 - Track Number6 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3424303358 - Play Date UTC2012-07-05T07:22:38Z - Artwork Count1 - Persistent IDDCE958F8EDD5793F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/106.%20OC%20Project%20-%20Close%20your%20Eyes%202002%20(OCP%20Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4479 - - Track ID4479 - NameGoin Crazy (Bassraiders Remix) - ArtistSven-R-G - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size5601269 - Total Time232097 - Track Number7 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3400396660 - Play Date UTC2011-10-02T14:37:40Z - Artwork Count1 - Persistent ID47BA7769DF898916 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/107.%20Sven-R-G%20-%20Goin%20Crazy%20(Bassraiders%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4481 - - Track ID4481 - NameOne more - ArtistAbel Ramos - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size4709742 - Total Time194951 - Track Number8 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:54Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3427300892 - Play Date UTC2012-08-09T00:01:32Z - Skip Count1 - Skip Date2011-01-01T16:48:25Z - Artwork Count1 - Persistent ID575781CF388A6805 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/108.%20Abel%20Ramos%20-%20One%20more.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4483 - - Track ID4483 - NameMissing (Rocco Remix) - ArtistDiscovery - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size4295347 - Total Time177684 - Track Number9 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3400397033 - Play Date UTC2011-10-02T14:43:53Z - Artwork Count1 - Persistent ID59C9B2A6F121CCB8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/109.%20Discovery%20-%20Missing%20(Rocco%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4485 - - Track ID4485 - NameCunt Licker (Rocco Remix) - ArtistPornorockers - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size7101533 - Total Time294608 - Track Number10 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID863089F0E215D37F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/110.%20Pornorockers%20-%20Cunt%20Licker%20(Rocco%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4487 - - Track ID4487 - NameSet u Free (Voodoo and Serano Remix) - ArtistN-Trance - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size7555444 - Total Time313521 - Track Number11 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:21Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424194866 - Play Date UTC2012-07-04T01:14:26Z - Artwork Count1 - Persistent ID58821CF088D0240B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/111.%20N-Trance%20-%20Set%20u%20Free%20(Voodoo%20and%20Serano%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4489 - - Track ID4489 - NameNew Life (Junkproject Remix) - ArtistMarc Jones - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size7324097 - Total Time303882 - Track Number12 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:22Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDD977DB54713BEC36 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/112.%20Marc%20Jones%20-%20New%20Life%20(Junkproject%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4491 - - Track ID4491 - NameEnergy - ArtistSilver Liquid - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size4990612 - Total Time206654 - Track Number13 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:22Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3426166611 - Play Date UTC2012-07-26T20:56:51Z - Artwork Count1 - Persistent IDBE95D859C745F190 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/113.%20Silver%20Liquid%20-%20Energy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4493 - - Track ID4493 - NameBring the Beat Back (Axel Konrad Remix) - ArtistDJ Valium - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size3087255 - Total Time127346 - Track Number14 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:22Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3424296381 - Play Date UTC2012-07-05T05:26:21Z - Artwork Count1 - Persistent IDE7077F117B10198A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/114.%20DJ%20Valium%20-%20Bring%20the%20Beat%20Back%20(Axel%20Konrad%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4495 - - Track ID4495 - NameEnergetic Rythm (Donkey Rollers Remix) - ArtistDJ Hein - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size4245835 - Total Time175621 - Track Number15 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:22Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDF204C01DF8043365 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/115.%20DJ%20Hein%20-%20Energetic%20Rythm%20(Donkey%20Rollers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4497 - - Track ID4497 - NameExcelsys - ArtistDJ Energy - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size4371195 - Total Time180845 - Track Number16 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:22Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424264649 - Play Date UTC2012-07-04T20:37:29Z - Artwork Count1 - Persistent IDA0237A45246A2F5C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/116.%20DJ%20Energy%20-%20Excelsys.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4499 - - Track ID4499 - NameMoskito (Japanese Sunrise Mix) - ArtistKenny Takito - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size5700330 - Total Time236225 - Track Number17 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:22Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDF7652671C449C8FE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/117.%20Kenny%20Takito%20-%20Moskito%20(Japanese%20Sunrise%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4501 - - Track ID4501 - NameAnubis (Book of Darkness) - ArtistMarco di Micoli - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size5758633 - Total Time238654 - Track Number18 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:22Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDC700EB502E5EBA83 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/118.%20Marco%20di%20Micoli%20-%20Anubis%20(Book%20of%20Darkness).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4503 - - Track ID4503 - NameLet the Floor burn - ArtistHunter, Lauks and Paris - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size2563754 - Total Time105534 - Track Number19 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:22Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDF452AA2BC4F71CD3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/119.%20Hunter,%20Lauks%20and%20Paris%20-%20Let%20the%20Floor%20burn.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4505 - - Track ID4505 - NameBomberos - ArtistJFS - Album ArtistVA - AlbumDJ Networx Vol. 13 / CD1 - GenreHard trance - KindMPEG audio file - Size5421311 - Total Time224600 - Track Number20 - Track Count20 - Year2002 - Date Modified2010-06-27T20:28:22Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID392301156EBC7F4A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2013%20(2002)/120.%20JFS%20-%20Bomberos.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4507 - - Track ID4507 - NameProtect Your Ears (Extended Mix-Edit) - ArtistDJ Dean - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size6468539 - Total Time267337 - Track Number1 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:55Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3414588280 - Play Date UTC2012-03-14T20:44:40Z - Artwork Count1 - Persistent IDD7907327EB4DDCA2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/101.%20DJ%20Dean%20-%20Protect%20Your%20Ears%20(Extended%20Mix-Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4509 - - Track ID4509 - NameThe Frequency (DJ Dean Rmx-Edit) - ArtistDJ Digress - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size6346911 - Total Time262269 - Track Number2 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:55Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3414588542 - Play Date UTC2012-03-14T20:49:02Z - Skip Count1 - Skip Date2012-05-10T12:43:53Z - Artwork Count1 - Sort NameFrequency (DJ Dean Rmx-Edit) - Persistent ID1295000D23C1CAD4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/102.%20DJ%20Digress%20-%20The%20Frequency%20(DJ%20Dean%20Rmx-Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4511 - - Track ID4511 - NameHighway To The Sky (Album Version) - ArtistKlubbingman - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size3711263 - Total Time152450 - Track Number3 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:55Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3414588694 - Play Date UTC2012-03-14T20:51:34Z - Artwork Count1 - Persistent ID134F17864680E28A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/103.%20Klubbingman%20-%20Highway%20To%20The%20Sky%20(Album%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4513 - - Track ID4513 - NameSuck My ....! (ab 16 Mix) - ArtistDickheadz - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size5323739 - Total Time219637 - Track Number4 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:55Z - Date Added2011-10-02T13:51:55Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-05-23T19:02:32Z - Artwork Count1 - Persistent ID2FA84543DE06F51B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/104.%20Dickheadz%20-%20Suck%20My%20....!%20(ab%2016%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4515 - - Track ID4515 - NameDissin You 200% - ArtistDickheadz - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size4654785 - Total Time191764 - Track Number5 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:55Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3414588898 - Play Date UTC2012-03-14T20:54:58Z - Skip Count1 - Skip Date2012-08-09T11:24:47Z - Artwork Count1 - Persistent IDD424FA54D5A04E73 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/105.%20Dickheadz%20-%20Dissin%20You%20200%25.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4517 - - Track ID4517 - NameAttenzione! (Brooklyn Bounce Rmx) - ArtistFlashrider - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size3693707 - Total Time151719 - Track Number6 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:56Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3424265843 - Play Date UTC2012-07-04T20:57:23Z - Skip Count1 - Skip Date2012-06-28T16:46:32Z - Artwork Count1 - Persistent ID768AA8B156A1742E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/106.%20Flashrider%20-%20Attenzione!%20(Brooklyn%20Bounce%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4519 - - Track ID4519 - NameHeaven Above (Krid P. vs. Future Breeze Club Rmx) - ArtistFuture Breeze - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size5143835 - Total Time212140 - Track Number7 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:56Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3414589262 - Play Date UTC2012-03-14T21:01:02Z - Skip Count1 - Skip Date2012-07-03T13:29:48Z - Artwork Count1 - Persistent ID52D375D3DD499C38 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/107.%20Future%20Breeze%20-%20Heaven%20Above%20(Krid%20P.%20vs.%20Future%20Breeze%20Club%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4521 - - Track ID4521 - NameAirport (Essential DJ Team Mix) - ArtistArmani & Ghost - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size5756965 - Total Time237688 - Track Number8 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:56Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3414589499 - Play Date UTC2012-03-14T21:04:59Z - Skip Count2 - Skip Date2012-07-26T21:07:47Z - Artwork Count1 - Persistent ID50C4860DFDF2474D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/108.%20Armani%20&%20Ghost%20-%20Airport%20(Essential%20DJ%20Team%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4523 - - Track ID4523 - Name4 Just 1 Day (Derb Remix-Edit) - ArtistKai Tracid - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size4459196 - Total Time183614 - Track Number9 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:56Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3424288532 - Play Date UTC2012-07-05T03:15:32Z - Artwork Count1 - Persistent ID8BC9C9F602E950FC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/109.%20Kai%20Tracid%20-%204%20Just%201%20Day%20(Derb%20Remix-Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4525 - - Track ID4525 - NameDreaming - ArtistMaster & Servant - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size5168876 - Total Time213185 - Track Number10 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:56Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3414589896 - Play Date UTC2012-03-14T21:11:36Z - Artwork Count1 - Persistent IDBC03CFA00236CF6E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/110.%20Master%20&%20Servant%20-%20Dreaming.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4527 - - Track ID4527 - NameHardhouse Generation (DJ Dean Rmx) - ArtistHardheadz - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size5090528 - Total Time209920 - Track Number11 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:56Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3414590106 - Play Date UTC2012-03-14T21:15:06Z - Skip Count1 - Skip Date2012-07-16T14:00:27Z - Artwork Count1 - Persistent ID06ADD48884578651 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/111.%20Hardheadz%20-%20Hardhouse%20Generation%20(DJ%20Dean%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4529 - - Track ID4529 - NameVoices - ArtistHeadstorm - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size5095515 - Total Time210128 - Track Number12 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:56Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3414590315 - Play Date UTC2012-03-14T21:18:35Z - Skip Count1 - Skip Date2012-04-24T21:24:19Z - Artwork Count1 - Persistent ID4B9FE4EA1146B4D8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/112.%20Headstorm%20-%20Voices.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4531 - - Track ID4531 - NameBurnin' - ArtistGlobal Cee - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size6552523 - Total Time270837 - Track Number13 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:56Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424246973 - Play Date UTC2012-07-04T15:42:53Z - Artwork Count1 - Persistent IDF6480E08AEEEDD6E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/113.%20Global%20Cee%20-%20Burnin'.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4533 - - Track ID4533 - NameWitchcraft (Club Mix) - ArtistSkydiver - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size5495516 - Total Time226795 - Track Number14 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:57Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424187655 - Play Date UTC2012-07-03T23:14:15Z - Artwork Count1 - Persistent ID66748E8F3FB1CA82 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/114.%20Skydiver%20-%20Witchcraft%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4535 - - Track ID4535 - NameReflection (Lacargo Rmx) - ArtistDJ Slideout - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size3760156 - Total Time154488 - Track Number15 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:57Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDDEF3DA44E24E7C79 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/115.%20DJ%20Slideout%20-%20Reflection%20(Lacargo%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4537 - - Track ID4537 - NameLocking On Target - ArtistAccuface - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size6397677 - Total Time264385 - Track Number16 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:57Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count3 - Play Date3427778495 - Play Date UTC2012-08-14T12:41:35Z - Artwork Count1 - Persistent IDAF504C6E93BBF70A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/116.%20Accuface%20-%20Locking%20On%20Target.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4539 - - Track ID4539 - NameXTC - ArtistFirefreakz - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size4940659 - Total Time203676 - Track Number17 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:57Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3360502111 - Play Date UTC2010-06-27T20:48:31Z - Skip Count1 - Skip Date2012-08-07T21:47:29Z - Artwork Count1 - Persistent ID3E36F15AE686ED00 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/117.%20Firefreakz%20-%20XTC.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4541 - - Track ID4541 - NameFreedom (Hard Clubmix) - ArtistOktane - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size3994624 - Total Time164257 - Track Number18 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:57Z - Date Added2011-10-02T13:51:56Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424340665 - Play Date UTC2012-07-05T17:44:25Z - Skip Count1 - Skip Date2012-08-14T17:28:00Z - Artwork Count1 - Persistent ID152405DB4D894E8E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/118.%20Oktane%20-%20Freedom%20(Hard%20Clubmix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4543 - - Track ID4543 - NameQuestion (Sandra Flyn Mix) - ArtistESS EFF - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size7729930 - Total Time319895 - Track Number19 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:57Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-08-17T12:47:42Z - Artwork Count1 - Persistent IDBEAB7D5FAC75EC15 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/119.%20ESS%20EFF%20-%20Question%20(Sandra%20Flyn%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4545 - - Track ID4545 - NameHamburg Rulez (Hamburg Std Mix) - ArtistBarbarez Feat. Mike Rossi - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD1 - GenreHard Trance - KindMPEG audio file - Size8619579 - Total Time356963 - Track Number20 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:58Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424217431 - Play Date UTC2012-07-04T07:30:31Z - Artwork Count1 - Persistent ID36FFA2CCBBA34535 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/120.%20Barbarez%20Feat.%20Mike%20Rossi%20-%20Hamburg%20Rulez%20(Hamburg%20Std%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4547 - - Track ID4547 - NameHardrive (Lesson 1) - ArtistTechnoboy - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size5292386 - Total Time218331 - Track Number1 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:40Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID16B093A8DD110AB3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/201.%20Technoboy%20-%20Hardrive%20(Lesson%201).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4549 - - Track ID4549 - NameMake It Loud - ArtistBlutonium Boy - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size6144393 - Total Time253831 - Track Number2 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:40Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID98C1E627C1DE6812 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/202.%20Blutonium%20Boy%20-%20Make%20It%20Loud.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4551 - - Track ID4551 - NameThe Game (Original Mix) - ArtistPsycho Hardstylers - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size3026642 - Total Time123924 - Track Number3 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:40Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424298761 - Play Date UTC2012-07-05T06:06:01Z - Skip Count1 - Skip Date2012-06-11T21:28:10Z - Artwork Count1 - Sort NameGame (Original Mix) - Persistent ID14365EB1F0081802 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/203.%20Psycho%20Hardstylers%20-%20The%20Game%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4553 - - Track ID4553 - NameRock'n (The Beat) - ArtistDJ Shoko - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size7406420 - Total Time306416 - Track Number4 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:40Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-05-16T22:37:18Z - Artwork Count1 - Persistent ID0DCCDFFFA1F04AC6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/204.%20DJ%20Shoko%20-%20Rock'n%20(The%20Beat).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4555 - - Track ID4555 - NameDemolition (Original Mix) - ArtistTuneboy - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size7205180 - Total Time298031 - Track Number5 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:40Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3421731493 - Play Date UTC2012-06-05T12:58:13Z - Artwork Count1 - Persistent ID2863847DDA80BCC6 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/205.%20Tuneboy%20-%20Demolition%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4557 - - Track ID4557 - NameDo You Like This? (Original Skam Mix) - ArtistSkam - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size5012157 - Total Time206654 - Track Number6 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:41Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424203579 - Play Date UTC2012-07-04T03:39:39Z - Artwork Count1 - Persistent ID6936A310BEB6DE60 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/206.%20Skam%20-%20Do%20You%20Like%20This%20(Original%20Skam%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4559 - - Track ID4559 - NameFirst Match (Technoboy Mix) - ArtistTNT - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size4768894 - Total Time196519 - Track Number7 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:41Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424209798 - Play Date UTC2012-07-04T05:23:18Z - Skip Count2 - Skip Date2012-06-28T16:44:47Z - Artwork Count1 - Persistent ID2694E471B0CA2F6F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/207.%20TNT%20-%20First%20Match%20(Technoboy%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4561 - - Track ID4561 - NameHardventure (Technoboy Mix) - ArtistK-Traxx - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size6329976 - Total Time261564 - Track Number8 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:41Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2010-09-07T22:12:38Z - Artwork Count1 - Persistent IDEFDB973013A5A1E7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/208.%20K-Traxx%20-%20Hardventure%20(Technoboy%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4563 - - Track ID4563 - NameYou like Bass (www.djzany.nl rmx) - ArtistCenoginerz - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size7239046 - Total Time299441 - Track Number9 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:41Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDF6E256C308763F02 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/209.%20Cenoginerz%20-%20You%20like%20Bass%20(www.djzany.nl%20rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4565 - - Track ID4565 - NameThe Fly (DJ Sequenza Mix) - ArtistWeichei - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size2795921 - Total Time114311 - Track Number10 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:41Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Sort NameFly (DJ Sequenza Mix) - Persistent ID6D00662F7153C588 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/210.%20Weichei%20-%20The%20Fly%20(DJ%20Sequenza%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4567 - - Track ID4567 - NameFrom Past to Phuture - ArtistAsys - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size4988318 - Total Time205662 - Track Number11 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:41Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID35BC2E6D99568F46 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/211.%20Asys%20-%20From%20Past%20to%20Phuture.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4569 - - Track ID4569 - NameHere We Go - ArtistPavo & Zany - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size5045366 - Total Time208039 - Track Number12 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:42Z - Date Added2011-10-02T13:51:57Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count2 - Skip Date2012-06-12T13:31:17Z - Artwork Count1 - Persistent ID1777B72A93E06DBD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/212.%20Pavo%20&%20Zany%20-%20Here%20We%20Go.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4571 - - Track ID4571 - NameScream (Remix) - ArtistZX - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size3020976 - Total Time123689 - Track Number13 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:42Z - Date Added2011-10-02T13:51:58Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDC56A81C9658474C0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/213.%20ZX%20-%20Scream%20(Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4573 - - Track ID4573 - NameGoing To... (Groovemike Rmx) - ArtistBrisby & Jingles - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size4846649 - Total Time199758 - Track Number14 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:42Z - Date Added2011-10-02T13:51:58Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDBE482629357F4EE9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/214.%20Brisby%20&%20Jingles%20-%20Going%20To...%20(Groovemike%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4575 - - Track ID4575 - NameI've Got (The Power) - ArtistLebrisc - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size4478619 - Total Time184424 - Track Number15 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:42Z - Date Added2011-10-02T13:51:58Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-20T13:14:51Z - Artwork Count1 - Persistent ID96DCA86EE988AF8C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/215.%20Lebrisc%20-%20I've%20Got%20(The%20Power).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4577 - - Track ID4577 - NameUnderground - ArtistDerb - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size2987120 - Total Time122279 - Track Number16 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:42Z - Date Added2011-10-02T13:51:58Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-08-03T12:28:22Z - Artwork Count1 - Persistent ID4009FAFBA7581CC1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/216.%20Derb%20-%20Underground.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4579 - - Track ID4579 - Name1, 2, 3, Hardstyle (Extended Edtion) - ArtistHard Z Bass - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size4735057 - Total Time195108 - Track Number17 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:42Z - Date Added2011-10-02T13:51:58Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3424285431 - Play Date UTC2012-07-05T02:23:51Z - Artwork Count1 - Persistent IDB8B78543129694E0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/217.%20Hard%20Z%20Bass%20-%201,%202,%203,%20Hardstyle%20(Extended%20Edtion).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4581 - - Track ID4581 - NameTekknopumpin' (Original Mix) - ArtistMax B. Grant - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size6859746 - Total Time283637 - Track Number18 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:42Z - Date Added2011-10-02T13:51:58Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Skip Count1 - Skip Date2012-06-11T21:41:55Z - Artwork Count1 - Persistent ID2773A19277F43876 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/218.%20Max%20B.%20Grant%20-%20Tekknopumpin'%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4583 - - Track ID4583 - NameAccept No Limits (Sequenza Mix) - ArtistDJ Sequenza - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size7793260 - Total Time322533 - Track Number19 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:43Z - Date Added2011-10-02T13:51:58Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID2B6A7689667C2BFC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/219.%20DJ%20Sequenza%20-%20Accept%20No%20Limits%20(Sequenza%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4585 - - Track ID4585 - NamePump Up The Volume (DJ 4 Tune Rmx) - ArtistDJ Phillipe Rochard - Album ArtistVA - AlbumDJ Networx Vol. 17 / CD2 - GenreHard Trance - KindMPEG audio file - Size8413940 - Total Time348395 - Track Number20 - Track Count20 - Year2003 - Date Modified2010-10-06T12:20:43Z - Date Added2011-10-02T13:51:58Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Play Count2 - Play Date3425279247 - Play Date UTC2012-07-16T14:27:27Z - Skip Count1 - Skip Date2012-08-05T13:26:43Z - Artwork Count1 - Persistent ID8F2367626DB70DE2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2017%20(2003)/220.%20DJ%20Phillipe%20Rochard%20-%20Pump%20Up%20The%20Volume%20(DJ%204%20Tune%20Rmx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4587 - - Track ID4587 - NameJAWS - ArtistJapanese Cartoon - Album ArtistJapanese Cartoon - AlbumIn The Jaws Of The Lords Of Death - KindMPEG audio file - Size7004482 - Total Time169351 - Track Number1 - Track Count9 - Year2010 - Date Modified2010-07-21T13:37:16Z - Date Added2011-10-02T13:51:58Z - Bit Rate320 - Sample Rate44100 - Commentshttp://www.allsabotage.com/ - Play Count5 - Play Date3379950588 - Play Date UTC2011-02-07T23:09:48Z - Skip Count2 - Skip Date2012-05-31T21:07:14Z - Artwork Count1 - Persistent IDE99FC881A58471E3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Japanese%20Cartoon%20-%20In%20the%20Jaws%20of%20the%20Lords%20of%20Death/01%20JAWS.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4589 - - Track ID4589 - NameAll Sabotage!!! (STSO) - ArtistJapanese Cartoon - Album ArtistJapanese Cartoon - AlbumIn The Jaws Of The Lords Of Death - KindMPEG audio file - Size5882262 - Total Time141296 - Track Number2 - Track Count9 - Year2010 - Date Modified2010-07-21T13:37:36Z - Date Added2011-10-02T13:51:58Z - Bit Rate320 - Sample Rate44100 - Commentshttp://www.allsabotage.com/ - Play Count3 - Play Date3364830726 - Play Date UTC2010-08-16T23:12:06Z - Artwork Count1 - Persistent IDA34492A80C6E6D41 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Japanese%20Cartoon%20-%20In%20the%20Jaws%20of%20the%20Lords%20of%20Death/02%20All%20Sabotage!!!%20(STSO).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4591 - - Track ID4591 - NameHeirplanes - ArtistJapanese Cartoon - Album ArtistJapanese Cartoon - AlbumIn The Jaws Of The Lords Of Death - KindMPEG audio file - Size10162164 - Total Time248293 - Track Number3 - Track Count9 - Year2010 - Date Modified2010-07-21T13:38:06Z - Date Added2011-10-02T13:51:58Z - Bit Rate320 - Sample Rate44100 - Commentshttp://www.allsabotage.com/ - Play Count6 - Play Date3424667933 - Play Date UTC2012-07-09T12:38:53Z - Artwork Count1 - Persistent IDA4FAC7A1F47224F7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Japanese%20Cartoon%20-%20In%20the%20Jaws%20of%20the%20Lords%20of%20Death/03%20Heirplanes.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4593 - - Track ID4593 - NameBeijing - ArtistJapanese Cartoon - Album ArtistJapanese Cartoon - AlbumIn The Jaws Of The Lords Of Death - KindMPEG audio file - Size8519584 - Total Time207229 - Track Number4 - Track Count9 - Year2010 - Date Modified2010-07-21T13:38:20Z - Date Added2011-10-02T13:51:58Z - Bit Rate320 - Sample Rate44100 - Commentshttp://www.allsabotage.com/ - Play Count3 - Play Date3364831182 - Play Date UTC2010-08-16T23:19:42Z - Artwork Count1 - Persistent IDCE184F21E68BC7B4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Japanese%20Cartoon%20-%20In%20the%20Jaws%20of%20the%20Lords%20of%20Death/04%20Beijing.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4595 - - Track ID4595 - NameCrowd Participation - ArtistJapanese Cartoon - Album ArtistJapanese Cartoon - AlbumIn The Jaws Of The Lords Of Death - KindMPEG audio file - Size8517494 - Total Time207177 - Track Number5 - Track Count9 - Year2010 - Date Modified2010-07-21T13:38:48Z - Date Added2011-10-02T13:51:58Z - Bit Rate320 - Sample Rate44100 - Commentshttp://www.allsabotage.com/ - Play Count3 - Play Date3364831389 - Play Date UTC2010-08-16T23:23:09Z - Skip Count1 - Skip Date2012-08-16T17:43:25Z - Artwork Count1 - Persistent ID82FEF93848898038 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Japanese%20Cartoon%20-%20In%20the%20Jaws%20of%20the%20Lords%20of%20Death/05%20Crowd%20Participation.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4597 - - Track ID4597 - NameFiring Squad - ArtistJapanese Cartoon - Album ArtistJapanese Cartoon - AlbumIn The Jaws Of The Lords Of Death - KindMPEG audio file - Size9783911 - Total Time238837 - Track Number6 - Track Count9 - Year2010 - Date Modified2010-07-21T13:39:20Z - Date Added2011-10-02T13:51:59Z - Bit Rate320 - Sample Rate44100 - Commentshttp://www.allsabotage.com/ - Play Count3 - Play Date3421301930 - Play Date UTC2012-05-31T13:38:50Z - Skip Count1 - Skip Date2012-04-23T11:36:58Z - Artwork Count1 - Persistent IDC9E08B6DE4532B27 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Japanese%20Cartoon%20-%20In%20the%20Jaws%20of%20the%20Lords%20of%20Death/06%20Firing%20Squad.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4599 - - Track ID4599 - NameYou Are Here - ArtistJapanese Cartoon - Album ArtistJapanese Cartoon - AlbumIn The Jaws Of The Lords Of Death - KindMPEG audio file - Size8469429 - Total Time205975 - Track Number7 - Track Count9 - Year2010 - Date Modified2010-07-21T13:39:54Z - Date Added2011-10-02T13:51:59Z - Bit Rate320 - Sample Rate44100 - Commentshttp://www.allsabotage.com/ - Play Count1 - Play Date3364831833 - Play Date UTC2010-08-16T23:30:33Z - Skip Count2 - Skip Date2011-05-04T12:27:18Z - Artwork Count1 - Persistent IDE75B0FEB6D44B48B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Japanese%20Cartoon%20-%20In%20the%20Jaws%20of%20the%20Lords%20of%20Death/07%20You%20Are%20Here.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4601 - - Track ID4601 - NameARMY - ArtistJapanese Cartoon - Album ArtistJapanese Cartoon - AlbumIn The Jaws Of The Lords Of Death - KindMPEG audio file - Size7094343 - Total Time171598 - Track Number8 - Track Count9 - Year2010 - Date Modified2010-07-21T13:40:18Z - Date Added2011-10-02T13:51:59Z - Bit Rate320 - Sample Rate44100 - Commentshttp://www.allsabotage.com/ - Play Count2 - Play Date3425280840 - Play Date UTC2012-07-16T14:54:00Z - Skip Count1 - Skip Date2010-11-13T13:59:06Z - Artwork Count1 - Persistent IDE31C9CE5D191A595 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Japanese%20Cartoon%20-%20In%20the%20Jaws%20of%20the%20Lords%20of%20Death/08%20ARMY.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4603 - - Track ID4603 - NameGasp - ArtistJapanese Cartoon - Album ArtistJapanese Cartoon - AlbumIn The Jaws Of The Lords Of Death - KindMPEG audio file - Size11033609 - Total Time270080 - Track Number9 - Track Count9 - Year2010 - Date Modified2010-07-21T13:40:48Z - Date Added2011-10-02T13:51:59Z - Bit Rate320 - Sample Rate44100 - Commentshttp://www.allsabotage.com/ - Play Count1 - Play Date3362759649 - Play Date UTC2010-07-23T23:54:09Z - Skip Count2 - Skip Date2012-07-30T13:26:20Z - Artwork Count1 - Persistent ID0E2832176733AE1E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Japanese%20Cartoon%20-%20In%20the%20Jaws%20of%20the%20Lords%20of%20Death/09%20Gasp.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4605 - - Track ID4605 - NameHerman's Hermits - No Milk Today - KindMPEG audio file - Size2883712 - Total Time178128 - Date Modified2000-12-16T00:57:28Z - Date Added2011-10-02T13:52:02Z - Bit Rate128 - Sample Rate44100 - Play Count1 - Play Date3424271117 - Play Date UTC2012-07-04T22:25:17Z - Persistent IDF32BC6DD2B325843 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Herman's%20Hermits/Herman's%20Hermits%20-%20No%20Milk%20Today.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4607 - - Track ID4607 - NameYesterday Becomes Tomorrow (Mike Nero New Jumpstyle Mix) - ArtistAndy Jay Powell - AlbumJumpstyle & Hardstyle 2010 - GenreTrance - KindMPEG audio file - Size14729026 - Total Time368117 - Track Number18 - Year2009 - Date Modified2010-03-03T03:19:58Z - Date Added2011-10-02T13:52:04Z - Bit Rate320 - Sample Rate44100 - CommentsNo comments - Skip Count1 - Skip Date2012-07-29T21:56:57Z - Persistent ID62060EF15D96873A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Jumpstyle%20and%20Hardstyle%20(2010)/18_andy_jay_powell_-_yesterday_becomes_tomorrow_(mike_nero_new_jumpstyle_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4609 - - Track ID4609 - NameMegasound - ArtistHeadhunterz - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size5823739 - Total Time214987 - Track Number1 - Year2009 - Date Modified2010-05-29T19:04:25Z - Date Added2011-10-02T13:52:04Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-07-03T20:49:45Z - Persistent IDD1B0A900573012AA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/01.%20Headhunterz%20-%20Megasound.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4611 - - Track ID4611 - NameLena (Technoboy Remix) - ArtistAnaklein - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size2700172 - Total Time102661 - Track Number2 - Year2009 - Date Modified2010-05-29T19:04:25Z - Date Added2011-10-02T13:52:04Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-08-09T22:17:26Z - Persistent ID8E580499EBBE55D4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/02.%20Anaklein%20-%20Lena%20(Technoboy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4613 - - Track ID4613 - NameRaven - ArtistPavo - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size3759031 - Total Time162351 - Track Number3 - Year2009 - Date Modified2010-05-29T19:04:25Z - Date Added2011-10-02T13:52:04Z - Bit Rate185 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-01T15:11:53Z - Persistent ID7CFC1D3996B4C80A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/03.%20Pavo%20-%20Raven.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4615 - - Track ID4615 - NameRate Reducer (Headhunterz Remix) - ArtistProject One - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size6563760 - Total Time252368 - Track Number4 - Year2009 - Date Modified2010-05-29T19:04:25Z - Date Added2011-10-02T13:52:04Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent IDD8FA71BDCE9E66C9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/04.%20Project%20One%20-%20Rate%20Reducer%20(Headhunterz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4617 - - Track ID4617 - NameWhat's Goin On - ArtistGostosa - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size5975136 - Total Time227395 - Track Number5 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:04Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent IDDBBAAF2252F2B833 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/05.%20Gostosa%20-%20What's%20Goin%20On.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4619 - - Track ID4619 - NameMove Your Body - ArtistBioweapon - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size3472656 - Total Time138971 - Track Number6 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:04Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent IDCBF6A883C9CAEBEC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/06.%20Bioweapon%20-%20Move%20Your%20Body.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4621 - - Track ID4621 - NameVenom (Wildstylez Remix) - ArtistNoisecontrollers - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size7926537 - Total Time287399 - Track Number7 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:04Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent ID35A18689063F1831 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/07.%20Noisecontrollers%20-%20Venom%20(Wildstylez%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4623 - - Track ID4623 - NameThe Muzical Revolution - ArtistHeadhunterz - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size6674298 - Total Time240039 - Track Number8 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:04Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments - Sort NameMuzical Revolution - Persistent ID89CE1567A050E747 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/08.%20Headhunterz%20-%20The%20Muzical%20Revolution.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4625 - - Track ID4625 - NameThe Blaster - ArtistKlone - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size3920672 - Total Time143777 - Track Number9 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:04Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424286391 - Play Date UTC2012-07-05T02:39:51Z - Skip Count3 - Skip Date2012-07-29T21:36:06Z - Sort NameBlaster - Persistent IDB914E073C4F38156 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/09.%20Klone%20-%20The%20Blaster.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4627 - - Track ID4627 - NameSummer of Hardstyle - ArtistProppy & Heady - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size6337403 - Total Time246256 - Track Number10 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:04Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-20T21:40:44Z - Persistent IDFB12DDD0DF86CB30 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/10.%20Proppy%20&%20Heady%20-%20Summer%20of%20Hardstyle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4629 - - Track ID4629 - NameRock Civilization (Technoboy Remix) - ArtistHeadhunterz - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size7649233 - Total Time298004 - Track Number11 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:04Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-06-12T13:14:40Z - Persistent ID42E3FC5642232C08 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/11.%20Headhunterz%20-%20Rock%20Civilization%20(Technoboy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4631 - - Track ID4631 - NameFollowers - ArtistDonkey Rollers - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size6555221 - Total Time267807 - Track Number12 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:05Z - Bit Rate195 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent ID739E692B79F73CFD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/12.%20Donkey%20Rollers%20-%20Followers.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4633 - - Track ID4633 - NamePromises - ArtistNoisecontrollers - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size5070540 - Total Time195761 - Track Number13 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:05Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-06-27T15:06:25Z - Persistent ID8CD32DF2FFF9567B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/13.%20Noisecontrollers%20-%20Promises.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4635 - - Track ID4635 - NameHer Voice (Headhunterz Remix Edit) - ArtistBuilder - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size6730377 - Total Time246360 - Track Number14 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:05Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent IDB98D8AEF12942671 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/14.%20Builder%20-%20Her%20Voice%20(Headhunterz%20Remix%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4637 - - Track ID4637 - NameA Feeling (Hardstyle Masterz Remix) - ArtistThe Raiders - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size6976223 - Total Time258977 - Track Number15 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:05Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-08-03T12:28:38Z - Sort ArtistRaiders - Sort NameFeeling (Hardstyle Masterz Remix) - Persistent ID11778A8E511C8DD2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/15.%20The%20Raiders%20-%20A%20Feeling%20(Hardstyle%20Masterz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4639 - - Track ID4639 - NameUnleashed - ArtistAlpha2 - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size5300288 - Total Time229093 - Track Number16 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:05Z - Bit Rate185 - Sample Rate44100 - Part Of Gapless Album - Comments - Persistent ID6B11B7829E5B7928 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/16.%20Alpha2%20-%20Unleashed.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4641 - - Track ID4641 - NameSamara - ArtistNoisecontrollers - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size6402380 - Total Time252943 - Track Number17 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:05Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count1 - Skip Date2012-08-10T11:35:55Z - Persistent ID57D77531755D72AC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/17.%20Noisecontrollers%20-%20Samara.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4643 - - Track ID4643 - NameThe Sacrifice (Brennan Heart Remix) - ArtistHeadhunterz - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size6400225 - Total Time252264 - Track Number18 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:05Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Sort NameSacrifice (Brennan Heart Remix) - Persistent IDBC4AB64E2D7E4CDF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/18.%20Headhunterz%20-%20The%20Sacrifice%20(Brennan%20Heart%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4645 - - Track ID4645 - NameWeapon (The R3bels & Zatox Remix) - ArtistR3zonance - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size5650340 - Total Time211539 - Track Number19 - Year2009 - Date Modified2010-05-29T19:04:26Z - Date Added2011-10-02T13:52:05Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3424265691 - Play Date UTC2012-07-04T20:54:51Z - Persistent ID97328D9A426A7AD3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/19.%20R3zonance%20-%20Weapon%20(The%20R3bels%20&%20Zatox%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4647 - - Track ID4647 - NameRambo is a Pussy - ArtistHardstyle Masterz - Album Artistmixmasterz - AlbumHardstyle Mix Masterz Vol. 1 - GenreHardStyle - KindMPEG audio file - Size6264745 - Total Time241240 - Track Number20 - Year2009 - Date Modified2010-05-29T19:04:27Z - Date Added2011-10-02T13:52:05Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Skip Count2 - Skip Date2012-08-09T22:33:02Z - Persistent ID5EE7B41A7425AE2D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/07.%20Techno/02.%20HardStyle%20&%20JumpStyle/VA%20-%20Hardstyle%20Mix%20Masterz%20Nr.%201%20(Headhunterz)/20.%20Hardstyle%20Masterz%20-%20Rambo%20is%20a%20Pussy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4649 - - Track ID4649 - NameMeat Plow - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size5206503 - Total Time216842 - Track Number1 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-14T12:36:56Z - Persistent ID6B483E2A2F904330 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/01.%20Meat%20plow.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4651 - - Track ID4651 - NameVasoline - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size4258571 - Total Time177345 - Track Number2 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3390830587 - Play Date UTC2011-06-13T21:23:07Z - Skip Count2 - Skip Date2012-07-10T13:03:49Z - Persistent ID8371503807414864 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/02.%20Vasoline.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4653 - - Track ID4653 - NameLounge Fly - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size7654073 - Total Time318824 - Track Number3 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3373709171 - Play Date UTC2010-11-27T17:26:11Z - Persistent ID865E35D2043C4984 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/03.%20Lounge%20fly.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4655 - - Track ID4655 - NameInterstate Love Song - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size4674870 - Total Time194690 - Track Number4 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3424783915 - Play Date UTC2012-07-10T20:51:55Z - Persistent ID4B39DE26566800B4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/04.%20Interstate%20love%20song.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4657 - - Track ID4657 - NameStill Remains - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size5118109 - Total Time213159 - Track Number5 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3424240516 - Play Date UTC2012-07-04T13:55:16Z - Skip Count1 - Skip Date2012-05-16T22:53:18Z - Persistent IDFA4BA47A5B18C5C4 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/05.%20Still%20remains.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4659 - - Track ID4659 - NamePretty Penny - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size5331894 - Total Time222066 - Track Number6 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3427966003 - Play Date UTC2012-08-16T16:46:43Z - Skip Count1 - Skip Date2012-06-11T21:20:49Z - Persistent IDED612CE06FD72492 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/06.%20Pretty%20Penny.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4661 - - Track ID4661 - NameSilvergun Superman - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size7596403 - Total Time316421 - Track Number7 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3424215495 - Play Date UTC2012-07-04T06:58:15Z - Persistent IDA5B9B0FA63BDD1D9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/07.%20Silvergun%20superman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4663 - - Track ID4663 - NameBig Empty - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size7069765 - Total Time294478 - Track Number8 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Play Count1 - Play Date3387425415 - Play Date UTC2011-05-05T11:30:15Z - Skip Count2 - Skip Date2012-07-16T14:01:27Z - Persistent ID081696FEED6FAE4B - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/08.%20Big%20empty.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4665 - - Track ID4665 - NameUnglued - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size3702475 - Total Time154174 - Track Number9 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3426485104 - Play Date UTC2012-07-30T13:25:04Z - Persistent IDCEC03C85B60B1003 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/09.%20Unglued.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4667 - - Track ID4667 - NameArmy Ants - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size5442859 - Total Time226690 - Track Number10 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Play Count2 - Play Date3426656476 - Play Date UTC2012-08-01T13:01:16Z - Persistent ID9DC7F8492214A981 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/10.%20Army%20ants.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4669 - - Track ID4669 - NameKitchenware & Candybars - ArtistStone Temple Pilots - AlbumPurple - GenreGrunge - KindMPEG audio file - Size11675899 - Total Time486400 - Track Number11 - Year1994 - Date Modified2010-11-27T19:21:44Z - Date Added2011-10-02T13:52:08Z - Bit Rate192 - Sample Rate44100 - Persistent ID59CAEF8CA069E627 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Stone%20Temple%20Pilots/Purple%20(1994)/11.%20Kitchenware%20&%20candybars.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4671 - - Track ID4671 - NameTrust - ArtistMegadeth - Album ArtistMegadeth - Album1997 - Cryptic Writings (Re-Mastered) - GenreThrash Metal - KindMPEG audio file - Size12433408 - Total Time310465 - Track Number1 - Track Count16 - Year1997 - Date Modified2011-06-26T02:17:27Z - Date Added2011-10-02T13:52:08Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDCF77F97A7B085F5A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Megadeth/Megadeath%20-%2001%20-%20Trust.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4673 - - Track ID4673 - NameMy Wave - ArtistSoundgarden - AlbumSuperunknown - GenreRock - KindMPEG audio file - Size10924241 - Total Time312058 - Track Number2 - Track Count15 - Year1994 - Date Modified2008-12-24T03:31:48Z - Date Added2011-10-02T13:52:08Z - Bit Rate279 - Sample Rate44100 - CommentsA&M CD 500198 UPC: 7749-901744 YEAR: 1994 - Play Count4 - Play Date3420699238 - Play Date UTC2012-05-24T14:13:58Z - Persistent ID3F5231A5CEB58AAC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Superunknown%20(1994)/02%20-%20My%20Wave.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4675 - - Track ID4675 - NameFell On Black Days - ArtistSoundgarden - AlbumSuperunknown - GenreRock - KindMPEG audio file - Size9641573 - Total Time282488 - Track Number3 - Track Count15 - Year1994 - Date Modified2008-12-24T03:31:58Z - Date Added2011-10-02T13:52:08Z - Bit Rate272 - Sample Rate44100 - CommentsA&M CD 500198 UPC: 7749-901744 YEAR: 1994 - Play Count3 - Play Date3414173270 - Play Date UTC2012-03-10T01:27:50Z - Skip Count2 - Skip Date2012-05-31T21:17:06Z - Persistent ID70C5A166C6C57735 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Superunknown%20(1994)/03%20-%20Fell%20On%20Black%20Days.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4677 - - Track ID4677 - NameSuperunknown - ArtistSoundgarden - AlbumSuperunknown - GenreRock - KindMPEG audio file - Size10855797 - Total Time306364 - Track Number5 - Track Count15 - Year1994 - Date Modified2008-12-24T03:32:17Z - Date Added2011-10-02T13:52:08Z - Bit Rate283 - Sample Rate44100 - CommentsA&M CD 500198 UPC: 7749-901744 YEAR: 1994 - Play Count2 - Play Date3424206559 - Play Date UTC2012-07-04T04:29:19Z - Skip Count1 - Skip Date2012-05-23T13:41:40Z - Persistent ID76BEC424825B6CA3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Superunknown%20(1994)/05%20-%20Superunknown.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4679 - - Track ID4679 - NameBlack Hole Sun - ArtistSoundgarden - AlbumSuperunknown - GenreRock - KindMPEG audio file - Size11026517 - Total Time318093 - Track Number7 - Track Count15 - Year1994 - Date Modified2008-12-24T03:32:39Z - Date Added2011-10-02T13:52:08Z - Bit Rate277 - Sample Rate44100 - CommentsA&M CD 500198 UPC: 7749-901744 YEAR: 1994 - Play Count2 - Play Date3414170211 - Play Date UTC2012-03-10T00:36:51Z - Skip Count1 - Skip Date2012-06-13T13:13:42Z - Persistent IDADB11BA9F1AE7AC8 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Superunknown%20(1994)/07%20-%20Black%20Hole%20Sun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4681 - - Track ID4681 - NameSpoonman - ArtistSoundgarden - AlbumSuperunknown - GenreRock - KindMPEG audio file - Size8609357 - Total Time246413 - Track Number8 - Track Count15 - Year1994 - Date Modified2008-12-24T03:32:47Z - Date Added2011-10-02T13:52:08Z - Bit Rate279 - Sample Rate44100 - CommentsA&M CD 500198 UPC: 7749-901744 YEAR: 1994 - Play Count3 - Play Date3423570698 - Play Date UTC2012-06-26T19:51:38Z - Skip Count1 - Skip Date2012-06-11T17:06:01Z - Persistent ID034FBAFDE7699DB1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Superunknown%20(1994)/08%20-%20Spoonman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4683 - - Track ID4683 - NameThe Day I Tried To Live - ArtistSoundgarden - AlbumSuperunknown - GenreRock - KindMPEG audio file - Size10650108 - Total Time319529 - Track Number10 - Track Count15 - Year1994 - Date Modified2008-12-24T03:33:09Z - Date Added2011-10-02T13:52:08Z - Bit Rate266 - Sample Rate44100 - CommentsA&M CD 500198 UPC: 7749-901744 YEAR: 1994 - Play Count2 - Play Date3414170776 - Play Date UTC2012-03-10T00:46:16Z - Sort NameDay I Tried To Live - Persistent ID856B189519690134 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Superunknown%20(1994)/10%20-%20The%20Day%20I%20Tried%20To%20Live.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4685 - - Track ID4685 - NameKickstand - ArtistSoundgarden - AlbumSuperunknown - GenreRock - KindMPEG audio file - Size3419367 - Total Time94197 - Track Number11 - Track Count15 - Year1994 - Date Modified2008-12-24T03:33:12Z - Date Added2011-10-02T13:52:08Z - Bit Rate290 - Sample Rate44100 - CommentsA&M CD 500198 UPC: 7749-901744 YEAR: 1994 - Play Count2 - Play Date3414170871 - Play Date UTC2012-03-10T00:47:51Z - Persistent ID7608C2757BA47C0C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Superunknown%20(1994)/11%20-%20Kickstand.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4687 - - Track ID4687 - NamePretty Noose - ArtistSoundgarden - AlbumDown On The Upside - GenreRock - KindMPEG audio file - Size8764515 - Total Time251820 - Track Number1 - Track Count16 - Year1996 - Date Modified2008-12-24T03:40:43Z - Date Added2011-10-02T13:52:08Z - Bit Rate278 - Sample Rate44100 - Play Count2 - Play Date3414171122 - Play Date UTC2012-03-10T00:52:02Z - Persistent ID37FF563B2C481574 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Down%20On%20The%20Upside%20(1996)/01%20-%20Pretty%20Noose.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4689 - - Track ID4689 - NameRhinosaur - ArtistSoundgarden - AlbumDown On The Upside - GenreRock - KindMPEG audio file - Size6608748 - Total Time194481 - Track Number2 - Track Count16 - Year1996 - Date Modified2008-12-24T03:40:51Z - Date Added2011-10-02T13:52:08Z - Bit Rate271 - Sample Rate44100 - Play Count2 - Play Date3414171317 - Play Date UTC2012-03-10T00:55:17Z - Skip Count1 - Skip Date2012-08-09T22:17:45Z - Persistent ID3E63862AD8322D25 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Down%20On%20The%20Upside%20(1996)/02%20-%20Rhinosaur.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4691 - - Track ID4691 - NameZero Chance - ArtistSoundgarden - AlbumDown On The Upside - GenreRock - KindMPEG audio file - Size8533171 - Total Time258507 - Track Number3 - Track Count16 - Year1996 - Date Modified2008-12-24T03:41:01Z - Date Added2011-10-02T13:52:09Z - Bit Rate264 - Sample Rate44100 - Play Count2 - Play Date3424270939 - Play Date UTC2012-07-04T22:22:19Z - Skip Count1 - Skip Date2012-05-17T13:11:54Z - Persistent ID4A17A975A15B549C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Down%20On%20The%20Upside%20(1996)/03%20-%20Zero%20Chance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4693 - - Track ID4693 - NameDusty - ArtistSoundgarden - AlbumDown On The Upside - GenreRock - KindMPEG audio file - Size8947094 - Total Time274155 - Track Number4 - Track Count16 - Year1996 - Date Modified2008-12-24T03:41:11Z - Date Added2011-10-02T13:52:09Z - Bit Rate261 - Sample Rate44100 - Play Count3 - Play Date3424330930 - Play Date UTC2012-07-05T15:02:10Z - Persistent ID68BA6E9BC3EFD234 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Down%20On%20The%20Upside%20(1996)/04%20-%20Dusty.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4695 - - Track ID4695 - NameTy Cobb - ArtistSoundgarden - AlbumDown On The Upside - GenreRock - KindMPEG audio file - Size6764656 - Total Time185338 - Track Number5 - Track Count16 - Year1996 - Date Modified2008-12-24T03:41:18Z - Date Added2011-10-02T13:52:09Z - Bit Rate291 - Sample Rate44100 - Play Count2 - Play Date3414172034 - Play Date UTC2012-03-10T01:07:14Z - Skip Count1 - Skip Date2012-04-24T13:30:17Z - Persistent IDBD2D8DF4A66F6A9F - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Down%20On%20The%20Upside%20(1996)/05%20-%20Ty%20Cobb.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4697 - - Track ID4697 - NameBlow Up The Outside World - ArtistSoundgarden - AlbumDown On The Upside - GenreRock - KindMPEG audio file - Size11553623 - Total Time345835 - Track Number6 - Track Count16 - Year1996 - Date Modified2008-12-24T03:41:29Z - Date Added2011-10-02T13:52:09Z - Bit Rate267 - Sample Rate44100 - Play Count3 - Play Date3422252994 - Play Date UTC2012-06-11T13:49:54Z - Skip Count1 - Skip Date2012-08-03T17:35:38Z - Persistent ID8586BD832A688CAE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Down%20On%20The%20Upside%20(1996)/06%20-%20Blow%20Up%20The%20Outside%20World.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4699 - - Track ID4699 - NameBurden In My Hand - ArtistSoundgarden - AlbumDown On The Upside - GenreRock - KindMPEG audio file - Size10005899 - Total Time290115 - Track Number7 - Track Count16 - Year1996 - Date Modified2008-12-24T03:41:38Z - Date Added2011-10-02T13:52:09Z - Bit Rate275 - Sample Rate44100 - Play Count2 - Play Date3414172670 - Play Date UTC2012-03-10T01:17:50Z - Persistent IDA0472FA35AE7B8C5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Soundgarden/Down%20On%20The%20Upside%20(1996)/07%20-%20Burden%20In%20My%20Hand.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4701 - - Track ID4701 - NameFlight Response - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size7102299 - Total Time355108 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:09Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Skip Count2 - Skip Date2012-06-20T21:38:41Z - Persistent IDF1CC3E50AC3F0F4D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/01%20-%20Flight%20Response.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4703 - - Track ID4703 - NameThe Real - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size5179687 - Total Time258977 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:09Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Sort NameReal - Persistent IDBA2FD85335756469 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/02%20-%20The%20Real.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4705 - - Track ID4705 - NameEnemy - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size6232680 - Total Time311902 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:09Z - Bit Rate160 - Sample Rate44100 - Play Count1 - Play Date3419515076 - Play Date UTC2012-05-10T21:17:56Z - Skip Count1 - Skip Date2012-05-10T21:12:39Z - Persistent ID0FE9DC5A2E9DE2A1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/03%20-%20Enemy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4707 - - Track ID4707 - NameWeapon & The Wound - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size6900111 - Total Time344999 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Persistent ID05BD6C4FDEC6F5D0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/04%20-%20The%20Weapon%20and%20the%20Wound.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4709 - - Track ID4709 - NameSkeleton Key - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size3652568 - Total Time182622 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Persistent ID2F1448C03DAB98FC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/05%20-%20Skeleton%20Key.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4711 - - Track ID4711 - NameTake Me Back Then - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size5121695 - Total Time256078 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Skip Count1 - Skip Date2012-04-19T22:37:30Z - Persistent IDDD39D9C4AA3EF93A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/06%20-%20Take%20Me%20Back%20Then.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4713 - - Track ID4713 - NameBring Yourself - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size7107523 - Total Time355369 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Persistent ID5F9DE0D1E58C5B67 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/07%20-%20Bring%20Yourself.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4715 - - Track ID4715 - NameI Think - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size7028634 - Total Time351425 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Persistent ID92792CB3B31F96B0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/08%20-%20I%20Think.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4717 - - Track ID4717 - NameLongfellow - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size2325548 - Total Time116271 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Play Count1 - Play Date3424285236 - Play Date UTC2012-07-05T02:20:36Z - Skip Count1 - Skip Date2012-05-10T21:33:30Z - Persistent ID790D7BC256459AE9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/09%20-%20Longfellow.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4719 - - Track ID4719 - NameChange - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size2047605 - Total Time102373 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Skip Count2 - Skip Date2012-07-03T20:49:36Z - Persistent ID161BF45428F292FC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/10%20-%20Change.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4721 - - Track ID4721 - NamePhobics of Tragedy - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size4135834 - Total Time206785 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Persistent ID209403D262605DC5 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/11%20-%20Phobics%20of%20Tragedy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4723 - - Track ID4723 - NameNot The Same - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size5286266 - Total Time264306 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Play Count1 - Play Date3424330186 - Play Date UTC2012-07-05T14:49:46Z - Persistent IDEB5D54296E01EFFA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/12%20-%20Not%20the%20Same.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4725 - - Track ID4725 - NameProvider - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size7064683 - Total Time353227 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Persistent IDDF84C48451869F93 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/13%20-%20Provider.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4727 - - Track ID4727 - NameLast One - ArtistDays Of The New - AlbumDays Of The New 2 - GenreRock - KindMPEG audio file - Size5545923 - Total Time277289 - Year1999 - Date Modified2011-06-29T03:51:06Z - Date Added2011-10-02T13:52:10Z - Bit Rate160 - Sample Rate44100 - Comments-=Liquid Flesh Productions=- - Persistent ID4D07549CCC7E9724 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Days%20of%20the%20New/Days%20of%20the%20New%20-%202/14%20-%20Last%20One.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4729 - - Track ID4729 - NameLay Me Down - ArtistDirty Heads feat. Rome from Sublime - KindMPEG audio file - Size8525795 - Total Time213080 - Track Number14 - Year2010 - Date Modified2010-06-14T21:29:37Z - Date Added2011-10-02T13:52:10Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3414413892 - Play Date UTC2012-03-12T20:18:12Z - Persistent IDE9C3DF24B4EB641A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/14%20-%20Dirty%20Heads%20feat.%20Rome%20from%20Sublime%20-%20Lay%20Me%20Down.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4731 - - Track ID4731 - NameStrings Unlimited (Shelly Mix) - ArtistChiller Twist - GenreOther - KindMPEG audio file - Size22816436 - Total Time570305 - Date Modified2011-03-12T23:48:10Z - Date Added2011-10-02T13:52:10Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3414414462 - Play Date UTC2012-03-12T20:27:42Z - Skip Count2 - Skip Date2012-08-07T21:54:00Z - Persistent IDFD943002ECC566BB - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Chiller%20Twist%20-%20Strings%20Unlimited%20(Shelley%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4733 - - Track ID4733 - NameThis Night (Original Mix) - ArtistFilo & Peri Feat Audrey Gallagher - GenreTrance - KindMPEG audio file - Size19834697 - Total Time494733 - Year2010 - Date Modified2011-03-12T23:45:50Z - Date Added2011-10-02T13:52:10Z - Bit Rate320 - Sample Rate44100 - Commentswww.HouseZone.lt - Play Count2 - Play Date3414414956 - Play Date UTC2012-03-12T20:35:56Z - Artwork Count1 - Persistent IDBD9322FBB438BA05 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Filo%20&%20Peri%20feat.%20Audrey%20Gallagher%20-%20This%20Night%20(Original%20Mix)%20%5BHouseZone.lt%5D.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4735 - - Track ID4735 - NameWhen It's Over - ArtistSugar Ray - GenreRock - KindMPEG audio file - Size3524608 - Total Time220212 - Date Modified2011-03-01T22:19:40Z - Date Added2011-10-02T13:52:10Z - Bit Rate128 - Sample Rate44100 - Play Count2 - Play Date3414415176 - Play Date UTC2012-03-12T20:39:36Z - Persistent IDDC886F9F20A48D37 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Sugar%20Ray%20-%20When%20Its%20Over.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4737 - - Track ID4737 - NameBubbly - ArtistColbie Caillat - Album ArtistColbie Caillat - AlbumCoco - GenrePop - KindMPEG audio file - Size7917600 - Total Time197224 - Track Number4 - Year2007 - Date Modified2010-07-30T02:38:22Z - Date Added2011-10-02T13:52:10Z - Bit Rate320 - Sample Rate44100 - CommentsEven without MySpace, singer/songwriter Colbie Caillat is sure to have found an audience, but her oft-accessed page accelerated the process, mostly on the strength of the effervescent "Bubbly." On her first full-length album, the California native conjure - Play Count2 - Play Date3414415374 - Play Date UTC2012-03-12T20:42:54Z - Skip Count1 - Skip Date2012-06-29T22:25:48Z - Artwork Count1 - Persistent ID2AA1E7988FE65BB0 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Colbie%20Caillat%20-%20Bubbly.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4739 - - Track ID4739 - NameJust As Easy - ArtistBrennan Heart - Album ArtistBrennan Heart - AlbumMusical Impressions - GenreHardstyle - KindMPEG audio file - Size10133512 - Total Time252969 - Date Modified2010-07-22T18:10:46Z - Date Added2011-10-02T13:52:11Z - Bit Rate320 - Sample Rate44100 - Play Count3 - Play Date3414417806 - Play Date UTC2012-03-12T21:23:26Z - Skip Count1 - Skip Date2012-08-17T20:45:44Z - Artwork Count1 - Persistent ID79DAA9C414AC0E9E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/brennan%20heart%20-%20just%20as%20easy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4741 - - Track ID4741 - NameCalifornia Gurls - ArtistKaty Perry Ft. Snoop Dog - Album ArtistKaty Perry Ft. Snoop Dog - AlbumNederlandse Top 40 Nr.22-2010 - GenreTop 40 - KindMPEG audio file - Size9439053 - Total Time235937 - Track Number25 - Year2010 - Date Modified2010-07-16T17:03:51Z - Date Added2011-10-02T13:52:11Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3414418042 - Play Date UTC2012-03-12T21:27:22Z - Skip Count1 - Skip Date2011-10-02T14:57:21Z - Persistent IDB8469D0F04C0B68E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/Katy%20Perry%20Ft.%20Snoop%20Dog%20-%20California%20Gurls.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4743 - - Track ID4743 - NameBreakeven - ArtistThe Script - GenreRock, Pop, R&B - KindMPEG audio file - Size10465832 - Total Time261590 - Year2008 - Date Modified2010-06-22T14:29:14Z - Date Added2011-10-02T13:52:11Z - Bit Rate320 - Sample Rate44100 - CommentsDHZ - Play Count4 - Play Date3427301436 - Play Date UTC2012-08-09T00:10:36Z - Sort ArtistScript - Persistent IDA20631F0D3C955DE - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/The%20Script%20-%20Breakeven.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4745 - - Track ID4745 - NameSummer in the City - ArtistThe Lovin' Spoonful - Album ArtistThe Lovin' Spoonful - ComposerJohn Sebastian/Mark Sebastian/Steve Boone - AlbumAnthology - GenrePop - KindMPEG audio file - Size3929130 - Total Time163761 - Track Number11 - Year1990 - Date Modified2010-07-06T17:08:54Z - Date Added2011-10-02T13:52:11Z - Bit Rate192 - Sample Rate44100 - Sort Album ArtistLovin' Spoonful - Sort ArtistLovin' Spoonful - Persistent ID6F5F3893C338E574 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/11%20Summer%20in%20the%20City.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4747 - - Track ID4747 - NameGloria - ArtistThe doors - AlbumSan Fransisco 1967 - GenreRock - KindMPEG audio file - Size8197580 - Total Time364146 - Track Number11 - Year1967 - Date Modified2010-04-16T14:30:30Z - Date Added2011-10-02T13:52:11Z - Bit Rate179 - Sample Rate44100 - Sort Artistdoors - Persistent ID4EE647C5179E288D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/the%20doors%20-%2011%20gloria.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4749 - - Track ID4749 - NameAt The Speed Of A Yellow Bullet - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size5392717 - Total Time134922 - Track Number1 - Track Count11 - Year2004 - Date Modified2011-06-29T03:46:12Z - Date Added2011-10-02T13:52:11Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3392150813 - Play Date UTC2011-06-29T04:06:53Z - Persistent IDAF35452261231BF7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/01%20-%20at%20the%20speed%20of%20a%20yellow%20bullet.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4751 - - Track ID4751 - NameBrooklyn Is Burning - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size9394357 - Total Time235049 - Track Number2 - Track Count11 - Year2004 - Date Modified2011-06-29T03:47:12Z - Date Added2011-10-02T13:52:12Z - Bit Rate320 - Sample Rate44100 - Play Count3 - Play Date3421216199 - Play Date UTC2012-05-30T13:49:59Z - Skip Count1 - Skip Date2012-08-17T12:46:50Z - Persistent ID2B7342237E994178 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/02%20-%20brooklyn%20is%20burning.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4753 - - Track ID4753 - NameBeating Heart Baby - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size8144688 - Total Time203781 - Track Number3 - Track Count11 - Year2004 - Date Modified2011-06-29T03:48:03Z - Date Added2011-10-02T13:52:13Z - Bit Rate320 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-20T13:14:58Z - Persistent ID6C454737C22AEDBD - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/03%20-%20beating%20heart%20baby.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4755 - - Track ID4755 - NamePlease Please Please (Young Hollywood) - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size9988412 - Total Time249913 - Track Number4 - Track Count11 - Year2004 - Date Modified2011-06-29T03:49:05Z - Date Added2011-10-02T13:52:14Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-10T11:35:22Z - Persistent ID2D48FBF2297525AA - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/04%20-%20please%20please%20please%20(young%20hollywood).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4757 - - Track ID4757 - NameKing Caesar - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size9387041 - Total Time234866 - Track Number5 - Track Count11 - Year2004 - Date Modified2011-06-29T03:50:04Z - Date Added2011-10-02T13:52:15Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2012-04-23T11:31:09Z - Persistent ID1D472531B093F12C - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/05%20-%20king%20caesar.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4759 - - Track ID4759 - NameThe Razor - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size8426559 - Total Time210834 - Track Number6 - Track Count11 - Year2004 - Date Modified2011-06-29T03:50:57Z - Date Added2011-10-02T13:52:16Z - Bit Rate320 - Sample Rate44100 - Sort NameRazor - Persistent ID48EAC6B9F6C839C1 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/06%20-%20the%20razor.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4761 - - Track ID4761 - NameDance Party Plus - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size8061166 - Total Time201691 - Track Number7 - Track Count11 - Year2004 - Date Modified2011-06-29T03:51:59Z - Date Added2011-10-02T13:52:18Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-17T12:56:50Z - Persistent IDC0DF01B1D5CD0CCF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/07%20-%20dance%20party%20plus.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4763 - - Track ID4763 - NameDisco Hades II - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size9493532 - Total Time237531 - Track Number8 - Track Count11 - Year2004 - Date Modified2011-06-29T03:53:08Z - Date Added2011-10-02T13:52:18Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2012-04-24T21:37:47Z - Persistent IDFAC4F127F22EAD5A - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/08%20-%20disco%20hades%20ii.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4765 - - Track ID4765 - NameSolid Gold Telephone - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size5742446 - Total Time143673 - Track Number9 - Track Count11 - Year2004 - Date Modified2011-06-29T03:54:00Z - Date Added2011-10-02T13:52:20Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2012-04-23T11:41:14Z - Persistent IDAC46D626DAEA827E - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/09%20-%20solid%20gold%20telephone.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4767 - - Track ID4767 - NameHead Automatica Soundsystem - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size8631202 - Total Time215954 - Track Number10 - Track Count11 - Year2004 - Date Modified2011-06-29T03:58:10Z - Date Added2011-10-02T13:52:20Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-17T12:56:19Z - Persistent IDAE5498E396B4D5BC - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/10%20-%20head%20automatica%20soundsystem.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4769 - - Track ID4769 - NameI Shot William H. Macy - ArtistHead Automatica - AlbumDecadence - GenreDisco Punk - KindMPEG audio file - Size7883693 - Total Time197250 - Track Number11 - Track Count11 - Year2004 - Date Modified2011-06-29T03:57:00Z - Date Added2011-10-02T13:52:21Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3424321502 - Play Date UTC2012-07-05T12:25:02Z - Persistent IDFDB6B3E5F55B72F3 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Head%20Automatica/Head%20Automatica%20-%20Decadence%20-%202004/11%20-%20i%20shot%20william%20h.%20macy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4771 - - Track ID4771 - NameTuesday Afternoon (Forever Afternoon) - ArtistMoody Blues - AlbumThe Very Best Of - GenreRock - KindMPEG audio file - Size6403725 - Total Time250331 - Track Number2 - Year1996 - Date Modified2009-11-28T02:10:04Z - Date Added2011-10-02T13:52:30Z - Bit Rate204 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-17T23:30:57Z - Sort AlbumVery Best Of - Persistent IDEFFB796180286F84 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/The%20Moody%20Blues%20-%20The%20Best%20Of%20The%20Moody%20Blues%20(1997)/02%20Tuesday%20afternoon.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4773 - - Track ID4773 - NameNights In White Satin - ArtistMoody Blues - AlbumThe Very Best Of - GenreRock - KindMPEG audio file - Size7135799 - Total Time265926 - Track Number3 - Year1996 - Date Modified2009-11-28T02:10:10Z - Date Added2011-10-02T13:52:30Z - Bit Rate214 - Sample Rate44100 - Skip Count2 - Skip Date2012-08-10T20:22:35Z - Sort AlbumVery Best Of - Persistent IDDEFA80A99BE2CF40 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/The%20Moody%20Blues%20-%20The%20Best%20Of%20The%20Moody%20Blues%20(1997)/03%20Nights%20in%20white%20satin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4775 - - Track ID4775 - NameQuestion - ArtistMoody Blues - AlbumThe Very Best Of - GenreRock - KindMPEG audio file - Size9052607 - Total Time346305 - Track Number6 - Year1996 - Date Modified2009-11-28T02:10:28Z - Date Added2011-10-02T13:52:30Z - Bit Rate209 - Sample Rate44100 - Play Count1 - Play Date3422366340 - Play Date UTC2012-06-12T21:19:00Z - Skip Count1 - Skip Date2012-06-28T16:43:24Z - Sort AlbumVery Best Of - Persistent ID5BBC17299A17ED3D - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/The%20Moody%20Blues%20-%20The%20Best%20Of%20The%20Moody%20Blues%20(1997)/06%20Question.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4777 - - Track ID4777 - NameIsn't Life Strange - ArtistMoody Blues - AlbumThe Very Best Of - GenreRock - KindMPEG audio file - Size10910454 - Total Time365453 - Track Number8 - Year1996 - Date Modified2009-11-28T02:10:41Z - Date Added2011-10-02T13:52:30Z - Bit Rate238 - Sample Rate44100 - Sort AlbumVery Best Of - Persistent IDD9B939D0A81171B7 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/The%20Moody%20Blues%20-%20The%20Best%20Of%20The%20Moody%20Blues%20(1997)/08%20Isn't%20life%20strange.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4779 - - Track ID4779 - NameI'm Just A Singer (In A Rock And Roll Band) - ArtistMoody Blues - AlbumThe Very Best Of - GenreRock - KindMPEG audio file - Size6663794 - Total Time255869 - Track Number9 - Year1996 - Date Modified2009-11-28T02:10:46Z - Date Added2011-10-02T13:52:30Z - Bit Rate208 - Sample Rate44100 - Play Count2 - Play Date3426430542 - Play Date UTC2012-07-29T22:15:42Z - Skip Count1 - Skip Date2012-06-12T17:04:29Z - Sort AlbumVery Best Of - Persistent IDC8B0B35728E27AE2 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/The%20Moody%20Blues%20-%20The%20Best%20Of%20The%20Moody%20Blues%20(1997)/09%20I'm%20just%20a%20singer.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4781 - - Track ID4781 - NameThe Voice - ArtistMoody Blues - AlbumThe Very Best Of - GenreRock - KindMPEG audio file - Size8285033 - Total Time311771 - Track Number13 - Year1996 - Date Modified2009-11-28T02:11:10Z - Date Added2011-10-02T13:52:30Z - Bit Rate212 - Sample Rate44100 - Play Count1 - Play Date3424189526 - Play Date UTC2012-07-03T23:45:26Z - Sort AlbumVery Best Of - Sort NameVoice - Persistent IDFE5E6337693B66B9 - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/The%20Moody%20Blues%20-%20The%20Best%20Of%20The%20Moody%20Blues%20(1997)/13%20The%20voice.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4783 - - Track ID4783 - NameYour Wildest Dreams - ArtistMoody Blues - AlbumThe Very Best Of - GenreRock - KindMPEG audio file - Size7650561 - Total Time290455 - Track Number16 - Year1996 - Date Modified2009-11-28T02:11:27Z - Date Added2011-10-02T13:52:30Z - Bit Rate210 - Sample Rate44100 - Sort AlbumVery Best Of - Persistent ID47BCFD0476AFD6DF - Track TypeFile - Locationfile://localhost/C:/Users/jcaron/Music/MP3s/Incoming/The%20Moody%20Blues%20-%20The%20Best%20Of%20The%20Moody%20Blues%20(1997)/16%20Your%20wildest%20dreams.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4785 - - Track ID4785 - NameThe Sex Is Good - ArtistSaving Abel - AlbumMiss America - GenreRock - KindMPEG audio file - Size5548214 - Total Time211487 - Track Number4 - Track Count11 - Year2010 - Date Modified2011-04-07T02:27:43Z - Date Added2012-03-09T21:36:11Z - Bit Rate207 - Sample Rate44100 - Commentsanother djsforfun exclusive!!! - -Saving Abel has emerged in recent years as one of the most successful rock bands in the United States. The band is widely known via multi-format hits at radio, and has taken the stage at hundreds of venues across the U.S. - Play Count2 - Play Date3419919394 - Play Date UTC2012-05-15T13:36:34Z - Artwork Count1 - Sort NameSex Is Good - Persistent IDEF29F85923DB06A2 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/saving_abel-miss_america-(retail)-2010-som/saving_abel-04-the_sex_is_good-som.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4787 - - Track ID4787 - NameWonderwall - ArtistPaul Anka - Album ArtistPaul Anka - AlbumRock Swings - GenreSwing - KindMPEG audio file - Size5228672 - Total Time217808 - Track Number4 - Year2005 - Date Modified2011-10-08T15:09:26Z - Date Added2012-03-09T21:39:32Z - Bit Rate192 - Sample Rate44100 - Play Count3 - Play Date3426409191 - Play Date UTC2012-07-29T16:19:51Z - Persistent ID9431BBA9BC1E0A62 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Paul%20Anka%20-%20Wonderwall.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4789 - - Track ID4789 - NameWherever You Will Go - ArtistThe Calling - AlbumCamino Palmero - GenreRock - KindMPEG audio file - Size8345899 - Total Time208640 - Track Number3 - Year2001 - Date Modified2011-11-11T18:13:53Z - Date Added2012-03-09T21:39:35Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3424214952 - Play Date UTC2012-07-04T06:49:12Z - Skip Count1 - Skip Date2012-07-29T16:19:53Z - Sort ArtistCalling - Persistent ID08EF45CB9ED8D0C1 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/11.The%20Calling%20-%20Wherever%20You%20Will%20Go.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4791 - - Track ID4791 - NameChanging - ArtistThe Airborne Toxic Event - Album ArtistThe Airborne Toxic Event - AlbumAll At Once - KindMPEG audio file - Size6390755 - Total Time201665 - Track Number3 - Track Count11 - Year2011 - Date Modified2011-08-12T02:27:51Z - Date Added2012-03-09T21:40:12Z - Bit Rate253 - Sample Rate44100 - Play Count1 - Play Date3414419143 - Play Date UTC2012-03-12T21:45:43Z - Sort Album ArtistAirborne Toxic Event - Sort ArtistAirborne Toxic Event - Persistent ID1D98CCF1CEE6F059 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/03-the_airborne_toxic_event-changing.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4793 - - Track ID4793 - NameSeparate Your Senses (Deepack Remix) - ArtistPublic Domain Soundsystem - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size15109713 - Total Time377678 - Track Number1 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:11Z - Date Added2012-03-09T21:59:45Z - Bit Rate320 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-03T20:51:32Z - Persistent ID72C7C436C68E48B2 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/01-public_domain_soundsystem-separate_your_senses_(deepack_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4795 - - Track ID4795 - NameR U Ready?? (Original Mix) - ArtistKutski & Al Storm - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size16230871 - Total Time405707 - Track Number2 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:13Z - Date Added2012-03-09T21:59:45Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-09T11:23:37Z - Persistent ID3597378123AAACE0 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/02-kutski_and_al_storm-r_u_ready_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4797 - - Track ID4797 - NameEscape Anthem 2011 (Original Mix) - ArtistCally & Juice - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size15429437 - Total Time385671 - Track Number3 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:05Z - Date Added2012-03-09T21:59:45Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3414174614 - Play Date UTC2012-03-10T01:50:14Z - Skip Count3 - Skip Date2012-06-11T21:48:13Z - Persistent IDA2307DF8EA95B126 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/03-cally_and_juice-escape_anthem_2011_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4799 - - Track ID4799 - NameSilence (Original Mix) - ArtistRaybold - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size18466939 - Total Time461609 - Track Number4 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:14Z - Date Added2012-03-09T21:59:45Z - Bit Rate320 - Sample Rate44100 - Skip Count3 - Skip Date2012-07-16T13:32:11Z - Persistent ID823FC479BA447470 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/04-raybold-silence_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4801 - - Track ID4801 - NameMockery-(Original Mix) - ArtistDizzy Plant - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size14374077 - Total Time359288 - Track Number5 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:14Z - Date Added2012-03-09T21:59:45Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3424260767 - Play Date UTC2012-07-04T19:32:47Z - Skip Count3 - Skip Date2012-06-12T13:26:44Z - Persistent ID54EFAE8A681501B0 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/05-dizzy_plant-mockery-(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4803 - - Track ID4803 - NameTravel Without Moving (Original Mix) - ArtistThe Reactorzz - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size10887269 - Total Time272117 - Track Number6 - Track Count20 - Year2011 - Date Modified2011-11-11T06:40:43Z - Date Added2012-03-09T21:59:45Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3414174955 - Play Date UTC2012-03-10T01:55:55Z - Skip Count2 - Skip Date2012-06-29T22:30:34Z - Sort ArtistReactorzz - Persistent IDBACB0BCE43A63715 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/06-the_reactorzz-travel_without_moving_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4805 - - Track ID4805 - NameDrug Abuse (AJ Busta On Dope Remix) - ArtistEd E.T & D.T.R - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size16425228 - Total Time410566 - Track Number7 - Track Count20 - Year2011 - Date Modified2011-11-11T06:40:21Z - Date Added2012-03-09T21:59:45Z - Bit Rate320 - Sample Rate44100 - Persistent ID743FBE850A24EC1C - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/07-ed_e.t_and_d.t.r-drug_abuse_(aj_busta_on_dope_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4807 - - Track ID4807 - NameIt's Time! (Butterfly Effectz Remix) - ArtistTrance Generator Presents Manon - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size15237197 - Total Time380865 - Track Number8 - Track Count20 - Year2011 - Date Modified2011-11-11T06:40:37Z - Date Added2012-03-09T21:59:45Z - Bit Rate320 - Sample Rate44100 - Skip Count2 - Skip Date2012-06-08T21:54:12Z - Persistent ID929B871DF7C72D7B - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/08-trance_generator_presents_manon-its_time_(butterfly_effectz_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4809 - - Track ID4809 - NameToms Diner (Brian M & Mcbun Remix) - ArtistAlex Kidd vs Kidd Kaos - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size17405349 - Total Time435069 - Track Number9 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:16Z - Date Added2012-03-09T21:59:45Z - Bit Rate320 - Sample Rate44100 - Persistent IDC4FEDCE3139E46F8 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/09-alex_kidd_vs_kidd_kaos-toms_diner_(brian_m_and_mcbun_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4811 - - Track ID4811 - NameBest Shot (Original Mix) - ArtistHoodzie - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size13938354 - Total Time348395 - Track Number10 - Track Count20 - Year2011 - Date Modified2011-11-11T06:40:58Z - Date Added2012-03-09T21:59:45Z - Bit Rate320 - Sample Rate44100 - Persistent ID39AA148157B123C8 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/10-hoodzie-best_shot_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4813 - - Track ID4813 - NameWho The Fuk (Original Mix) - ArtistBassbutcherz - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size12484908 - Total Time312058 - Track Number11 - Track Count20 - Year2011 - Date Modified2011-11-11T06:40:54Z - Date Added2012-03-09T21:59:46Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3424251741 - Play Date UTC2012-07-04T17:02:21Z - Persistent ID17B25F7E068716D8 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/11-bassbutcherz-who_the_fuk_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4815 - - Track ID4815 - NameCome On People (Original Mix) - ArtistFlavi J - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size14053298 - Total Time351268 - Track Number12 - Track Count20 - Year2011 - Date Modified2011-11-11T06:40:50Z - Date Added2012-03-09T21:59:46Z - Bit Rate320 - Sample Rate44100 - Persistent ID24C66458585C32C5 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/12-flavi_j-come_on_people_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4817 - - Track ID4817 - NameTurn The Music Up (Original Mix) - ArtistEd E.T & D.T.R - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size16228785 - Total Time405655 - Track Number13 - Track Count20 - Year2011 - Date Modified2011-11-11T06:40:29Z - Date Added2012-03-09T21:59:46Z - Bit Rate320 - Sample Rate44100 - Persistent ID1DAABB4A63D5D048 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/13-ed_e.t_and_d.t.r-turn_the_music_up_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4819 - - Track ID4819 - NameEnlightenment [The Future Is Now] (Original Mix) - ArtistAndyb - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size13025135 - Total Time325564 - Track Number14 - Track Count20 - Year2011 - Date Modified2011-11-11T06:40:52Z - Date Added2012-03-09T21:59:46Z - Bit Rate320 - Sample Rate44100 - Persistent ID11C996E404E2F9E7 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/14-andyb-enlightenment_(the_future_is_now)_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4821 - - Track ID4821 - NameGo Fuck Yourself (Soundblast Remix) - ArtistCrasherz - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size15248668 - Total Time381152 - Track Number15 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:08Z - Date Added2012-03-09T21:59:46Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2012-05-23T18:33:10Z - Persistent ID1E72A053C9E99CD1 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/15-crasherz-go_fuck_yourself_(soundblast_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4823 - - Track ID4823 - NamePounding Dark Bass (Original Mix) - ArtistJoey Riot - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size9476650 - Total Time236852 - Track Number16 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:17Z - Date Added2012-03-09T21:59:46Z - Bit Rate320 - Sample Rate44100 - Persistent IDD97539B88990C5A7 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/16-joey_riot-pounding_dark_bass_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4825 - - Track ID4825 - NameDirty Dayz (Klubfiller Hardcore Mix) - ArtistAnne Savage & Klubfiller - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size10210187 - Total Time255190 - Track Number17 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:01Z - Date Added2012-03-09T21:59:46Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3424300848 - Play Date UTC2012-07-05T06:40:48Z - Persistent IDA581F8FDC720DDA2 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/17-anne_savage_and_klubfiller-dirty_dayz_(klubfiller_hardcore_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4827 - - Track ID4827 - NamePumpin' Shit (Swankie Dj Kashi Remix) - ArtistDoctor V. & Mister L. - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size17188013 - Total Time429635 - Track Number18 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:04Z - Date Added2012-03-09T21:59:46Z - Bit Rate320 - Sample Rate44100 - Persistent ID9ED423D0A507BE07 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/18-doctor_v._and_mister_l.-pumpin_shit_(swankie_dj_kashi_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4829 - - Track ID4829 - NameStanding In Line (Original Mix) - ArtistHardstyleKid - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size16914235 - Total Time422791 - Track Number19 - Track Count20 - Year2011 - Date Modified2011-11-11T06:41:12Z - Date Added2012-03-09T21:59:46Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-16T16:42:02Z - Persistent IDAA6CBED99EE81BE5 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/19-hardstylekid-standing_in_line_(original_mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4831 - - Track ID4831 - NamePure xTc (Hoodzie Remix) - ArtistSliktrax & Periferal feat Freda J - AlbumUltimate Hardstyle Vol 1 - GenreTrance - KindMPEG audio file - Size14800421 - Total Time369946 - Track Number20 - Track Count20 - Year2011 - Date Modified2011-11-11T06:40:40Z - Date Added2012-03-09T21:59:46Z - Bit Rate320 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-09T22:17:17Z - Persistent IDAE04D0845976F1A2 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/VA%20-%20Ultimate%20Hardstyle%20Vol.%201%20(2011)/VA-Ultimate_Hardstyle_Vol_1-LWUHS01-WEB-2011-tmnd/20-sliktrax_and_periferal_feat_freda_j-pure_xtc_(hoodzie_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4833 - - Track ID4833 - NameBoom Boom Pau - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size2012721 - Total Time80509 - Track Number1 - Track Count13 - Year2009 - Date Modified2010-06-03T07:39:12Z - Date Added2012-03-09T22:09:34Z - Bit Rate198 - Sample Rate44100 - Persistent ID9CD7BFED241AAA22 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/01-Boom_Boom_Pau.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4835 - - Track ID4835 - NameFrom Honor Roll To Out Of Control - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size3135828 - Total Time114625 - Track Number2 - Track Count13 - Year2009 - Date Modified2010-06-03T07:39:00Z - Date Added2012-03-09T22:09:34Z - Bit Rate218 - Sample Rate44100 - Play Count2 - Play Date3421301553 - Play Date UTC2012-05-31T13:32:33Z - Persistent IDBCDC7C8DC28E9527 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/02-From_Honor_Roll_To_Out_Of_Control.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4837 - - Track ID4837 - NameGucci Loafers (Our First Paycheck) - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size3327709 - Total Time131683 - Track Number3 - Track Count13 - Year2009 - Date Modified2010-06-03T07:38:42Z - Date Added2012-03-09T22:09:34Z - Bit Rate201 - Sample Rate44100 - Play Count1 - Play Date3426687195 - Play Date UTC2012-08-01T21:33:15Z - Skip Count2 - Skip Date2012-07-10T12:45:14Z - Persistent ID4E9D40EF966C7BEF - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/03-Gucci_Loafers_(Our_First_Paycheck).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4839 - - Track ID4839 - NameNPH FTW - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size2359193 - Total Time89965 - Track Number4 - Track Count13 - Year2009 - Date Modified2010-06-03T07:38:22Z - Date Added2012-03-09T22:09:34Z - Bit Rate208 - Sample Rate44100 - Play Count2 - Play Date3424286481 - Play Date UTC2012-07-05T02:41:21Z - Persistent ID8822CA43E98BBBA2 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/04-NPH_FTW.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4841 - - Track ID4841 - Name@LaurenConrad Get Us On The Hills! - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size5271735 - Total Time212584 - Track Number5 - Track Count13 - Year2009 - Date Modified2010-06-03T07:39:42Z - Date Added2012-03-09T22:09:34Z - Bit Rate197 - Sample Rate44100 - Play Count1 - Play Date3424193312 - Play Date UTC2012-07-04T00:48:32Z - Skip Count1 - Skip Date2012-06-12T13:29:08Z - Persistent IDC0D34E61FD7B431F - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/05-@LaurenConrad_Get_Us_On_The_Hills!.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4843 - - Track ID4843 - NameAdler Girl Pt. II (I Can Change!) - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size5883197 - Total Time234004 - Track Number6 - Track Count13 - Year2009 - Date Modified2010-06-03T07:38:06Z - Date Added2012-03-09T22:09:34Z - Bit Rate200 - Sample Rate44100 - Skip Count2 - Skip Date2012-08-07T21:45:15Z - Persistent ID171CA803C05FF0E6 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/06-Adler_Girl_Pt._II_(I_Can_Change!).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4845 - - Track ID4845 - NameThis Is Definitely Not The 405 - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size3842074 - Total Time146938 - Track Number7 - Track Count13 - Year2009 - Date Modified2010-06-03T07:37:32Z - Date Added2012-03-09T22:09:34Z - Bit Rate208 - Sample Rate44100 - Skip Count2 - Skip Date2012-05-23T13:39:46Z - Persistent ID23B3F8D336C13864 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/07-This_Is_Definitely_Not_The_405.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4847 - - Track ID4847 - NameJaein Off On My Day Off - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size3100530 - Total Time119693 - Track Number8 - Track Count13 - Year2009 - Date Modified2010-06-03T07:37:00Z - Date Added2012-03-09T22:09:34Z - Bit Rate206 - Sample Rate44100 - Skip Count4 - Skip Date2012-07-29T20:39:50Z - Persistent ID2A0AA60198654D1F - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/08-Jaein_Off_On_My_Day_Off.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4849 - - Track ID4849 - NameKisses & Thugs - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size4342701 - Total Time176483 - Track Number9 - Track Count13 - Year2009 - Date Modified2010-06-03T07:37:02Z - Date Added2012-03-09T22:09:34Z - Bit Rate196 - Sample Rate44100 - Persistent ID850A2F4AEA9FBB46 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/09-Kisses_Thugs.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4851 - - Track ID4851 - NameStill Bleeding - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size6787048 - Total Time255111 - Track Number10 - Track Count13 - Year2009 - Date Modified2010-06-03T07:36:40Z - Date Added2012-03-09T22:09:34Z - Bit Rate212 - Sample Rate44100 - Skip Count1 - Skip Date2012-06-11T17:08:33Z - Persistent ID7C225E037BE51E7B - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/10-Still_Bleeding.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4853 - - Track ID4853 - NameFixies & Ferraris - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size2093705 - Total Time87902 - Track Number11 - Track Count13 - Year2009 - Date Modified2010-06-03T07:35:50Z - Date Added2012-03-09T22:09:34Z - Bit Rate189 - Sample Rate44100 - Persistent ID91AF4FCFEC922BD3 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/11-Fixies_Ferraris.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4855 - - Track ID4855 - NameLivin The Dream (I'm On A Float) - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size5214884 - Total Time191843 - Track Number12 - Track Count13 - Year2009 - Date Modified2010-06-03T07:36:18Z - Date Added2012-03-09T22:09:34Z - Bit Rate217 - Sample Rate44100 - Skip Count2 - Skip Date2012-08-16T16:41:14Z - Persistent IDDFD16F780CB77A3E - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/12-Livin_The_Dream_(I'm_On_A_Float).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4857 - - Track ID4857 - NameBruce Willis Was Dead The Whole Time - ArtistSuper Mash Bros. - AlbumAll About The Scrilions - GenreStill Awesome - KindMPEG audio file - Size2747277 - Total Time118909 - Track Number13 - Track Count13 - Year2009 - Date Modified2010-06-03T07:35:36Z - Date Added2012-03-09T22:09:34Z - Bit Rate184 - Sample Rate44100 - Skip Count2 - Skip Date2012-07-26T20:50:30Z - Persistent IDDB7D9D35970E1EDF - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-all-about-the-scrillions/all-about-the-scrillions/13-Bruce_Willis_Was_Dead_The_Whole_Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4859 - - Track ID4859 - NameOh No - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size13850942 - Total Time339095 - Track Number1 - Track Count12 - Year2010 - Date Modified2010-11-15T04:19:26Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Play Count1 - Play Date3418219903 - Play Date UTC2012-04-25T21:31:43Z - Artwork Count1 - Persistent ID327D40CF0022A4F2 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/01%20-%20Girl%20Talk%20-%20Oh%20No.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4861 - - Track ID4861 - NameLet It Out - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size15863416 - Total Time389407 - Track Number2 - Track Count12 - Year2010 - Date Modified2010-11-15T04:19:26Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Artwork Count1 - Persistent ID235A39B26FE759C2 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/02%20-%20Girl%20Talk%20-%20Let%20It%20Out.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4863 - - Track ID4863 - NameThat's Right - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size13187432 - Total Time322507 - Track Number3 - Track Count12 - Year2010 - Date Modified2010-11-15T04:19:26Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Skip Count1 - Skip Date2012-04-25T21:35:15Z - Artwork Count1 - Persistent IDF69CE08F1B6630D5 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/03%20-%20Girl%20Talk%20-%20That's%20Right.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4865 - - Track ID4865 - NameJump on Stage - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size15583383 - Total Time382406 - Track Number4 - Track Count12 - Year2010 - Date Modified2010-11-15T04:19:26Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Artwork Count1 - Persistent ID8758E62F9DFA236B - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/04%20-%20Girl%20Talk%20-%20Jump%20on%20Stage.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4867 - - Track ID4867 - NameThis Is the Remix - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size14769408 - Total Time362057 - Track Number5 - Track Count12 - Year2010 - Date Modified2010-11-15T04:19:26Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Artwork Count1 - Persistent ID19E3ECE74D4E779C - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/05%20-%20Girl%20Talk%20-%20This%20Is%20the%20Remix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4869 - - Track ID4869 - NameOn and On - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size12652444 - Total Time309133 - Track Number6 - Track Count12 - Year2010 - Date Modified2010-11-15T04:19:26Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Artwork Count1 - Persistent ID648BE2A40849BAC7 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/06%20-%20Girl%20Talk%20-%20On%20and%20On.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4871 - - Track ID4871 - NameGet It Get It - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size13610599 - Total Time333087 - Track Number7 - Track Count12 - Year2010 - Date Modified2010-11-15T08:49:56Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Artwork Count1 - Persistent IDFC15BBD84F0E3DDB - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/07%20-%20Girl%20Talk%20-%20Get%20It%20Get%20It.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4873 - - Track ID4873 - NameDown for the Count - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size16196721 - Total Time397740 - Track Number8 - Track Count12 - Year2010 - Date Modified2010-11-15T08:49:56Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Artwork Count1 - Persistent IDEE7C61AB59069461 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/08%20-%20Girl%20Talk%20-%20Down%20for%20the%20Count.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4875 - - Track ID4875 - NameMake Me Wanna - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size15616820 - Total Time383242 - Track Number9 - Track Count12 - Year2010 - Date Modified2010-11-15T04:19:26Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Artwork Count1 - Persistent ID135E280954F45CD7 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/09%20-%20Girl%20Talk%20-%20Make%20Me%20Wanna.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4877 - - Track ID4877 - NameSteady Shock - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size14203073 - Total Time347898 - Track Number10 - Track Count12 - Year2010 - Date Modified2010-11-15T04:19:26Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Artwork Count1 - Persistent IDAC5A9A335910260E - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/10%20-%20Girl%20Talk%20-%20Steady%20Shock.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4879 - - Track ID4879 - NameTriple Double - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size15804902 - Total Time387944 - Track Number11 - Track Count12 - Year2010 - Date Modified2010-11-15T04:19:26Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Artwork Count1 - Persistent ID0C5C813994529314 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/11%20-%20Girl%20Talk%20-%20Triple%20Double.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4881 - - Track ID4881 - NameEvery Day - ArtistGirl Talk - AlbumAll Day - GenreGirl Talk - KindMPEG audio file - Size12719318 - Total Time310804 - Track Number12 - Track Count12 - Year2010 - Date Modified2010-11-15T04:19:26Z - Date Added2012-03-09T22:11:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - CommentsCatalog # IA123. Released by Illegal Art on November 15, 2010. - Artwork Count1 - Persistent IDB20B3A853B95F750 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Girl%20Talk%20-%20All%20Day%20(IA123)/12%20-%20Girl%20Talk%20-%20Every%20Day.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4883 - - Track ID4883 - NameGimme More Rock Bitch - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size2335065 - Total Time97201 - Track Number1 - Track Count12 - Year2008 - Date Modified2010-06-03T07:43:00Z - Date Added2012-03-09T22:12:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent ID009308A37F195538 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/01-Gimme_More_Rock_Bitch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4885 - - Track ID4885 - NameMonsieur Fischel, La Tour Eiffel - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size2583970 - Total Time107572 - Track Number2 - Track Count12 - Year2008 - Date Modified2010-06-03T07:42:44Z - Date Added2012-03-09T22:12:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent ID01A395E9B02BFD54 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/02-Monsieur_Fischel_La_Tour_Eiffel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4887 - - Track ID4887 - NameI'm Onto Something (That's What She Said) - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size3940676 - Total Time164101 - Track Number3 - Track Count12 - Year2008 - Date Modified2010-06-03T07:42:32Z - Date Added2012-03-09T22:12:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent ID11B8E40B7DE4FF81 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/03-I'm_Onto_Something_(That's_What_She_Said).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4889 - - Track ID4889 - NameBroseidon, Lord Of The Brocean - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size3130659 - Total Time130351 - Track Number4 - Track Count12 - Year2008 - Date Modified2010-06-03T07:42:50Z - Date Added2012-03-09T22:12:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent IDC7D5F0D405B54A47 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/04-Broseidon_Lord_Of_The_Brocean.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4891 - - Track ID4891 - NameI Fucking Bleed Purple And Gold - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size2821579 - Total Time117472 - Track Number5 - Track Count12 - Year2008 - Date Modified2010-06-03T07:41:34Z - Date Added2012-03-09T22:12:29Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent ID7C607A06CF0B1A32 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/05-I_Fucking_Bleed_Purple_And_Gold.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4893 - - Track ID4893 - NameStop That Booty (Here We Come) - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size3484252 - Total Time145084 - Track Number6 - Track Count12 - Year2008 - Date Modified2010-06-03T07:42:06Z - Date Added2012-03-09T22:12:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent IDF3712416A721DF40 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/06-Stop_That_Booty_(Here_We_Come).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4895 - - Track ID4895 - NameFuture Dads (Platinum Edition) - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size4087994 - Total Time170240 - Track Number7 - Track Count12 - Year2008 - Date Modified2010-06-03T07:41:18Z - Date Added2012-03-09T22:12:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent IDD3804C8DC3FAF38E - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/07-Future_Dads_(Platinum_Edition).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4897 - - Track ID4897 - NameI'm An Adler Girl - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size4093624 - Total Time170475 - Track Number8 - Track Count12 - Year2008 - Date Modified2010-06-03T07:41:08Z - Date Added2012-03-09T22:12:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent ID07F98AF71597AB94 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/08-I'm_An_Adler_Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4899 - - Track ID4899 - NameMeet Me At Fantasy Island - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size4427163 - Total Time184372 - Track Number9 - Track Count12 - Year2008 - Date Modified2010-06-03T07:40:32Z - Date Added2012-03-09T22:12:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent IDBFCA4E775F7DDE20 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/09-Meet_Me_At_Fantasy_Island.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4901 - - Track ID4901 - NameDeuteronomy Blunts - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size2362021 - Total Time98324 - Track Number10 - Track Count12 - Year2008 - Date Modified2010-06-03T07:40:46Z - Date Added2012-03-09T22:12:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent ID5B86EED4F1A90817 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/10-Deuteronomy_Blunts.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4903 - - Track ID4903 - NameD.G.A.F.L.Y.F - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size4514297 - Total Time188003 - Track Number11 - Track Count12 - Year2008 - Date Modified2010-06-03T07:40:08Z - Date Added2012-03-09T22:12:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent ID2212D6C12B931E96 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/11-D.G.A.F.L.Y.F.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4905 - - Track ID4905 - NameTestarossas For Everyone! - ArtistSuper Mash Bros. - AlbumFuck Bitches. Get Euros. - GenreAwesome - KindMPEG audio file - Size5214599 - Total Time217182 - Track Number12 - Track Count12 - Year2008 - Date Modified2010-06-03T07:39:48Z - Date Added2012-03-09T22:12:30Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Persistent IDC87AC4BAF6BFF838 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/super-mash-bros-fuck-bitches-get-euros/fuck-bitches-get-euros/12-Testarossas_For_Everyone!.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4907 - - Track ID4907 - NameFirst Of The Year (Equinox) - ArtistSkrillex - AlbumMore Monsters And Sprites - GenreElectronic - KindMPEG audio file - Size8389733 - Total Time263549 - Track Number1 - Track Count7 - Year2011 - Date Modified2012-03-09T21:57:06Z - Date Added2012-03-09T22:14:00Z - Bit Rate254 - Sample Rate44100 - Play Count1 - Play Date3426406850 - Play Date UTC2012-07-29T15:40:50Z - Skip Date2012-05-10T12:50:39Z - Persistent IDCC6E6155A2C85530 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20More%20Monsters%20And%20Sprites%20(2011)/01-skrillex-first_of_the_year_(equinox).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4909 - - Track ID4909 - NameRuffneck (Flex) - ArtistSkrillex - AlbumMore Monsters And Sprites - GenreElectronic - KindMPEG audio file - Size8201099 - Total Time285413 - Track Number2 - Track Count7 - Year2011 - Date Modified2012-03-09T21:57:10Z - Date Added2012-03-09T22:14:00Z - Bit Rate229 - Sample Rate44100 - Play Count2 - Play Date3424341194 - Play Date UTC2012-07-05T17:53:14Z - Skip Count2 - Skip Date2012-06-20T13:13:24Z - Persistent ID0044D297B963788B - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20More%20Monsters%20And%20Sprites%20(2011)/02-skrillex-ruffneck_(flex).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4911 - - Track ID4911 - NameRuffneck (FULL Flex) - ArtistSkrillex - AlbumMore Monsters And Sprites - GenreElectronic - KindMPEG audio file - Size6943580 - Total Time228336 - Track Number3 - Track Count7 - Year2011 - Date Modified2012-03-09T21:57:12Z - Date Added2012-03-09T22:14:00Z - Bit Rate243 - Sample Rate44100 - Skip Date2012-07-16T13:38:18Z - Persistent ID11EBF429EB3B918D - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20More%20Monsters%20And%20Sprites%20(2011)/03-skrillex-ruffneck_(full_flex).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4913 - - Track ID4913 - NameScary Monsters And Nice Sprites (Dirtyphonics Remix) - ArtistSkrillex - AlbumMore Monsters And Sprites - GenreElectronic - KindMPEG audio file - Size9268025 - Total Time293146 - Track Number4 - Track Count7 - Year2011 - Date Modified2012-03-09T21:57:18Z - Date Added2012-03-09T22:14:00Z - Bit Rate252 - Sample Rate44100 - Skip Date2012-05-24T14:17:12Z - Persistent ID6A90152E07EC21B5 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20More%20Monsters%20And%20Sprites%20(2011)/04-skrillex-scary_monsters_and_nice_sprites_(dirtyphonics_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4915 - - Track ID4915 - NameScary Monsters And Nice Sprites (Phonat Remix) - ArtistSkrillex - AlbumMore Monsters And Sprites - GenreElectronic - KindMPEG audio file - Size6751268 - Total Time221805 - Track Number5 - Track Count7 - Year2011 - Date Modified2012-03-09T21:57:23Z - Date Added2012-03-09T22:14:00Z - Bit Rate243 - Sample Rate44100 - Skip Count1 - Skip Date2012-08-09T22:13:53Z - Persistent ID6C979F7A08B8256C - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20More%20Monsters%20And%20Sprites%20(2011)/05-skrillex-scary_monsters_and_nice_sprites_(phonat_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4917 - - Track ID4917 - NameScary Monsters And Nice Sprites (The Juggernaut Remix) - ArtistSkrillex - AlbumMore Monsters And Sprites - GenreElectronic - KindMPEG audio file - Size7098375 - Total Time235781 - Track Number6 - Track Count7 - Year2011 - Date Modified2012-03-09T21:57:26Z - Date Added2012-03-09T22:14:00Z - Bit Rate240 - Sample Rate44100 - Skip Count1 - Skip Date2012-07-31T20:54:55Z - Persistent IDA95CAAEFA9BAB49C - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20More%20Monsters%20And%20Sprites%20(2011)/06-skrillex-scary_monsters_and_nice_sprites_(the_juggernaut_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4919 - - Track ID4919 - NameScary Monsters And Nice Sprites (Kaskade Remix) - ArtistSkrillex - AlbumMore Monsters And Sprites - GenreElectronic - KindMPEG audio file - Size14561107 - Total Time485302 - Track Number7 - Track Count7 - Year2011 - Date Modified2012-03-09T21:57:33Z - Date Added2012-03-09T22:14:00Z - Bit Rate239 - Sample Rate44100 - Play Count1 - Play Date3414212408 - Play Date UTC2012-03-10T12:20:08Z - Skip Count1 - Skip Date2012-08-17T13:00:55Z - Persistent ID150DE692AD4C04D4 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20More%20Monsters%20And%20Sprites%20(2011)/07-skrillex-scary_monsters_and_nice_sprites_(kaskade_remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4921 - - Track ID4921 - Name01 - Right In - KindMPEG audio file - Size4364120 - Total Time181838 - Date Modified2012-03-09T21:59:00Z - Date Added2012-03-09T22:14:29Z - Bit Rate192 - Sample Rate44100 - Play Count12 - Play Date3426407047 - Play Date UTC2012-07-29T15:44:07Z - Skip Count1 - Skip Date2012-07-02T12:33:17Z - Persistent IDC4146A7788B3C272 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20Bangarang%20EP%20(2012)/01%20-%20Right%20In.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4923 - - Track ID4923 - Name02 - Bangarang (feat. Sirah) - KindMPEG audio file - Size5167229 - Total Time215301 - Date Modified2012-03-09T21:59:02Z - Date Added2012-03-09T22:14:29Z - Bit Rate192 - Sample Rate44100 - Play Count20 - Play Date3426407262 - Play Date UTC2012-07-29T15:47:42Z - Persistent ID0EC76F7937C5B618 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20Bangarang%20EP%20(2012)/02%20-%20Bangarang%20(feat.%20Sirah).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4925 - - Track ID4925 - Name03 - Skrillex & The Doors - Breakn' a Sweat - KindMPEG audio file - Size7280013 - Total Time303333 - Date Modified2012-03-09T21:59:06Z - Date Added2012-03-09T22:14:29Z - Bit Rate192 - Sample Rate44100 - Play Count16 - Play Date3426407565 - Play Date UTC2012-07-29T15:52:45Z - Skip Count1 - Skip Date2012-05-30T13:58:36Z - Persistent ID01E4631026F1F167 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20Bangarang%20EP%20(2012)/03%20-%20Skrillex%20&%20The%20Doors%20-%20Breakn'%20a%20Sweat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4927 - - Track ID4927 - Name04 - Skrillex & Wolfgang Gartner - The Devil's Den - KindMPEG audio file - Size7030491 - Total Time292937 - Date Modified2012-03-09T21:59:09Z - Date Added2012-03-09T22:14:29Z - Bit Rate192 - Sample Rate44100 - Play Count16 - Play Date3426407858 - Play Date UTC2012-07-29T15:57:38Z - Persistent IDE36E55901911B177 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20Bangarang%20EP%20(2012)/04%20-%20Skrillex%20&%20Wolfgang%20Gartner%20-%20The%20Devil's%20Den.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4929 - - Track ID4929 - Name05 - Skrillex, Kill The Noise & 12th Planet - Right On Time - KindMPEG audio file - Size5881939 - Total Time245080 - Date Modified2012-03-09T21:59:11Z - Date Added2012-03-09T22:14:29Z - Bit Rate192 - Sample Rate44100 - Play Count9 - Play Date3424072947 - Play Date UTC2012-07-02T15:22:27Z - Skip Count3 - Skip Date2012-07-29T15:57:43Z - Persistent ID90355A01E07CC768 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20Bangarang%20EP%20(2012)/05%20-%20Skrillex,%20Kill%20The%20Noise%20&%2012th%20Planet%20-%20Right%20On%20Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4931 - - Track ID4931 - Name06 - Kyoto (feat. Sirah) - KindMPEG audio file - Size4819905 - Total Time200829 - Date Modified2012-03-09T21:59:14Z - Date Added2012-03-09T22:14:29Z - Bit Rate192 - Sample Rate44100 - Play Count13 - Play Date3426408064 - Play Date UTC2012-07-29T16:01:04Z - Persistent IDB64D3354837EEC6C - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20Bangarang%20EP%20(2012)/06%20-%20Kyoto%20(feat.%20Sirah).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4933 - - Track ID4933 - Name07 - Summit (feat. Ellie Goulding) - KindMPEG audio file - Size8976509 - Total Time374021 - Date Modified2012-03-09T21:59:19Z - Date Added2012-03-09T22:14:29Z - Bit Rate192 - Sample Rate44100 - Play Count8 - Play Date3426408438 - Play Date UTC2012-07-29T16:07:18Z - Skip Count2 - Skip Date2012-07-02T15:25:53Z - Persistent IDD0042863BB0196D9 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Skrillex%20-%20Bangarang%20EP%20(2012)/07%20-%20Summit%20(feat.%20Ellie%20Goulding).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4935 - - Track ID4935 - NameDeadMau5 - Arguru - ArtistDeadmau5 - ComposerDeadmau5 - AlbumMixmag Tech-trance-electro Madness - GenreAlternative - KindMPEG audio file - Size8248321 - Total Time248293 - Track Number11 - Year2008 - Date Modified2011-02-27T04:59:11Z - Date Added2012-04-15T01:46:36Z - Bit Rate256 - Sample Rate44100 - Artwork Count2 - Persistent ID4EE937796271A9D6 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Mixmag/11%20-%20Arguru.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4937 - - Track ID4937 - NameSome Chords - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size14234507 - Total Time444186 - Track Number1 - Year2010 - Date Modified2011-02-27T02:54:34Z - Date Added2012-04-15T01:48:55Z - Bit Rate244 - Sample Rate44100 - Artwork Count1 - Persistent ID1A6C588270E6E1B1 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/01%20-%20Deadmau5%20-%20Some%20Chords.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4939 - - Track ID4939 - NameSofi Needs A Ladder (Ft. Sofi) - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size13951196 - Total Time403121 - Track Number2 - Year2010 - Date Modified2011-02-27T03:03:52Z - Date Added2012-04-15T01:48:55Z - Bit Rate263 - Sample Rate44100 - Artwork Count1 - Persistent IDFD1241F204165F14 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/02%20-%20Deadmau5%20-%20Sofi%20Needs%20A%20Ladder%20(Ft.%20Sofi).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4941 - - Track ID4941 - NameA City In Florida - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size11438168 - Total Time340349 - Track Number3 - Year2010 - Date Modified2011-02-26T20:17:28Z - Date Added2012-04-15T01:48:55Z - Bit Rate253 - Sample Rate44100 - Artwork Count1 - Sort NameCity In Florida - Persistent IDC3CC66315C166749 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/03%20-%20Deadmau5%20-%20A%20City%20In%20Florida.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4943 - - Track ID4943 - NameBad Selection - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size9901476 - Total Time332721 - Track Number4 - Year2010 - Date Modified2011-02-26T20:19:53Z - Date Added2012-04-15T01:48:55Z - Bit Rate222 - Sample Rate44100 - Artwork Count1 - Persistent IDB11F913B3AB45223 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/04%20-%20Deadmau5%20-%20Bad%20Selection.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4945 - - Track ID4945 - NameAnimal Rights (Ft. Wolfgang Gartner) - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size11418915 - Total Time375092 - Track Number5 - Year2010 - Date Modified2011-02-27T03:07:21Z - Date Added2012-04-15T01:48:55Z - Bit Rate229 - Sample Rate44100 - Artwork Count1 - Persistent ID22A8C6178C553F25 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/05%20-%20Deadmau5%20-%20Animal%20Rights%20(Ft.%20Wolfgang%20Gartner).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4947 - - Track ID4947 - NameI Said (Ft. Chris Lake) (Michael Woods Remix) - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size13463146 - Total Time426161 - Track Number6 - Year2010 - Date Modified2011-02-27T03:07:43Z - Date Added2012-04-15T01:48:55Z - Bit Rate240 - Sample Rate44100 - Artwork Count1 - Persistent ID3373CBF857CA72AB - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/06%20-%20Deadmau5%20-%20I%20Said%20(Ft.%20Chris%20Lake)%20(Michael%20Woods%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4949 - - Track ID4949 - NameCthulhu Sleeps - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size18589545 - Total Time634697 - Track Number7 - Year2010 - Date Modified2011-02-27T03:00:00Z - Date Added2012-04-15T01:48:55Z - Bit Rate226 - Sample Rate44100 - Artwork Count1 - Persistent ID53C2A3DF4236E335 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/07%20-%20Deadmau5%20-%20Cthulhu%20Sleeps.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4951 - - Track ID4951 - NameRight This Second - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size14472298 - Total Time470413 - Track Number8 - Year2010 - Date Modified2011-02-27T02:52:48Z - Date Added2012-04-15T01:48:55Z - Bit Rate235 - Sample Rate44100 - Artwork Count1 - Persistent ID2D05212141691A44 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/08%20-%20Deadmau5%20-%20Right%20This%20Second.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4953 - - Track ID4953 - NameRaise Your Weapon (Ft. Greta Svabo Bech) - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size14496146 - Total Time502961 - Track Number9 - Year2010 - Date Modified2011-02-27T03:03:50Z - Date Added2012-04-15T01:48:55Z - Bit Rate220 - Sample Rate44100 - Artwork Count1 - Persistent ID48492F5EAF0FEBF1 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/09%20-%20Deadmau5%20-%20Raise%20Your%20Weapon%20(Ft.%20Greta%20Svabo%20Bech).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4955 - - Track ID4955 - NameOne Trick Pony (Ft. Sofi) - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size7412461 - Total Time239177 - Track Number10 - Year2010 - Date Modified2011-02-26T20:09:30Z - Date Added2012-04-15T01:48:55Z - Bit Rate226 - Sample Rate44100 - Artwork Count1 - Persistent ID330C7A5129E639D8 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/10%20-%20Deadmau5%20-%20One%20Trick%20Pony%20(Ft.%20Sofi).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4957 - - Track ID4957 - NameEverything Before - ArtistDeadmau5 - AlbumDeadmau5 - 4x4=12 (2010) - GenreElectronic - KindMPEG audio file - Size11921387 - Total Time396512 - Track Number11 - Year2010 - Date Modified2011-02-27T03:05:55Z - Date Added2012-04-15T01:48:55Z - Bit Rate227 - Sample Rate44100 - Artwork Count1 - Persistent IDE6B8E95F65DCC962 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%204x4=12/11%20-%20Deadmau5%20-%20Everything%20Before.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4959 - - Track ID4959 - NameFML - ArtistDeadmau5 - AlbumFor Lack Of A Better Name (The Extended Mixes) - KindMPEG audio file - Size11690981 - Total Time420623 - Track Number1 - Year2009 - Date Modified2011-02-27T03:56:09Z - Date Added2012-04-15T01:50:03Z - Bit Rate221 - Sample Rate44100 - Artwork Count1 - Persistent IDD81A1E9C02E6343E - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name%20(The%20Extended%20Mixes)/01%20-%20FML.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4961 - - Track ID4961 - NameMoar Ghosts N Stuff - ArtistDeadmau5 - AlbumFor Lack Of A Better Name - GenreTech House - KindMPEG audio file - Size10825054 - Total Time270053 - Disc Number1 - Disc Count1 - Track Number2 - Year2009 - Date Modified2011-02-27T03:31:23Z - Date Added2012-04-15T01:50:03Z - Bit Rate319 - Sample Rate44100 - Play Count1 - Play Date3426398805 - Play Date UTC2012-07-29T13:26:45Z - Artwork Count1 - Persistent IDC383B22BDCA174F5 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name/02%20-%20Moar%20Ghosts%20N%20Stuff.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4963 - - Track ID4963 - NameGhosts 'n Stuff (Featuring Rob Swire) - ArtistDeadmau5 - AlbumFor Lack Of A Better Name - GenreTech House - KindMPEG audio file - Size7827766 - Total Time195056 - Disc Number1 - Disc Count1 - Track Number3 - Year2009 - Date Modified2011-02-27T03:49:13Z - Date Added2012-04-15T01:50:03Z - Bit Rate319 - Sample Rate44100 - Artwork Count1 - Persistent ID9961E6865F705331 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name/03%20-%20Ghosts%20'n%20Stuff%20(Featuring%20Rob%20Swire).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4965 - - Track ID4965 - NameHi Friend! - ArtistDeadmau5 - AlbumFor Lack Of A Better Name - GenreTech House - KindMPEG audio file - Size12623848 - Total Time315062 - Disc Number1 - Disc Count1 - Track Number4 - Year2009 - Date Modified2011-02-27T03:50:27Z - Date Added2012-04-15T01:50:03Z - Bit Rate319 - Sample Rate44100 - Artwork Count1 - Persistent ID486A0824DE5FE92E - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name/04%20-%20Hi%20Friend!.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4967 - - Track ID4967 - NameBot - ArtistDeadmau5 - AlbumFor Lack Of A Better Name (The Extended Mixes) - KindMPEG audio file - Size10903765 - Total Time393874 - Track Number5 - Year2009 - Date Modified2011-02-27T04:32:18Z - Date Added2012-04-15T01:50:03Z - Bit Rate220 - Sample Rate44100 - Artwork Count1 - Persistent ID8D7F2AED16A3FE4D - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name%20(The%20Extended%20Mixes)/05%20-%20Bot.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4969 - - Track ID4969 - NameWord Problems - ArtistDeadmau5 - AlbumFor Lack Of A Better Name (The Extended Mixes) - KindMPEG audio file - Size12864609 - Total Time509779 - Track Number6 - Year2009 - Date Modified2011-02-27T04:34:07Z - Date Added2012-04-15T01:50:03Z - Bit Rate201 - Sample Rate44100 - Artwork Count1 - Persistent ID1CA644C15A63A9E6 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name%20(The%20Extended%20Mixes)/06%20-%20Word%20Problems.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4971 - - Track ID4971 - NameSoma - ArtistDeadmau5 - AlbumFor Lack Of A Better Name (The Extended Mixes) - KindMPEG audio file - Size11994124 - Total Time473364 - Track Number7 - Year2009 - Date Modified2011-02-27T04:37:43Z - Date Added2012-04-15T01:50:03Z - Bit Rate202 - Sample Rate44100 - Artwork Count1 - Persistent IDB4F3DC23DF90B774 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name%20(The%20Extended%20Mixes)/07%20-%20Soma.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4973 - - Track ID4973 - NameLack Of A Better Name - ArtistDeadmau5 - AlbumFor Lack Of A Better Name (The Extended Mixes) - KindMPEG audio file - Size12976323 - Total Time494915 - Track Number8 - Year2009 - Date Modified2011-02-27T04:37:02Z - Date Added2012-04-15T01:50:03Z - Bit Rate209 - Sample Rate44100 - Artwork Count1 - Persistent ID6B36FB256FE13357 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name%20(The%20Extended%20Mixes)/08%20-%20Lack%20Of%20A%20Better%20Name.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4975 - - Track ID4975 - NameThe 16th Hour - ArtistDeadmau5 - AlbumFor Lack Of A Better Name (The Extended Mixes) - KindMPEG audio file - Size15507544 - Total Time592822 - Track Number9 - Year2009 - Date Modified2011-02-27T04:37:12Z - Date Added2012-04-15T01:50:03Z - Bit Rate208 - Sample Rate44100 - Artwork Count1 - Sort Name16th Hour - Persistent IDC8D17C2303416D46 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name%20(The%20Extended%20Mixes)/09%20-%20The%2016th%20Hour.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4977 - - Track ID4977 - NameStrobe - ArtistDeadmau5 - AlbumFor Lack Of A Better Name (The Extended Mixes) - KindMPEG audio file - Size16790986 - Total Time633312 - Track Number10 - Year2009 - Date Modified2011-02-27T04:43:26Z - Date Added2012-04-15T01:50:03Z - Bit Rate211 - Sample Rate44100 - Artwork Count1 - Persistent ID9874F431B9C59E18 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name%20(The%20Extended%20Mixes)/10%20-%20Strobe.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4979 - - Track ID4979 - NameMoar Ghosts 'n' Stuff - ArtistDeadmau5 - AlbumFor Lack Of A Better Name (The Extended Mixes) - KindMPEG audio file - Size8081511 - Total Time297273 - Track Number2 - Year2009 - Date Modified2011-02-27T03:22:05Z - Date Added2012-04-15T01:51:09Z - Bit Rate216 - Sample Rate44100 - Artwork Count1 - Persistent ID4CC5A68547BA0F10 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name%20(The%20Extended%20Mixes)/02%20-%20Moar%20Ghosts%20'n'%20Stuff.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4981 - - Track ID4981 - NameGhosts 'n' Stuff feat. Rob Swire - ArtistDeadmau5 - AlbumFor Lack Of A Better Name (The Extended Mixes) - KindMPEG audio file - Size8657205 - Total Time328855 - Track Number3 - Year2009 - Date Modified2011-02-27T03:33:24Z - Date Added2012-04-15T01:51:09Z - Bit Rate209 - Sample Rate44100 - Artwork Count1 - Persistent ID823FA92A992E1D03 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name%20(The%20Extended%20Mixes)/03%20-%20Ghosts%20'n'%20Stuff%20(feat.%20Rob%20Swire).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4983 - - Track ID4983 - NameHi Friend! feat. MC Flipside - ArtistDeadmau5 - AlbumFor Lack Of A Better Name (The Extended Mixes) - KindMPEG audio file - Size11553950 - Total Time392568 - Track Number4 - Year2009 - Date Modified2011-02-27T04:41:12Z - Date Added2012-04-15T01:51:09Z - Bit Rate234 - Sample Rate44100 - Artwork Count1 - Persistent IDF5532603AB1C50D0 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20For%20Lack%20Of%20A%20Better%20Name%20(The%20Extended%20Mixes)/04%20-%20Hi%20Friend!%20(feat.%20MC%20Flipside).mp3 - File Folder Count-1 - Library Folder Count-1 - - 4985 - - Track ID4985 - NameSometimes Things Get, Whatever - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size12397616 - Total Time434860 - Disc Number1 - Disc Count1 - Track Number1 - Track Count12 - Year2008 - Date Modified2011-02-27T04:57:33Z - Date Added2012-04-15T01:51:12Z - Bit Rate227 - Sample Rate44100 - Artwork Count1 - Persistent ID68612DE9BE455BB4 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/01%20-%20Sometimes%20Things%20Get,%20Whatever.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4987 - - Track ID4987 - NameComplications - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size9786534 - Total Time330553 - Disc Number1 - Disc Count1 - Track Number2 - Track Count12 - Year2008 - Date Modified2011-02-27T04:58:27Z - Date Added2012-04-15T01:51:12Z - Bit Rate235 - Sample Rate44100 - Artwork Count1 - Persistent ID4AA7828BB341A95E - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/02%20-%20Complications.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4989 - - Track ID4989 - NameSlip - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size12337569 - Total Time404323 - Disc Number1 - Disc Count1 - Track Number3 - Track Count12 - Year2008 - Date Modified2011-02-27T04:54:16Z - Date Added2012-04-15T01:51:12Z - Bit Rate243 - Sample Rate44100 - Artwork Count1 - Persistent IDFB19293E688000D9 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/03%20-%20Slip.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4991 - - Track ID4991 - NameSome Kind Of Blue - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size11231680 - Total Time379428 - Disc Number1 - Disc Count1 - Track Number4 - Track Count12 - Year2008 - Date Modified2011-02-27T05:01:40Z - Date Added2012-04-15T01:51:12Z - Bit Rate235 - Sample Rate44100 - Artwork Count1 - Persistent ID1277890EDA1B62C9 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/04%20-%20Some%20Kind%20Of%20Blue.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4993 - - Track ID4993 - NameBrazil - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size10611963 - Total Time333296 - Disc Number1 - Disc Count1 - Track Number5 - Track Count12 - Year2008 - Date Modified2011-02-27T04:46:34Z - Date Added2012-04-15T01:51:12Z - Bit Rate253 - Sample Rate44100 - Artwork Count1 - Persistent IDD199AD8816FA9AA8 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/05%20-%20Brazil.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4995 - - Track ID4995 - NameAlone With You - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size14050956 - Total Time450037 - Disc Number1 - Disc Count1 - Track Number6 - Track Count12 - Year2008 - Date Modified2011-02-27T04:53:30Z - Date Added2012-04-15T01:51:12Z - Bit Rate249 - Sample Rate44100 - Artwork Count1 - Persistent ID296924FE469DD737 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/06%20-%20Alone%20With%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4997 - - Track ID4997 - NameI Remember - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size16995071 - Total Time547474 - Disc Number1 - Disc Count1 - Track Number7 - Track Count12 - Year2008 - Date Modified2011-02-27T03:49:19Z - Date Added2012-04-15T01:51:12Z - Bit Rate247 - Sample Rate44100 - Artwork Count1 - Persistent ID074167DB358D5930 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/07%20-%20I%20Remember.mp3 - File Folder Count-1 - Library Folder Count-1 - - 4999 - - Track ID4999 - NameFaxing Berlin (Piano Acoustic) - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size2862150 - Total Time99422 - Disc Number1 - Disc Count1 - Track Number8 - Track Count12 - Year2008 - Date Modified2011-02-27T03:07:22Z - Date Added2012-04-15T01:51:12Z - Bit Rate227 - Sample Rate44100 - Artwork Count1 - Persistent IDB0808B79A190EACD - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/08%20-%20Faxing%20Berlin%20(Piano%20Acoustic).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5001 - - Track ID5001 - NameFaxing Berlin - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size4643769 - Total Time155715 - Disc Number1 - Disc Count1 - Track Number9 - Track Count12 - Year2008 - Date Modified2011-02-27T04:35:21Z - Date Added2012-04-15T01:51:13Z - Bit Rate236 - Sample Rate44100 - Artwork Count1 - Persistent IDDF56114042E6CD92 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/09%20-%20Faxing%20Berlin.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5003 - - Track ID5003 - NameNot Exactly - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size14969436 - Total Time480000 - Disc Number1 - Disc Count1 - Track Number10 - Track Count12 - Year2008 - Date Modified2011-02-27T04:37:32Z - Date Added2012-04-15T01:51:13Z - Bit Rate248 - Sample Rate44100 - Volume Adjustment255 - Artwork Count1 - Persistent ID204F8225F67C76FB - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/10%20-%20Not%20Exactly.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5005 - - Track ID5005 - NameSo There I Was - ArtistDeadmau5 - AlbumRandom Album Title - GenreElectronica - KindMPEG audio file - Size11966373 - Total Time408607 - Disc Number1 - Disc Count1 - Track Number12 - Track Count12 - Year2008 - Date Modified2011-02-27T05:01:03Z - Date Added2012-04-15T01:51:13Z - Bit Rate233 - Sample Rate44100 - Artwork Count1 - Persistent ID3650E79C5AD1D9C6 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Deadmau5%20-%20Collection%20Albums%20(Poster's%20Compilation)/Deadmau5%20-%20Random%20Album%20Title/12%20-%20So%20There%20I%20Was.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5007 - - Track ID5007 - NameBuck 65 - The Centaur - ArtistBuck 65 - Album ArtistBuck 65 - AlbumVertex - GenreHip-Hop - KindMPEG audio file - Size3612672 - Total Time150700 - Track Number2 - Year1998 - Date Modified2008-05-24T17:25:28Z - Date Added2012-04-21T17:41:47Z - Bit Rate191 - Sample Rate44100 - Volume Adjustment255 - CommentsRipped by Winamp - Persistent ID493BBF51A003E44C - Track TypeFile - Locationfile://localhost/X:/MP3s/Playlists/regressionTestingLists/02.%20saveTests/01.%20sampleFiles/02%20-%20Buck%2065%20-%20The%20Centaur.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5009 - - Track ID5009 - NameCarl B Feat Breaking Benjamin - The Diary of Jane (Sean Tyas Remix) - ArtistCarl B Feat Breaking Benjamin - AlbumThe Diary of Jane__Incl Sean Tyas Remix Vinyl - GenreTrance - KindMPEG audio file - Size14489574 - Total Time492068 - Track Number2 - Year2007 - Date Modified2009-05-29T02:25:18Z - Date Added2012-04-21T17:41:48Z - Bit Rate235 - Sample Rate44100 - CommentsSDS R0ckZ - Sort AlbumDiary of Jane__Incl Sean Tyas Remix Vinyl - Persistent IDB850A4F442672DCA - Track TypeFile - Locationfile://localhost/X:/MP3s/Playlists/regressionTestingLists/02.%20saveTests/01.%20sampleFiles/02-carl_b_feat_breaking_benjamin-the_diary_of_jane_sean_tyas_remix-sds.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5011 - - Track ID5011 - NameGwen Stefani - The Sweet Escape (Feat. Akon) - ArtistGwen Stefani - AlbumThe Sweet Escape - GenrePop - KindMPEG audio file - Size9864926 - Total Time246517 - Track Number2 - Year2006 - Date Modified2007-04-23T22:57:20Z - Date Added2012-04-21T17:41:48Z - Bit Rate320 - Sample Rate44100 - Commentswww.torrentazos.com - Sort AlbumSweet Escape - Persistent ID7B197848E5985ACC - Track TypeFile - Locationfile://localhost/X:/MP3s/Playlists/regressionTestingLists/02.%20saveTests/01.%20sampleFiles/02-gwen_stefani-the_sweet_escape_(ft_akon)_-_www.torrentazos.com.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5013 - - Track ID5013 - NameMarkus Schulz feat. Dauby - Perfect (Funabashi Remix) - ArtistMarkus Schulz feat. Dauby - AlbumPerfect Remixes [WEB 2008] - GenreElectronic - KindMPEG audio file - Size20702947 - Total Time515004 - Track Number2 - Track Count4 - Year2008 - Date Modified2009-05-29T02:25:25Z - Date Added2012-04-21T17:41:48Z - Bit Rate320 - Sample Rate44100 - Persistent ID26BB94086A67485B - Track TypeFile - Locationfile://localhost/X:/MP3s/Playlists/regressionTestingLists/02.%20saveTests/01.%20sampleFiles/02-markus_schulz_feat._dauby_-_perfect__funabashi_remix-mr.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5015 - - Track ID5015 - NameThe Ting Tings - That's Not My Name - ArtistThe Ting Tings - Album ArtistThe Ting Tings - ComposerDeMartino/White - AlbumWe Started Nothing - GenreRock - KindMPEG audio file - Size7435462 - Total Time312006 - Track Number2 - Year2008 - Date Modified2009-05-29T02:25:26Z - Date Added2012-04-21T17:41:48Z - Bit Rate190 - Sample Rate44100 - Comments7908DF0A - Sort Album ArtistTing Tings - Sort ArtistTing Tings - Sort NameTing Tings - That's Not My Name - Persistent IDBB9F953E9CBA9661 - Track TypeFile - Locationfile://localhost/X:/MP3s/Playlists/regressionTestingLists/02.%20saveTests/01.%20sampleFiles/02-the_ting_tings-thats_not_my_name.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5017 - - Track ID5017 - NameTonite Only - Where The Party's At - ArtistTonite Only - Album ArtistThe Ministy of Sound - AlbumThe Annual 2007 Disc 2 - GenreDance - KindMPEG audio file - Size6078295 - Total Time187219 - Track Number2 - Year2006 - Date Modified2009-08-29T19:19:42Z - Date Added2012-04-21T17:41:48Z - Bit Rate256 - Sample Rate44100 - Artwork Count1 - Sort AlbumAnnual 2007 Disc 2 - Sort Album ArtistMinisty of Sound - Persistent ID460BB7C309E23C87 - Track TypeFile - Locationfile://localhost/X:/MP3s/Playlists/regressionTestingLists/02.%20saveTests/01.%20sampleFiles/02.%20Tonite%20Only%20-%20Where%20The%20Party's%20At.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5019 - - Track ID5019 - Name2 Pac - Shorty Wanna Be a Thug - Artist2 Pac - AlbumAll Eyez On Me - GenreRap - KindMPEG audio file - Size3707843 - Total Time231732 - Date Modified2002-10-06T16:54:54Z - Date Added2012-04-21T17:41:48Z - Bit Rate128 - Sample Rate44100 - Comments- #Audio98 - Kolten - - Persistent ID8D85DC59DB3FF472 - Track TypeFile - Locationfile://localhost/X:/MP3s/Playlists/regressionTestingLists/02.%20saveTests/01.%20sampleFiles/2pac%20-%20Shorty%20Wanna%20Be%20A%20Thug.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5021 - - Track ID5021 - NameAlbany - ArtistKev Brown - AlbumI Do What I Do - GenreR&B - KindMPEG audio file - Size4414690 - Total Time189884 - Track Number12 - Year2005 - Date Modified2012-05-12T17:08:08Z - Date Added2012-07-29T13:23:29Z - Bit Rate185 - Sample Rate44100 - Play Count2 - Play Date3426568987 - Play Date UTC2012-07-31T12:43:07Z - Persistent IDEC6FBF3E11CE7DA6 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/12%20Albany.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5023 - - Track ID5023 - NameBounce (Original Version) - ArtistCalvin Harris Feat. Kelis - Album Artistwww.taringa.net/comunidades/delta903fm - Composerwww.taringa.net/comunidades/delta903fm - AlbumIFSS - KindMPEG audio file - Size14391122 - Total Time359575 - Date Modified2012-07-22T05:10:08Z - Date Added2012-07-29T13:23:53Z - Bit Rate320 - Sample Rate44100 - Commentswww.taringa.net/comunidades/delta903fm - Play Count1 - Play Date3426423889 - Play Date UTC2012-07-29T20:24:49Z - Artwork Count1 - Persistent ID3D102FE71D9C3778 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/Calvin%20Harris%20Feat.%20Kelis%20-%20Bounce%20(Original%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5025 - - Track ID5025 - NameBreakn' A Sweat (Zedd Remix) - ArtistSkrillex & The Doors - KindMPEG audio file - Size13230541 - Total Time330657 - Track Number9 - Date Modified2012-07-22T04:56:54Z - Date Added2012-07-29T13:23:53Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3426424220 - Play Date UTC2012-07-29T20:30:20Z - Persistent ID340BC1F90031CF83 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/009.%20Skrillex%20&%20The%20Doors%20-%20Breakn'%20A%20Sweat%20(Zedd%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5027 - - Track ID5027 - NameBird's Lament - ArtistMoondog - AlbumHenrik Schwarz: DJ Kicks - Genrejazzy beats - KindMPEG audio file - Size6364518 - Total Time159007 - Track Number2 - Year2006 - Date Modified2012-05-15T03:07:13Z - Date Added2012-07-29T13:23:53Z - Bit Rate320 - Sample Rate44100 - Play Count1 - Play Date3426408971 - Play Date UTC2012-07-29T16:16:11Z - Persistent ID695A276DE308666B - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/02%20Bird's%20Lament.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5029 - - Track ID5029 - NameMe & You (Original Mix) - ArtistNero - Album ArtistNero - ComposerD. Stephens & J. Ray - AlbumMe & You - EP - GenreDance - KindMPEG audio file - Size9518984 - Total Time235337 - Disc Number1 - Disc Count1 - Track Number1 - Track Count5 - Year2011 - Date Modified2012-07-22T04:22:09Z - Date Added2012-07-29T13:24:32Z - Bit Rate320 - Sample Rate44100 - Play Count2 - Play Date3427953529 - Play Date UTC2012-08-16T13:18:49Z - Artwork Count1 - Persistent ID47AA1D712BE79624 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/mta%20-%20nero%20-%20me%20&%20you%20ep%20-%20mta004-web-2011-320/01.%20nero%20-%20me%20&%20you%20(original%20mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5031 - - Track ID5031 - NameBooty Clap (Club Mix) - ArtistThe Real Booty Babes - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size5010104 - Total Time203415 - Track Number1 - Year2010 - Date Modified2010-05-29T19:23:26Z - Date Added2012-08-18T00:27:21Z - Bit Rate184 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistReal Booty Babes - Persistent ID482CF123DD78ED7D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/101.%20The%20Real%20Booty%20Babes%20-%20Booty%20Clap%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5033 - - Track ID5033 - NameDisco Pogo - ArtistDie Atzen Frauenarzt & Manny Marc - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size4586723 - Total Time169430 - Track Number2 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:21Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDAEB1BFB0F228A79 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/102.%20Die%20Atzen%20Frauenarzt%20&%20Manny%20Marc%20-%20Disco%20Pogo.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5035 - - Track ID5035 - NameWont forget these Days 2010 - ArtistDJ Yanny presents Terraformer - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size8513287 - Total Time325590 - Track Number3 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:21Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3A60B80A0EC2A77A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/103.%20DJ%20Yanny%20presents%20Terraformer%20-%20Wont%20forget%20these%20Days%202010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5037 - - Track ID5037 - NameCrazy (Original Mix) - ArtistBrooklyn Bounce vs. Alex M. & Marc van Damme - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size3539992 - Total Time130821 - Track Number4 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:22Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9CBB62679846050A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/104.%20Brooklyn%20Bounce%20vs.%20Alex%20M.%20&%20Marc%20van%20Damme%20-%20Crazy%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5039 - - Track ID5039 - NameCan i get a Witness 2010 - ArtistJendrik de Ruvo - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size4794358 - Total Time177475 - Track Number5 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:22Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA87BA094123E3EFE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/105.%20Jendrik%20de%20Ruvo%20-%20Can%20i%20get%20a%20Witness%202010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5041 - - Track ID5041 - NameMove me up (Driver & Face Remix) - ArtistKevax - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size3488077 - Total Time121730 - Track Number6 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:22Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID776977DC78717626 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/106.%20Kevax%20-%20Move%20me%20up%20(Driver%20&%20Face%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5043 - - Track ID5043 - NamePleased about you (Lowcash Remix) - ArtistDezybill - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size2991607 - Total Time111542 - Track Number7 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:22Z - Bit Rate191 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2530937FEDA7ADDC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/107.%20Dezybill%20-%20Pleased%20about%20you%20(Lowcash%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5045 - - Track ID5045 - NameHot - ArtistInna - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size3342604 - Total Time121730 - Track Number8 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:22Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID06826B3C56470554 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/108.%20Inna%20-%20Hot.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5047 - - Track ID5047 - NameDat old Bass (Martial Hard Remix) - ArtistBuLLJay - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size7238481 - Total Time264359 - Track Number9 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:22Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID44107D103D29FD03 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/109.%20BuLLJay%20-%20Dat%20old%20Bass%20(Martial%20Hard%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5049 - - Track ID5049 - NameBlue Planet - ArtistMiss N-Traxx - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size4749773 - Total Time177136 - Track Number10 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:22Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8E9979B3F7859AC6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/110.%20Miss%20N-Traxx%20-%20Blue%20Planet.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5051 - - Track ID5051 - NameHamburg Rulez Reloaded - ArtistDJ Dean presents Barbarez - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size5271097 - Total Time192653 - Track Number11 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:22Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID605ADB02E5DBB60E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/111.%20DJ%20Dean%20presents%20Barbarez%20-%20Hamburg%20Rulez%20Reloaded.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5053 - - Track ID5053 - NamePassenger - ArtistDJ Gollum - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size4399058 - Total Time165067 - Track Number12 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:22Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF6C12F55C196FC28 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/112.%20DJ%20Gollum%20-%20Passenger.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5055 - - Track ID5055 - NameSamba 69 - ArtistK-System - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size6204460 - Total Time223346 - Track Number13 - Year2010 - Date Modified2010-05-29T19:23:27Z - Date Added2012-08-18T00:27:22Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9EDE8D2012EC0453 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/113.%20K-System%20-%20Samba%2069.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5057 - - Track ID5057 - NameSpace Harmony - ArtistDJ Analyzer vs. Jan Skywalker - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size3156241 - Total Time121704 - Track Number14 - Year2010 - Date Modified2010-05-29T19:23:28Z - Date Added2012-08-18T00:27:22Z - Bit Rate185 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID41A239E606527B84 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/114.%20DJ%20Analyzer%20vs.%20Jan%20Skywalker%20-%20Space%20Harmony.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5059 - - Track ID5059 - NameTime to Wonder - ArtistTopmodelz - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size4002874 - Total Time146259 - Track Number17 - Year2010 - Date Modified2010-05-29T19:23:28Z - Date Added2012-08-18T00:27:22Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID17CE4287573A6510 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/117.%20Topmodelz%20-%20Time%20to%20Wonder.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5061 - - Track ID5061 - NameEmotion 2010 (Pete Sheppibone Remix) - ArtistMegasonic - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size4784061 - Total Time160470 - Track Number18 - Year2010 - Date Modified2010-05-29T19:23:28Z - Date Added2012-08-18T00:27:22Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8BA200F9E5C65885 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/118.%20Megasonic%20-%20Emotion%202010%20(Pete%20Sheppibone%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5063 - - Track ID5063 - NameSuper Crazy - ArtistRaverdiago - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size5180134 - Total Time196675 - Track Number19 - Year2010 - Date Modified2010-05-29T19:23:28Z - Date Added2012-08-18T00:27:22Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID56EE665CE23E88EC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/119.%20Raverdiago%20-%20Super%20Crazy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5065 - - Track ID5065 - NameWahaha - ArtistJonez & D-Lux - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size6037609 - Total Time205844 - Track Number20 - Year2010 - Date Modified2010-05-29T19:23:28Z - Date Added2012-08-18T00:27:22Z - Bit Rate221 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF778528615CAEFC1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/120.%20Jonez%20&%20D-Lux%20-%20Wahaha.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5067 - - Track ID5067 - NameRebel Yell (DJ Gollum Remix) EekBlobgreen - ArtistEmpyre One vs. Energ!zer - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size4874715 - Total Time173818 - Track Number21 - Year2010 - Date Modified2010-05-29T19:23:28Z - Date Added2012-08-18T00:27:22Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID59A452CC6C21915F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/121.%20Empyre%20One%20vs.%20Energ!zer%20-%20Rebel%20Yell%20(DJ%20Gollum%20Remix)%20EekBlobgreen.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5069 - - Track ID5069 - NameTear the Club up - ArtistDJ Isaac - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size6618906 - Total Time264463 - Track Number22 - Year2010 - Date Modified2010-05-29T19:23:28Z - Date Added2012-08-18T00:27:22Z - Bit Rate190 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9ADCEBE03B2015B1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/122.%20DJ%20Isaac%20-%20Tear%20the%20Club%20up.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5071 - - Track ID5071 - NameEmergency - ArtistDJ Mordor - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size6116450 - Total Time213551 - Track Number23 - Year2010 - Date Modified2010-05-29T19:23:28Z - Date Added2012-08-18T00:27:22Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF8324E42D328DF6D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/123.%20DJ%20Mordor%20-%20Emergency.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5073 - - Track ID5073 - NameKatyusha Stomp - ArtistHardface - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size6276652 - Total Time228440 - Track Number24 - Year2010 - Date Modified2010-05-29T19:23:28Z - Date Added2012-08-18T00:27:22Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDDFEDDD92792D1AD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/124.%20Hardface%20-%20Katyusha%20Stomp.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5075 - - Track ID5075 - NameGet You - ArtistI.V.O. - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD1 - GenreHard Trance - KindMPEG audio file - Size5436761 - Total Time212453 - Track Number25 - Year2010 - Date Modified2010-05-29T19:23:28Z - Date Added2012-08-18T00:27:22Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID37AE977BDAFB9F1B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/125.%20I.V.O.%20-%20Get%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5077 - - Track ID5077 - NameSupersonic Bass - ArtistActivator - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size5826264 - Total Time217155 - Track Number26 - Year2010 - Date Modified2010-05-29T19:23:48Z - Date Added2012-08-18T00:28:38Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9DF004D987D989C1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/226.%20Activator%20-%20Supersonic%20Bass.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5079 - - Track ID5079 - NameFly like a Rocket - ArtistDutch Master - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size5718483 - Total Time217965 - Track Number27 - Year2010 - Date Modified2010-05-29T19:23:48Z - Date Added2012-08-18T00:28:38Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID891D3AA31337A361 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/227.%20Dutch%20Master%20-%20Fly%20like%20a%20Rocket.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5081 - - Track ID5081 - NameDreamcatcher - ArtistHeadhunterz - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size4907752 - Total Time185051 - Track Number28 - Year2010 - Date Modified2010-05-29T19:23:48Z - Date Added2012-08-18T00:28:38Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3F2D6322113E669F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/228.%20Headhunterz%20-%20Dreamcatcher.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5083 - - Track ID5083 - NameBecome the Sky - ArtistB-Front & Frontliner - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size4190058 - Total Time144300 - Track Number29 - Year2010 - Date Modified2010-05-29T19:23:48Z - Date Added2012-08-18T00:28:38Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE9894708321FE43F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/229.%20B-Front%20&%20Frontliner%20-%20Become%20the%20Sky.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5085 - - Track ID5085 - NameAngel of the Sun - ArtistZany - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size4036294 - Total Time153103 - Track Number30 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:38Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4D03007D4055D5BD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/230.%20Zany%20-%20Angel%20of%20the%20Sun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5087 - - Track ID5087 - NameOut of the Blue 2010 (Showtek Remix) - ArtistSystem F - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size7642617 - Total Time288156 - Track Number31 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:38Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4D48985DFD2C7526 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/231.%20System%20F%20-%20Out%20of%20the%20Blue%202010%20(Showtek%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5089 - - Track ID5089 - NameThe Winner is (TNT Remix) - ArtistDJ Phil TY - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size1981221 - Total Time62746 - Track Number32 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:38Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameWinner is (TNT Remix) - Persistent ID90CAC10DB890BB2E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/232.%20DJ%20Phil%20TY%20-%20The%20Winner%20is%20(TNT%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5091 - - Track ID5091 - NameReloaded - ArtistJim Noizer - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size6422676 - Total Time247431 - Track Number33 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:38Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4383784EFC6029FD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/233.%20Jim%20Noizer%20-%20Reloaded.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5093 - - Track ID5093 - NameBack in Time - ArtistPavo - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size5176285 - Total Time183823 - Track Number34 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:38Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID972EF3CD32ECC559 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/234.%20Pavo%20-%20Back%20in%20Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5095 - - Track ID5095 - NameOverdub - ArtistTuneboy - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size4575438 - Total Time169168 - Track Number35 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:38Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID25CE836B420935A7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/235.%20Tuneboy%20-%20Overdub.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5097 - - Track ID5097 - NameMagic - ArtistB-Front & Frontliner - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size7030752 - Total Time249678 - Track Number36 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:39Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID16C4C57BC40A8760 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/236.%20B-Front%20&%20Frontliner%20-%20Magic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5099 - - Track ID5099 - NameBoogyman - ArtistHardstyle Syndicate & Marcus Jones - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size4103117 - Total Time146808 - Track Number37 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:39Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID13022E17C4AB0746 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/237.%20Hardstyle%20Syndicate%20&%20Marcus%20Jones%20-%20Boogyman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5101 - - Track ID5101 - NameLove Theme from the Godfather - ArtistTatanka & Zatox - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size4669370 - Total Time169900 - Track Number38 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:39Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8C7C55FC8ED0A98A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/238.%20Tatanka%20&%20Zatox%20-%20Love%20Theme%20from%20the%20Godfather.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5103 - - Track ID5103 - NameIntensive Care - ArtistBeat Providers - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size5107134 - Total Time183902 - Track Number40 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:39Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7C82027E99BA627F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/240.%20Beat%20Providers%20-%20Intensive%20Care.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5105 - - Track ID5105 - NameThe Saint - ArtistBruno Power - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size4948904 - Total Time197616 - Track Number41 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:39Z - Bit Rate187 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameSaint - Persistent ID487C488C8E65C86D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/241.%20Bruno%20Power%20-%20The%20Saint.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5107 - - Track ID5107 - NameParts Of Me (Original Mix) - ArtistThreshld - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size6123064 - Total Time227160 - Track Number42 - Year2010 - Date Modified2010-05-29T19:23:49Z - Date Added2012-08-18T00:28:39Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID29323E56DB4D2649 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/242.%20Threshld%20-%20Parts%20Of%20Me%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5109 - - Track ID5109 - NameT.B.A. - ArtistAlphaverb & Intractable One - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size5701884 - Total Time193123 - Track Number44 - Year2010 - Date Modified2010-05-29T19:23:50Z - Date Added2012-08-18T00:28:39Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID069BFD2BAB50993F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/244.%20Alphaverb%20&%20Intractable%20One%20-%20T.B.A..mp3 - File Folder Count-1 - Library Folder Count-1 - - 5111 - - Track ID5111 - NameIntoxication (Radio Edit) - ArtistDJ Zealot - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size5869867 - Total Time228963 - Track Number45 - Year2010 - Date Modified2010-05-29T19:23:50Z - Date Added2012-08-18T00:28:39Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD5868620216F53D0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/245.%20DJ%20Zealot%20-%20Intoxication%20(Radio%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5113 - - Track ID5113 - NameX-Love - ArtistMiss Tess-X - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size3277889 - Total Time112587 - Track Number46 - Year2010 - Date Modified2010-05-29T19:23:50Z - Date Added2012-08-18T00:28:39Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4FC0701164537E5B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/246.%20Miss%20Tess-X%20-%20X-Love.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5115 - - Track ID5115 - NameA Look into the Light - ArtistGoldkind - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size3725215 - Total Time133668 - Track Number47 - Year2010 - Date Modified2010-05-29T19:23:50Z - Date Added2012-08-18T00:28:39Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameLook into the Light - Persistent ID7813B14CAA0B5ED5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/247.%20Goldkind%20-%20A%20Look%20into%20the%20Light.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5117 - - Track ID5117 - NameMagnetik - ArtistBeat Providers - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size7460754 - Total Time281443 - Track Number48 - Year2010 - Date Modified2010-05-29T19:23:50Z - Date Added2012-08-18T00:28:39Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID57CA100CF7974284 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/248.%20Beat%20Providers%20-%20Magnetik.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5119 - - Track ID5119 - NameTunnel Biznizz - ArtistPrimax feat. MC G-Angel - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size4302369 - Total Time158380 - Track Number49 - Year2010 - Date Modified2010-05-29T19:23:50Z - Date Added2012-08-18T00:28:39Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID501A5159069B3CBB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/249.%20Primax%20feat.%20MC%20G-Angel%20-%20Tunnel%20Biznizz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5121 - - Track ID5121 - NameFree Rider - ArtistMontana & The Revialz - Album ArtistVA - AlbumDJ Networx Vol. 44 / CD2 - GenreHard Trance - KindMPEG audio file - Size7111035 - Total Time263967 - Track Number50 - Year2010 - Date Modified2010-05-29T19:23:50Z - Date Added2012-08-18T00:28:39Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3D04FDFABB37E20E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2044%20(2010)/250.%20Montana%20&%20The%20Revialz%20-%20Free%20Rider.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5123 - - Track ID5123 - NameWhy Don't You Dance With Me 2010 (Pitchers Remix) - ArtistFuture Breeze - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size6279012 - Total Time252238 - Track Number1 - Year2010 - Date Modified2011-06-29T04:09:14Z - Date Added2012-08-18T00:30:09Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1D9E955E5DF94812 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/01.%20Future%20Breeze%20-%20Why%20Don't%20You%20Dance%20With%20Me%202010%20(Pitchers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5125 - - Track ID5125 - NameShow Me 10 (DJ Gollum Mix) - ArtistDarius & Finlay & Shaun Baker - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size2320942 - Total Time85786 - Track Number2 - Year2010 - Date Modified2011-06-29T04:09:14Z - Date Added2012-08-18T00:30:09Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC9E2C73AB0C90B96 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/02.%20Darius%20&%20Finlay%20&%20Shaun%20Baker%20-%20Show%20Me%2010%20(DJ%20Gollum%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5127 - - Track ID5127 - NameBoyz & Girls (The Real Booty Babes Remix) - ArtistLanfranchi & Marchesini - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size4859178 - Total Time199418 - Track Number3 - Year2010 - Date Modified2011-06-29T04:09:14Z - Date Added2012-08-18T00:30:09Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBE933C4A0F7BC8E3 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/03.%20Lanfranchi%20&%20Marchesini%20-%20Boyz%20&%20Girls%20(The%20Real%20Booty%20Babes%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5129 - - Track ID5129 - NameRock That Body (Kris McTwain Remix) - ArtistOrangez - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size7452295 - Total Time184502 - Track Number4 - Year2010 - Date Modified2011-06-29T04:09:14Z - Date Added2012-08-18T00:30:09Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID5A94510B76D683CE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/04.%20Orangez%20-%20Rock%20That%20Body%20(Kris%20McTwain%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5131 - - Track ID5131 - NameHands Up! (Sample Rippers Remix) - ArtistJens O. - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size3979314 - Total Time159660 - Track Number5 - Year2010 - Date Modified2011-06-29T04:09:15Z - Date Added2012-08-18T00:30:09Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID56BA56D41AF6AAB6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/05.%20Jens%20O.%20-%20Hands%20Up!%20(Sample%20Rippers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5133 - - Track ID5133 - NameNo Good - ArtistDJ Mikesh - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size3796736 - Total Time153077 - Track Number6 - Year2010 - Date Modified2011-06-29T04:09:15Z - Date Added2012-08-18T00:30:09Z - Bit Rate195 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID919139CB56BEC6E1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/06.%20DJ%20Mikesh%20-%20No%20Good.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5135 - - Track ID5135 - NameGet Down (Club Mix) - ArtistCrystal Lake ft Barbie - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size3401176 - Total Time134739 - Track Number7 - Year2010 - Date Modified2011-06-29T04:09:15Z - Date Added2012-08-18T00:30:09Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5466FEDF58DAD621 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/07.%20Crystal%20Lake%20ft%20Barbie%20-%20Get%20Down%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5137 - - Track ID5137 - NamePush It Again 2.1 (Justin Corza metts Greg Blast Remix) - ArtistDJ Lawless ft Swab, Oliver - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size5232990 - Total Time129018 - Track Number8 - Year2010 - Date Modified2011-06-29T04:09:15Z - Date Added2012-08-18T00:30:09Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID88B205028D3C5A22 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/08.%20DJ%20Lawless%20ft%20Swab,%20Oliver%20-%20Push%20It%20Again%202.1%20(Justin%20Corza%20metts%20Greg%20Blast%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5139 - - Track ID5139 - NameUp To The Beat (Marco van Bassken vs Hide & Seek Remix) - ArtistStuff & Floor - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size6099183 - Total Time243330 - Track Number9 - Year2010 - Date Modified2011-06-29T04:09:15Z - Date Added2012-08-18T00:30:09Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8C0F85BBC2FF4634 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/09.%20Stuff%20&%20Floor%20-%20Up%20To%20The%20Beat%20(Marco%20van%20Bassken%20vs%20Hide%20&%20Seek%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5141 - - Track ID5141 - NameThe Crazy Little Things (Massmann's Dark Piano Remix) - Artist2Sonic - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size4837171 - Total Time181054 - Track Number10 - Year2010 - Date Modified2011-06-29T04:09:15Z - Date Added2012-08-18T00:30:09Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameCrazy Little Things (Massmann's Dark Piano Remix) - Persistent ID9CF09580E39FC35B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/10.%202Sonic%20-%20The%20Crazy%20Little%20Things%20(Massmann's%20Dark%20Piano%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5143 - - Track ID5143 - NameThe Highjacker (OverDrive Division Remix) - ArtistPete Sheppibone - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size7178314 - Total Time274024 - Track Number11 - Year2010 - Date Modified2011-06-29T04:09:15Z - Date Added2012-08-18T00:30:09Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameHighjacker (OverDrive Division Remix) - Persistent IDE1FBDBA43AE00014 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/11.%20Pete%20Sheppibone%20-%20The%20Highjacker%20(OverDrive%20Division%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5145 - - Track ID5145 - NameMy Favourite Game (Club Mix) - ArtistMiradey - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size5911326 - Total Time241711 - Track Number12 - Year2010 - Date Modified2011-06-29T04:09:16Z - Date Added2012-08-18T00:30:09Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4362787B30100862 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/12.%20Miradey%20-%20My%20Favourite%20Game%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5147 - - Track ID5147 - NameMusic Reload 2010 (Driver & Face Remix) - ArtistMike Nero - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size3107918 - Total Time121678 - Track Number13 - Year2010 - Date Modified2011-06-29T04:09:16Z - Date Added2012-08-18T00:30:09Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAF137836F4463989 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/13.%20Mike%20Nero%20-%20Music%20Reload%202010%20(Driver%20&%20Face%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5149 - - Track ID5149 - NameIf You Leave (Ti-Mo Remix) - ArtistMarco van Bassken - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size6389767 - Total Time249887 - Track Number14 - Year2010 - Date Modified2011-06-29T04:09:16Z - Date Added2012-08-18T00:30:09Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2AD3D4208AD5C321 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/14.%20Marco%20van%20Bassken%20-%20If%20You%20Leave%20(Ti-Mo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5151 - - Track ID5151 - NameBoom (Shake The Room) (Tube Tonic Remix) - ArtistDirty Boyz - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size6923382 - Total Time282122 - Track Number15 - Year2010 - Date Modified2011-06-29T04:09:16Z - Date Added2012-08-18T00:30:09Z - Bit Rate194 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7A87AEDF191F0957 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/15.%20Dirty%20Boyz%20-%20Boom%20(Shake%20The%20Room)%20(Tube%20Tonic%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5153 - - Track ID5153 - NameRevolution Underground (Hänzz Ab Mix) - ArtistChrizz D. - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size8099230 - Total Time313129 - Track Number16 - Year2010 - Date Modified2011-06-29T04:09:16Z - Date Added2012-08-18T00:30:09Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID699C4CC7FA436336 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/16.%20Chrizz%20D.%20-%20Revolution%20Underground%20(H%CE%A3nzz%20Ab%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5155 - - Track ID5155 - NameDirty Slut (M & Ace Remix) - ArtistTiWei - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size5389040 - Total Time217077 - Track Number17 - Year2010 - Date Modified2011-06-29T04:09:17Z - Date Added2012-08-18T00:30:09Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID51AD814A0F23AFA8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/17.%20TiWei%20-%20Dirty%20Slut%20(M%20&%20Ace%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5157 - - Track ID5157 - NameThis Is Our Summer - ArtistMindblast ft AcoB - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size8439727 - Total Time209188 - Track Number18 - Year2010 - Date Modified2011-06-29T04:09:17Z - Date Added2012-08-18T00:30:09Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID8A6E7436CAFDAD52 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/18.%20Mindblast%20ft%20AcoB%20-%20This%20Is%20Our%20Summer.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5159 - - Track ID5159 - NameBoys & Girls (Dancefloor Kingz Remix) - ArtistSouth Blast! ft Paula P'Cay - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size7571455 - Total Time187480 - Track Number19 - Year2010 - Date Modified2011-06-29T04:09:17Z - Date Added2012-08-18T00:30:09Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID5AE35C1FE06C3B15 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/19.%20South%20Blast!%20ft%20Paula%20P'Cay%20-%20Boys%20&%20Girls%20(Dancefloor%20Kingz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5161 - - Track ID5161 - NameIn 2 Sound (Club Mix) - ArtistBulljay - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size3419880 - Total Time134608 - Track Number20 - Year2010 - Date Modified2011-06-29T04:09:17Z - Date Added2012-08-18T00:30:09Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID53AA7B525416A874 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/20.%20Bulljay%20-%20In%202%20Sound%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5163 - - Track ID5163 - NameHey Amigoz (Original Mix) - ArtistDJ Zealot & Sam Punk - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size3473535 - Total Time133407 - Track Number21 - Year2010 - Date Modified2011-06-29T04:09:17Z - Date Added2012-08-18T00:30:09Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAA2A502EEA76C91E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/21.%20DJ%20Zealot%20&%20Sam%20Punk%20-%20Hey%20Amigoz%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5165 - - Track ID5165 - NameProper To Men - ArtistMiss N-Traxx - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size3277878 - Total Time133172 - Track Number22 - Year2010 - Date Modified2011-06-29T04:09:17Z - Date Added2012-08-18T00:30:09Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4BE76731B762A271 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/22.%20Miss%20N-Traxx%20-%20Proper%20To%20Men.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5167 - - Track ID5167 - NameThere Is No Law - ArtistHardface - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size3622914 - Total Time138370 - Track Number23 - Year2010 - Date Modified2011-06-29T04:09:18Z - Date Added2012-08-18T00:30:09Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF6BF52526FC1D464 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/23.%20Hardface%20-%20There%20Is%20No%20Law.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5169 - - Track ID5169 - NameFollow Me (Silver Nikan Remix) - ArtistMadison - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size5588192 - Total Time137900 - Track Number24 - Year2010 - Date Modified2011-06-29T04:09:18Z - Date Added2012-08-18T00:30:09Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDB0B4FAB64315BBC3 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/24.%20Madison%20-%20Follow%20Me%20(Silver%20Nikan%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5171 - - Track ID5171 - NameThe Day After (WIll I Be Free) (Comeea Remix) - ArtistRoni Meller ft Dee Dee - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD1 - GenreHard Trance - KindMPEG audio file - Size4684740 - Total Time191346 - Track Number25 - Year2010 - Date Modified2011-06-29T04:09:18Z - Date Added2012-08-18T00:30:10Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameDay After (WIll I Be Free) (Comeea Remix) - Persistent ID671829D4A6A98B2A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/25.%20Roni%20Meller%20ft%20Dee%20Dee%20-%20The%20Day%20After%20(WIll%20I%20Be%20Free)%20(Comeea%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5173 - - Track ID5173 - NameJaydee (Original Mix) - ArtistNoisecontrollers & Toneshifterz - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size6948398 - Total Time274808 - Track Number26 - Year2010 - Date Modified2011-06-29T04:09:32Z - Date Added2012-08-18T00:30:21Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7C70359DCAA2BFAC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/26.%20Noisecontrollers%20&%20Toneshifterz%20-%20Jaydee%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5175 - - Track ID5175 - NameNow Is The Time - ArtistDutch Master - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size6974187 - Total Time265613 - Track Number27 - Year2010 - Date Modified2011-06-29T04:09:32Z - Date Added2012-08-18T00:30:21Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0EC65CFF95F5B204 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/27.%20Dutch%20Master%20-%20Now%20Is%20The%20Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5177 - - Track ID5177 - NameTogether - ArtistD-Block & S-Te-Fan - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size5635497 - Total Time217678 - Track Number28 - Year2010 - Date Modified2011-06-29T04:09:32Z - Date Added2012-08-18T00:30:21Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE6DC9E10B97806AB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/28.%20D-Block%20&%20S-Te-Fan%20-%20Together.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5179 - - Track ID5179 - NameSutra - ArtistGostosa pres Cybersutra ft Tiff Lacey - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size4954984 - Total Time198400 - Track Number29 - Year2010 - Date Modified2011-06-29T04:09:32Z - Date Added2012-08-18T00:30:21Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC4616B04028A75B9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/29.%20Gostosa%20pres%20Cybersutra%20ft%20Tiff%20Lacey%20-%20Sutra.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5181 - - Track ID5181 - NameFade To Black (Official Black 2010 Anthem) - ArtistMax Enforcer ft The Rush - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size5997417 - Total Time246622 - Track Number30 - Year2010 - Date Modified2011-06-29T04:09:32Z - Date Added2012-08-18T00:30:21Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID44DB76F4579836CF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/30.%20Max%20Enforcer%20ft%20The%20Rush%20-%20Fade%20To%20Black%20(Official%20Black%202010%20Anthem).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5183 - - Track ID5183 - NameSave.Exit.Planet (Original Mix) - ArtistFrontliner - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size5926092 - Total Time219245 - Track Number31 - Year2010 - Date Modified2011-06-29T04:09:33Z - Date Added2012-08-18T00:30:21Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3120FF10435B3FEC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/31.%20Frontliner%20-%20Save.Exit.Planet%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5185 - - Track ID5185 - NameHouseheads - ArtistScope DJ - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size4784331 - Total Time179226 - Track Number32 - Year2010 - Date Modified2011-06-29T04:09:33Z - Date Added2012-08-18T00:30:21Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBFB3AF1CDF10DA40 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/32.%20Scope%20DJ%20-%20Househeads.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5187 - - Track ID5187 - NameReinvented - ArtistKrusaders - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size6261728 - Total Time242782 - Track Number33 - Year2010 - Date Modified2011-06-29T04:09:33Z - Date Added2012-08-18T00:30:21Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID06044B3DF24BB8C1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/33.%20Krusaders%20-%20Reinvented.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5189 - - Track ID5189 - NameOverdrive O - ArtistJosh & Wesz - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size7436212 - Total Time275670 - Track Number34 - Year2010 - Date Modified2011-06-29T04:09:33Z - Date Added2012-08-18T00:30:21Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF8C815589BBA8FE9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/34.%20Josh%20&%20Wesz%20-%20Overdrive%20O.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5191 - - Track ID5191 - NameTunebeat - ArtistTuneboy - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size2872738 - Total Time103967 - Track Number35 - Year2010 - Date Modified2011-06-29T04:09:33Z - Date Added2012-08-18T00:30:21Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID609DD0A8D4192FC5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/35.%20Tuneboy%20-%20Tunebeat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5193 - - Track ID5193 - NameParanoid - ArtistNoisecontrollers & Zany - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size4066759 - Total Time150465 - Track Number36 - Year2010 - Date Modified2011-06-29T04:09:33Z - Date Added2012-08-18T00:30:21Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1470081210A22EAC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/36.%20Noisecontrollers%20&%20Zany%20-%20Paranoid.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5195 - - Track ID5195 - NameBazooka Girl - ArtistIvan Carsten - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size4300637 - Total Time170866 - Track Number37 - Year2010 - Date Modified2011-06-29T04:09:33Z - Date Added2012-08-18T00:30:21Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF87D74BB74FBCB31 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/37.%20Ivan%20Carsten%20-%20Bazooka%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5197 - - Track ID5197 - NameEar Fucking - ArtistZatox - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size5543903 - Total Time204800 - Track Number38 - Year2010 - Date Modified2011-06-29T04:09:34Z - Date Added2012-08-18T00:30:21Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID26B70D37CD762E2D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/38.%20Zatox%20-%20Ear%20Fucking.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5199 - - Track ID5199 - NamePlace Of Terror - ArtistThe Machine - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size4529063 - Total Time182804 - Track Number39 - Year2010 - Date Modified2011-06-29T04:09:34Z - Date Added2012-08-18T00:30:21Z - Bit Rate195 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistMachine - Persistent IDBACAE7159019A2C8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/39.%20The%20Machine%20-%20Place%20Of%20Terror.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5201 - - Track ID5201 - NameAnswers - ArtistChain Reaction - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size3019710 - Total Time108826 - Track Number40 - Year2010 - Date Modified2011-06-29T04:09:34Z - Date Added2012-08-18T00:30:21Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9A0ADAE37BF13A32 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/40.%20Chain%20Reaction%20-%20Answers.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5203 - - Track ID5203 - NameFuckin' Tune - ArtistTatanka - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size3691899 - Total Time147226 - Track Number41 - Year2010 - Date Modified2011-06-29T04:09:34Z - Date Added2012-08-18T00:30:21Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAC5401ACE871DF9C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/41.%20Tatanka%20-%20Fuckin'%20Tune.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5205 - - Track ID5205 - NameThe New World - Artistd'Stylerz - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size6033812 - Total Time236173 - Track Number42 - Year2010 - Date Modified2011-06-29T04:09:34Z - Date Added2012-08-18T00:30:21Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameNew World - Persistent ID93F7CD9B3FF33B12 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/42.%20d'Stylerz%20-%20The%20New%20World.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5207 - - Track ID5207 - NameTake It Back (Original Mix) - ArtistBass Modulators - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size6768251 - Total Time247875 - Track Number43 - Year2010 - Date Modified2011-06-29T04:09:34Z - Date Added2012-08-18T00:30:21Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDB7E586888D3D0EE1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/43.%20Bass%20Modulators%20-%20Take%20It%20Back%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5209 - - Track ID5209 - NameRecalled To Life - ArtistDutch Master - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size7314833 - Total Time271333 - Track Number44 - Year2010 - Date Modified2011-06-29T04:09:35Z - Date Added2012-08-18T00:30:21Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID51A3575C2D44A4E0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/44.%20Dutch%20Master%20-%20Recalled%20To%20Life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5211 - - Track ID5211 - NameThrow Ya Handz - ArtistCoone - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size5600808 - Total Time220368 - Track Number45 - Year2010 - Date Modified2011-06-29T04:09:35Z - Date Added2012-08-18T00:30:21Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2E62628F2E5243E9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/45.%20Coone%20-%20Throw%20Ya%20Handz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5213 - - Track ID5213 - NameStreet Spirit - ArtistActivator & Ricky Raw - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size4499942 - Total Time177345 - Track Number46 - Year2010 - Date Modified2011-06-29T04:09:35Z - Date Added2012-08-18T00:30:21Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID09EE9E304625C2CB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/46.%20Activator%20&%20Ricky%20Raw%20-%20Street%20Spirit.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5215 - - Track ID5215 - NameShut Da Fuck Up - ArtistJoshua Hiroshy - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size2996909 - Total Time110994 - Track Number47 - Year2010 - Date Modified2011-06-29T04:09:35Z - Date Added2012-08-18T00:30:21Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID79835218DFF51143 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/47.%20Joshua%20Hiroshy%20-%20Shut%20Da%20Fuck%20Up.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5217 - - Track ID5217 - NameEngage The Noize - ArtistA-Wak - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size4596566 - Total Time113110 - Track Number48 - Year2010 - Date Modified2011-06-29T04:09:35Z - Date Added2012-08-18T00:30:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID570351302582678C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/48.%20A-Wak%20-%20Engage%20The%20Noize.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5219 - - Track ID5219 - NameOur World (Original Mix) - ArtistG-Style Brothers - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size2121471 - Total Time80169 - Track Number49 - Year2010 - Date Modified2011-06-29T04:09:35Z - Date Added2012-08-18T00:30:21Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID730F6A82B6EEF075 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/49.%20G-Style%20Brothers%20-%20Our%20World%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5221 - - Track ID5221 - NameWarpdrive - ArtistGoldkind - Album ArtistVA - AlbumDJ Networx Vol. 45 / CD2 - GenreHard Trance - KindMPEG audio file - Size3422985 - Total Time134060 - Track Number50 - Year2010 - Date Modified2011-06-29T04:09:35Z - Date Added2012-08-18T00:30:22Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9F6FE658F7DB2B80 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2045%20(2010)/50.%20Goldkind%20-%20Warpdrive.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5223 - - Track ID5223 - NameLike A lady (Club Mix) - ArtistThe Real Booty Babes - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size6710755 - Total Time253361 - Disc Number1 - Disc Count2 - Track Number1 - Year2010 - Date Modified2012-08-18T00:34:04Z - Date Added2012-08-18T00:32:01Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistReal Booty Babes - Persistent ID740555B004572C07 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/01.%20The%20Real%20Booty%20Babes%20-%20Like%20A%20lady%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5225 - - Track ID5225 - NameEnglishman In New York (Ti-Mo Remix) - ArtistPH Electro - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size6334909 - Total Time236930 - Disc Number1 - Disc Count2 - Track Number2 - Year2010 - Date Modified2012-08-18T00:33:49Z - Date Added2012-08-18T00:32:01Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID125BB96CEC65910E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/02.%20PH%20Electro%20-%20Englishman%20In%20New%20York%20(Ti-Mo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5227 - - Track ID5227 - NameRhythm And Drums 2K10 (D-Tune Remix) - ArtistFranky B. - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size7132160 - Total Time266710 - Disc Number1 - Disc Count2 - Track Number3 - Year2010 - Date Modified2012-08-18T00:33:49Z - Date Added2012-08-18T00:32:02Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1D9BE3ABAEF014D0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/03.%20Franky%20B.%20-%20Rhythm%20And%20Drums%202K10%20(D-Tune%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5229 - - Track ID5229 - NameExperience (Follow Me) 2K10 (Accuface High Energy Mix) - ArtistMegasonic - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size5950651 - Total Time216685 - Disc Number1 - Disc Count2 - Track Number4 - Year2010 - Date Modified2012-08-18T00:33:49Z - Date Added2012-08-18T00:32:02Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA392197AD31D3416 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/04.%20Megasonic%20-%20Experience%20(Follow%20Me)%202K10%20(Accuface%20High%20Energy%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5231 - - Track ID5231 - NamePlayers In A Frame (In Frame Mix) - ArtistRocco & Bass-T - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size6681486 - Total Time246674 - Disc Number1 - Disc Count2 - Track Number5 - Year2010 - Date Modified2012-08-18T00:33:49Z - Date Added2012-08-18T00:32:02Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4A20D2D1B1AB83CF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/05.%20Rocco%20&%20Bass-T%20-%20Players%20In%20A%20Frame%20(In%20Frame%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5233 - - Track ID5233 - NameDas Ist Party (Commercial Bitches meets Deltaforcez Remix) - ArtistBangboy - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size2943846 - Total Time96313 - Disc Number1 - Disc Count2 - Track Number6 - Year2010 - Date Modified2012-08-18T00:33:50Z - Date Added2012-08-18T00:32:02Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1816B4FAB1973FA9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/06.%20Bangboy%20-%20Das%20Ist%20Party%20(Commercial%20Bitches%20meets%20Deltaforcez%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5235 - - Track ID5235 - NameI Feel Like To Jump (Original Mix) - ArtistTosh & Ventua - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size7182607 - Total Time261746 - Disc Number1 - Disc Count2 - Track Number7 - Year2010 - Date Modified2012-08-18T00:33:50Z - Date Added2012-08-18T00:32:02Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC37BCA409CAAD14B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/07.%20Tosh%20&%20Ventua%20-%20I%20Feel%20Like%20To%20Jump%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5237 - - Track ID5237 - NameSet Me Free (Original Mix) - ArtistMiss Anna Toxic - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size7810274 - Total Time185077 - Disc Number1 - Disc Count2 - Track Number8 - Year2010 - Date Modified2012-08-18T00:33:50Z - Date Added2012-08-18T00:32:02Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID56809DD589CE2AA1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/08.%20Miss%20Anna%20Toxic%20-%20Set%20Me%20Free%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5239 - - Track ID5239 - NameTo The Top (Giorno Remix) - ArtistSteve Modana - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size5990905 - Total Time221857 - Disc Number1 - Disc Count2 - Track Number9 - Year2010 - Date Modified2012-08-18T00:33:50Z - Date Added2012-08-18T00:32:02Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAB4F6BD013C73228 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/09.%20Steve%20Modana%20-%20To%20The%20Top%20(Giorno%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5241 - - Track ID5241 - NameBiggest Numba (Sunics Remix) - ArtistDecicate - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size10004419 - Total Time239934 - Disc Number1 - Disc Count2 - Track Number10 - Year2010 - Date Modified2012-08-18T00:33:50Z - Date Added2012-08-18T00:32:02Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID1BC8C0B42923B273 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/10.%20Decicate%20-%20Biggest%20Numba%20(Sunics%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5243 - - Track ID5243 - NameOne By One (Franky B. Remix) - ArtistDee Vibez - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size3586518 - Total Time130011 - Disc Number1 - Disc Count2 - Track Number11 - Year2010 - Date Modified2012-08-18T00:33:50Z - Date Added2012-08-18T00:32:02Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3735275229C47BE1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/11.%20Dee%20Vibez%20-%20One%20By%20One%20(Franky%20B.%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5245 - - Track ID5245 - NameHardcore Junky Re-Junked (Main Mix) - ArtistDJ E-Maxx - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size5193550 - Total Time191712 - Disc Number1 - Disc Count2 - Track Number12 - Year2010 - Date Modified2012-08-18T00:33:50Z - Date Added2012-08-18T00:32:02Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0B7B5685D2AC3466 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/12.%20DJ%20E-Maxx%20-%20Hardcore%20Junky%20Re-Junked%20(Main%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5247 - - Track ID5247 - NameThe Highjacker (Justin Corza meets Greg Blast Remix) - ArtistPete Sheppibone - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size9742316 - Total Time233377 - Disc Number1 - Disc Count2 - Track Number13 - Year2010 - Date Modified2012-08-18T00:33:50Z - Date Added2012-08-18T00:32:02Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Sort NameHighjacker (Justin Corza meets Greg Blast Remix) - Persistent ID4443BD2EB56C90B7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/13.%20Pete%20Sheppibone%20-%20The%20Highjacker%20(Justin%20Corza%20meets%20Greg%20Blast%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5249 - - Track ID5249 - NameStop In My Mind 2010 (Frank Phonic Remix) - ArtistBeat Camouflage - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size7412055 - Total Time175124 - Disc Number1 - Disc Count2 - Track Number14 - Year2010 - Date Modified2012-08-18T00:33:51Z - Date Added2012-08-18T00:32:02Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID9E8701C9193F696A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/14.%20Beat%20Camouflage%20-%20Stop%20In%20My%20Mind%202010%20(Frank%20Phonic%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5251 - - Track ID5251 - NameOne More Try (Original Mix) - ArtistMonkey Business - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size10675385 - Total Time256705 - Disc Number1 - Disc Count2 - Track Number15 - Year2010 - Date Modified2012-08-18T00:33:51Z - Date Added2012-08-18T00:32:02Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID83F9C76DC1512572 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/15.%20Monkey%20Business%20-%20One%20More%20Try%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5253 - - Track ID5253 - NameGet On The Floor (Original Mix) - ArtistDJ Gollum - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size4050079 - Total Time141923 - Disc Number1 - Disc Count2 - Track Number16 - Year2010 - Date Modified2012-08-18T00:33:51Z - Date Added2012-08-18T00:32:02Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE2D282E63CFCA6F5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/16.%20DJ%20Gollum%20-%20Get%20On%20The%20Floor%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5255 - - Track ID5255 - NameIt Feels So Fine (Club Mix) - ArtistCalderone Inc. - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size4064376 - Total Time149812 - Disc Number1 - Disc Count2 - Track Number17 - Year2010 - Date Modified2012-08-18T00:33:51Z - Date Added2012-08-18T00:32:02Z - Bit Rate195 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7BD27438C03A16E2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/17.%20Calderone%20Inc.%20-%20It%20Feels%20So%20Fine%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5257 - - Track ID5257 - NameWill I (Club Mix) - ArtistMike Nero ft Rose Red - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size4350328 - Total Time156708 - Disc Number1 - Disc Count2 - Track Number18 - Year2010 - Date Modified2012-08-18T00:33:51Z - Date Added2012-08-18T00:32:02Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID36FF1509B4E43B8A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/18.%20Mike%20Nero%20ft%20Rose%20Red%20-%20Will%20I%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5259 - - Track ID5259 - NameCity Lights (Totte Vocal Mix) - ArtistFrank Kohnert - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size5143365 - Total Time184999 - Disc Number1 - Disc Count2 - Track Number19 - Year2010 - Date Modified2012-08-18T00:33:51Z - Date Added2012-08-18T00:32:02Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID050C646428214837 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/19.%20Frank%20Kohnert%20-%20City%20Lights%20(Totte%20Vocal%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5261 - - Track ID5261 - NameRoller Coaster - ArtistDJ Dean pres Balla Nation - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size2988028 - Total Time107493 - Disc Number1 - Disc Count2 - Track Number20 - Year2010 - Date Modified2012-08-18T00:33:51Z - Date Added2012-08-18T00:32:02Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD89536826E3C7F43 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/20.%20DJ%20Dean%20pres%20Balla%20Nation%20-%20Roller%20Coaster.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5263 - - Track ID5263 - NameMusic Keeps Me Movin' (Qrypto & Miss N-Traxx Remix) - ArtistEffix - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size4558660 - Total Time161488 - Disc Number1 - Disc Count2 - Track Number21 - Year2010 - Date Modified2012-08-18T00:33:51Z - Date Added2012-08-18T00:32:02Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9BED7C671A633F9C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/21.%20Effix%20-%20Music%20Keeps%20Me%20Movin'%20(Qrypto%20&%20Miss%20N-Traxx%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5265 - - Track ID5265 - NameWe Will Survive (Silver Nikan Nu-Style Mix) - ArtistBen Passion - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size4735026 - Total Time172982 - Disc Number1 - Disc Count2 - Track Number22 - Year2010 - Date Modified2012-08-18T00:33:52Z - Date Added2012-08-18T00:32:02Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDB6CAAA16D999C5F8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/22.%20Ben%20Passion%20-%20We%20Will%20Survive%20(Silver%20Nikan%20Nu-Style%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5267 - - Track ID5267 - NameHeat Of Injustice (Original Mix) - Artistvan Heeken & van der Vat - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size4808283 - Total Time177632 - Disc Number1 - Disc Count2 - Track Number23 - Year2010 - Date Modified2012-08-18T00:33:52Z - Date Added2012-08-18T00:32:02Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID96972950F45817DC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/23.%20van%20Heeken%20&%20van%20der%20Vat%20-%20Heat%20Of%20Injustice%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5269 - - Track ID5269 - NameTell Me (Energizer vs RainDropz! Remix) - ArtistSpreadlegz - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size2722667 - Total Time89443 - Disc Number1 - Disc Count2 - Track Number24 - Year2010 - Date Modified2012-08-18T00:33:52Z - Date Added2012-08-18T00:32:02Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID61BAF896DEAF2BF4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/24.%20Spreadlegz%20-%20Tell%20Me%20(Energizer%20vs%20RainDropz!%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5271 - - Track ID5271 - NameWe Engage (Original Mix) - ArtistCrasherz - Album ArtistVA - AlbumDJ Networx Vol. 46 - CD1 - GenreTrance - KindMPEG audio file - Size4877004 - Total Time165224 - Disc Number1 - Disc Count2 - Track Number25 - Year2010 - Date Modified2012-08-18T00:33:52Z - Date Added2012-08-18T00:32:02Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1BC352256A5FD23A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/25.%20Crasherz%20-%20We%20Engage%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5273 - - Track ID5273 - NameWe Live For The Music (Noisecontrollers Remix) - ArtistShowtek - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size6379574 - Total Time224052 - Disc Number2 - Disc Count2 - Track Number26 - Year2010 - Date Modified2012-08-18T00:35:16Z - Date Added2012-08-18T00:32:07Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID838DEDE7920CB057 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/26.%20Showtek%20-%20We%20Live%20For%20The%20Music%20(Noisecontrollers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5275 - - Track ID5275 - NameLes Phases - ArtistHardstyle Masterz - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size5775450 - Total Time199758 - Disc Number2 - Disc Count2 - Track Number27 - Year2010 - Date Modified2012-08-18T00:35:15Z - Date Added2012-08-18T00:32:07Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID978F1136FDB08617 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/27.%20Hardstyle%20Masterz%20-%20Les%20Phases.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5277 - - Track ID5277 - NameNightscape (Original Mix) - ArtistToneshifterz - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size4429457 - Total Time159712 - Disc Number2 - Disc Count2 - Track Number28 - Year2010 - Date Modified2012-08-18T00:35:15Z - Date Added2012-08-18T00:32:07Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDFCD2AA95D99757B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/28.%20Toneshifterz%20-%20Nightscape%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5279 - - Track ID5279 - NameWe Don't Care - ArtistDeepack - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size4093813 - Total Time146834 - Disc Number2 - Disc Count2 - Track Number29 - Year2010 - Date Modified2012-08-18T00:35:14Z - Date Added2012-08-18T00:32:08Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID477B0AE73074BC78 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/29.%20Deepack%20-%20We%20Don't%20Care.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5281 - - Track ID5281 - NameRisk - ArtistHardstyle Masterz - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size4449452 - Total Time159503 - Disc Number2 - Disc Count2 - Track Number30 - Year2010 - Date Modified2012-08-18T00:35:15Z - Date Added2012-08-18T00:32:08Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3428080707 - Play Date UTC2012-08-18T00:38:27Z - Artwork Count1 - Persistent ID6E006F1B0C9DD8D2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/30.%20Hardstyle%20Masterz%20-%20Risk.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5283 - - Track ID5283 - NameThe Strongest - ArtistBass Modulators vs Zentiments - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size4804922 - Total Time172146 - Disc Number2 - Disc Count2 - Track Number31 - Year2010 - Date Modified2012-08-18T00:35:38Z - Date Added2012-08-18T00:32:08Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameStrongest - Persistent ID455E13B298BB92AF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/31.%20Bass%20Modulators%20vs%20Zentiments%20-%20The%20Strongest.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5285 - - Track ID5285 - NameUnleash The Dragon - ArtistToneshifterz - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size8553079 - Total Time326426 - Disc Number2 - Disc Count2 - Track Number32 - Year2010 - Date Modified2012-08-18T00:35:15Z - Date Added2012-08-18T00:32:08Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAE2FCD52FF288C2F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/32.%20Toneshifterz%20-%20Unleash%20The%20Dragon.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5287 - - Track ID5287 - NameUocciu Fink? - ArtistFeita & Ralfio A.K.A. Activator & Zatox - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size8746994 - Total Time299937 - Disc Number2 - Disc Count2 - Track Number33 - Year2010 - Date Modified2012-08-18T00:35:15Z - Date Added2012-08-18T00:32:08Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4D648A09EDF00B8B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/33.%20Feita%20&%20Ralfio%20A.K.A.%20Activator%20&%20Zatox%20-%20Uocciu%20Fink-.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5289 - - Track ID5289 - NameNew Generation - ArtistAbyss & Judge - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size3449247 - Total Time119484 - Disc Number2 - Disc Count2 - Track Number34 - Year2010 - Date Modified2012-08-18T00:35:14Z - Date Added2012-08-18T00:32:08Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBC31751AADAE4B6A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/34.%20Abyss%20&%20Judge%20-%20New%20Generation.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5291 - - Track ID5291 - NameTokyo (Original Mix) - ArtistTatanka - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size9003538 - Total Time327340 - Disc Number2 - Disc Count2 - Track Number35 - Year2010 - Date Modified2012-08-18T00:35:16Z - Date Added2012-08-18T00:32:09Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAB6B9174067CC85C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/35.%20Tatanka%20-%20Tokyo%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5293 - - Track ID5293 - NameKentaurus - ArtistAnderson T. - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size6461193 - Total Time209319 - Disc Number2 - Disc Count2 - Track Number36 - Year2010 - Date Modified2012-08-18T00:35:14Z - Date Added2012-08-18T00:32:10Z - Bit Rate231 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA91967FA0A5DFD0B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/36.%20Anderson%20T.%20-%20Kentaurus.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5295 - - Track ID5295 - NameSeiv Mai Nait - ArtistTatact - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size7417886 - Total Time281939 - Disc Number2 - Disc Count2 - Track Number37 - Year2010 - Date Modified2012-08-18T00:35:16Z - Date Added2012-08-18T00:32:10Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4CB002B771B6DF3C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/37.%20Tatact%20-%20Seiv%20Mai%20Nait.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5297 - - Track ID5297 - NameBalance Of Opposites - ArtistSasha F. - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size5788428 - Total Time202605 - Disc Number2 - Disc Count2 - Track Number38 - Year2010 - Date Modified2012-08-18T00:35:16Z - Date Added2012-08-18T00:32:11Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID109B4AAA9B412585 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/38.%20Sasha%20F.%20-%20Balance%20Of%20Opposites.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5299 - - Track ID5299 - NameDikke Bleek (Alpha's Dikke Remix) - ArtistInteractable One - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size4960594 - Total Time158145 - Disc Number2 - Disc Count2 - Track Number39 - Year2010 - Date Modified2012-08-18T00:35:16Z - Date Added2012-08-18T00:32:11Z - Bit Rate230 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE631C1BE31AA4783 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/39.%20Interactable%20One%20-%20Dikke%20Bleek%20(Alpha's%20Dikke%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5301 - - Track ID5301 - NameMoonlight Blue (Original Mix) - ArtistFrancesco Zeta - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size3551892 - Total Time127033 - Disc Number2 - Disc Count2 - Track Number40 - Year2010 - Date Modified2012-08-18T00:35:15Z - Date Added2012-08-18T00:32:11Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID32EAE5850983DA93 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/40.%20Francesco%20Zeta%20-%20Moonlight%20Blue%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5303 - - Track ID5303 - NameNo Good (Hardclub Mix) - ArtistDJ Mikesh - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size3836788 - Total Time137795 - Disc Number2 - Disc Count2 - Track Number41 - Year2010 - Date Modified2012-08-18T00:35:15Z - Date Added2012-08-18T00:32:11Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1445C35C88C4B1DF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/41.%20DJ%20Mikesh%20-%20No%20Good%20(Hardclub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5305 - - Track ID5305 - NameStanding In Line - ArtistChristian D. - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size4358954 - Total Time154749 - Disc Number2 - Disc Count2 - Track Number42 - Year2010 - Date Modified2012-08-18T00:35:14Z - Date Added2012-08-18T00:32:11Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF9957C7606703CD6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/42.%20Christian%20D.%20-%20Standing%20In%20Line.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5307 - - Track ID5307 - NameMind Travel - ArtistInfecter - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size4086442 - Total Time142001 - Disc Number2 - Disc Count2 - Track Number43 - Year2010 - Date Modified2012-08-18T00:35:16Z - Date Added2012-08-18T00:32:11Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA66B5CFAEC28C4A9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/43.%20Infecter%20-%20Mind%20Travel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5309 - - Track ID5309 - NameCatch A Flatline (Weed On The Backseat) - Artist44 Desert Eagle - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size2968172 - Total Time100884 - Disc Number2 - Disc Count2 - Track Number44 - Year2010 - Date Modified2012-08-18T00:35:16Z - Date Added2012-08-18T00:32:11Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID56F2B603DF62048F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/44.%2044%20Desert%20Eagle%20-%20Catch%20A%20Flatline%20(Weed%20On%20The%20Backseat).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5311 - - Track ID5311 - NameMidnight - ArtistChiller & Lou - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size1988990 - Total Time63216 - Disc Number2 - Disc Count2 - Track Number45 - Year2010 - Date Modified2012-08-18T00:35:14Z - Date Added2012-08-18T00:32:11Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9F0E01909F9C93C4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/45.%20Chiller%20&%20Lou%20-%20Midnight.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5313 - - Track ID5313 - NameAlways Right - ArtistTha Playah - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size5613560 - Total Time210964 - Disc Number2 - Disc Count2 - Track Number46 - Year2010 - Date Modified2012-08-18T00:35:17Z - Date Added2012-08-18T00:32:11Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID005F4F7218F0B014 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/46.%20Tha%20Playah%20-%20Always%20Right.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5315 - - Track ID5315 - NameBlow My Horn - ArtistDR. Z-Vago - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size6365028 - Total Time148950 - Disc Number2 - Disc Count2 - Track Number47 - Year2010 - Date Modified2012-08-18T00:35:15Z - Date Added2012-08-18T00:32:11Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID70B316574279AF3C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/47.%20DR.%20Z-Vago%20-%20Blow%20My%20Horn.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5317 - - Track ID5317 - NameEvil Inside - ArtistEvil Activities - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size6930404 - Total Time263000 - Disc Number2 - Disc Count2 - Track Number48 - Year2010 - Date Modified2012-08-18T00:35:15Z - Date Added2012-08-18T00:32:11Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1A200E73C13E8B8C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/48.%20Evil%20Activities%20-%20Evil%20Inside.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5319 - - Track ID5319 - NameDicks, Pussy's And Assholes - ArtistTha Playah - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size5658913 - Total Time206419 - Disc Number2 - Disc Count2 - Track Number49 - Year2010 - Date Modified2012-08-18T00:35:17Z - Date Added2012-08-18T00:32:11Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0B92D3D5A6D916F0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/49.%20Tha%20Playah%20-%20Dicks,%20Pussy's%20And%20Assholes.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5321 - - Track ID5321 - NameAnother Kind Of Evil - ArtistFuryan - Album ArtistVA - AlbumDJ Networx Vol. 46 / CD2 - GenreTrance - KindMPEG audio file - Size6647211 - Total Time251167 - Disc Number2 - Disc Count2 - Track Number50 - Year2010 - Date Modified2012-08-18T00:35:15Z - Date Added2012-08-18T00:32:11Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6422FA960FC58209 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2046%20(2010)/50.%20Furyan%20-%20Another%20Kind%20Of%20Evil.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5323 - - Track ID5323 - NameBla Bla Bla 2K10 (T-Flow's Hands Up Remix) - ArtistGigi D'Agostino ft Bootmasters - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5877434 - Total Time195004 - Disc Number1 - Disc Count2 - Track Number1 - Year2011 - Date Modified2012-08-18T00:38:04Z - Date Added2012-08-18T00:36:28Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3428080964 - Play Date UTC2012-08-18T00:42:44Z - Artwork Count1 - Persistent IDCD7A732270819F1F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/01.%20Gigi%20D'Agostino%20ft%20Bootmasters%20-%20Bla%20Bla%20Bla%202K10%20(T-Flow's%20Hands%20Up%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5325 - - Track ID5325 - NameJoli Garcon (Crystal Lake Remix) - ArtistLolita - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size6566619 - Total Time241711 - Disc Number1 - Disc Count2 - Track Number2 - Year2011 - Date Modified2012-08-18T00:37:49Z - Date Added2012-08-18T00:36:28Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDACD9FCD0B8D4F9E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/02.%20Lolita%20-%20Joli%20Garcon%20(Crystal%20Lake%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5327 - - Track ID5327 - NameTricky Disco 2k10 (Breakboy & Ced Tecknoboy Dark Mix) - ArtistDiscotronic - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5715963 - Total Time210024 - Disc Number1 - Disc Count2 - Track Number3 - Year2011 - Date Modified2012-08-18T00:37:50Z - Date Added2012-08-18T00:36:28Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3428081272 - Play Date UTC2012-08-18T00:47:52Z - Artwork Count1 - Persistent ID17A5C9CBCD74FF64 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/03.%20Discotronic%20-%20Tricky%20Disco%202k10%20(Breakboy%20&%20Ced%20Tecknoboy%20Dark%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5329 - - Track ID5329 - NameMoonlight (Club Mix) - ArtistJens O. vs Ti-Mo - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size4335284 - Total Time156734 - Disc Number1 - Disc Count2 - Track Number4 - Year2011 - Date Modified2012-08-18T00:37:50Z - Date Added2012-08-18T00:36:28Z - Bit Rate195 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE4C1E71031A35AF4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/04.%20Jens%20O.%20vs%20Ti-Mo%20-%20Moonlight%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5331 - - Track ID5331 - NameLost In Love 2010 (Rocco & Bass-T Remix) - ArtistKid Kawaii vs Legend B - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size4900364 - Total Time176848 - Disc Number1 - Disc Count2 - Track Number5 - Year2011 - Date Modified2012-08-18T00:37:50Z - Date Added2012-08-18T00:36:28Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD90A1331A2D7CABB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/05.%20Kid%20Kawaii%20vs%20Legend%20B%20-%20Lost%20In%20Love%202010%20(Rocco%20&%20Bass-T%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5333 - - Track ID5333 - NameChildren Of The Night (Original Mix) - ArtistAlex M. vs Marc van Damme - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5634997 - Total Time198373 - Disc Number1 - Disc Count2 - Track Number6 - Year2011 - Date Modified2012-08-18T00:37:50Z - Date Added2012-08-18T00:36:28Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7347B60DEF7A948B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/06.%20Alex%20M.%20vs%20Marc%20van%20Damme%20-%20Children%20Of%20The%20Night%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5335 - - Track ID5335 - NameKeep The Fire Burning (Driver & Face Remix) - ArtistMike Nero - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size4914439 - Total Time178364 - Disc Number1 - Disc Count2 - Track Number7 - Year2011 - Date Modified2012-08-18T00:37:50Z - Date Added2012-08-18T00:36:28Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID727C9AC788DBFEEE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/07.%20Mike%20Nero%20-%20Keep%20The%20Fire%20Burning%20(Driver%20&%20Face%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5337 - - Track ID5337 - NameDirty Beatz (Serenity & Spyer Original Mix) - ArtistDicksun Gee - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5129843 - Total Time188342 - Disc Number1 - Disc Count2 - Track Number8 - Year2011 - Date Modified2012-08-18T00:37:50Z - Date Added2012-08-18T00:36:28Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID76E046836980513C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/08.%20Dicksun%20Gee%20-%20Dirty%20Beatz%20(Serenity%20&%20Spyer%20Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5339 - - Track ID5339 - NamePath To Paradise (DJ Gollum Remix) - ArtistAddicted Craze ft The Circus - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size4816552 - Total Time164806 - Disc Number1 - Disc Count2 - Track Number9 - Year2011 - Date Modified2012-08-18T00:37:50Z - Date Added2012-08-18T00:36:28Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDCE81C096204876C4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/09.%20Addicted%20Craze%20ft%20The%20Circus%20-%20Path%20To%20Paradise%20(DJ%20Gollum%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5341 - - Track ID5341 - NameHerr DJ (Sonic Base Remix) - ArtistDenada Brothers ft Limec - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size6248551 - Total Time222824 - Disc Number1 - Disc Count2 - Track Number10 - Year2011 - Date Modified2012-08-18T00:37:50Z - Date Added2012-08-18T00:36:28Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID40A479CEC03D7091 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/10.%20Denada%20Brothers%20ft%20Limec%20-%20Herr%20DJ%20(Sonic%20Base%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5343 - - Track ID5343 - NameOnly Girl (In The World) (E-Nergy Mix) - ArtistNick Skitz vs DJ Lotus - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5096225 - Total Time190798 - Disc Number1 - Disc Count2 - Track Number11 - Year2011 - Date Modified2012-08-18T00:37:51Z - Date Added2012-08-18T00:36:28Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID028248EC22544C10 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/11.%20Nick%20Skitz%20vs%20DJ%20Lotus%20-%20Only%20Girl%20(In%20The%20World)%20(E-Nergy%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5345 - - Track ID5345 - NameFeeling You (Scoon & Delore Remix) - ArtistCommercial Bitches - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size10162539 - Total Time241423 - Disc Number1 - Disc Count2 - Track Number12 - Year2011 - Date Modified2012-08-18T00:37:51Z - Date Added2012-08-18T00:36:28Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID47F1BA9694F91F95 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/12.%20Commercial%20Bitches%20-%20Feeling%20You%20(Scoon%20&%20Delore%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5347 - - Track ID5347 - NameDon't Stop Me For Dreaming (Actibass Remix) - ArtistCrazy One - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size4640633 - Total Time163657 - Disc Number1 - Disc Count2 - Track Number13 - Year2011 - Date Modified2012-08-18T00:37:51Z - Date Added2012-08-18T00:36:28Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3B4CF20CA1FA7472 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/13.%20Crazy%20One%20-%20Don't%20Stop%20Me%20For%20Dreaming%20(Actibass%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5349 - - Track ID5349 - NameFay (Red Jaxx vs Franky B. Remix) - ArtistSunset Project meets Steve Stio - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5780469 - Total Time202553 - Disc Number1 - Disc Count2 - Track Number14 - Year2011 - Date Modified2012-08-18T00:37:51Z - Date Added2012-08-18T00:36:28Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE8842D2D5F4958EA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/14.%20Sunset%20Project%20meets%20Steve%20Stio%20-%20Fay%20(Red%20Jaxx%20vs%20Franky%20B.%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5351 - - Track ID5351 - NameIn The Clouds (Brian Sid Club Remix) - ArtistIguana Glue vs Disko Punks - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size7917071 - Total Time185286 - Disc Number1 - Disc Count2 - Track Number15 - Year2011 - Date Modified2012-08-18T00:37:51Z - Date Added2012-08-18T00:36:28Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID53C1E60C0A575A62 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/15.%20Iguana%20Glue%20vs%20Disko%20Punks%20-%20In%20The%20Clouds%20(Brian%20Sid%20Club%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5353 - - Track ID5353 - NameLeaving (Commercial Club Crew Remix) - ArtistStee Wee Bee ft Snyder & Ray - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5109116 - Total Time171885 - Disc Number1 - Disc Count2 - Track Number16 - Year2011 - Date Modified2012-08-18T00:37:51Z - Date Added2012-08-18T00:36:28Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA2E11E7883E6B286 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/16.%20Stee%20Wee%20Bee%20ft%20Snyder%20&%20Ray%20-%20Leaving%20(Commercial%20Club%20Crew%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5355 - - Track ID5355 - NameToxic Kiss (Rocco & Bass-T Remix) - ArtistSam Walkertone ft Lyane Leigh & Kevin Kelly - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size4856105 - Total Time171650 - Disc Number1 - Disc Count2 - Track Number17 - Year2011 - Date Modified2012-08-18T00:37:51Z - Date Added2012-08-18T00:36:28Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6C47E85E627191D5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/17.%20Sam%20Walkertone%20ft%20Lyane%20Leigh%20&%20Kevin%20Kelly%20-%20Toxic%20Kiss%20(Rocco%20&%20Bass-T%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5357 - - Track ID5357 - NameBorn To Be Wild (DJ Gollum Remix) - ArtistDirty Impact ft Chris Antonio - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5625356 - Total Time208404 - Disc Number1 - Disc Count2 - Track Number18 - Year2011 - Date Modified2012-08-18T00:37:51Z - Date Added2012-08-18T00:36:28Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4135361A1807E624 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/18.%20Dirty%20Impact%20ft%20Chris%20Antonio%20-%20Born%20To%20Be%20Wild%20(DJ%20Gollum%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5359 - - Track ID5359 - NameChance To See - ArtistThe Confuzers - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size4437164 - Total Time158354 - Disc Number1 - Disc Count2 - Track Number19 - Year2011 - Date Modified2012-08-18T00:37:52Z - Date Added2012-08-18T00:36:28Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistConfuzers - Persistent ID75C499C51178066A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/19.%20The%20Confuzers%20-%20Chance%20To%20See.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5361 - - Track ID5361 - NameVanished Dream (Club Mix) - ArtistGainworx ft Anthya - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size3407085 - Total Time118360 - Disc Number1 - Disc Count2 - Track Number20 - Year2011 - Date Modified2012-08-18T00:37:52Z - Date Added2012-08-18T00:36:28Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID707501F9D4707EA1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/20.%20Gainworx%20ft%20Anthya%20-%20Vanished%20Dream%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5363 - - Track ID5363 - NameCorcovado (Ti-Mo Remix) - ArtistRay Knox - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5584989 - Total Time206785 - Disc Number1 - Disc Count2 - Track Number21 - Year2011 - Date Modified2012-08-18T00:37:52Z - Date Added2012-08-18T00:36:28Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7BF9842C969E1509 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/21.%20Ray%20Knox%20-%20Corcovado%20(Ti-Mo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5365 - - Track ID5365 - NameSound Of Silence (Extended Mix) - ArtistDJ Dean meets Hennes Petersen - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5855111 - Total Time216685 - Disc Number1 - Disc Count2 - Track Number22 - Year2011 - Date Modified2012-08-18T00:37:52Z - Date Added2012-08-18T00:36:28Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE6D4ABFD54E31D38 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/22.%20DJ%20Dean%20meets%20Hennes%20Petersen%20-%20Sound%20Of%20Silence%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5367 - - Track ID5367 - NameI'm History - ArtistHennes Petersen - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5559831 - Total Time194142 - Disc Number1 - Disc Count2 - Track Number23 - Year2011 - Date Modified2012-08-18T00:37:52Z - Date Added2012-08-18T00:36:28Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0D46ADF246C56C3C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/23.%20Hennes%20Petersen%20-%20I'm%20History.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5369 - - Track ID5369 - NameTake Your Chance (Jaxx 'N Danger Remix) - ArtistGiga Dance meets Sven E - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size5509790 - Total Time204251 - Disc Number1 - Disc Count2 - Track Number24 - Year2011 - Date Modified2012-08-18T00:37:52Z - Date Added2012-08-18T00:36:28Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID90DC8679C56FE266 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/24.%20Giga%20Dance%20meets%20Sven%20E%20-%20Take%20Your%20Chance%20(Jaxx%20'N%20Danger%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5371 - - Track ID5371 - NameFire (Original Mix) - ArtistMike Molossa - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD1 - GenreTechno - KindMPEG audio file - Size4745790 - Total Time162403 - Disc Number1 - Disc Count2 - Track Number25 - Year2011 - Date Modified2012-08-18T00:37:52Z - Date Added2012-08-18T00:36:28Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID25AF68F5C85A6B31 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/25.%20Mike%20Molossa%20-%20Fire%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5373 - - Track ID5373 - NameFaster 'N Further (Original Mix) - ArtistNoisecontrollers - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size7554432 - Total Time277760 - Disc Number2 - Disc Count2 - Track Number26 - Year2011 - Date Modified2012-08-18T00:38:20Z - Date Added2012-08-18T00:36:34Z - Bit Rate203 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID1CF7C6CCEC005657 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/26.%20Noisecontrollers%20-%20Faster%20'N%20Further%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5375 - - Track ID5375 - NameSave Your Scrap For Victory (DefQon. 1 Australia Anthem) - ArtistHeadhunterz - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size7489770 - Total Time283219 - Disc Number2 - Disc Count2 - Track Number27 - Year2011 - Date Modified2012-08-18T00:38:18Z - Date Added2012-08-18T00:36:34Z - Bit Rate197 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDAB694F394DBD10C5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/27.%20Headhunterz%20-%20Save%20Your%20Scrap%20For%20Victory%20(DefQon.%201%20Australia%20Anthem).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5377 - - Track ID5377 - NameAlternate Reality (Qlimax Anthem 2010) - ArtistBrennan Heart - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size6491458 - Total Time233952 - Disc Number2 - Disc Count2 - Track Number28 - Year2011 - Date Modified2012-08-18T00:38:15Z - Date Added2012-08-18T00:36:35Z - Bit Rate204 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDAD6695CDB15B45AE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/28.%20Brennan%20Heart%20-%20Alternate%20Reality%20(Qlimax%20Anthem%202010).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5379 - - Track ID5379 - NameDelay Distortion - ArtistWildstylez - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size4698053 - Total Time154880 - Disc Number2 - Disc Count2 - Track Number29 - Year2011 - Date Modified2012-08-18T00:38:21Z - Date Added2012-08-18T00:36:35Z - Bit Rate216 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDCB8607172AF37F52 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/29.%20Wildstylez%20-%20Delay%20Distortion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5381 - - Track ID5381 - NameA Decade Of Dedication - ArtistD-Block & S-Te-Fan, Villian & McDv8 - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size5180814 - Total Time188447 - Disc Number2 - Disc Count2 - Track Number30 - Year2011 - Date Modified2012-08-18T00:38:17Z - Date Added2012-08-18T00:36:35Z - Bit Rate198 - Sample Rate44100 - Comments - Artwork Count1 - Sort NameDecade Of Dedication - Persistent ID83933B1730A2D6BE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/30.%20D-Block%20&%20S-Te-Fan,%20Villian%20&%20McDv8%20-%20A%20Decade%20Of%20Dedication.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5383 - - Track ID5383 - NameOrigins Of Life (Original Mix) - ArtistToneshifterz meets NitrouZ - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size5531478 - Total Time196022 - Disc Number2 - Disc Count2 - Track Number31 - Year2011 - Date Modified2012-08-18T00:38:21Z - Date Added2012-08-18T00:36:36Z - Bit Rate205 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDD3A08C4765C80937 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/31.%20Toneshifterz%20meets%20NitrouZ%20-%20Origins%20Of%20Life%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5385 - - Track ID5385 - NameBassBoom - ArtistPsyko Punkz - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size4091256 - Total Time139937 - Disc Number2 - Disc Count2 - Track Number32 - Year2011 - Date Modified2012-08-18T00:38:20Z - Date Added2012-08-18T00:36:37Z - Bit Rate205 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDB782CA9A34E57A47 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/32.%20Psyko%20Punkz%20-%20BassBoom.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5387 - - Track ID5387 - NamePut This On Youtube - ArtistAmbassador Inc. - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size3357980 - Total Time112091 - Disc Number2 - Disc Count2 - Track Number33 - Year2011 - Date Modified2012-08-18T00:38:14Z - Date Added2012-08-18T00:36:39Z - Bit Rate204 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDEF1F0F86C47DC9CC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/33.%20Ambassador%20Inc.%20-%20Put%20This%20On%20Youtube.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5389 - - Track ID5389 - NameClub Bizarre (Headhunterz & Noisecontrollers Remix) - ArtistBrooklyn Bounce - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size8054859 - Total Time283454 - Disc Number2 - Disc Count2 - Track Number34 - Year2011 - Date Modified2012-08-18T00:38:16Z - Date Added2012-08-18T00:36:40Z - Bit Rate213 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDADDD14BDE099A4EE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/34.%20Brooklyn%20Bounce%20-%20Club%20Bizarre%20(Headhunterz%20&%20Noisecontrollers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5391 - - Track ID5391 - NameLSD (Love, Sadness & Desire) - ArtistBrennan Heart - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size3971172 - Total Time140773 - Disc Number2 - Disc Count2 - Track Number35 - Year2011 - Date Modified2012-08-18T00:38:16Z - Date Added2012-08-18T00:36:40Z - Bit Rate197 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID97A93A429BF68252 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/35.%20Brennan%20Heart%20-%20LSD%20(Love,%20Sadness%20&%20Desire).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5393 - - Track ID5393 - NameThe Artist - ArtistAmbassador Inc. - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size3353238 - Total Time115252 - Disc Number2 - Disc Count2 - Track Number36 - Year2011 - Date Modified2012-08-18T00:38:15Z - Date Added2012-08-18T00:36:40Z - Bit Rate198 - Sample Rate44100 - Comments - Artwork Count1 - Sort NameArtist - Persistent ID468A529CD87EEFE1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/36.%20Ambassador%20Inc.%20-%20The%20Artist.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5395 - - Track ID5395 - NameLost In Dreams (Alpha² Remix) - ArtistMike NRG - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size8316010 - Total Time300800 - Disc Number2 - Disc Count2 - Track Number37 - Year2011 - Date Modified2012-08-18T00:38:20Z - Date Added2012-08-18T00:36:40Z - Bit Rate207 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDCDE6BE07804C9134 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/37.%20Mike%20NRG%20-%20Lost%20In%20Dreams%20(Alpha%C2%B2%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5397 - - Track ID5397 - NameInspiration - ArtistInsiderz - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size5260879 - Total Time118883 - Disc Number2 - Disc Count2 - Track Number38 - Year2011 - Date Modified2012-08-18T00:38:19Z - Date Added2012-08-18T00:36:40Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDFC0F30896C93AB9E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/38.%20Insiderz%20-%20Inspiration.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5399 - - Track ID5399 - NameLost In Music - ArtistWildstylez & Isaac - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size6138553 - Total Time219219 - Disc Number2 - Disc Count2 - Track Number39 - Year2011 - Date Modified2012-08-18T00:38:22Z - Date Added2012-08-18T00:36:40Z - Bit Rate205 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDC602101630CC632E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/39.%20Wildstylez%20&%20Isaac%20-%20Lost%20In%20Music.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5401 - - Track ID5401 - NamePull Ya Strings - ArtistPsyko Punkz - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size3197189 - Total Time112039 - Disc Number2 - Disc Count2 - Track Number40 - Year2011 - Date Modified2012-08-18T00:38:21Z - Date Added2012-08-18T00:36:40Z - Bit Rate192 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID03723C4BBD2872D7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/40.%20Psyko%20Punkz%20-%20Pull%20Ya%20Strings.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5403 - - Track ID5403 - NameMillion Miles - ArtistCoone - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size5958614 - Total Time223817 - Disc Number2 - Disc Count2 - Track Number41 - Year2011 - Date Modified2012-08-18T00:38:17Z - Date Added2012-08-18T00:36:40Z - Bit Rate195 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID13A5ABEBC9CA10D2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/41.%20Coone%20-%20Million%20Miles.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5405 - - Track ID5405 - NameDNA - ArtistDa Tweekaz - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size8860072 - Total Time348029 - Disc Number2 - Disc Count2 - Track Number42 - Year2011 - Date Modified2012-08-18T00:38:17Z - Date Added2012-08-18T00:36:40Z - Bit Rate192 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDE75E7ACA5C335AA7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/42.%20Da%20Tweekaz%20-%20DNA.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5407 - - Track ID5407 - NameWicked (Original Mix) - ArtistFlarup & Activator - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size5308768 - Total Time196832 - Disc Number2 - Disc Count2 - Track Number43 - Year2011 - Date Modified2012-08-18T00:38:18Z - Date Added2012-08-18T00:36:40Z - Bit Rate195 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDD1C46495D66D9076 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/43.%20Flarup%20&%20Activator%20-%20Wicked%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5409 - - Track ID5409 - NameGinger (Original Mix) - ArtistIntractable One - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size2696713 - Total Time89208 - Disc Number2 - Disc Count2 - Track Number44 - Year2011 - Date Modified2012-08-18T00:38:19Z - Date Added2012-08-18T00:36:40Z - Bit Rate197 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDF3861E38FCD2E5F2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/44.%20Intractable%20One%20-%20Ginger%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5411 - - Track ID5411 - NameGot The Rhythm - ArtistPaulistos ft Mc Dart - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size4245820 - Total Time140826 - Disc Number2 - Disc Count2 - Track Number45 - Year2011 - Date Modified2012-08-18T00:38:20Z - Date Added2012-08-18T00:36:40Z - Bit Rate212 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID190AF15B61590AE7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/45.%20Paulistos%20ft%20Mc%20Dart%20-%20Got%20The%20Rhythm.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5413 - - Track ID5413 - NameTripping - ArtistActivator & Flarup - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size5607024 - Total Time198426 - Disc Number2 - Disc Count2 - Track Number46 - Year2011 - Date Modified2012-08-18T00:38:14Z - Date Added2012-08-18T00:36:40Z - Bit Rate206 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID3E8EE8581E854388 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/46.%20Activator%20&%20Flarup%20-%20Tripping.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5415 - - Track ID5415 - NameThe Otherside (Album Version) - ArtistAlphaverb - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size3253810 - Total Time96626 - Disc Number2 - Disc Count2 - Track Number47 - Year2011 - Date Modified2012-08-18T00:38:14Z - Date Added2012-08-18T00:36:40Z - Bit Rate228 - Sample Rate44100 - Comments - Artwork Count1 - Sort NameOtherside (Album Version) - Persistent IDBAE4D2F1B458C6FF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/47.%20Alphaverb%20-%20The%20Otherside%20(Album%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5417 - - Track ID5417 - NameLight (Original Mix) - ArtistAnderson T. - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size6288594 - Total Time226481 - Disc Number2 - Disc Count2 - Track Number48 - Year2011 - Date Modified2012-08-18T00:38:15Z - Date Added2012-08-18T00:36:40Z - Bit Rate204 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID6F1318C52A946D7C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/48.%20Anderson%20T.%20-%20Light%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5419 - - Track ID5419 - NameWe Are One - ArtistChiller & Lou - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size4342617 - Total Time155350 - Disc Number2 - Disc Count2 - Track Number49 - Year2011 - Date Modified2012-08-18T00:38:16Z - Date Added2012-08-18T00:36:40Z - Bit Rate198 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID41718B148495851C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/49.%20Chiller%20&%20Lou%20-%20We%20Are%20One.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5421 - - Track ID5421 - NameDope On The Beat (Madison Square Live Version) - ArtistDesert Eagle - Album ArtistVA - AlbumDJ Networx Vol. 47 / CD2 - GenreTechno - KindMPEG audio file - Size5819071 - Total Time192235 - Disc Number2 - Disc Count2 - Track Number50 - Year2011 - Date Modified2012-08-18T00:38:18Z - Date Added2012-08-18T00:36:40Z - Bit Rate221 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDB8087BB324314FC2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2047%20(2011)/50.%20Desert%20Eagle%20-%20Dope%20On%20The%20Beat%20(Madison%20Square%20Live%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5423 - - Track ID5423 - NameSex, Bass And Rock 'n' Roll 2K11 (DJ's From Mars Club Mix 2K11) - ArtistBrooklyn Bounce vs DJ's From Mars - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size5038301 - Total Time179983 - Disc Number1 - Disc Count2 - Track Number1 - Year2011 - Date Modified2012-08-18T00:42:08Z - Date Added2012-08-18T00:40:36Z - Bit Rate208 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID0D1AF8D7AAE0F15D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/01.%20Brooklyn%20Bounce%20vs%20DJ's%20From%20Mars%20-%20Sex,%20Bass%20And%20Rock%20'n'%20Roll%202K11%20(DJ's%20From%20Mars%20Club%20Mix%202K11).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5425 - - Track ID5425 - NameHello (Club Edit) - ArtistMartin Solveig & Dragonette - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size5292833 - Total Time205348 - Disc Number1 - Disc Count2 - Track Number2 - Year2011 - Date Modified2012-08-18T00:42:14Z - Date Added2012-08-18T00:40:36Z - Bit Rate192 - Sample Rate44100 - Artwork Count1 - Persistent IDD8C385327C784FD4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/02.%20Martin%20Solveig%20&%20Dragonette%20-%20Hello%20(Club%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5427 - - Track ID5427 - NamePump It Up (Club Mix) - ArtistMike De Ville vs L.A. Calling - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size4656504 - Total Time168489 - Disc Number1 - Disc Count2 - Track Number3 - Year2011 - Date Modified2012-08-18T00:42:14Z - Date Added2012-08-18T00:40:36Z - Bit Rate204 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID9133B751720C4216 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/03.%20Mike%20De%20Ville%20vs%20L.A.%20Calling%20-%20Pump%20It%20Up%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5429 - - Track ID5429 - NameLookout Weekend (Club Mix) - ArtistPulsedriver - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size4971063 - Total Time191947 - Disc Number1 - Disc Count2 - Track Number4 - Year2011 - Date Modified2012-08-18T00:42:14Z - Date Added2012-08-18T00:40:36Z - Bit Rate192 - Sample Rate44100 - Artwork Count1 - Persistent ID0D210FE586C50181 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/04.%20Pulsedriver%20-%20Lookout%20Weekend%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5431 - - Track ID5431 - NameEverytime (CcK Remix) - ArtistRocco - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size4987268 - Total Time182831 - Disc Number1 - Disc Count2 - Track Number5 - Year2011 - Date Modified2012-08-18T00:42:14Z - Date Added2012-08-18T00:40:36Z - Bit Rate202 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID9AED06CF254D0A90 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/05.%20Rocco%20-%20Everytime%20(CcK%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5433 - - Track ID5433 - NameYeah Yeah Yeah (Ryan T. & Rick M. Bootleg Mix) - ArtistSpencer & Hill - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size4926704 - Total Time190093 - Disc Number1 - Disc Count2 - Track Number6 - Year2011 - Date Modified2012-08-18T00:42:14Z - Date Added2012-08-18T00:40:36Z - Bit Rate192 - Sample Rate44100 - Artwork Count1 - Persistent ID4CE36C58111BE469 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/06.%20Spencer%20&%20Hill%20-%20Yeah%20Yeah%20Yeah%20(Ryan%20T.%20&%20Rick%20M.%20Bootleg%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5435 - - Track ID5435 - NameDance (Giorno Remix) - ArtistBryce ft Gerald G! & J-Malik - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size5792029 - Total Time211722 - Disc Number1 - Disc Count2 - Track Number7 - Year2011 - Date Modified2012-08-18T00:42:14Z - Date Added2012-08-18T00:40:36Z - Bit Rate205 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID7FBB362F894C2E26 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/07.%20Bryce%20ft%20Gerald%20G!%20&%20J-Malik%20-%20Dance%20(Giorno%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5437 - - Track ID5437 - NameDynamite (ClubExclusive Remix) - ArtistOther Ego - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size6932660 - Total Time256653 - Disc Number1 - Disc Count2 - Track Number8 - Year2011 - Date Modified2012-08-18T00:42:14Z - Date Added2012-08-18T00:40:36Z - Bit Rate204 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDAEF8A2A3C76A398F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/08.%20Other%20Ego%20-%20Dynamite%20(ClubExclusive%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5439 - - Track ID5439 - NameCrazy Pipe 2K11 (DJ's From Mars Club Remix) - ArtistDJ Bomba vs Alex M. - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size6652659 - Total Time256705 - Disc Number1 - Disc Count2 - Track Number9 - Year2011 - Date Modified2012-08-18T00:42:15Z - Date Added2012-08-18T00:40:36Z - Bit Rate196 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID41615EBA7BCD0927 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/09.%20DJ%20Bomba%20vs%20Alex%20M.%20-%20Crazy%20Pipe%202K11%20(DJ's%20From%20Mars%20Club%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5441 - - Track ID5441 - NameI Love Dance (Massman Remix) - ArtistSasha Dith - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size9347333 - Total Time343353 - Disc Number1 - Disc Count2 - Track Number10 - Year2011 - Date Modified2012-08-18T00:42:15Z - Date Added2012-08-18T00:40:36Z - Bit Rate209 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID1D5D114625253D49 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/10.%20Sasha%20Dith%20-%20I%20Love%20Dance%20(Massman%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5443 - - Track ID5443 - NameBop Bop! (Deltaforcez Big Room Mix) - ArtistMiami Inc - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size3802949 - Total Time135026 - Disc Number1 - Disc Count2 - Track Number11 - Year2011 - Date Modified2012-08-18T00:42:15Z - Date Added2012-08-18T00:40:36Z - Bit Rate204 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID7B016D4F94585A0F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/11.%20Miami%20Inc%20-%20Bop%20Bop!%20(Deltaforcez%20Big%20Room%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5445 - - Track ID5445 - NameElectro Bass (Extended Mix) - ArtistDJ E-MaxX - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size3926211 - Total Time134817 - Disc Number1 - Disc Count2 - Track Number12 - Year2011 - Date Modified2012-08-18T00:42:15Z - Date Added2012-08-18T00:40:36Z - Bit Rate211 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDA25BB058AFBEF34E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/12.%20DJ%20E-MaxX%20-%20Electro%20Bass%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5447 - - Track ID5447 - NameMove Your Hands Up (Again) (Club Mix) - ArtistClubRaiders - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size6849558 - Total Time258586 - Disc Number1 - Disc Count2 - Track Number13 - Year2011 - Date Modified2012-08-18T00:42:15Z - Date Added2012-08-18T00:40:36Z - Bit Rate200 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDD95F7B668EF43D55 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/13.%20ClubRaiders%20-%20Move%20Your%20Hands%20Up%20(Again)%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5449 - - Track ID5449 - NameTill Morning (Dan Winter Remix) - ArtistDarius & Finlay ft Nicco - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size6705923 - Total Time253361 - Disc Number1 - Disc Count2 - Track Number14 - Year2011 - Date Modified2012-08-18T00:42:15Z - Date Added2012-08-18T00:40:36Z - Bit Rate200 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID22CB3B2C384625DF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/14.%20Darius%20&%20Finlay%20ft%20Nicco%20-%20Till%20Morning%20(Dan%20Winter%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5451 - - Track ID5451 - NameNew Life (OverDrive Division Mix) - ArtistCosmic Squad - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size4223160 - Total Time152842 - Disc Number1 - Disc Count2 - Track Number15 - Year2011 - Date Modified2012-08-18T00:42:15Z - Date Added2012-08-18T00:40:36Z - Bit Rate202 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDFEAF84A3AD2EE234 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/15.%20Cosmic%20Squad%20-%20New%20Life%20(OverDrive%20Division%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5453 - - Track ID5453 - NameTom's Diner (Rocco & Bass-T Remix) - ArtistDirty Impact vs Royal XTC - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size4081858 - Total Time150125 - Disc Number1 - Disc Count2 - Track Number16 - Year2011 - Date Modified2012-08-18T00:42:15Z - Date Added2012-08-18T00:40:36Z - Bit Rate198 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID2FE02B0694229E72 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/16.%20Dirty%20Impact%20vs%20Royal%20XTC%20-%20Tom's%20Diner%20(Rocco%20&%20Bass-T%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5455 - - Track ID5455 - NameBass Back (Club Mix) - ArtistLowcash ft Mai - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size4113843 - Total Time135392 - Disc Number1 - Disc Count2 - Track Number17 - Year2011 - Date Modified2012-08-18T00:42:15Z - Date Added2012-08-18T00:40:36Z - Bit Rate222 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID85BCF802E1365250 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/17.%20Lowcash%20ft%20Mai%20-%20Bass%20Back%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5457 - - Track ID5457 - NameWait For Me (MaLu Project Remix) - ArtistDezybill - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size3529896 - Total Time119614 - Disc Number1 - Disc Count2 - Track Number18 - Year2011 - Date Modified2012-08-18T00:42:16Z - Date Added2012-08-18T00:40:36Z - Bit Rate212 - Sample Rate44100 - Comments - Artwork Count1 - Persistent IDA93E2625E22CA156 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/18.%20Dezybill%20-%20Wait%20For%20Me%20(MaLu%20Project%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5459 - - Track ID5459 - NameThe Sun (Deltaforcez Remix) - ArtistR.Gee & TeCay - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size3949912 - Total Time149394 - Disc Number1 - Disc Count2 - Track Number19 - Year2011 - Date Modified2012-08-18T00:42:16Z - Date Added2012-08-18T00:40:36Z - Bit Rate192 - Sample Rate44100 - Artwork Count1 - Sort NameSun (Deltaforcez Remix) - Persistent ID991C7A807F86293C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/19.%20R.Gee%20&%20TeCay%20-%20The%20Sun%20(Deltaforcez%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5461 - - Track ID5461 - NameI Need You To Be Here (Discotronic Remix) - ArtistCrossfader ft Rebecca - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size3970962 - Total Time141113 - Disc Number1 - Disc Count2 - Track Number20 - Year2011 - Date Modified2012-08-18T00:42:16Z - Date Added2012-08-18T00:40:36Z - Bit Rate204 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID2457C61A4DC4B169 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/20.%20Crossfader%20ft%20Rebecca%20-%20I%20Need%20You%20To%20Be%20Here%20(Discotronic%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5463 - - Track ID5463 - NameFuck All The Bitches In The Club (Bytes Brother Remix) - ArtistDamon Paul - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size5429698 - Total Time203493 - Disc Number1 - Disc Count2 - Track Number21 - Year2011 - Date Modified2012-08-18T00:42:16Z - Date Added2012-08-18T00:40:36Z - Bit Rate199 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID6EFDD4BC9ECF7F5A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/21.%20Damon%20Paul%20-%20Fuck%20All%20The%20Bitches%20In%20The%20Club%20(Bytes%20Brother%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5465 - - Track ID5465 - NameSuch A Slut (Original Mix) - ArtistLubrikuntz - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size4224653 - Total Time153208 - Disc Number1 - Disc Count2 - Track Number22 - Year2011 - Date Modified2012-08-18T00:42:16Z - Date Added2012-08-18T00:40:36Z - Bit Rate201 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID4E142FF3952B71EA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/22.%20Lubrikuntz%20-%20Such%20A%20Slut%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5467 - - Track ID5467 - NameWe Strike Back (Dragon & Hunter Remix) - ArtistIlluminatorz - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size4966061 - Total Time191738 - Disc Number1 - Disc Count2 - Track Number23 - Year2011 - Date Modified2012-08-18T00:42:17Z - Date Added2012-08-18T00:40:36Z - Bit Rate192 - Sample Rate44100 - Artwork Count1 - Persistent IDCA2BFD7702182522 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/23.%20Illuminatorz%20-%20We%20Strike%20Back%20(Dragon%20&%20Hunter%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5469 - - Track ID5469 - NameKick That Bazz (Extended Mix) - ArtistTrooper - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size3246989 - Total Time110053 - Disc Number1 - Disc Count2 - Track Number24 - Year2011 - Date Modified2012-08-18T00:42:17Z - Date Added2012-08-18T00:40:36Z - Bit Rate210 - Sample Rate44100 - Comments - Artwork Count1 - Persistent ID8ABEFB0F7B6DF908 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/24.%20Trooper%20-%20Kick%20That%20Bazz%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5471 - - Track ID5471 - NameAlpha Labs (Dragon & Hunter Remix) - ArtistTrance-fOrces - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD1 - GenreTrance - KindMPEG audio file - Size3719206 - Total Time139781 - Disc Number1 - Disc Count2 - Track Number25 - Year2011 - Date Modified2012-08-18T00:42:17Z - Date Added2012-08-18T00:40:36Z - Bit Rate192 - Sample Rate44100 - Artwork Count1 - Persistent ID0FEA9EC942244DAB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/25.%20Trance-fOrces%20-%20Alpha%20Labs%20(Dragon%20&%20Hunter%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5473 - - Track ID5473 - NameRaw Style - ArtistZatox ft Nikita - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size6686289 - Total Time246778 - Disc Number2 - Disc Count2 - Track Number26 - Year2011 - Date Modified2012-08-18T00:42:44Z - Date Added2012-08-18T00:40:42Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD62D1F86D97D38B1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/26.%20Zatox%20ft%20Nikita%20-%20Raw%20Style.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5475 - - Track ID5475 - NameMove For Energy (Album Edit) - ArtistPhilippe Rochard & Max B. Grant - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size5260206 - Total Time198713 - Disc Number2 - Disc Count2 - Track Number27 - Year2011 - Date Modified2012-08-18T00:42:52Z - Date Added2012-08-18T00:40:43Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3D6BBFD2E35B4EB5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/27.%20Philippe%20Rochard%20&%20Max%20B.%20Grant%20-%20Move%20For%20Energy%20(Album%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5477 - - Track ID5477 - NameEndless Fight - ArtistA-Lusion - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size5573588 - Total Time194560 - Disc Number2 - Disc Count2 - Track Number28 - Year2011 - Date Modified2012-08-18T00:42:52Z - Date Added2012-08-18T00:40:43Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD333DCA71A6CB76A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/28.%20A-Lusion%20-%20Endless%20Fight.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5479 - - Track ID5479 - NameI Saw It - ArtistFrontliner - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size4882560 - Total Time168437 - Disc Number2 - Disc Count2 - Track Number29 - Year2011 - Date Modified2012-08-18T00:42:52Z - Date Added2012-08-18T00:40:43Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDFD7C02D342F4F9D2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/29.%20Frontliner%20-%20I%20Saw%20It.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5481 - - Track ID5481 - NameNo One Excluded - ArtistZatox & A-Lusion - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size4863448 - Total Time174654 - Disc Number2 - Disc Count2 - Track Number30 - Year2011 - Date Modified2012-08-18T00:42:52Z - Date Added2012-08-18T00:40:44Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID10DA23587D4A1E1E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/30.%20Zatox%20&%20A-Lusion%20-%20No%20One%20Excluded.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5483 - - Track ID5483 - NameSpiritual Fire - ArtistDavide Sonar - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size5682269 - Total Time194168 - Disc Number2 - Disc Count2 - Track Number31 - Year2011 - Date Modified2012-08-18T00:42:52Z - Date Added2012-08-18T00:40:44Z - Bit Rate219 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID10FCA5723928DED6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/31.%20Davide%20Sonar%20-%20Spiritual%20Fire.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5485 - - Track ID5485 - NameA Complex Situation - ArtistWildstylez - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size6101358 - Total Time216842 - Disc Number2 - Disc Count2 - Track Number32 - Year2011 - Date Modified2012-08-18T00:42:52Z - Date Added2012-08-18T00:40:45Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameComplex Situation - Persistent IDB28EA3BCB082BB0D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/32.%20Wildstylez%20-%20A%20Complex%20Situation.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5487 - - Track ID5487 - NameFallin (Original Mix) - ArtistPhilippe Rochard - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size5406247 - Total Time202893 - Disc Number2 - Disc Count2 - Track Number33 - Year2011 - Date Modified2012-08-18T00:42:52Z - Date Added2012-08-18T00:40:46Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDFC4F7344CE6F39AD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/33.%20Philippe%20Rochard%20-%20Fallin%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5489 - - Track ID5489 - NameTrigger - ArtistThe Pitcher - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size6410837 - Total Time221335 - Disc Number2 - Disc Count2 - Track Number34 - Year2011 - Date Modified2012-08-18T00:42:52Z - Date Added2012-08-18T00:40:46Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistPitcher - Persistent IDED3523828C540B8D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/34.%20The%20Pitcher%20-%20Trigger.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5491 - - Track ID5491 - NameInferno (Summer Angel 2009 Anthem) (Original Mix) - ArtistDa Tweekaz - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size3889819 - Total Time139520 - Disc Number2 - Disc Count2 - Track Number35 - Year2011 - Date Modified2012-08-18T00:42:52Z - Date Added2012-08-18T00:40:46Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD038279B343AC9DB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/35.%20Da%20Tweekaz%20-%20Inferno%20(Summer%20Angel%202009%20Anthem)%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5493 - - Track ID5493 - NameShowtime (Tatanka Remix) - ArtistTatanka pres J. Hiroshy - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size3564245 - Total Time121626 - Disc Number2 - Disc Count2 - Track Number36 - Year2011 - Date Modified2012-08-18T00:42:53Z - Date Added2012-08-18T00:40:46Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8B3A7DE1B6B39AA4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/36.%20Tatanka%20pres%20J.%20Hiroshy%20-%20Showtime%20(Tatanka%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5495 - - Track ID5495 - NameTwilight Basement - ArtistTwilight Forces - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size3443376 - Total Time118151 - Disc Number2 - Disc Count2 - Track Number37 - Year2011 - Date Modified2012-08-18T00:42:53Z - Date Added2012-08-18T00:40:46Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDB935F9FF4D59E59F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/37.%20Twilight%20Forces%20-%20Twilight%20Basement.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5497 - - Track ID5497 - NamePussy Eaters (Club Version) - ArtistZenith vs Avex - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size7442565 - Total Time267311 - Disc Number2 - Disc Count2 - Track Number38 - Year2011 - Date Modified2012-08-18T00:42:53Z - Date Added2012-08-18T00:40:46Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0D81FD7CEB96E4D0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/38.%20Zenith%20vs%20Avex%20-%20Pussy%20Eaters%20(Club%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5499 - - Track ID5499 - NameMake It Loud 2012 (Headhunterz Remix) - ArtistBlutonium Boy - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size7114230 - Total Time236225 - Disc Number2 - Disc Count2 - Track Number39 - Year2011 - Date Modified2012-08-18T00:42:53Z - Date Added2012-08-18T00:40:46Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID91DAE8D1116F3A5C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/39.%20Blutonium%20Boy%20-%20Make%20It%20Loud%202012%20(Headhunterz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5501 - - Track ID5501 - NameCan You Feel It (Zenith vs Avex Version) - ArtistZenith & Zatox - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size4795745 - Total Time162351 - Disc Number2 - Disc Count2 - Track Number40 - Year2011 - Date Modified2012-08-18T00:42:53Z - Date Added2012-08-18T00:40:46Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7679EB92DA2D3ABD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/40.%20Zenith%20&%20Zatox%20-%20Can%20You%20Feel%20It%20(Zenith%20vs%20Avex%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5503 - - Track ID5503 - NameBelieve (Original Edit) - ArtistDa Tweekaz - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size6271552 - Total Time230452 - Disc Number2 - Disc Count2 - Track Number41 - Year2011 - Date Modified2012-08-18T00:42:53Z - Date Added2012-08-18T00:40:46Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDAF705FBA0838568 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/41.%20Da%20Tweekaz%20-%20Believe%20(Original%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5505 - - Track ID5505 - NameConvictive - ArtistB-Ware & Frequencerz - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size6394971 - Total Time251271 - Disc Number2 - Disc Count2 - Track Number42 - Year2011 - Date Modified2012-08-18T00:42:53Z - Date Added2012-08-18T00:40:46Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDABA706E911A3B7ED - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/42.%20B-Ware%20&%20Frequencerz%20-%20Convictive.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5507 - - Track ID5507 - NameRenaissance - ArtistThe Machine - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size7317520 - Total Time260623 - Disc Number2 - Disc Count2 - Track Number43 - Year2011 - Date Modified2012-08-18T00:42:53Z - Date Added2012-08-18T00:40:46Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistMachine - Persistent IDA73A1F8A01C32481 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/43.%20The%20Machine%20-%20Renaissance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5509 - - Track ID5509 - NameA New Vision - ArtistThe Vision - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size7318771 - Total Time271281 - Disc Number2 - Disc Count2 - Track Number44 - Year2011 - Date Modified2012-08-18T00:42:54Z - Date Added2012-08-18T00:40:46Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistVision - Sort NameNew Vision - Persistent IDB35C13AF419EA4F1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/44.%20The%20Vision%20-%20A%20New%20Vision.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5511 - - Track ID5511 - NamePure HS - ArtistA-Drive meets Sasha F - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size3207868 - Total Time109766 - Disc Number2 - Disc Count2 - Track Number45 - Year2011 - Date Modified2012-08-18T00:42:54Z - Date Added2012-08-18T00:40:46Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID78FBDCD084A528C6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/45.%20A-Drive%20meets%20Sasha%20F%20-%20Pure%20HS.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5513 - - Track ID5513 - NameRawk - ArtistB-Ware & Frequencerz ft MC Onid - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size3709808 - Total Time139389 - Disc Number2 - Disc Count2 - Track Number46 - Year2011 - Date Modified2012-08-18T00:42:54Z - Date Added2012-08-18T00:40:46Z - Bit Rate192 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID3FC31F99C8070248 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/46.%20B-Ware%20&%20Frequencerz%20ft%20MC%20Onid%20-%20Rawk.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5515 - - Track ID5515 - NameCan You Hear? (Racid Mix) - ArtistCorecrackerz - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size3063920 - Total Time104620 - Disc Number2 - Disc Count2 - Track Number47 - Year2011 - Date Modified2012-08-18T00:42:54Z - Date Added2012-08-18T00:40:46Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8E635C97576043AE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/47.%20Corecrackerz%20-%20Can%20You%20Hear-%20(Racid%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5517 - - Track ID5517 - NameMomentz (Alternative Mix) - ArtistG-Style Brothers - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size4495820 - Total Time167340 - Disc Number2 - Disc Count2 - Track Number48 - Year2011 - Date Modified2012-08-18T00:42:54Z - Date Added2012-08-18T00:40:46Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID851CC0AFFDB37884 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/48.%20G-Style%20Brothers%20-%20Momentz%20(Alternative%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5519 - - Track ID5519 - NamePlans Against Us - ArtistGoldkind - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size4324072 - Total Time161201 - Disc Number2 - Disc Count2 - Track Number49 - Year2011 - Date Modified2012-08-18T00:42:55Z - Date Added2012-08-18T00:40:46Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1A87B7EF34851CA7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/49.%20Goldkind%20-%20Plans%20Against%20Us.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5521 - - Track ID5521 - NameOne Inch At A Time - Artist44 Desert Eagle - Album ArtistVA - AlbumDJ Networx Vol. 48 / CD2 - GenreTrance - KindMPEG audio file - Size5704871 - Total Time197276 - Disc Number2 - Disc Count2 - Track Number50 - Year2011 - Date Modified2012-08-18T00:42:55Z - Date Added2012-08-18T00:40:46Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDE2B08ECD0161112 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2048%20(2011)/50.%2044%20Desert%20Eagle%20-%20One%20Inch%20At%20A%20Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5523 - - Track ID5523 - NameOpen Sesame (Giorno Bootleg Remix) - ArtistFM Audio ft Leila K - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size7420459 - Total Time172434 - Disc Number1 - Disc Count2 - Track Number1 - Year2011 - Date Modified2012-08-18T00:44:37Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1FBB7018E26D7538 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/01.%20FM%20Audio%20ft%20Leila%20K%20-%20Open%20Sesame%20(Giorno%20Bootleg%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5525 - - Track ID5525 - NamePor Que No? (DJ Gollum Remix) - ArtistAlex M. vs Marc van Damme - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size8066208 - Total Time188577 - Disc Number1 - Disc Count2 - Track Number2 - Year2011 - Date Modified2012-08-18T00:44:45Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7271B64BF8BC623E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/02.%20Alex%20M.%20vs%20Marc%20van%20Damme%20-%20Por%20Que%20No-%20(DJ%20Gollum%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5527 - - Track ID5527 - NameBeautiful Day (Original Mix) - ArtistG&G - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size6831093 - Total Time157701 - Disc Number1 - Disc Count2 - Track Number3 - Year2011 - Date Modified2012-08-18T00:44:51Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID369C4E3A607E7B99 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/03.%20G&G%20-%20Beautiful%20Day%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5529 - - Track ID5529 - NameBurn It Up 2k11 (Robkay Remix) - ArtistD-Tune - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size8836263 - Total Time207830 - Disc Number1 - Disc Count2 - Track Number4 - Year2011 - Date Modified2012-08-18T00:44:45Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID028C0FA26D8AB49A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/04.%20D-Tune%20-%20Burn%20It%20Up%202k11%20(Robkay%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5531 - - Track ID5531 - NameS&M (Krommerz Mix) - ArtistClub Madness - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size9532152 - Total Time225227 - Disc Number1 - Disc Count2 - Track Number5 - Year2011 - Date Modified2012-08-18T00:44:45Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3FBB9307990591D5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/05.%20Club%20Madness%20-%20S&M%20(Krommerz%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5533 - - Track ID5533 - NameMove Your Hands Up (Again) (Serenity & Spyer Remix Edit) - ArtistClubraiders - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size5342185 - Total Time120476 - Disc Number1 - Disc Count2 - Track Number6 - Year2011 - Date Modified2012-08-18T00:44:45Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8FD72496A151905F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/06.%20Clubraiders%20-%20Move%20Your%20Hands%20Up%20(Again)%20(Serenity%20&%20Spyer%20Remix%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5535 - - Track ID5535 - NameOrder 2 Rock (Just!One Club Mix) - ArtistTotte - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size3990028 - Total Time86674 - Disc Number1 - Disc Count2 - Track Number7 - Year2011 - Date Modified2012-08-18T00:45:03Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID547ED9224B0B9BCC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/07.%20Totte%20-%20Order%202%20Rock%20(Just!One%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5537 - - Track ID5537 - NameShout It Out Loud (Tosh & Ventura Remix) - ArtistJeSe - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size10231216 - Total Time242703 - Disc Number1 - Disc Count2 - Track Number8 - Year2011 - Date Modified2012-08-18T00:44:51Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA901C9320548FADA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/08.%20JeSe%20-%20Shout%20It%20Out%20Loud%20(Tosh%20&%20Ventura%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5539 - - Track ID5539 - NameRavers Night (Kompulsor Remix) - ArtistNiccho - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size5440344 - Total Time122932 - Disc Number1 - Disc Count2 - Track Number9 - Year2011 - Date Modified2012-08-18T00:44:57Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF2A0B1B700FFE97D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/09.%20Niccho%20-%20Ravers%20Night%20(Kompulsor%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5541 - - Track ID5541 - NameHere We Go Again (Extended Mix) - ArtistDJ Roxx - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size9232283 - Total Time217730 - Disc Number1 - Disc Count2 - Track Number10 - Year2011 - Date Modified2012-08-18T00:44:45Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID54B20F885A58EE6B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/10.%20DJ%20Roxx%20-%20Here%20We%20Go%20Again%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5543 - - Track ID5543 - NameMy Style - ArtistDJ Mikesh - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size8622020 - Total Time202475 - Disc Number1 - Disc Count2 - Track Number11 - Year2011 - Date Modified2012-08-18T00:44:45Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID15778D51FF367368 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/11.%20DJ%20Mikesh%20-%20My%20Style.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5545 - - Track ID5545 - NameAdagio For Strings (Brooklyn Bounce Remix) - ArtistSplash ft Nick Austin - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size10073475 - Total Time238759 - Disc Number1 - Disc Count2 - Track Number12 - Year2011 - Date Modified2012-08-18T00:44:57Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDB0AD453D861866A6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/12.%20Splash%20ft%20Nick%20Austin%20-%20Adagio%20For%20Strings%20(Brooklyn%20Bounce%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5547 - - Track ID5547 - NameLift Me Up (G4bby ft Bazz Boys Remix) - ArtistGodlike Music Port - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size9871794 - Total Time233717 - Disc Number1 - Disc Count2 - Track Number13 - Year2011 - Date Modified2012-08-18T00:44:51Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID22962A95207A3F40 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/13.%20Godlike%20Music%20Port%20-%20Lift%20Me%20Up%20(G4bby%20ft%20Bazz%20Boys%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5549 - - Track ID5549 - NameWe Are One (G4bby ft Bazzboyz Remix) - ArtistIlluminatorz & Art Of Punk - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size8656592 - Total Time203337 - Disc Number1 - Disc Count2 - Track Number14 - Year2011 - Date Modified2012-08-18T00:44:51Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID65B13717C3A5EECF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/14.%20Illuminatorz%20&%20Art%20Of%20Punk%20-%20We%20Are%20One%20(G4bby%20ft%20Bazzboyz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5551 - - Track ID5551 - NameShake It (Club Mix) - ArtistAndy Jay Powell - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size7323246 - Total Time170004 - Disc Number1 - Disc Count2 - Track Number15 - Year2011 - Date Modified2012-08-18T00:44:45Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8E1F30FB89919C4F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/15.%20Andy%20Jay%20Powell%20-%20Shake%20It%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5553 - - Track ID5553 - NameDon't Go Away (Original Mix) - ArtistQuickdrop - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size8654452 - Total Time203284 - Disc Number1 - Disc Count2 - Track Number16 - Year2011 - Date Modified2012-08-18T00:44:57Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF27CEB5393B419DB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/16.%20Quickdrop%20-%20Don't%20Go%20Away%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5555 - - Track ID5555 - NameDance With Me (DJ THT Remix) - ArtistBryce ft Carlprit - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size5791447 - Total Time131709 - Disc Number1 - Disc Count2 - Track Number17 - Year2011 - Date Modified2012-08-18T00:44:45Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0B5E3C77E931C82C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/17.%20Bryce%20ft%20Carlprit%20-%20Dance%20With%20Me%20(DJ%20THT%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5557 - - Track ID5557 - NameExcited (Massman Remix) - ArtistTom Mountain - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size12520571 - Total Time299937 - Disc Number1 - Disc Count2 - Track Number18 - Year2011 - Date Modified2012-08-18T00:44:57Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID85F5567BFAECA358 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/18.%20Tom%20Mountain%20-%20Excited%20(Massman%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5559 - - Track ID5559 - NameAnyone But Me - ArtistHennes Petersen - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size4744425 - Total Time105534 - Disc Number1 - Disc Count2 - Track Number19 - Year2011 - Date Modified2012-08-18T00:44:51Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDED827D0B3E0D5205 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/19.%20Hennes%20Petersen%20-%20Anyone%20But%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5561 - - Track ID5561 - NameBassfinder (Club Mix) - ArtistDJ Challenger - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size4852063 - Total Time108225 - Disc Number1 - Disc Count2 - Track Number20 - Year2011 - Date Modified2012-08-18T00:44:45Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE0EBA056A347534E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/20.%20DJ%20Challenger%20-%20Bassfinder%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5563 - - Track ID5563 - NameSecret Love (Giorno Remix) - ArtistChris van Dutch meets Raindropz! - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size8731816 - Total Time205217 - Disc Number1 - Disc Count2 - Track Number21 - Year2011 - Date Modified2012-08-18T00:44:45Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAF3A7C1C3E81840E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/21.%20Chris%20van%20Dutch%20meets%20Raindropz!%20-%20Secret%20Love%20(Giorno%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5565 - - Track ID5565 - NameGoodbye (Cosmic Squad Remix) - ArtistSys-K ft Ketlin - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size7938709 - Total Time185391 - Disc Number1 - Disc Count2 - Track Number22 - Year2011 - Date Modified2012-08-18T00:44:57Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAD778A7C2E0C5769 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/22.%20Sys-K%20ft%20Ketlin%20-%20Goodbye%20(Cosmic%20Squad%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5567 - - Track ID5567 - NameAfter Midnight (Gainworx Hardstyle Remix) - ArtistSoulcry vs DJ Deraven - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size8138322 - Total Time190380 - Disc Number1 - Disc Count2 - Track Number23 - Year2011 - Date Modified2012-08-18T00:44:57Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1C8E1AFF8692A44E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/23.%20Soulcry%20vs%20DJ%20Deraven%20-%20After%20Midnight%20(Gainworx%20Hardstyle%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5569 - - Track ID5569 - NameUnderground Roxx (Red Jaxx Hardstyle Remix) - ArtistMike Molossa - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size12504937 - Total Time299546 - Disc Number1 - Disc Count2 - Track Number24 - Year2011 - Date Modified2012-08-18T00:44:57Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE453309C42219060 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/24.%20Mike%20Molossa%20-%20Underground%20Roxx%20(Red%20Jaxx%20Hardstyle%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5571 - - Track ID5571 - NameNough Men R Dead - ArtistPunk Buster ft Ultimate MC - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD1 - GenreTechno - KindMPEG audio file - Size10883229 - Total Time259004 - Disc Number1 - Disc Count2 - Track Number25 - Year2011 - Date Modified2012-08-18T00:44:57Z - Date Added2012-08-18T00:43:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAC7C9E612D930B82 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/25.%20Punk%20Buster%20ft%20Ultimate%20MC%20-%20Nough%20Men%20R%20Dead.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5573 - - Track ID5573 - NameThe Trip (44 Desert Eagle Remix) - ArtistHardface - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size8379649 - Total Time196414 - Disc Number2 - Disc Count2 - Track Number26 - Year2011 - Date Modified2012-08-18T00:45:02Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameTrip (44 Desert Eagle Remix) - Persistent ID05A94CC3703440F7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/26.%20Hardface%20-%20The%20Trip%20(44%20Desert%20Eagle%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5575 - - Track ID5575 - NameHeadstrike (Original Mix) - ArtistHardstyle Connectors - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size6102827 - Total Time139493 - Disc Number2 - Disc Count2 - Track Number27 - Year2011 - Date Modified2012-08-18T00:45:03Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC7A9BF67760EA3E2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/27.%20Hardstyle%20Connectors%20-%20Headstrike%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5577 - - Track ID5577 - NameWrong For That - ArtistInfecter - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size4087173 - Total Time89103 - Disc Number2 - Disc Count2 - Track Number28 - Year2011 - Date Modified2012-08-18T00:45:04Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID00476FED85BF2A40 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/28.%20Infecter%20-%20Wrong%20For%20That.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5579 - - Track ID5579 - NameFrom Within - ArtistHeadhunterz - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size8467386 - Total Time198608 - Disc Number2 - Disc Count2 - Track Number29 - Year2011 - Date Modified2012-08-18T00:45:04Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA75AEC3DC09E9321 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/29.%20Headhunterz%20-%20From%20Within.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5581 - - Track ID5581 - NameBack To Basics - ArtistWildstylez - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size9853968 - Total Time233273 - Disc Number2 - Disc Count2 - Track Number30 - Year2011 - Date Modified2012-08-18T00:45:10Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4484AF638E5BADFB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/30.%20Wildstylez%20-%20Back%20To%20Basics.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5583 - - Track ID5583 - NamePart Of The Hard (Bioweapon Remix) - ArtistD-Block & S-te-Fan - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size10464246 - Total Time248528 - Disc Number2 - Disc Count2 - Track Number31 - Year2011 - Date Modified2012-08-18T00:45:00Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID04525C5371AAF997 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/31.%20D-Block%20&%20S-te-Fan%20-%20Part%20Of%20The%20Hard%20(Bioweapon%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5585 - - Track ID5585 - NameD.W.X. - ArtistCoone & Da Tweekaz - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size6354605 - Total Time145789 - Disc Number2 - Disc Count2 - Track Number32 - Year2011 - Date Modified2012-08-18T00:44:59Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID92F558F70BF5A340 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/32.%20Coone%20&%20Da%20Tweekaz%20-%20D.W.X..mp3 - File Folder Count-1 - Library Folder Count-1 - - 5587 - - Track ID5587 - NameSound Of Pryme (Official Pryme Anthem 2011) - ArtistA-Lusion & Unifite - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size9814337 - Total Time232280 - Disc Number2 - Disc Count2 - Track Number33 - Year2011 - Date Modified2012-08-18T00:44:58Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE13F0E24CDB68654 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/33.%20A-Lusion%20&%20Unifite%20-%20Sound%20Of%20Pryme%20(Official%20Pryme%20Anthem%202011).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5589 - - Track ID5589 - NameInto The Capital (Official Bassleader Anthem 2011) - ArtistScope DJ - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size8250118 - Total Time193175 - Disc Number2 - Disc Count2 - Track Number34 - Year2011 - Date Modified2012-08-18T00:45:09Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDD50D68E9DDB065A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/34.%20Scope%20DJ%20-%20Into%20The%20Capital%20(Official%20Bassleader%20Anthem%202011).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5591 - - Track ID5591 - NameGreat Dreams - ArtistOutlander - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size9335693 - Total Time220316 - Disc Number2 - Disc Count2 - Track Number35 - Year2011 - Date Modified2012-08-18T00:45:06Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6434AA74CF3A7322 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/35.%20Outlander%20-%20Great%20Dreams.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5593 - - Track ID5593 - NameMusic Is My Life - ArtistBass Modulators - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size9052547 - Total Time213237 - Disc Number2 - Disc Count2 - Track Number36 - Year2011 - Date Modified2012-08-18T00:44:59Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3F9EC7DA2AD33B4A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/36.%20Bass%20Modulators%20-%20Music%20Is%20My%20Life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5595 - - Track ID5595 - NameRight Down There - ArtistPradera - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size9223893 - Total Time217521 - Disc Number2 - Disc Count2 - Track Number37 - Year2011 - Date Modified2012-08-18T00:45:06Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID06F3DC4E7FDCD2C8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/37.%20Pradera%20-%20Right%20Down%20There.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5597 - - Track ID5597 - NameCan't Hold Us Back - ArtistZatox ft Sarah Maria - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size8338895 - Total Time195395 - Disc Number2 - Disc Count2 - Track Number38 - Year2011 - Date Modified2012-08-18T00:45:12Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID302FC1018001F54E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/38.%20Zatox%20ft%20Sarah%20Maria%20-%20Can't%20Hold%20Us%20Back.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5599 - - Track ID5599 - NameReally Don't Care - ArtistThe Prophet - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size9989813 - Total Time236669 - Disc Number2 - Disc Count2 - Track Number39 - Year2011 - Date Modified2012-08-18T00:45:07Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistProphet - Persistent IDF574F57CCFE16FD5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/39.%20The%20Prophet%20-%20Really%20Don't%20Care.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5601 - - Track ID5601 - NameRebirth (Official Rebirth Anthem 2011) - ArtistRan-D & B-Front - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size6215692 - Total Time142315 - Disc Number2 - Disc Count2 - Track Number40 - Year2011 - Date Modified2012-08-18T00:45:09Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2655E79389880CA0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/40.%20Ran-D%20&%20B-Front%20-%20Rebirth%20(Official%20Rebirth%20Anthem%202011).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5603 - - Track ID5603 - NameIt's Showtime (Official Magic City Anthem 2011) - ArtistJDX - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size7559425 - Total Time175908 - Disc Number2 - Disc Count2 - Track Number41 - Year2011 - Date Modified2012-08-18T00:45:05Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID349F0D227ED82F18 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/41.%20JDX%20-%20It's%20Showtime%20(Official%20Magic%20City%20Anthem%202011).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5605 - - Track ID5605 - NameBlue Horizon - ArtistDigital Punk & Noisecontrollers - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size7584488 - Total Time176535 - Disc Number2 - Disc Count2 - Track Number42 - Year2011 - Date Modified2012-08-18T00:45:00Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID10D0EB9176403DA6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/42.%20Digital%20Punk%20&%20Noisecontrollers%20-%20Blue%20Horizon.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5607 - - Track ID5607 - NameHit The Dirt - ArtistThe Vision ft MC DL - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size6792432 - Total Time156734 - Disc Number2 - Disc Count2 - Track Number43 - Year2011 - Date Modified2012-08-18T00:45:10Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistVision ft MC DL - Persistent IDA20634C7E18DC350 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/43.%20The%20Vision%20ft%20MC%20DL%20-%20Hit%20The%20Dirt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5609 - - Track ID5609 - NameMadhouse - ArtistD-Block & S-Te-Fan & Zatox - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size8756846 - Total Time205844 - Disc Number2 - Disc Count2 - Track Number44 - Year2011 - Date Modified2012-08-18T00:45:00Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5D7ABC94ED86FF8B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/44.%20D-Block%20&%20S-Te-Fan%20&%20Zatox%20-%20Madhouse.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5611 - - Track ID5611 - NameThe Call Of The Visionary (Official Reverze Anthem 2011) (Original Mix) - ArtistFrontliner - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size8524973 - Total Time200045 - Disc Number2 - Disc Count2 - Track Number45 - Year2011 - Date Modified2012-08-18T00:45:01Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameCall Of The Visionary (Official Reverze Anthem 2011) (Original Mix) - Persistent IDA2EB17243E777E16 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/45.%20Frontliner%20-%20The%20Call%20Of%20The%20Visionary%20(Official%20Reverze%20Anthem%202011)%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5613 - - Track ID5613 - NameMomentz (Original Mix) - ArtistG-Style Brothers - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size7462225 - Total Time173479 - Disc Number2 - Disc Count2 - Track Number46 - Year2011 - Date Modified2012-08-18T00:45:02Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4A00ECC11CD6A86E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/46.%20G-Style%20Brothers%20-%20Momentz%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5615 - - Track ID5615 - NameBig Bang - ArtistNoisecontrollers - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size4723520 - Total Time105012 - Disc Number2 - Disc Count2 - Track Number47 - Year2011 - Date Modified2012-08-18T00:45:05Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID20A47FC85C31D956 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/47.%20Noisecontrollers%20-%20Big%20Bang.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5617 - - Track ID5617 - NameSilver Bullet (Toneshifterz Remix) - ArtistDonkey Rollers - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size6868743 - Total Time158641 - Disc Number2 - Disc Count2 - Track Number48 - Year2011 - Date Modified2012-08-18T00:45:01Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDD6DFDF2943837BD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/48.%20Donkey%20Rollers%20-%20Silver%20Bullet%20(Toneshifterz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5619 - - Track ID5619 - NameFearful Symmetry (Original Mix) - ArtistToneshifterz & Bioweapon - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size7426733 - Total Time172591 - Disc Number2 - Disc Count2 - Track Number49 - Year2011 - Date Modified2012-08-18T00:45:09Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID83EE5720A8BEA887 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/49.%20Toneshifterz%20&%20Bioweapon%20-%20Fearful%20Symmetry%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5621 - - Track ID5621 - NameAct Of Rage (Original Mix) - ArtistZany & The Beholder - Album ArtistVA - AlbumDJ Networx Vol. 49 / CD2 - GenreTechno - KindMPEG audio file - Size11509129 - Total Time274651 - Disc Number2 - Disc Count2 - Track Number50 - Year2011 - Date Modified2012-08-18T00:45:11Z - Date Added2012-08-18T00:43:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3D4A944A8BEB18C1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2049%20(2011)%20(2%20CD)/50.%20Zany%20&%20The%20Beholder%20-%20Act%20Of%20Rage%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5623 - - Track ID5623 - NameIhr Seid So Leise ! 2011 (Scheisse Scheisse Leise)(Ti-Mo Remix) - ArtistAquagen - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size11021198 - Total Time266997 - Disc Number1 - Disc Count2 - Track Number1 - Year2011 - Date Modified2012-08-18T00:47:23Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID75D9B75B3C0EF190 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/01.%20Aquagen%20-%20Ihr%20Seid%20So%20Leise%20!%202011%20(Scheisse%20Scheisse%20Leise)(Ti-Mo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5625 - - Track ID5625 - NameDance (Club Mix) - ArtistMegara vs DJ Lee - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size10682575 - Total Time258533 - Disc Number1 - Disc Count2 - Track Number2 - Year2011 - Date Modified2012-08-18T00:47:33Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID263BE3F38BBA98DC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/02.%20Megara%20vs%20DJ%20Lee%20-%20Dance%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5627 - - Track ID5627 - Name2 Of Us (Picco Remix) - ArtistDe-Grees - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size7915679 - Total Time189361 - Disc Number1 - Disc Count2 - Track Number3 - Year2011 - Date Modified2012-08-18T00:47:33Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID21880B8BFEF90C7D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/03.%20De-Grees%20-%202%20Of%20Us%20(Picco%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5629 - - Track ID5629 - NameThe Musics Got Me (Crystal Lake Remix) - ArtistBrooklyn Bounce & Discotronic - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size6831151 - Total Time162246 - Disc Number1 - Disc Count2 - Track Number4 - Year2011 - Date Modified2012-08-18T00:47:33Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameMusics Got Me (Crystal Lake Remix) - Persistent ID34E9C026CCFA8967 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/04.%20Brooklyn%20Bounce%20&%20Discotronic%20-%20The%20Musics%20Got%20Me%20(Crystal%20Lake%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5631 - - Track ID5631 - NameI Clear The Area (Original Mix) - ArtistGiorno - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size9534243 - Total Time229825 - Disc Number1 - Disc Count2 - Track Number5 - Year2011 - Date Modified2012-08-18T00:47:33Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID42F84E4093618DDB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/05.%20Giorno%20-%20I%20Clear%20The%20Area%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5633 - - Track ID5633 - NameBe Cool 2011 (DJ Gollum Remix) - ArtistPaffendorf - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size9114199 - Total Time219324 - Disc Number1 - Disc Count2 - Track Number6 - Year2011 - Date Modified2012-08-18T00:47:33Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4A6B61F78D19CAC1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/06.%20Paffendorf%20-%20Be%20Cool%202011%20(DJ%20Gollum%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5635 - - Track ID5635 - NameDon't Wanna Go Home (Sunny Dee Remix) - ArtistJason Borne - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size9721301 - Total Time234501 - Disc Number1 - Disc Count2 - Track Number7 - Year2011 - Date Modified2012-08-18T00:47:33Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAD722C7DED145406 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/07.%20Jason%20Borne%20-%20Don't%20Wanna%20Go%20Home%20(Sunny%20Dee%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5637 - - Track ID5637 - NameAngeline (Cc.K Remix) - ArtistGroove Coverage - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size9907269 - Total Time239151 - Disc Number1 - Disc Count2 - Track Number8 - Year2011 - Date Modified2012-08-18T00:47:33Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDCC02D8350FCD49CD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/08.%20Groove%20Coverage%20-%20Angeline%20(Cc.K%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5639 - - Track ID5639 - NameEvolution (DJ Networx Edit) - ArtistMassive Base - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size7507144 - Total Time179147 - Disc Number1 - Disc Count2 - Track Number9 - Year2011 - Date Modified2012-08-18T00:47:34Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID024B4B238759F25C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/09.%20Massive%20Base%20-%20Evolution%20(DJ%20Networx%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5641 - - Track ID5641 - NameRock The Club (Stereo Stylez Club Mix) - ArtistD-Tune vs EMD Boyz - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size6038051 - Total Time142419 - Disc Number1 - Disc Count2 - Track Number10 - Year2011 - Date Modified2012-08-18T00:47:34Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBE07B265556550D8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/10.%20D-Tune%20vs%20EMD%20Boyz%20-%20Rock%20The%20Club%20(Stereo%20Stylez%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5643 - - Track ID5643 - NameSun Drops Down (Rocco & Bass-T Bootleg Mix) - ArtistDavis Redfield ft Jay Cless - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size7157166 - Total Time170396 - Disc Number1 - Disc Count2 - Track Number11 - Year2011 - Date Modified2012-08-18T00:47:34Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDB7CE5F17A8FAA70D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/11.%20Davis%20Redfield%20ft%20Jay%20Cless%20-%20Sun%20Drops%20Down%20(Rocco%20&%20Bass-T%20Bootleg%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5645 - - Track ID5645 - NameHoly Ground (Original Mix) - ArtistRocco & Bass-T vs Redtzer - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size9393209 - Total Time226298 - Disc Number1 - Disc Count2 - Track Number12 - Year2011 - Date Modified2012-08-18T00:47:34Z - Date Added2012-08-18T00:45:46Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD77F1BD784F564C3 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/12.%20Rocco%20&%20Bass-T%20vs%20Redtzer%20-%20Holy%20Ground%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5647 - - Track ID5647 - Name2012 (Club Mix) - ArtistRobKay & Level-Up - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size8455897 - Total Time202866 - Disc Number1 - Disc Count2 - Track Number13 - Year2011 - Date Modified2012-08-18T00:47:34Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID266EEFBDEC3FA31E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/13.%20RobKay%20&%20Level-Up%20-%202012%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5649 - - Track ID5649 - NameAddiction (Simme vs Dansynergy Remix) - ArtistDiscomakers ft Jessica Jean - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size6899064 - Total Time163944 - Disc Number1 - Disc Count2 - Track Number14 - Year2011 - Date Modified2012-08-18T00:47:34Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBCEAB13A1C1E14B9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/14.%20Discomakers%20ft%20Jessica%20Jean%20-%20Addiction%20(Simme%20vs%20Dansynergy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5651 - - Track ID5651 - NameIllusion World (Hands Up Mix) - ArtistC-Energized - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size6087130 - Total Time143647 - Disc Number1 - Disc Count2 - Track Number15 - Year2011 - Date Modified2012-08-18T00:47:35Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC3DE9AF8D7D5CE5D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/15.%20C-Energized%20-%20Illusion%20World%20(Hands%20Up%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5653 - - Track ID5653 - NamePlanet Beats 'n' Bass (Franky B. vs DeeVibez Remix) - ArtistC-NRG vs P.O.R.N. Maniacs - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size5969128 - Total Time140695 - Disc Number1 - Disc Count2 - Track Number16 - Year2011 - Date Modified2012-08-18T00:47:35Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID300A009635E4404F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/16.%20C-NRG%20vs%20P.O.R.N.%20Maniacs%20-%20Planet%20Beats%20'n'%20Bass%20(Franky%20B.%20vs%20DeeVibez%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5655 - - Track ID5655 - NameStart Again (Deepforces Alternative Mix) - ArtistVan Snyder - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size9984620 - Total Time241084 - Disc Number1 - Disc Count2 - Track Number17 - Year2011 - Date Modified2012-08-18T00:47:35Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID766A79C279807E78 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/17.%20Van%20Snyder%20-%20Start%20Again%20(Deepforces%20Alternative%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5657 - - Track ID5657 - NameI Can Hear The Silence (Club Mix) - ArtistDJ Fait - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size6027570 - Total Time142158 - Disc Number1 - Disc Count2 - Track Number18 - Year2011 - Date Modified2012-08-18T00:47:35Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID297DF41487C8001C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/18.%20DJ%20Fait%20-%20I%20Can%20Hear%20The%20Silence%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5659 - - Track ID5659 - NameEternal Peace (Kay Trax Tanzflächen Mix) - ArtistDJ Dean meets Kolja Beckmann - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size6279447 - Total Time148453 - Disc Number1 - Disc Count2 - Track Number19 - Year2011 - Date Modified2012-08-18T00:47:35Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA0C528C54843E0BF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/19.%20DJ%20Dean%20meets%20Kolja%20Beckmann%20-%20Eternal%20Peace%20(Kay%20Trax%20Tanzfl%C3%A4chen%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5661 - - Track ID5661 - NameFirst Beatz Of My Heart (Kris McTwain Rermix) - ArtistHavley Scott - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size7989923 - Total Time191216 - Disc Number1 - Disc Count2 - Track Number20 - Year2011 - Date Modified2012-08-18T00:47:36Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF1BEAC5A9FBF565A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/20.%20Havley%20Scott%20-%20First%20Beatz%20Of%20My%20Heart%20(Kris%20McTwain%20Rermix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5663 - - Track ID5663 - NameFeel Alright (Original Mix) - ArtistHardrox ft Saby - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size7811216 - Total Time186749 - Disc Number1 - Disc Count2 - Track Number21 - Year2011 - Date Modified2012-08-18T00:47:35Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4EB65AD0F7BBADAC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/21.%20Hardrox%20ft%20Saby%20-%20Feel%20Alright%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5665 - - Track ID5665 - NameEvery Day I See You (Deltaforcez Remix) - ArtistDual Playaz - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size8555199 - Total Time205348 - Disc Number1 - Disc Count2 - Track Number22 - Year2011 - Date Modified2012-08-18T00:47:36Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID30D69124F9E57057 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/22.%20Dual%20Playaz%20-%20Every%20Day%20I%20See%20You%20(Deltaforcez%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5667 - - Track ID5667 - NameMusic Is Moving (Extended Mix) - ArtistSem - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size6552095 - Total Time155271 - Disc Number1 - Disc Count2 - Track Number23 - Year2011 - Date Modified2012-08-18T00:47:36Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6008DE50781F9335 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/23.%20Sem%20-%20Music%20Is%20Moving%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5669 - - Track ID5669 - NameAirbeat Army (G4bby ft BazzBoyz Remix) - ArtistAirbeat One Project - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size7924095 - Total Time189570 - Disc Number1 - Disc Count2 - Track Number24 - Year2011 - Date Modified2012-08-18T00:47:36Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID21B3252F50F47DDC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/24.%20Airbeat%20One%20Project%20-%20Airbeat%20Army%20(G4bby%20ft%20BazzBoyz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5671 - - Track ID5671 - NameHow Does It Feel - ArtistHennes Petersen - Album ArtistVA - AlbumDJ Networx Vol.50 / CD1 - GenreTrance - KindMPEG audio file - Size6161299 - Total Time145502 - Disc Number1 - Disc Count2 - Track Number25 - Year2011 - Date Modified2012-08-18T00:47:36Z - Date Added2012-08-18T00:45:47Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID395A23A05945F816 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/25.%20Hennes%20Petersen%20-%20How%20Does%20It%20Feel.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5673 - - Track ID5673 - NameUtta Wanka - ArtistTNT - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size7808022 - Total Time186671 - Disc Number2 - Disc Count2 - Track Number26 - Year2011 - Date Modified2012-08-18T00:48:26Z - Date Added2012-08-18T00:45:58Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC3F36BC2F3FD802A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/26.%20TNT%20-%20Utta%20Wanka.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5675 - - Track ID5675 - NameSicknite (Original Mix) - ArtistDJ Stephanie - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size9558271 - Total Time230426 - Disc Number2 - Disc Count2 - Track Number27 - Year2011 - Date Modified2012-08-18T00:48:45Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3428081538 - Play Date UTC2012-08-18T00:52:18Z - Artwork Count1 - Persistent ID3DB7518CE25F47A6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/27.%20DJ%20Stephanie%20-%20Sicknite%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5677 - - Track ID5677 - NameDon't Wanna Know - ArtistA-Lusion - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size8717106 - Total Time209397 - Disc Number2 - Disc Count2 - Track Number28 - Year2011 - Date Modified2012-08-18T00:48:51Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Play Count1 - Play Date3428081748 - Play Date UTC2012-08-18T00:55:48Z - Artwork Count1 - Persistent IDD4444BFD75D5C495 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/28.%20A-Lusion%20-%20Don't%20Wanna%20Know.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5679 - - Track ID5679 - NameAre U Ready (G-Style Brothers Remix) - ArtistDJ Klubbingman ft Beatrix Delgado - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size11049409 - Total Time267702 - Disc Number2 - Disc Count2 - Track Number29 - Year2011 - Date Modified2012-08-18T00:48:51Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC5266A505FCDBB8C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/29.%20DJ%20Klubbingman%20ft%20Beatrix%20Delgado%20-%20Are%20U%20Ready%20(G-Style%20Brothers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5681 - - Track ID5681 - NameThis Moment - ArtistPradera - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size10645975 - Total Time257619 - Disc Number2 - Disc Count2 - Track Number30 - Year2011 - Date Modified2012-08-18T00:48:25Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7D324324117ED027 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/30.%20Pradera%20-%20This%20Moment.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5683 - - Track ID5683 - NameFollow Your Dreamz - ArtistWasted Penguinz - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size9969957 - Total Time240718 - Disc Number2 - Disc Count2 - Track Number31 - Year2011 - Date Modified2012-08-18T00:48:26Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID01627A418DEF0309 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/31.%20Wasted%20Penguinz%20-%20Follow%20Your%20Dreamz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5685 - - Track ID5685 - NameUnborn (Edit Version) - ArtistZatox - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size7333665 - Total Time174811 - Disc Number2 - Disc Count2 - Track Number32 - Year2011 - Date Modified2012-08-18T00:48:26Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9B09DDF72B3DE4BC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/32.%20Zatox%20-%20Unborn%20(Edit%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5687 - - Track ID5687 - NameLittle Red Noisy Thing (Wildstylez Remix) - ArtistK-Traxx - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size5581415 - Total Time131004 - Disc Number2 - Disc Count2 - Track Number33 - Year2011 - Date Modified2012-08-18T00:48:25Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID12CB8722F2D70D48 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/33.%20K-Traxx%20-%20Little%20Red%20Noisy%20Thing%20(Wildstylez%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5689 - - Track ID5689 - NameFutureshock - ArtistWildstylez & Ran-D - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size6017100 - Total Time141897 - Disc Number2 - Disc Count2 - Track Number34 - Year2011 - Date Modified2012-08-18T00:48:26Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8DEFE1133BA0D6E3 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/34.%20Wildstylez%20&%20Ran-D%20-%20Futureshock.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5691 - - Track ID5691 - NameUnderground Tacticz - ArtistD-Block & S-Te-Fan - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size10272985 - Total Time248293 - Disc Number2 - Disc Count2 - Track Number35 - Year2011 - Date Modified2012-08-18T00:48:21Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBF75FB2E8FED4E3B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/35.%20D-Block%20&%20S-Te-Fan%20-%20Underground%20Tacticz.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5693 - - Track ID5693 - NameDown South MF - ArtistDown South MF - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size8217649 - Total Time196911 - Disc Number2 - Disc Count2 - Track Number36 - Year2011 - Date Modified2012-08-18T00:48:24Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA481865F9D8C8F1D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/36.%20Down%20South%20MF%20-%20Down%20South%20MF.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5695 - - Track ID5695 - NameLeft With The Wrong - ArtistPsyko Punkz - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size9039992 - Total Time217469 - Disc Number2 - Disc Count2 - Track Number37 - Year2011 - Date Modified2012-08-18T00:48:25Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6CF3BD2B2E48B82C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/37.%20Psyko%20Punkz%20-%20Left%20With%20The%20Wrong.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5697 - - Track ID5697 - NameLet It Go (Edit Version) - ArtistAlpha 2 - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size7810148 - Total Time186723 - Disc Number2 - Disc Count2 - Track Number38 - Year2011 - Date Modified2012-08-18T00:48:21Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID717FEC7C2BF2A7FE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/38.%20Alpha%202%20-%20Let%20It%20Go%20(Edit%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5699 - - Track ID5699 - NameGangsters Don't Dance - ArtistGunz For Hire a.k.a. Ran-D & Adaro - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size8544760 - Total Time205087 - Disc Number2 - Disc Count2 - Track Number39 - Year2011 - Date Modified2012-08-18T00:48:24Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8435E0DABFB5DA06 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/39.%20Gunz%20For%20Hire%20a.k.a.%20Ran-D%20&%20Adaro%20-%20Gangsters%20Don't%20Dance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5701 - - Track ID5701 - NameType Face (Luna & Chain Reaction Remix) - ArtistDJ Mystery - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size7749581 - Total Time185208 - Disc Number2 - Disc Count2 - Track Number40 - Year2011 - Date Modified2012-08-18T00:48:24Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5DF22B28EFD63D08 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/40.%20DJ%20Mystery%20-%20Type%20Face%20(Luna%20&%20Chain%20Reaction%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5703 - - Track ID5703 - NameFuck The Hyde - ArtistDigital Punk & Waverider - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size7151874 - Total Time170266 - Disc Number2 - Disc Count2 - Track Number41 - Year2011 - Date Modified2012-08-18T00:48:23Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID65D1C40281F400F7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/41.%20Digital%20Punk%20&%20Waverider%20-%20Fuck%20The%20Hyde.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5705 - - Track ID5705 - NameNo Turning Back (High Voltage Remix) - ArtistRuffneck & Miss Twilight - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size4900166 - Total Time113972 - Disc Number2 - Disc Count2 - Track Number42 - Year2011 - Date Modified2012-08-18T00:48:25Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7B3E151D29E0764B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/42.%20Ruffneck%20&%20Miss%20Twilight%20-%20No%20Turning%20Back%20(High%20Voltage%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5707 - - Track ID5707 - NameHope For The Best - ArtistBurn Soldier - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size9021182 - Total Time216999 - Disc Number2 - Disc Count2 - Track Number43 - Year2011 - Date Modified2012-08-18T00:48:21Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6430B5788CF8100E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/43.%20Burn%20Soldier%20-%20Hope%20For%20The%20Best.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5709 - - Track ID5709 - NameDangerous Beast - ArtistStereotuners - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size5017128 - Total Time116897 - Disc Number2 - Disc Count2 - Track Number44 - Year2011 - Date Modified2012-08-18T00:48:26Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID790E211520380ADC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/44.%20Stereotuners%20-%20Dangerous%20Beast.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5711 - - Track ID5711 - NameNothingness - ArtistDa Tweekaz - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size7837296 - Total Time187402 - Disc Number2 - Disc Count2 - Track Number45 - Year2011 - Date Modified2012-08-18T00:48:21Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID865350940F4AC288 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/45.%20Da%20Tweekaz%20-%20Nothingness.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5713 - - Track ID5713 - Name1000 Mph - ArtistArtic - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size6156039 - Total Time145371 - Disc Number2 - Disc Count2 - Track Number46 - Year2011 - Date Modified2012-08-18T00:48:21Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID074280C5FB2F2433 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/46.%20Artic%20-%201000%20Mph.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5715 - - Track ID5715 - NameTemptation - ArtistThe R3bels - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size8346159 - Total Time200124 - Disc Number2 - Disc Count2 - Track Number47 - Year2011 - Date Modified2012-08-18T00:48:25Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistR3bels - Persistent ID743FD9E699915AEA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/47.%20The%20R3bels%20-%20Temptation.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5717 - - Track ID5717 - NameRemember (Final Cut) - ArtistChiller & Lou - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size4423639 - Total Time102060 - Disc Number2 - Disc Count2 - Track Number48 - Year2011 - Date Modified2012-08-18T00:48:21Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID570BC0C7972CDD69 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/48.%20Chiller%20&%20Lou%20-%20Remember%20(Final%20Cut).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5719 - - Track ID5719 - NameJourney Into Sound - Artist44 Desert Eagle - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size4375573 - Total Time100858 - Disc Number2 - Disc Count2 - Track Number49 - Year2011 - Date Modified2012-08-18T00:48:27Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3E5B0E04CA555608 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/49.%2044%20Desert%20Eagle%20-%20Journey%20Into%20Sound.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5721 - - Track ID5721 - NameMotion (44 Desert Eagle Remix) - ArtistThomas Petersen pres Zylone - Album ArtistVA - AlbumDJ Networx Vol.50 / CD2 - GenreTrance - KindMPEG audio file - Size9401580 - Total Time226507 - Disc Number2 - Disc Count2 - Track Number50 - Year2011 - Date Modified2012-08-18T00:48:26Z - Date Added2012-08-18T00:45:59Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID083C425C5DAFACDC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/01.%20DJ%20Networx%20Rips/DJ%20Networx%20-%20Volume%2050%20(2011)%20(2%20CD)/50.%20Thomas%20Petersen%20pres%20Zylone%20-%20Motion%20(44%20Desert%20Eagle%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5723 - - Track ID5723 - NameTear U Down - ArtistAudiofrag - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size6412439 - Total Time202579 - Disc Number2 - Disc Count2 - Track Number1 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:06Z - Date Added2012-08-18T01:48:21Z - Bit Rate232 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID05A25ECEEBF1C41B - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/01.%20Audiofrag%20-%20Tear%20U%20Down.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5725 - - Track ID5725 - NameThe Groove - ArtistDa Tweekaz - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size7375962 - Total Time245942 - Disc Number2 - Disc Count2 - Track Number2 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:06Z - Date Added2012-08-18T01:48:21Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort NameGroove - Persistent ID531608F45D8EE22F - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/02.%20Da%20Tweekaz%20-%20The%20Groove.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5727 - - Track ID5727 - NameThe Dream Goes On (Original Mix) - ArtistD-Block & S-Te-Fan vs. Deepack - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size6034802 - Total Time179748 - Disc Number2 - Disc Count2 - Track Number3 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:06Z - Date Added2012-08-18T01:48:21Z - Bit Rate245 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort NameDream Goes On (Original Mix) - Persistent ID4CDFE6928DA3B968 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/03.%20D-Block%20&%20S-Te-Fan%20vs.%20Deepack%20-%20The%20Dream%20Goes%20On%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5729 - - Track ID5729 - NameWaves - ArtistAmbassador Inc. - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size5917264 - Total Time192417 - Disc Number2 - Disc Count2 - Track Number4 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:06Z - Date Added2012-08-18T01:48:21Z - Bit Rate224 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDB6080C9750F42768 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/04.%20Ambassador%20Inc.%20-%20Waves.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5731 - - Track ID5731 - NameLet's Go Get III - ArtistPsyko Punkz - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size5875572 - Total Time189204 - Disc Number2 - Disc Count2 - Track Number5 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:07Z - Date Added2012-08-18T01:48:21Z - Bit Rate226 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDD85363E852D914CF - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/05.%20Psyko%20Punkz%20-%20Let's%20Go%20Get%20III.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5733 - - Track ID5733 - NameSkills (Edit Version) - ArtistRan-D & Frontliner - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size6800491 - Total Time212871 - Disc Number2 - Disc Count2 - Track Number6 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:07Z - Date Added2012-08-18T01:48:21Z - Bit Rate236 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDA506AA99B8CF8F68 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/06.%20Ran-D%20&%20Frontliner%20-%20Skills%20(Edit%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5735 - - Track ID5735 - NameRed Planet (Original Mix) - ArtistCode Black - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size5657071 - Total Time182831 - Disc Number2 - Disc Count2 - Track Number7 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:07Z - Date Added2012-08-18T01:48:21Z - Bit Rate224 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID125F48E1D11826C1 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/07.%20Code%20Black%20-%20Red%20Planet%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5737 - - Track ID5737 - NameStep by Step - ArtistUnloaders - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size5345764 - Total Time167262 - Disc Number2 - Disc Count2 - Track Number8 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:07Z - Date Added2012-08-18T01:48:21Z - Bit Rate231 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDA1864AE94CFCF08D - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/08.%20Unloaders%20-%20Step%20by%20Step.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5739 - - Track ID5739 - NameMonstah - ArtistCoone ft. Nikkita - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size7143030 - Total Time233351 - Disc Number2 - Disc Count2 - Track Number9 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:08Z - Date Added2012-08-18T01:48:21Z - Bit Rate227 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDE93863C7C9D3D5AE - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/09.%20Coone%20ft.%20Nikkita%20-%20Monstah.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5741 - - Track ID5741 - NameRemote Control - ArtistE-Force - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size6478904 - Total Time207882 - Disc Number2 - Disc Count2 - Track Number10 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:08Z - Date Added2012-08-18T01:48:21Z - Bit Rate229 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID5C559639C035556A - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/10.%20E-Force%20-%20Remote%20Control.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5743 - - Track ID5743 - NameLiberate - ArtistAlpha² & B-Front - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size4685038 - Total Time145084 - Disc Number2 - Disc Count2 - Track Number11 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:08Z - Date Added2012-08-18T01:48:21Z - Bit Rate229 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID7F638A0240D58C88 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/11.%20Alpha%C2%B2%20&%20B-Front%20-%20Liberate.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5745 - - Track ID5745 - NameThe Universe Was Born (Edit Version) - ArtistNoisecontrollers - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size6168716 - Total Time188447 - Disc Number2 - Disc Count2 - Track Number12 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:08Z - Date Added2012-08-18T01:48:21Z - Bit Rate239 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort NameUniverse Was Born (Edit Version) - Persistent ID9690E9C6B299B36E - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/12.%20Noisecontrollers%20-%20The%20Universe%20Was%20Born%20(Edit%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5747 - - Track ID5747 - NameShock Your Senses - ArtistBass Modulators - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size7443939 - Total Time233351 - Disc Number2 - Disc Count2 - Track Number13 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:09Z - Date Added2012-08-18T01:48:21Z - Bit Rate237 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID2A5C048DFE22E6C9 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/13.%20Bass%20Modulators%20-%20Shock%20Your%20Senses.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5749 - - Track ID5749 - NameNo Way Back (Qlimax Anthem 2011) - ArtistZatox - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size5955328 - Total Time190040 - Disc Number2 - Disc Count2 - Track Number14 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:09Z - Date Added2012-08-18T01:48:21Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID0B6ECACC5AF1339C - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/14.%20Zatox%20-%20No%20Way%20Back%20(Qlimax%20Anthem%202011).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5751 - - Track ID5751 - NameLonely Dark (Original Mix) - ArtistZany & Nitrouz - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size5839969 - Total Time185260 - Disc Number2 - Disc Count2 - Track Number15 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:10Z - Date Added2012-08-18T01:48:21Z - Bit Rate229 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDA2DAE68189307511 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/15.%20Zany%20&%20Nitrouz%20-%20Lonely%20Dark%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5753 - - Track ID5753 - NameTill Daybreak meets... (Original Mix) - ArtistToneshifterz - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size6348527 - Total Time210964 - Disc Number2 - Disc Count2 - Track Number16 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:10Z - Date Added2012-08-18T01:48:21Z - Bit Rate221 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID1663002AA4B40AFD - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/16.%20Toneshifterz%20-%20Till%20Daybreak%20meets...%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5755 - - Track ID5755 - NameHauter Of The Dark - ArtistAdaro - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size4607405 - Total Time137430 - Disc Number2 - Disc Count2 - Track Number17 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:10Z - Date Added2012-08-18T01:48:21Z - Bit Rate238 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDAB6FCF8674DF4CD4 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/17.%20Adaro%20-%20Hauter%20Of%20The%20Dark.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5757 - - Track ID5757 - NamePandorum 2011 - ArtistThe Vision - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size3725814 - Total Time118282 - Disc Number2 - Disc Count2 - Track Number18 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:11Z - Date Added2012-08-18T01:48:21Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort ArtistVision - Persistent IDAF383730665B985D - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/18.%20The%20Vision%20-%20Pandorum%202011.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5759 - - Track ID5759 - NameDeath Before Disco - ArtistCatatonic Overload - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size5797618 - Total Time189257 - Disc Number2 - Disc Count2 - Track Number19 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:11Z - Date Added2012-08-18T01:48:21Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDD2EB1210CCEC4B7B - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/19.%20Catatonic%20Overload%20-%20Death%20Before%20Disco.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5761 - - Track ID5761 - NameBullets - ArtistGoldkind - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size3356352 - Total Time100937 - Disc Number2 - Disc Count2 - Track Number20 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:11Z - Date Added2012-08-18T01:48:22Z - Bit Rate225 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID92F66BC8D7B3CBEB - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/20.%20Goldkind%20-%20Bullets.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5763 - - Track ID5763 - NameUnderworld - ArtistKodex - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size3749661 - Total Time115121 - Disc Number2 - Disc Count2 - Track Number21 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:11Z - Date Added2012-08-18T01:48:22Z - Bit Rate224 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID4F1EC3CB4A0712FB - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/21.%20Kodex%20-%20Underworld.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5765 - - Track ID5765 - NameTime Traveller - ArtistDJ Y.O.Z. - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size4996975 - Total Time159608 - Disc Number2 - Disc Count2 - Track Number22 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:11Z - Date Added2012-08-18T01:48:22Z - Bit Rate224 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDD01BB311ECDC2FB5 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/22.%20DJ%20Y.O.Z.%20%20-%20Time%20Traveller.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5767 - - Track ID5767 - NameLoveless (G-Style Brothers Remix) - ArtistThe Pressureheads - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size8288960 - Total Time274546 - Disc Number2 - Disc Count2 - Track Number23 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:12Z - Date Added2012-08-18T01:48:22Z - Bit Rate226 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort ArtistPressureheads - Persistent IDE73C846B6BD336E4 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/23.%20The%20Pressureheads%20-%20Loveless%20(G-Style%20Brothers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5769 - - Track ID5769 - NameFaces of War - ArtistInfecter - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size3552303 - Total Time110654 - Disc Number2 - Disc Count2 - Track Number24 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:12Z - Date Added2012-08-18T01:48:22Z - Bit Rate219 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID27B2DB582FED0C04 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/24.%20Infecter%20-%20Faces%20of%20War.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5771 - - Track ID5771 - NameDreaming (Lady Tom Remix) - ArtistThomas Petersen - Album ArtistVA - AlbumDJ Networx Vol.51 / CD2 - GenreTrance - KindMPEG audio file - Size11166925 - Total Time388440 - Disc Number2 - Disc Count2 - Track Number25 - Track Count25 - Year2012 - Date Modified2012-08-18T01:51:12Z - Date Added2012-08-18T01:48:22Z - Bit Rate219 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDDD5CBA242085211C - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd2/25.%20Thomas%20Petersen%20-%20Dreaming%20(Lady%20Tom%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5773 - - Track ID5773 - NameEndless (Giorno Mix) - ArtistG&G - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size7336350 - Total Time234710 - Disc Number1 - Disc Count2 - Track Number1 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:34Z - Date Added2012-08-18T01:48:47Z - Bit Rate232 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDC24BEECE3653AFAA - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/01.%20G&G%20-%20Endless%20(Giorno%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5775 - - Track ID5775 - NameTurn this Club Around (Crystal Lake Mix) - ArtistR.I.O. feat. U-Jean - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size7170940 - Total Time238262 - Disc Number1 - Disc Count2 - Track Number2 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:34Z - Date Added2012-08-18T01:48:47Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID6DDD5C5C256CB401 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/02.%20R.I.O.%20feat.%20U-Jean%20-%20Turn%20this%20Club%20Around%20(Crystal%20Lake%20Mix)%20.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5777 - - Track ID5777 - NameThe Right Way (Pulsedriver Remix) - ArtistDJ The Foure - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size4935235 - Total Time154279 - Disc Number1 - Disc Count2 - Track Number3 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:34Z - Date Added2012-08-18T01:48:47Z - Bit Rate229 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428085023 - Play Date UTC2012-08-18T01:50:23Z - Artwork Count1 - Sort NameRight Way (Pulsedriver Remix) - Persistent ID106326A5CFBB54A7 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/03.%20DJ%20The%20Foure%20-%20The%20Right%20Way%20(Pulsedriver%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5779 - - Track ID5779 - NameDynamite 2011 (Crystal Lake Mix) - ArtistChris van Dutch meets Dropz! - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size6818414 - Total Time222693 - Disc Number1 - Disc Count2 - Track Number4 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:35Z - Date Added2012-08-18T01:48:47Z - Bit Rate226 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428085246 - Play Date UTC2012-08-18T01:54:06Z - Artwork Count1 - Persistent ID52D647972EC84D5F - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/04.%20Chris%20van%20Dutch%20meets%20Dropz!%20-%20Dynamite%202011%20(Crystal%20Lake%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5781 - - Track ID5781 - NameLeaving you (David Geht Da! Mix) - ArtistClubstone - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size3864284 - Total Time113789 - Disc Number1 - Disc Count2 - Track Number5 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:35Z - Date Added2012-08-18T01:48:47Z - Bit Rate235 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428085359 - Play Date UTC2012-08-18T01:55:59Z - Artwork Count1 - Persistent ID0775A73B4C7F29F8 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/05.%20Clubstone%20-%20Leaving%20you%20(David%20Geht%20Da!%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5783 - - Track ID5783 - NameMissing 2012 (Crystal Lake Mix) - ArtistRikah - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size4312178 - Total Time133093 - Disc Number1 - Disc Count2 - Track Number6 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:35Z - Date Added2012-08-18T01:48:47Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDAD4888910788E2DB - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/06.%20Rikah%20-%20Missing%202012%20(Crystal%20Lake%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5785 - - Track ID5785 - NameFucking Fresh (Manox Mix) - ArtistMax K. - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size6120794 - Total Time202344 - Disc Number1 - Disc Count2 - Track Number7 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:35Z - Date Added2012-08-18T01:48:47Z - Bit Rate221 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID36E5DC2E4181AB2B - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/07.%20Max%20K.%20-%20Fucking%20Fresh%20(Manox%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5787 - - Track ID5787 - NameThe Rhythm (Club Mix) - ArtistTi-Mo - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size5353187 - Total Time168097 - Disc Number1 - Disc Count2 - Track Number8 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:36Z - Date Added2012-08-18T01:48:47Z - Bit Rate230 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort NameRhythm (Club Mix) - Persistent ID3E1F0511649D8B0B - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/08.%20Ti-Mo%20-%20The%20Rhythm%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5789 - - Track ID5789 - NameHang On (CC.K. RMX) - ArtistE-Partment feat. Kandy - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size6640858 - Total Time214334 - Disc Number1 - Disc Count2 - Track Number9 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:36Z - Date Added2012-08-18T01:48:47Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID279A8DC20F2B7C31 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/09.%20E-Partment%20feat.%20Kandy%20-%20Hang%20On%20(CC.K.%20RMX).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5791 - - Track ID5791 - NameAll the Right Moves (G4bby feat. BazzBoyz RMX) - ArtistJanvanbass - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size7747739 - Total Time251480 - Disc Number1 - Disc Count2 - Track Number11 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:36Z - Date Added2012-08-18T01:48:47Z - Bit Rate230 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID3A0EE028023AAB1E - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/11.%20Janvanbass%20-%20All%20the%20Right%20Moves%20(G4bby%20feat.%20BazzBoyz%20RMX).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5793 - - Track ID5793 - NameGive & Take (Jens O. vs. Ti-Mo Club Mix) - ArtistJens O. Vs. Ti-Mo - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size6156788 - Total Time191164 - Disc Number1 - Disc Count2 - Track Number12 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:36Z - Date Added2012-08-18T01:48:47Z - Bit Rate236 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID3FA9EB2ECA546745 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/12.%20Jens%20O.%20Vs.%20Ti-Mo%20-%20Give%20&%20Take%20(Jens%20O.%20vs.%20Ti-Mo%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5795 - - Track ID5795 - NameJunglist (Extended Mix) - ArtistDJ THT - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size7083116 - Total Time229746 - Disc Number1 - Disc Count2 - Track Number13 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:36Z - Date Added2012-08-18T01:48:47Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID26980D0AE76DFE20 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/13.%20DJ%20THT%20-%20Junglist%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5797 - - Track ID5797 - NamePure Energy 2012 (Ace da Brain RMX) - ArtistAccuface - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size9015898 - Total Time288026 - Disc Number1 - Disc Count2 - Track Number14 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:37Z - Date Added2012-08-18T01:48:47Z - Bit Rate236 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID661CDFB8E8B22AE8 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/14.%20Accuface%20-%20Pure%20Energy%202012%20(Ace%20da%20Brain%20RMX).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5799 - - Track ID5799 - NameIn heaven with you (BullJay RMX) - ArtistThe Hitcher vs. Butcher - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size4533730 - Total Time143307 - Disc Number1 - Disc Count2 - Track Number16 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:37Z - Date Added2012-08-18T01:48:47Z - Bit Rate224 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort ArtistHitcher vs. Butcher - Persistent ID767117E6AAB3344D - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/16.%20The%20Hitcher%20vs.%20Butcher%20-%20In%20heaven%20with%20you%20(BullJay%20RMX).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5801 - - Track ID5801 - NameShining Star 2k11 (DJ Analyzer's Hardbass RMX) - ArtistVisTexxProject - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size6637409 - Total Time199993 - Disc Number1 - Disc Count2 - Track Number21 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:37Z - Date Added2012-08-18T01:48:47Z - Bit Rate244 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDAD57CCFE14249326 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/21.%20VisTexxProject%20-%20Shining%20Star%202k11%20(DJ%20Analyzer's%20Hardbass%20RMX).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5803 - - Track ID5803 - NameAnthem (Sane's Original Mix) - ArtistHard Dance NATION - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size6630591 - Total Time190040 - Disc Number1 - Disc Count2 - Track Number22 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:37Z - Date Added2012-08-18T01:48:47Z - Bit Rate257 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID86AAF19164E08CAF - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/22.%20Hard%20Dance%20NATION%20-%20Anthem%20(Sane's%20Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5805 - - Track ID5805 - NameDown South MF (Alternative Mix) - ArtistG-Style Broth - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size5234558 - Total Time165041 - Disc Number1 - Disc Count2 - Track Number23 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:38Z - Date Added2012-08-18T01:48:47Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID4D223A124E887CBE - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/23.%20G-Style%20Broth%20-%20Down%20South%20MF%20(Alternative%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5807 - - Track ID5807 - NameDestination (Original Mix) - ArtistNostradamus - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size5030911 - Total Time145031 - Disc Number1 - Disc Count2 - Track Number24 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:38Z - Date Added2012-08-18T01:48:47Z - Bit Rate249 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID072317EB40F02F67 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/24.%20Nostradamus%20-%20Destination%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5809 - - Track ID5809 - NameWoohaa (Club Mix) - ArtistMikesh - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size4709356 - Total Time155219 - Disc Number1 - Disc Count2 - Track Number25 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:38Z - Date Added2012-08-18T01:48:47Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID8634B66041070BD7 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/25.%20Mikesh%20-%20Woohaa%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5811 - - Track ID5811 - NameMoonraker (Radio Edit) - ArtistNoisecontrollers feat. Alpha2 - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size3363760 - Total Time97776 - Disc Number1 - Disc Count2 - Track Number26 - Year2012 - Date Modified2012-08-18T02:05:16Z - Date Added2012-08-18T02:02:55Z - Bit Rate236 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDEA0AB5F7A39C941F - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/26.%20Noisecontrollers%20feat.%20Alpha2%20-%20Moonraker%20(Radio%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5813 - - Track ID5813 - NameDisrespect - ArtistHeadhunterz vs. Psyko Punkz - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size6713291 - Total Time209684 - Disc Number1 - Disc Count2 - Track Number27 - Year2012 - Date Modified2012-08-18T02:04:46Z - Date Added2012-08-18T02:02:55Z - Bit Rate238 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDD7D629C4B2D81694 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/27.%20Headhunterz%20vs.%20Psyko%20Punkz%20-%20Disrespect.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5815 - - Track ID5815 - NameWho I Am (Scope DJ Remix) - ArtistFrontliner feat. MC Villian - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size7554086 - Total Time253857 - Disc Number1 - Disc Count2 - Track Number28 - Year2012 - Date Modified2012-08-18T02:04:46Z - Date Added2012-08-18T02:02:56Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID67E425FCDAF58230 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/28.%20Frontliner%20feat.%20MC%20Villian%20-%20Who%20I%20Am%20(Scope%20DJ%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5817 - - Track ID5817 - NameTmu - ArtistWaverider & Audiofreq - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size7786318 - Total Time252264 - Disc Number1 - Disc Count2 - Track Number29 - Year2012 - Date Modified2012-08-18T02:04:46Z - Date Added2012-08-18T02:02:56Z - Bit Rate231 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID0712D2975BE5ED0F - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/29.%20Waverider%20&%20Audiofreq%20-%20Tmu.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5819 - - Track ID5819 - NameActivated (Original Mix) - ArtistCode Black & Wasted Penguinz - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size5976322 - Total Time195474 - Disc Number1 - Disc Count2 - Track Number30 - Year2012 - Date Modified2012-08-18T02:04:46Z - Date Added2012-08-18T02:02:56Z - Bit Rate225 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDAAD13DB8DDAF935C - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/30.%20Code%20Black%20&%20Wasted%20Penguinz%20-%20Activated%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5821 - - Track ID5821 - NameX (Xxlerator Anthem) - ArtistRan-D vs. Villain - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size6524898 - Total Time217573 - Disc Number1 - Disc Count2 - Track Number31 - Year2012 - Date Modified2012-08-18T02:04:46Z - Date Added2012-08-18T02:02:56Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDF04355B435E59372 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/31.%20Ran-D%20vs.%20Villain%20-%20X%20(Xxlerator%20Anthem).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5823 - - Track ID5823 - NameParty On! (Original Mix) - ArtistSlim Shore & Nitrouz - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size5701400 - Total Time182935 - Disc Number1 - Disc Count2 - Track Number32 - Year2012 - Date Modified2012-08-18T02:04:46Z - Date Added2012-08-18T02:02:56Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDAC4446696825A9F8 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/32.%20Slim%20Shore%20&%20Nitrouz%20-%20Party%20On!%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5825 - - Track ID5825 - NameIt Must Be (Original Mix) - ArtistZatox & Max Enforcer - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size7403089 - Total Time238080 - Disc Number1 - Disc Count2 - Track Number33 - Year2012 - Date Modified2012-08-18T02:04:46Z - Date Added2012-08-18T02:02:56Z - Bit Rate232 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID3D41EA0B83C4646C - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/33.%20Zatox%20&%20Max%20Enforcer%20-%20It%20Must%20Be%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5827 - - Track ID5827 - NameDo This Everyday - ArtistTwilight Forces pres. Peacekeeper ft. MC That Watcher - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size6453691 - Total Time201325 - Disc Number1 - Disc Count2 - Track Number34 - Year2012 - Date Modified2012-08-18T02:04:46Z - Date Added2012-08-18T02:02:56Z - Bit Rate237 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID30ED2FFFC554C6FA - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/34.%20Twilight%20Forces%20pres.%20Peacekeeper%20ft.%20MC%20That%20Watcher%20-%20Do%20This%20Everyday.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5829 - - Track ID5829 - NameRoll Deep - ArtistThe Collectorz - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size5166316 - Total Time164466 - Disc Number1 - Disc Count2 - Track Number35 - Year2012 - Date Modified2012-08-18T02:04:49Z - Date Added2012-08-18T02:02:56Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort ArtistCollectorz - Persistent ID0FD14F825D1B3442 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/35.%20The%20Collectorz%20-%20Roll%20Deep.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5831 - - Track ID5831 - NameHold Me Now - ArtistDJ Mystery - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size7897776 - Total Time258560 - Disc Number1 - Disc Count2 - Track Number36 - Year2012 - Date Modified2012-08-18T02:04:49Z - Date Added2012-08-18T02:02:56Z - Bit Rate229 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID3901FE5B6A94F579 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/36.%20DJ%20Mystery%20-%20Hold%20Me%20Now.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5833 - - Track ID5833 - NameOne Moment (Original Mix) - ArtistThe Prophet - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size6132861 - Total Time193541 - Disc Number1 - Disc Count2 - Track Number37 - Year2012 - Date Modified2012-08-18T02:04:49Z - Date Added2012-08-18T02:02:56Z - Bit Rate233 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort ArtistProphet - Persistent ID6DFB46A2BBB18238 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/37.%20The%20Prophet%20-%20One%20Moment%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5835 - - Track ID5835 - NameLet It Rain (Original Mix) - ArtistThe Pitcher feat. Szen - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size3392305 - Total Time101146 - Disc Number1 - Disc Count2 - Track Number38 - Year2012 - Date Modified2012-08-18T02:04:49Z - Date Added2012-08-18T02:02:56Z - Bit Rate230 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort ArtistPitcher feat. Szen - Persistent ID7B3D8A9402DFAB80 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/38.%20The%20Pitcher%20feat.%20Szen%20-%20Let%20It%20Rain%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5837 - - Track ID5837 - NameFight For Survival (Original Mix) - ArtistFrequencerz & In-Phase - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size7762420 - Total Time257175 - Disc Number1 - Disc Count2 - Track Number39 - Year2012 - Date Modified2012-08-18T02:04:49Z - Date Added2012-08-18T02:02:56Z - Bit Rate226 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDD8EC37E5BBAF8658 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/39.%20Frequencerz%20&%20In-Phase%20-%20Fight%20For%20Survival%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5839 - - Track ID5839 - NameMovement (Original Mix) - ArtistB-Front & Crypsis - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size7274036 - Total Time232280 - Disc Number1 - Disc Count2 - Track Number40 - Year2012 - Date Modified2012-08-18T02:04:49Z - Date Added2012-08-18T02:02:56Z - Bit Rate234 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID872ABE22696018D9 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/40.%20B-Front%20&%20Crypsis%20-%20Movement%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5841 - - Track ID5841 - NameNustly Crap (Coone Goes Wild Mix) - ArtistCoone & Technoboy - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size5923251 - Total Time188656 - Disc Number1 - Disc Count2 - Track Number41 - Year2012 - Date Modified2012-08-18T02:04:49Z - Date Added2012-08-18T02:02:56Z - Bit Rate231 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID677D701879E9106C - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/41.%20Coone%20&%20Technoboy%20-%20Nustly%20Crap%20(Coone%20Goes%20Wild%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5843 - - Track ID5843 - NameElectric Future - ArtistLow-E & Kevin Kaos - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size4285365 - Total Time127738 - Disc Number1 - Disc Count2 - Track Number42 - Year2012 - Date Modified2012-08-18T02:04:50Z - Date Added2012-08-18T02:02:56Z - Bit Rate238 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID55BA06B46FA7605F - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/42.%20Low-E%20&%20Kevin%20Kaos%20-%20Electric%20Future.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5845 - - Track ID5845 - NameDisturbia (The R3belz Remix) - ArtistDJ Thera - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size4578305 - Total Time135627 - Disc Number1 - Disc Count2 - Track Number43 - Year2012 - Date Modified2012-08-18T02:04:50Z - Date Added2012-08-18T02:02:56Z - Bit Rate242 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID731FEAF45207B687 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/43.%20DJ%20Thera%20-%20Disturbia%20(The%20R3belz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5847 - - Track ID5847 - NameDistorted (B-Front Remix) - ArtistZany & DV8 - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size4211607 - Total Time126119 - Disc Number1 - Disc Count2 - Track Number44 - Year2012 - Date Modified2012-08-18T02:04:50Z - Date Added2012-08-18T02:02:56Z - Bit Rate237 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID17D3546B85D93314 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/44.%20Zany%20&%20DV8%20-%20Distorted%20(B-Front%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5849 - - Track ID5849 - NameHoodoo Voodoo (Original Mix) - ArtistDonkey Rollers - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size1962907 - Total Time53786 - Disc Number1 - Disc Count2 - Track Number45 - Year2012 - Date Modified2012-08-18T02:04:50Z - Date Added2012-08-18T02:02:56Z - Bit Rate221 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDC56EB521B61814B7 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/45.%20Donkey%20Rollers%20-%20Hoodoo%20Voodoo%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5851 - - Track ID5851 - NameKings Of The Underground - ArtistGunz For Hire - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size4773883 - Total Time160235 - Disc Number1 - Disc Count2 - Track Number46 - Year2012 - Date Modified2012-08-18T02:04:50Z - Date Added2012-08-18T02:02:56Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDF60B210174CCA195 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/46.%20Gunz%20For%20Hire%20-%20Kings%20Of%20The%20Underground.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5853 - - Track ID5853 - NameElevate - ArtistGoldkind - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size4817360 - Total Time168045 - Disc Number1 - Disc Count2 - Track Number47 - Year2012 - Date Modified2012-08-18T02:04:50Z - Date Added2012-08-18T02:02:56Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID0EDC7DCFEA79A391 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/47.%20Goldkind%20-%20Elevate.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5855 - - Track ID5855 - NameFeelings - ArtistInfecter - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size6958143 - Total Time234945 - Disc Number1 - Disc Count2 - Track Number48 - Year2012 - Date Modified2012-08-18T02:04:50Z - Date Added2012-08-18T02:02:56Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID90A076A9ACBF0DA3 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/48.%20Infecter%20-%20Feelings.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5857 - - Track ID5857 - NameTrust ( Gainworx Hardstyle Remix) - ArtistBlack Mirage - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size5858547 - Total Time186044 - Disc Number1 - Disc Count2 - Track Number49 - Year2012 - Date Modified2012-08-18T02:04:51Z - Date Added2012-08-18T02:02:56Z - Bit Rate231 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDBC074625ECFEB8AE - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/49.%20Black%20Mirage%20-%20Trust%20(%20Gainworx%20Hardstyle%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5859 - - Track ID5859 - NameEternal Peace (Infected Revolution Remix) - ArtistDJ Dean meets Kolja Beckmann - Album ArtistVA - AlbumDJ Networx Vol.52 / CD2 - GenreTrance - KindMPEG audio file - Size7566820 - Total Time231131 - Disc Number1 - Disc Count2 - Track Number50 - Year2012 - Date Modified2012-08-18T02:04:51Z - Date Added2012-08-18T02:02:56Z - Bit Rate245 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID684EABAE039CE25A - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd2/50.%20DJ%20Dean%20meets%20Kolja%20Beckmann%20-%20Eternal%20Peace%20(Infected%20Revolution%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5861 - - Track ID5861 - NameRock The Bass (Scotty Remix) - ArtistBeam & Mikro feat. Flip Da Scrip - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size6929891 - Total Time224600 - Disc Number1 - Disc Count2 - Track Number1 - Track Count25 - Year2012 - Date Modified2012-08-18T02:05:46Z - Date Added2012-08-18T02:04:45Z - Bit Rate230 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count2 - Play Date3428131819 - Play Date UTC2012-08-18T14:50:19Z - Artwork Count1 - Persistent IDE05660EA1A3D68A9 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/01.%20Beam%20&%20Mikro%20feat.%20Flip%20Da%20Scrip%20-%20Rock%20The%20Bass%20(Scotty%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5863 - - Track ID5863 - NameInsomnia (Christopher S Horny Remix) - ArtistMike Candys & Jack Holiday - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size5072561 - Total Time147487 - Disc Number1 - Disc Count2 - Track Number2 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:03Z - Date Added2012-08-18T02:04:45Z - Bit Rate249 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count2 - Play Date3428133034 - Play Date UTC2012-08-18T15:10:34Z - Artwork Count1 - Persistent ID1C1DE855260BE0CB - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/02.%20Mike%20Candys%20&%20Jack%20Holiday%20-%20Insomnia%20(Christopher%20S%20Horny%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5865 - - Track ID5865 - NameSong 2 (Megastylez Remix) - ArtistGiorgio Prezioso & Marvin - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size5752142 - Total Time173191 - Disc Number1 - Disc Count2 - Track Number3 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:04Z - Date Added2012-08-18T02:04:45Z - Bit Rate243 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count2 - Play Date3428133207 - Play Date UTC2012-08-18T15:13:27Z - Artwork Count1 - Persistent ID5DD4212AD52010F0 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/03.%20Giorgio%20Prezioso%20&%20Marvin%20-%20Song%202%20(Megastylez%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5867 - - Track ID5867 - NameBody and Soul (Original Mix) - ArtistJens O. - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size5244920 - Total Time164597 - Disc Number1 - Disc Count2 - Track Number4 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:04Z - Date Added2012-08-18T02:04:45Z - Bit Rate231 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count2 - Play Date3428133371 - Play Date UTC2012-08-18T15:16:11Z - Artwork Count1 - Persistent IDD35A6DDE0DD7DEC8 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/04.%20Jens%20O.%20-%20Body%20and%20Soul%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5869 - - Track ID5869 - NameI Won`t Let You Down (Original Mix) - ArtistPhilip Mayer feat. Justyna Berg - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size3623528 - Total Time113162 - Disc Number1 - Disc Count2 - Track Number5 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:04Z - Date Added2012-08-18T02:04:45Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count2 - Play Date3428133485 - Play Date UTC2012-08-18T15:18:05Z - Artwork Count1 - Persistent ID7A959BF69C45F0B1 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/05.%20Philip%20Mayer%20feat.%20Justyna%20Berg%20-%20I%20Won%60t%20Let%20You%20Down%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5871 - - Track ID5871 - NameL'Esperanza (Raindropz! Remix) - ArtistTopmodelz - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size5673180 - Total Time178102 - Disc Number1 - Disc Count2 - Track Number6 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:04Z - Date Added2012-08-18T02:04:45Z - Bit Rate233 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428133663 - Play Date UTC2012-08-18T15:21:03Z - Artwork Count1 - Persistent ID32ACDB68CC4FF987 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/06.%20Topmodelz%20-%20L'Esperanza%20(Raindropz!%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5873 - - Track ID5873 - NameJeanny 2011 (Empyre One Remix) - ArtistMoney-G feat. Falco - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size3965677 - Total Time120293 - Disc Number1 - Disc Count2 - Track Number7 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:04Z - Date Added2012-08-18T02:04:45Z - Bit Rate232 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428133783 - Play Date UTC2012-08-18T15:23:03Z - Artwork Count1 - Persistent IDE33AE6C934503BD2 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/07.%20Money-G%20feat.%20Falco%20-%20Jeanny%202011%20(Empyre%20One%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5875 - - Track ID5875 - NameLookout Weekend 2012 (TI-MO Remix) - ArtistPulsedriver - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size6624967 - Total Time217756 - Disc Number1 - Disc Count2 - Track Number8 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:04Z - Date Added2012-08-18T02:04:45Z - Bit Rate226 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428134001 - Play Date UTC2012-08-18T15:26:41Z - Artwork Count1 - Persistent IDBA037FF7845F2F8D - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/08.%20Pulsedriver%20-%20Lookout%20Weekend%202012%20(TI-MO%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5877 - - Track ID5877 - NameNothing Can Hold Us Back (Crystal Lake Remix) - ArtistBryce feat. J-Malik - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size5458031 - Total Time176640 - Disc Number1 - Disc Count2 - Track Number9 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:04Z - Date Added2012-08-18T02:04:45Z - Bit Rate225 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428134177 - Play Date UTC2012-08-18T15:29:37Z - Artwork Count1 - Persistent ID4CD9CB4F5A9AE4C6 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/09.%20Bryce%20feat.%20J-Malik%20-%20Nothing%20Can%20Hold%20Us%20Back%20(Crystal%20Lake%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5879 - - Track ID5879 - NameDon't You Want Me ( Lars Palmas Remix) - ArtistDJ Sequence - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size6392373 - Total Time212610 - Disc Number1 - Disc Count2 - Track Number10 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:04Z - Date Added2012-08-18T02:04:45Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428134390 - Play Date UTC2012-08-18T15:33:10Z - Artwork Count1 - Persistent ID1D6FBBF55E80429D - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/10.%20DJ%20Sequence%20-%20Don't%20You%20Want%20Me%20(%20Lars%20Palmas%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5881 - - Track ID5881 - NameTake Off - ArtistBastian Basic - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size7488938 - Total Time233195 - Disc Number1 - Disc Count2 - Track Number11 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:04Z - Date Added2012-08-18T02:04:45Z - Bit Rate240 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID8E78CAF3C5392F0E - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/11.%20Bastian%20Basic%20-%20Take%20Off.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5883 - - Track ID5883 - NameDance With Me (Discotronic Remix Edit) - ArtistSteve Twain - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size8401840 - Total Time279484 - Disc Number1 - Disc Count2 - Track Number12 - Track Count25 - Year2012 - Date Modified2012-08-18T02:05:42Z - Date Added2012-08-18T02:04:45Z - Bit Rate226 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID2BDEF3E4B0898BDA - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/12.%20Steve%20Twain%20-%20Dance%20With%20Me%20(Discotronic%20Remix%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5885 - - Track ID5885 - NameYou (Vanilla Kiss meets K!nky Boyz Remix Edit) - ArtistHousemaxx & Crystal Rock - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size6498991 - Total Time207464 - Disc Number1 - Disc Count2 - Track Number13 - Track Count25 - Year2012 - Date Modified2012-08-18T02:05:42Z - Date Added2012-08-18T02:04:45Z - Bit Rate232 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDE3F987575AE844E6 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/13.%20Housemaxx%20&%20Crystal%20Rock%20-%20You%20(Vanilla%20Kiss%20meets%20K!nky%20Boyz%20Remix%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5887 - - Track ID5887 - NameWithout You (Bytes Brothers Edit) - ArtistDamon Pauli feat. Patricia Banks - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size5837078 - Total Time197198 - Disc Number1 - Disc Count2 - Track Number14 - Track Count25 - Year2012 - Date Modified2012-08-18T02:05:42Z - Date Added2012-08-18T02:04:45Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDA8EB441E0AF55084 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/14.%20Damon%20Pauli%20feat.%20Patricia%20Banks%20-%20Without%20You%20(Bytes%20Brothers%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5889 - - Track ID5889 - NameCan't You See? (DJ THT Extended Mix) - ArtistDJ Roxx - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size6342159 - Total Time222902 - Disc Number1 - Disc Count2 - Track Number15 - Track Count25 - Year2012 - Date Modified2012-08-18T02:05:43Z - Date Added2012-08-18T02:04:45Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID79AC6EAE4E65F8CF - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/15.%20DJ%20Roxx%20-%20Can't%20You%20See%20(DJ%20THT%20Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5891 - - Track ID5891 - NameRepeat (Dale & Harms Remix) - ArtistTripple X Elle - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size6835013 - Total Time226821 - Disc Number1 - Disc Count2 - Track Number16 - Track Count25 - Year2012 - Date Modified2012-08-18T02:05:43Z - Date Added2012-08-18T02:04:45Z - Bit Rate224 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID7AD64E0BAFF54166 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/16.%20Tripple%20X%20Elle%20-%20Repeat%20(Dale%20&%20Harms%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5893 - - Track ID5893 - NameEs Geht Los! (Alex Keen Club Mix) - ArtistCherry Inc. - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size3220280 - Total Time103288 - Disc Number1 - Disc Count2 - Track Number17 - Track Count25 - Year2012 - Date Modified2012-08-18T02:05:43Z - Date Added2012-08-18T02:04:45Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDBF32CD848C59F581 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/17.%20Cherry%20Inc.%20-%20Es%20Geht%20Los!%20(Alex%20Keen%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5895 - - Track ID5895 - NameHow Will I Know (Jeanny Kiss Remix) - ArtistCrystal Rock & Hornyshakerz - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size3659706 - Total Time114703 - Disc Number1 - Disc Count2 - Track Number18 - Track Count25 - Year2012 - Date Modified2012-08-18T02:05:44Z - Date Added2012-08-18T02:04:46Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDB42FAE029F5ED963 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/18.%20Crystal%20Rock%20&%20Hornyshakerz%20-%20How%20Will%20I%20Know%20(Jeanny%20Kiss%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5897 - - Track ID5897 - NameOpen Your Eyes (Commercial Club Crew Bootleg Mix) - ArtistBlack & White - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size6921154 - Total Time243696 - Disc Number1 - Disc Count2 - Track Number19 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:10Z - Date Added2012-08-18T02:04:46Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428134717 - Play Date UTC2012-08-18T15:38:37Z - Artwork Count1 - Persistent ID6D31A48CFD33F6A1 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/19.%20Black%20&%20White%20-%20Open%20Your%20Eyes%20(Commercial%20Club%20Crew%20Bootleg%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5899 - - Track ID5899 - NameWe Are One (Martin Eriksson Remix) - ArtistDancefloor Warning - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size4685246 - Total Time150909 - Disc Number1 - Disc Count2 - Track Number20 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:10Z - Date Added2012-08-18T02:04:46Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428134868 - Play Date UTC2012-08-18T15:41:08Z - Artwork Count1 - Persistent ID24424D7E4CF69544 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/20.%20Dancefloor%20Warning%20-%20We%20Are%20One%20(Martin%20Eriksson%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5901 - - Track ID5901 - NameWings (Massive Base Remix) - ArtistQuickdrop - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size5153174 - Total Time173871 - Disc Number1 - Disc Count2 - Track Number21 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:10Z - Date Added2012-08-18T02:04:46Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428135041 - Play Date UTC2012-08-18T15:44:01Z - Artwork Count1 - Persistent ID434A2FE1BB635C86 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/21.%20Quickdrop%20-%20Wings%20(Massive%20Base%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5903 - - Track ID5903 - NameThe Trip (Pete Sheppibone Remix) - ArtistHardface - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size5793122 - Total Time185051 - Disc Number1 - Disc Count2 - Track Number22 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:10Z - Date Added2012-08-18T02:04:46Z - Bit Rate230 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428135226 - Play Date UTC2012-08-18T15:47:06Z - Artwork Count1 - Sort NameTrip (Pete Sheppibone Remix) - Persistent IDA3F85ED937BE44F9 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/22.%20Hardface%20-%20The%20Trip%20(Pete%20Sheppibone%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5905 - - Track ID5905 - NameSet Me Free (Original Mix) - ArtistCrasherz - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size5378038 - Total Time181106 - Disc Number1 - Disc Count2 - Track Number23 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:10Z - Date Added2012-08-18T02:04:46Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428135407 - Play Date UTC2012-08-18T15:50:07Z - Artwork Count1 - Persistent IDC269C4787A132FAB - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/23.%20Crasherz%20-%20Set%20Me%20Free%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5907 - - Track ID5907 - NameTrue Hardstyler (Radio Edit) - ArtistBrooklyn Bounce & DJ Zealot - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size7206522 - Total Time240039 - Disc Number1 - Disc Count2 - Track Number24 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:10Z - Date Added2012-08-18T02:04:46Z - Bit Rate224 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428135647 - Play Date UTC2012-08-18T15:54:07Z - Artwork Count1 - Persistent ID0BD0626A94756D3C - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/24.%20Brooklyn%20Bounce%20&%20DJ%20Zealot%20-%20True%20Hardstyler%20(Radio%20Edit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5909 - - Track ID5909 - NameHardstyle Is My Religion (Dubstyle Main Mix) - ArtistIdentifierz - Album ArtistVA - AlbumDJ Networx Vol.52 / CD1 - GenreTrance - KindMPEG audio file - Size7550878 - Total Time237217 - Disc Number1 - Disc Count2 - Track Number25 - Track Count25 - Year2012 - Date Modified2012-08-18T02:06:10Z - Date Added2012-08-18T02:04:46Z - Bit Rate238 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428135885 - Play Date UTC2012-08-18T15:58:05Z - Artwork Count1 - Persistent ID16EC15F90B19C704 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2052%20(2012)%20(2%20CD)/cd1/25.%20Identifierz%20-%20Hardstyle%20Is%20My%20Religion%20(Dubstyle%20Main%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5911 - - Track ID5911 - NameCan't Hold Me Back - ArtistCode Black - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size9644873 - Total Time227578 - Disc Number2 - Disc Count2 - Track Number26 - Year2012 - Date Modified2012-08-18T02:08:18Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF89F3E19D5757D6B - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/26.%20Code%20Black%20-%20Can't%20Hold%20Me%20Back.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5913 - - Track ID5913 - NameTake Me There - ArtistD-Block & S-te-Fan - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size7344013 - Total Time170057 - Disc Number2 - Disc Count2 - Track Number27 - Year2012 - Date Modified2012-08-18T02:08:28Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9D8B2FAAFE7E23A4 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/27.%20D-Block%20&%20S-te-Fan%20-%20Take%20Me%20There.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5915 - - Track ID5915 - NameBeginning Of Time - ArtistBass Modulators - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size9337681 - Total Time219898 - Disc Number2 - Disc Count2 - Track Number28 - Year2012 - Date Modified2012-08-18T02:08:28Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD76F9B8183E134F9 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/28.%20Bass%20Modulators%20-%20Beginning%20Of%20Time.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5917 - - Track ID5917 - NameFree Again - ArtistScope DJ & Coone - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size9408722 - Total Time221675 - Disc Number2 - Disc Count2 - Track Number29 - Year2012 - Date Modified2012-08-18T02:08:28Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBA5CC422FF4FB008 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/29.%20Scope%20DJ%20&%20Coone%20-%20Free%20Again.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5919 - - Track ID5919 - NameLose My Mind (Original Mix) - ArtistBrennan Heart & Wildstylez - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size10813119 - Total Time256783 - Disc Number2 - Disc Count2 - Track Number30 - Year2012 - Date Modified2012-08-18T02:08:28Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID65C8591C0A9F7F11 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/30.%20Brennan%20Heart%20&%20Wildstylez%20-%20Lose%20My%20Mind%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5921 - - Track ID5921 - NameMy Life - ArtistZatox - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size9375258 - Total Time220839 - Disc Number2 - Disc Count2 - Track Number31 - Year2012 - Date Modified2012-08-18T02:08:28Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID34EEAB9EF9D9731E - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/31.%20Zatox%20-%20My%20Life.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5923 - - Track ID5923 - NameRebirth (Official Anthem 2012) - ArtistAlpha2 - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size9877901 - Total Time233404 - Disc Number2 - Disc Count2 - Track Number32 - Year2012 - Date Modified2012-08-18T02:08:28Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF74F59C827281AF9 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/32.%20Alpha2%20-%20Rebirth%20(Official%20Anthem%202012).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5925 - - Track ID5925 - NameThe Spirit (Original Mix) - ArtistOmegatypez - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size8149638 - Total Time190197 - Disc Number2 - Disc Count2 - Track Number33 - Year2012 - Date Modified2012-08-18T02:08:28Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameSpirit (Original Mix) - Persistent IDBB481F973639FCF4 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/33.%20Omegatypez%20-%20The%20Spirit%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5927 - - Track ID5927 - NameThe Sound Of The Underground (Tweekaz Remix) - ArtistIsaac - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size11970858 - Total Time285727 - Disc Number2 - Disc Count2 - Track Number34 - Year2012 - Date Modified2012-08-18T02:08:29Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameSound Of The Underground (Tweekaz Remix) - Persistent ID294479C96B0EA61E - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/34.%20Isaac%20-%20The%20Sound%20Of%20The%20Underground%20(Tweekaz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5929 - - Track ID5929 - NameSambuca! - ArtistTwilight Forces pres Peacekeeper ft MC Tha Watcher - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size8675268 - Total Time203337 - Disc Number2 - Disc Count2 - Track Number35 - Year2012 - Date Modified2012-08-18T02:08:29Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBCE0E826E84E5362 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/35.%20Twilight%20Forces%20pres%20Peacekeeper%20ft%20MC%20Tha%20Watcher%20-%20Sambuca!.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5931 - - Track ID5931 - NamePunani (Psyko Punkz Remix) - ArtistDJ Mystery - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size6847697 - Total Time157648 - Disc Number2 - Disc Count2 - Track Number36 - Year2012 - Date Modified2012-08-18T02:08:29Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0F7A14CC0F545573 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/36.%20DJ%20Mystery%20-%20Punani%20(Psyko%20Punkz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5933 - - Track ID5933 - NamePsyko Foundation - ArtistPsyko Punkz - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size5585442 - Total Time126093 - Disc Number2 - Disc Count2 - Track Number37 - Year2012 - Date Modified2012-08-18T02:08:29Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF5374F63D2DD6DA5 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/37.%20Psyko%20Punkz%20-%20Psyko%20Foundation.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5935 - - Track ID5935 - NameAin't Nobody (Re-Amp) - ArtistThe Pitcher - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size4861338 - Total Time107990 - Disc Number2 - Disc Count2 - Track Number38 - Year2012 - Date Modified2012-08-18T02:08:29Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistPitcher - Persistent ID0F3E277BB9DA96C6 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/38.%20The%20Pitcher%20-%20Ain't%20Nobody%20(Re-Amp).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5937 - - Track ID5937 - NameBurn Me - ArtistFrancesco Zeta ft Ivan Talko - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size8107843 - Total Time189152 - Disc Number2 - Disc Count2 - Track Number39 - Year2012 - Date Modified2012-08-18T02:08:29Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7A16C49C30BA6D3E - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/39.%20Francesco%20Zeta%20ft%20Ivan%20Talko%20-%20Burn%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5939 - - Track ID5939 - NameMusic In You (2012 Remix) - ArtistSylenth & Glitch - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size10756670 - Total Time255373 - Disc Number2 - Disc Count2 - Track Number40 - Year2012 - Date Modified2012-08-18T02:08:29Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID83A3D0FE4BF26BB1 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/40.%20Sylenth%20&%20Glitch%20-%20Music%20In%20You%20(2012%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5941 - - Track ID5941 - NameThe Firstborn - ArtistInner Heart - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size5925028 - Total Time134582 - Disc Number2 - Disc Count2 - Track Number41 - Year2012 - Date Modified2012-08-18T02:08:29Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameFirstborn - Persistent ID0021732564543534 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/41.%20Inner%20Heart%20-%20The%20Firstborn.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5943 - - Track ID5943 - NameDark Noisez (Original Mix) - ArtistG-Style Brothers - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size8652248 - Total Time202762 - Disc Number2 - Disc Count2 - Track Number42 - Year2012 - Date Modified2012-08-18T02:08:30Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC32DE81AF9163F7E - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/42.%20G-Style%20Brothers%20-%20Dark%20Noisez%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5945 - - Track ID5945 - NameRefections Of Your Dark Side (Official Black 2012 Anthem) - ArtistThe Prophet - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size9572855 - Total Time225776 - Disc Number2 - Disc Count2 - Track Number43 - Year2012 - Date Modified2012-08-18T02:08:30Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistProphet - Persistent ID2FDC52902237C1F2 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/43.%20The%20Prophet%20-%20Refections%20Of%20Your%20Dark%20Side%20(Official%20Black%202012%20Anthem).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5947 - - Track ID5947 - NameAttention (Original Mix) - ArtistFrequencerz & E-Force - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size6260483 - Total Time142968 - Disc Number2 - Disc Count2 - Track Number44 - Year2012 - Date Modified2012-08-18T02:08:30Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD8F18F3383EBB7F9 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/44.%20Frequencerz%20&%20E-Force%20-%20Attention%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5949 - - Track ID5949 - NameUnder Attack (Bassleader Anthem) - ArtistHard Driver - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size6847711 - Total Time157648 - Disc Number2 - Disc Count2 - Track Number45 - Year2012 - Date Modified2012-08-18T02:08:30Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1AB0C6CF7E20F522 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/45.%20Hard%20Driver%20-%20Under%20Attack%20(Bassleader%20Anthem).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5951 - - Track ID5951 - NameShadows Of The Day (Original Mix) - ArtistDigital Punk & Nitrouz - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size7428698 - Total Time172173 - Disc Number2 - Disc Count2 - Track Number46 - Year2012 - Date Modified2012-08-18T02:08:30Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID608723A60425BE6B - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/46.%20Digital%20Punk%20&%20Nitrouz%20-%20Shadows%20Of%20The%20Day%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5953 - - Track ID5953 - NameOrdinary World - ArtistActi - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size10172527 - Total Time240770 - Disc Number2 - Disc Count2 - Track Number47 - Year2012 - Date Modified2012-08-18T02:08:30Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID438B542567328A87 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/47.%20Acti%20-%20Ordinary%20World.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5955 - - Track ID5955 - NameTimewarp - ArtistThe Collectorz - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size5082836 - Total Time113528 - Disc Number2 - Disc Count2 - Track Number48 - Year2012 - Date Modified2012-08-18T02:08:30Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistCollectorz - Persistent ID46C782ABD00A1624 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/48.%20The%20Collectorz%20-%20Timewarp.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5957 - - Track ID5957 - NameClouds - ArtistBlack Mirage - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size4576053 - Total Time100858 - Disc Number2 - Disc Count2 - Track Number49 - Year2012 - Date Modified2012-08-18T02:08:31Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1A17009ACA66E97A - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/49.%20Black%20Mirage%20-%20Clouds.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5959 - - Track ID5959 - NameRemember The Times - ArtistPeace Destroyer - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size8719104 - Total Time204434 - Disc Number2 - Disc Count2 - Track Number50 - Year2012 - Date Modified2012-08-18T02:08:31Z - Date Added2012-08-18T02:07:12Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0223846A0D4CFA30 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/50.%20Peace%20Destroyer%20-%20Remember%20The%20Times.mp3 - File Folder Count-1 - Library Folder Count-1 - - 5961 - - Track ID5961 - NameWonderful Days 2K12 (Rocco & Bass-T Remix) - ArtistFranky Tunes - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size10964631 - Total Time260571 - Disc Number1 - Disc Count2 - Track Number1 - Year2012 - Date Modified2012-08-18T02:09:15Z - Date Added2012-08-18T02:08:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID81EADD96881FB509 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/01.%20Franky%20Tunes%20-%20Wonderful%20Days%202K12%20(Rocco%20&%20Bass-T%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5963 - - Track ID5963 - NameAnother Night 2K12 (Extended Mix) - ArtistRob Mayth - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size9318893 - Total Time219428 - Disc Number1 - Disc Count2 - Track Number2 - Year2012 - Date Modified2012-08-18T02:09:22Z - Date Added2012-08-18T02:08:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC5EA2F888AB09124 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/02.%20Rob%20Mayth%20-%20Another%20Night%202K12%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5965 - - Track ID5965 - NameIt's A Dream (VisTexx Project Remix) - ArtistDJ Dean vs DJ Analyzer - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size10175741 - Total Time240848 - Disc Number1 - Disc Count2 - Track Number3 - Year2012 - Date Modified2012-08-18T02:09:22Z - Date Added2012-08-18T02:08:19Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8C27124A7E588657 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/03.%20DJ%20Dean%20vs%20DJ%20Analyzer%20-%20It's%20A%20Dream%20(VisTexx%20Project%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5967 - - Track ID5967 - NameStreet Player (Original Mix) - ArtistThe Real Booty Babes - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size7741109 - Total Time179983 - Disc Number1 - Disc Count2 - Track Number4 - Year2012 - Date Modified2012-08-18T02:09:22Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistReal Booty Babes - Persistent IDAAD2C6A028BC1D01 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/04.%20The%20Real%20Booty%20Babes%20-%20Street%20Player%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5969 - - Track ID5969 - NameParty Bounce (Danceboy Remix) - ArtistBrooklyn Bounce & Splash - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size8222817 - Total Time192026 - Disc Number1 - Disc Count2 - Track Number5 - Year2012 - Date Modified2012-08-18T02:09:22Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDCF15E2A752B45FB8 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/05.%20Brooklyn%20Bounce%20&%20Splash%20-%20Party%20Bounce%20(Danceboy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5971 - - Track ID5971 - NameSe7en (Original Club Mix) - ArtistNicky Romero - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size9319927 - Total Time219454 - Disc Number1 - Disc Count2 - Track Number6 - Year2012 - Date Modified2012-08-18T02:09:26Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2A2BBFCFBBDCCE64 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/06.%20Nicky%20Romero%20-%20Se7en%20(Original%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5973 - - Track ID5973 - NameSuperhero (Extended Mix) - ArtistRocco & Bass-T - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size9950004 - Total Time235206 - Disc Number1 - Disc Count2 - Track Number7 - Year2012 - Date Modified2012-08-18T02:09:26Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID888375ADEB339461 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/07.%20Rocco%20&%20Bass-T%20-%20Superhero%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5975 - - Track ID5975 - NameI Need A Miracle 2012 (Ronen Dahan & Iran Brant Mix) - ArtistGuru Project & Coco Star - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size10989752 - Total Time261198 - Disc Number1 - Disc Count2 - Track Number8 - Year2012 - Date Modified2012-08-18T02:09:26Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7B83E268F12DD166 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/08.%20Guru%20Project%20&%20Coco%20Star%20-%20I%20Need%20A%20Miracle%202012%20(Ronen%20Dahan%20&%20Iran%20Brant%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5977 - - Track ID5977 - NameTake Me Away (Giorgio Gee Remix) - ArtistPrayer - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size8865399 - Total Time208091 - Disc Number1 - Disc Count2 - Track Number9 - Year2012 - Date Modified2012-08-18T02:09:26Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD65B3FFE877E8B44 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/09.%20Prayer%20-%20Take%20Me%20Away%20(Giorgio%20Gee%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5979 - - Track ID5979 - NameR&R (Giorgio Gee Remix) - ArtistBaker, McFly & Gee - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size10416034 - Total Time246857 - Disc Number1 - Disc Count2 - Track Number10 - Year2012 - Date Modified2012-08-18T02:09:26Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7A1B92B7F2466A4E - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/10.%20Baker,%20McFly%20&%20Gee%20-%20R&R%20(Giorgio%20Gee%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5981 - - Track ID5981 - NameGotta Get A Moving (Pulsedriver Remix) - ArtistDJ MNS vs E-Maxx - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size6088093 - Total Time138657 - Disc Number1 - Disc Count2 - Track Number11 - Year2012 - Date Modified2012-08-18T02:09:26Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9782810C4C5D84D6 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/11.%20DJ%20MNS%20vs%20E-Maxx%20-%20Gotta%20Get%20A%20Moving%20(Pulsedriver%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5983 - - Track ID5983 - NameWord Up (MaLu Project Remix) - ArtistTrashfunk Rockerz - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size11014768 - Total Time261825 - Disc Number1 - Disc Count2 - Track Number12 - Year2012 - Date Modified2012-08-18T02:09:27Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD6A73F51437F37EB - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/12.%20Trashfunk%20Rockerz%20-%20Word%20Up%20(MaLu%20Project%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5985 - - Track ID5985 - Name1,2,G! (Original Mix) - ArtistGiorno - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size6054601 - Total Time137822 - Disc Number1 - Disc Count2 - Track Number13 - Year2012 - Date Modified2012-08-18T02:09:27Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2F58AB3C5CD9F23C - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/13.%20Giorno%20-%201,2,G!%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5987 - - Track ID5987 - NameDizzy (Ti-Mo Remix) - ArtistDe-Grees - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size8769247 - Total Time205688 - Disc Number1 - Disc Count2 - Track Number14 - Year2012 - Date Modified2012-08-18T02:09:27Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID63401BF95E18025D - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/14.%20De-Grees%20-%20Dizzy%20(Ti-Mo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5989 - - Track ID5989 - NameCome Dance With Me (DJ THT Extended Mix) - ArtistVergiLuv vs Bounce Bro & Van Snyder - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size5175938 - Total Time115853 - Disc Number1 - Disc Count2 - Track Number15 - Year2012 - Date Modified2012-08-18T02:09:27Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDB5238806A6569CDF - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/15.%20VergiLuv%20vs%20Bounce%20Bro%20&%20Van%20Snyder%20-%20Come%20Dance%20With%20Me%20(DJ%20THT%20Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5991 - - Track ID5991 - NameParty Crash (Giorno Bootleg Mix) - ArtistModana & Carlprit - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size7356589 - Total Time170370 - Disc Number1 - Disc Count2 - Track Number16 - Year2012 - Date Modified2012-08-18T02:09:27Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID41DE9D34D23FB98F - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/16.%20Modana%20&%20Carlprit%20-%20Party%20Crash%20(Giorno%20Bootleg%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5993 - - Track ID5993 - NameWhen The Sun Comes Out (Justin Corza meets Greg Blast Remix) - ArtistThomTree - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size7071369 - Total Time163239 - Disc Number1 - Disc Count2 - Track Number17 - Year2012 - Date Modified2012-08-18T02:09:27Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID895BE194720305E7 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/17.%20ThomTree%20-%20When%20The%20Sun%20Comes%20Out%20(Justin%20Corza%20meets%20Greg%20Blast%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5995 - - Track ID5995 - NameFly With Me 2.0 (Hardcharger vs Aurora & Toxic Remix) - ArtistBastian Basic ft Nijana - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size8075532 - Total Time188342 - Disc Number1 - Disc Count2 - Track Number18 - Year2012 - Date Modified2012-08-18T02:09:27Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBF02E0117E17724A - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/18.%20Bastian%20Basic%20ft%20Nijana%20-%20Fly%20With%20Me%202.0%20(Hardcharger%20vs%20Aurora%20&%20Toxic%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5997 - - Track ID5997 - NameTrash The Club (Pulsedriver Oldschool Flavour Remix) - ArtistAligator ft Al Agami - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size4408978 - Total Time96679 - Disc Number1 - Disc Count2 - Track Number19 - Year2012 - Date Modified2012-08-18T02:09:27Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID683601CC19ECFF90 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/19.%20Aligator%20ft%20Al%20Agami%20-%20Trash%20The%20Club%20(Pulsedriver%20Oldschool%20Flavour%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 5999 - - Track ID5999 - NameThe Journey Continues (Original Mix) - ArtistHardface - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size9408758 - Total Time221675 - Disc Number1 - Disc Count2 - Track Number20 - Year2012 - Date Modified2012-08-18T02:09:28Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameJourney Continues (Original Mix) - Persistent IDBB67A8464CD63CCC - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/20.%20Hardface%20-%20The%20Journey%20Continues%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6001 - - Track ID6001 - NameI Can't Believe It (Original Mix) - ArtistImprezive meets Pink Planet - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size6008692 - Total Time136672 - Disc Number1 - Disc Count2 - Track Number21 - Year2012 - Date Modified2012-08-18T02:09:28Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6AA5632D6C9702CA - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/21.%20Imprezive%20meets%20Pink%20Planet%20-%20I%20Can't%20Believe%20It%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6003 - - Track ID6003 - NameFearless (Goldkind Remix) - ArtistDizmaster ft Jessica - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size7591683 - Total Time176248 - Disc Number1 - Disc Count2 - Track Number22 - Year2012 - Date Modified2012-08-18T02:09:28Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDB78490C55A49B3B3 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/22.%20Dizmaster%20ft%20Jessica%20-%20Fearless%20(Goldkind%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6005 - - Track ID6005 - NameDonLook Back (Jan van Bass 10 Remix) - ArtistDJ Gollum ft DJ Cap - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size6625171 - Total Time152084 - Disc Number1 - Disc Count2 - Track Number23 - Year2012 - Date Modified2012-08-18T02:09:28Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1728863A4FA8EE6C - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/23.%20DJ%20Gollum%20ft%20DJ%20Cap%20-%20DonLook%20Back%20(Jan%20van%20Bass%2010%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6007 - - Track ID6007 - NameReverse - ArtistDJ Maniac - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size5541535 - Total Time124995 - Disc Number1 - Disc Count2 - Track Number24 - Year2012 - Date Modified2012-08-18T02:09:28Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5DA19D9D360467F6 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/24.%20DJ%20Maniac%20-%20Reverse.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6009 - - Track ID6009 - NameLose Yourself (Dark Sector Redub) - ArtistDark Sector - Album ArtistVA - AlbumDJ Networx Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size6602162 - Total Time151510 - Disc Number1 - Disc Count2 - Track Number25 - Year2012 - Date Modified2012-08-18T02:09:28Z - Date Added2012-08-18T02:08:20Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0FD7984D2F76ABE6 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/DJ%20Networx%20-%20Vol.%2053%20(2012)%20(2%20CD)/25.%20Dark%20Sector%20-%20Lose%20Yourself%20(Dark%20Sector%20Redub).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6011 - - Track ID6011 - NameStuck On Replay (The Club Mix) - ArtistScooter - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size8245479 - Total Time200724 - Disc Number1 - Disc Count2 - Track Number1 - Year2010 - Date Modified2012-08-18T02:13:56Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8FAE40D0E6374BA6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/01.%20Scooter%20-%20Stuck%20On%20Replay%20(The%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6013 - - Track ID6013 - NameCrazy (Maziano Remix) - ArtistBrooklyn Bounce vs Alex M. & Marc van Damme - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size13108461 - Total Time322298 - Disc Number1 - Disc Count2 - Track Number2 - Year2010 - Date Modified2012-08-18T02:13:42Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3608CC0039EC0619 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/02.%20Brooklyn%20Bounce%20vs%20Alex%20M.%20&%20Marc%20van%20Damme%20-%20Crazy%20(Maziano%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6015 - - Track ID6015 - NameZeigt Mir 10 (Hans In Ze Air Mix) - ArtistDarius & Finlay & Shaun Baker - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size8175495 - Total Time198974 - Disc Number1 - Disc Count2 - Track Number3 - Year2010 - Date Modified2012-08-18T02:13:43Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID15F9F7927869899D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/03.%20Darius%20&%20Finlay%20&%20Shaun%20Baker%20-%20Zeigt%20Mir%2010%20(Hans%20In%20Ze%20Air%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6017 - - Track ID6017 - NameSoldier Of Fortune 2.1 (DJ Schwede Reloaded Version 2.1) - ArtistDJ Schwede - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size7575729 - Total Time183980 - Disc Number1 - Disc Count2 - Track Number4 - Year2010 - Date Modified2012-08-18T02:13:45Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0EE5EE0B3F37EAA3 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/04.%20DJ%20Schwede%20-%20Soldier%20Of%20Fortune%202.1%20(DJ%20Schwede%20Reloaded%20Version%202.1).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6019 - - Track ID6019 - NameWhy Don't You Dance With Me 2010 (Pitchers Dub Remix) - ArtistFuture Breeze - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size9126357 - Total Time222746 - Disc Number1 - Disc Count2 - Track Number5 - Year2010 - Date Modified2012-08-18T02:13:53Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID274C8BF45CAC70AC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/05.%20Future%20Breeze%20-%20Why%20Don't%20You%20Dance%20With%20Me%202010%20(Pitchers%20Dub%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6021 - - Track ID6021 - NameMoonlight Shadow (Nasty Boy Remix) - ArtistEmpyre One - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size11482579 - Total Time281652 - Disc Number1 - Disc Count2 - Track Number6 - Year2010 - Date Modified2012-08-18T02:13:46Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDB1478BB7FB542E4F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/06.%20Empyre%20One%20-%20Moonlight%20Shadow%20(Nasty%20Boy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6023 - - Track ID6023 - NameEyes Wide Open - ArtistAngel Beats - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size10622610 - Total Time260153 - Disc Number1 - Disc Count2 - Track Number7 - Year2010 - Date Modified2012-08-18T02:13:39Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC94EA001B578CB34 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/07.%20Angel%20Beats%20-%20Eyes%20Wide%20Open.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6025 - - Track ID6025 - NameTake A Look Inside (Original Mix) - ArtistDJ Fait - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size6990560 - Total Time169351 - Disc Number1 - Disc Count2 - Track Number8 - Year2010 - Date Modified2012-08-18T02:13:44Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4BF775733ACF805F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/08.%20DJ%20Fait%20-%20Take%20A%20Look%20Inside%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6027 - - Track ID6027 - NameThis Beat Is Rockin (Extended Mix) - ArtistPunk Freakz - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size7278956 - Total Time176561 - Disc Number1 - Disc Count2 - Track Number9 - Year2010 - Date Modified2012-08-18T02:13:56Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2756917C3B9B8DFA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/09.%20Punk%20Freakz%20-%20This%20Beat%20Is%20Rockin%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6029 - - Track ID6029 - NameWildside (Club Mix) - ArtistDJ Lee - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size10645597 - Total Time260728 - Disc Number1 - Disc Count2 - Track Number10 - Year2010 - Date Modified2012-08-18T02:13:44Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC37F552C19EB3FC3 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/10.%20DJ%20Lee%20-%20Wildside%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6031 - - Track ID6031 - NameGet Down (DJ Dean Remix) - ArtistCrystal Lake ft Barbie - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size8419986 - Total Time205087 - Disc Number1 - Disc Count2 - Track Number11 - Year2010 - Date Modified2012-08-18T02:13:42Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBF9F2DC2CC4CF8F7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/11.%20Crystal%20Lake%20ft%20Barbie%20-%20Get%20Down%20(DJ%20Dean%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6033 - - Track ID6033 - NameMusic Reload 2010 (Club Mix) - ArtistMike Nero - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size6456614 - Total Time156003 - Disc Number1 - Disc Count2 - Track Number12 - Year2010 - Date Modified2012-08-18T02:13:55Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID23BB2451D4982AB0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/12.%20Mike%20Nero%20-%20Music%20Reload%202010%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6035 - - Track ID6035 - NameSeconds To Paradise (Mizzleman Remix) - ArtistInverno - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size8068898 - Total Time196310 - Disc Number1 - Disc Count2 - Track Number13 - Year2010 - Date Modified2012-08-18T02:13:54Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDACE5107ADD991A12 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/13.%20Inverno%20-%20Seconds%20To%20Paradise%20(Mizzleman%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6037 - - Track ID6037 - NameIt's A Rainy Day (Extended Mix) - ArtistAndré Picar ft Ice MC - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size6943551 - Total Time168176 - Disc Number1 - Disc Count2 - Track Number14 - Year2010 - Date Modified2012-08-18T02:13:38Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID650804A72E6B3740 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/14.%20Andr%C3%A9%20Picar%20ft%20Ice%20MC%20-%20It's%20A%20Rainy%20Day%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6039 - - Track ID6039 - NameThe Tracks Of Angels (Ti-Mo Remix) - ArtistDJ Baseline - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size10411560 - Total Time254876 - Disc Number1 - Disc Count2 - Track Number15 - Year2010 - Date Modified2012-08-18T02:13:43Z - Date Added2012-08-18T02:12:40Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameTracks Of Angels (Ti-Mo Remix) - Persistent IDBAE3EBCA1673AA5E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/15.%20DJ%20Baseline%20-%20The%20Tracks%20Of%20Angels%20(Ti-Mo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6041 - - Track ID6041 - NameBass Get Smooth (SuperSoundZ Inc Remix) - ArtistThe Mobb - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size4876738 - Total Time116506 - Disc Number1 - Disc Count2 - Track Number16 - Year2010 - Date Modified2012-08-18T02:13:55Z - Date Added2012-08-18T02:12:41Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistMobb - Persistent IDEE88CCF9B6937545 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/16.%20The%20Mobb%20-%20Bass%20Get%20Smooth%20(SuperSoundZ%20Inc%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6043 - - Track ID6043 - NameDon't Tell Me Lies - ArtistHennes Petersen - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size5427386 - Total Time130272 - Disc Number1 - Disc Count2 - Track Number17 - Year2010 - Date Modified2012-08-18T02:13:53Z - Date Added2012-08-18T02:12:41Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4AB6B9A9BE3CB987 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/17.%20Hennes%20Petersen%20-%20Don't%20Tell%20Me%20Lies.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6045 - - Track ID6045 - NameYesterday (DJ Fait Remix) - ArtistMiss Destiny - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size8144123 - Total Time198191 - Disc Number1 - Disc Count2 - Track Number18 - Year2010 - Date Modified2012-08-18T02:13:55Z - Date Added2012-08-18T02:12:41Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID37D0CB3C8909F317 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/18.%20Miss%20Destiny%20-%20Yesterday%20(DJ%20Fait%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6047 - - Track ID6047 - NameAlarma - ArtistBarbarez - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size5486926 - Total Time131761 - Disc Number1 - Disc Count2 - Track Number19 - Year2010 - Date Modified2012-08-18T02:13:40Z - Date Added2012-08-18T02:12:41Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID796225C08A2CAE0D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/19.%20Barbarez%20-%20Alarma.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6049 - - Track ID6049 - NameLiving On Passion (Bootleggerz Remix) - ArtistBeat Camouflage vs Sonera - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size5540263 - Total Time133093 - Disc Number1 - Disc Count2 - Track Number20 - Year2010 - Date Modified2012-08-18T02:13:41Z - Date Added2012-08-18T02:12:41Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID94F9662BD72A1A3D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/20.%20Beat%20Camouflage%20vs%20Sonera%20-%20Living%20On%20Passion%20(Bootleggerz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6051 - - Track ID6051 - NameDangerous (Giorno's Jump & Run Remix) - ArtistIcon - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size6937270 - Total Time168019 - Disc Number1 - Disc Count2 - Track Number21 - Year2010 - Date Modified2012-08-18T02:13:54Z - Date Added2012-08-18T02:12:41Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1AB81E72322D059A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/21.%20Icon%20-%20Dangerous%20(Giorno's%20Jump%20&%20Run%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6053 - - Track ID6053 - NameLaser Light - ArtistEnergy Flash - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size4002135 - Total Time94641 - Disc Number1 - Disc Count2 - Track Number22 - Year2010 - Date Modified2012-08-18T02:13:47Z - Date Added2012-08-18T02:12:41Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6DF0177CD4A7977F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/22.%20Energy%20Flash%20-%20Laser%20Light.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6055 - - Track ID6055 - NamePredator (RainDropz! Dub Mix) - ArtistPetros ft Roxay - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size4058580 - Total Time96052 - Disc Number1 - Disc Count2 - Track Number23 - Year2010 - Date Modified2012-08-18T02:13:56Z - Date Added2012-08-18T02:12:41Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE50A91912AC81C6C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/23.%20Petros%20ft%20Roxay%20-%20Predator%20(RainDropz!%20Dub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6057 - - Track ID6057 - NameOver Me (Club Mix) - ArtistApollo - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size7058461 - Total Time171049 - Disc Number1 - Disc Count2 - Track Number24 - Year2010 - Date Modified2012-08-18T02:13:40Z - Date Added2012-08-18T02:12:41Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF9DE6F717DFEBB13 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/24.%20Apollo%20-%20Over%20Me%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6059 - - Track ID6059 - NameJourney Into Sound 2K10 (Accuface Rebound Mix) - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD1 - GenreTrance - KindMPEG audio file - Size11216141 - Total Time274991 - Disc Number1 - Disc Count2 - Track Number25 - Year2010 - Date Modified2012-08-18T02:13:38Z - Date Added2012-08-18T02:12:41Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA35409729A527859 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%201/25.%20Accuface%20-%20Journey%20Into%20Sound%202K10%20(Accuface%20Rebound%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6061 - - Track ID6061 - NameBass, Beats & Melody Reloaded! (Rocco & Bass-T Remix) - ArtistBrooklyn Bounce - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size6268653 - Total Time242625 - Disc Number1 - Disc Count2 - Track Number1 - Year2010 - Date Modified2012-08-18T02:18:58Z - Date Added2012-08-18T02:16:53Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4003E9A81CD7475B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/01.%20Brooklyn%20Bounce%20-%20Bass,%20Beats%20&%20Melody%20Reloaded!%20(Rocco%20&%20Bass-T%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6063 - - Track ID6063 - NameRhythm And Drums 2K10 (D-Tune Remix) - ArtistFranky B. - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size4066584 - Total Time156630 - Disc Number1 - Disc Count2 - Track Number2 - Year2010 - Date Modified2012-08-18T02:18:59Z - Date Added2012-08-18T02:16:53Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF8D9CC5EF8588704 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/02.%20Franky%20B.%20-%20Rhythm%20And%20Drums%202K10%20(D-Tune%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6065 - - Track ID6065 - NameSummerwave 2010 (Mike Nero Remix) - ArtistAndy Jay Powell - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3910829 - Total Time148218 - Disc Number1 - Disc Count2 - Track Number3 - Year2010 - Date Modified2012-08-18T02:18:59Z - Date Added2012-08-18T02:16:53Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAC163B8E4E91BCF1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/03.%20Andy%20Jay%20Powell%20-%20Summerwave%202010%20(Mike%20Nero%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6067 - - Track ID6067 - NameFly Away (Longflight Mix) - ArtistDream Dance Alliance - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size6930247 - Total Time256235 - Disc Number1 - Disc Count2 - Track Number4 - Year2010 - Date Modified2012-08-18T02:18:59Z - Date Added2012-08-18T02:16:53Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF0332E1308752BA8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/04.%20Dream%20Dance%20Alliance%20-%20Fly%20Away%20(Longflight%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6069 - - Track ID6069 - NameNYC (Club Mix) - ArtistMegara vs DJ Lee - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size6107406 - Total Time227996 - Disc Number1 - Disc Count2 - Track Number5 - Year2010 - Date Modified2012-08-18T02:19:00Z - Date Added2012-08-18T02:16:53Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID73DECCECA4ECA04B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/05.%20Megara%20vs%20DJ%20Lee%20-%20NYC%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6071 - - Track ID6071 - NameNobody Ever Knows Any More (Angel Beats Remix) - ArtistDJ Dean vs DJ Space Raven - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size5220762 - Total Time199444 - Disc Number1 - Disc Count2 - Track Number6 - Year2010 - Date Modified2012-08-18T02:19:00Z - Date Added2012-08-18T02:16:53Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID38D02D190665E378 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/06.%20DJ%20Dean%20vs%20DJ%20Space%20Raven%20-%20Nobody%20Ever%20Knows%20Any%20More%20(Angel%20Beats%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6073 - - Track ID6073 - NameEternal Rhapsody 2010 - ArtistDJ X Face - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size8950937 - Total Time324623 - Disc Number1 - Disc Count2 - Track Number7 - Year2010 - Date Modified2012-08-18T02:19:01Z - Date Added2012-08-18T02:16:53Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8A7CBD436583951B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/07.%20DJ%20X%20Face%20-%20Eternal%20Rhapsody%202010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6075 - - Track ID6075 - NameWill I (DJ Fait Remix) - ArtistMike Nero ft Rose Red - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size4277794 - Total Time166086 - Disc Number1 - Disc Count2 - Track Number8 - Year2010 - Date Modified2012-08-18T02:19:02Z - Date Added2012-08-18T02:16:53Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID970AF08895242660 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/08.%20Mike%20Nero%20ft%20Rose%20Red%20-%20Will%20I%20(DJ%20Fait%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6077 - - Track ID6077 - NameFor Your Mind Only (Club Mix) - ArtistDJ Fait - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size4080979 - Total Time157309 - Disc Number1 - Disc Count2 - Track Number9 - Year2010 - Date Modified2012-08-18T02:19:02Z - Date Added2012-08-18T02:16:53Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF5DC6DE16F27C239 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/09.%20DJ%20Fait%20-%20For%20Your%20Mind%20Only%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6079 - - Track ID6079 - NameBack To Life (Axel Coon Remix) - ArtistMichael Thomas ft Laurent N. - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size7370670 - Total Time179408 - Disc Number1 - Disc Count2 - Track Number10 - Year2010 - Date Modified2012-08-18T02:19:03Z - Date Added2012-08-18T02:16:53Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDA3807723D0354BDF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/10.%20Michael%20Thomas%20ft%20Laurent%20N.%20-%20Back%20To%20Life%20(Axel%20Coon%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6081 - - Track ID6081 - NameIt Feels So Fine (Club Mix) - ArtistCalderone Inc. - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size4883628 - Total Time193880 - Disc Number1 - Disc Count2 - Track Number11 - Year2010 - Date Modified2012-08-18T02:19:03Z - Date Added2012-08-18T02:16:53Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF850555F22D9228A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/11.%20Calderone%20Inc.%20-%20It%20Feels%20So%20Fine%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6083 - - Track ID6083 - NameNever Let You Go (Club Mix) - ArtistSilver Liquid - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size7218745 - Total Time278360 - Disc Number1 - Disc Count2 - Track Number12 - Year2010 - Date Modified2012-08-18T02:19:04Z - Date Added2012-08-18T02:16:53Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDEA534658B8B78B3A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/12.%20Silver%20Liquid%20-%20Never%20Let%20You%20Go%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6085 - - Track ID6085 - NameNo Good (Dezybill Remix) - ArtistDJ Mikesh - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size4091857 - Total Time152528 - Disc Number1 - Disc Count2 - Track Number13 - Year2010 - Date Modified2012-08-18T02:19:04Z - Date Added2012-08-18T02:16:53Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7E9ED655421453FA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/13.%20DJ%20Mikesh%20-%20No%20Good%20(Dezybill%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6087 - - Track ID6087 - NameBoom (Shake The Room) (G4bby ft Bazz Boyz Remix) - ArtistDirty Boyz - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size5719581 - Total Time223843 - Disc Number1 - Disc Count2 - Track Number14 - Year2010 - Date Modified2012-08-18T02:19:04Z - Date Added2012-08-18T02:16:53Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0398CCD949A803D6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/14.%20Dirty%20Boyz%20-%20Boom%20(Shake%20The%20Room)%20(G4bby%20ft%20Bazz%20Boyz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6089 - - Track ID6089 - NameWith The Crowd (Keamon Remix) - Artist2 Raverz - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size5470893 - Total Time205766 - Disc Number1 - Disc Count2 - Track Number15 - Year2010 - Date Modified2012-08-18T02:19:05Z - Date Added2012-08-18T02:16:53Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF4E87E063A671224 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/15.%202%20Raverz%20-%20With%20The%20Crowd%20(Keamon%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6091 - - Track ID6091 - NameThe Power Of Goodbye (Giorno's Jump & Run Remix) - ArtistPrayer - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size5547462 - Total Time211565 - Disc Number1 - Disc Count2 - Track Number16 - Year2010 - Date Modified2012-08-18T02:19:05Z - Date Added2012-08-18T02:16:53Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NamePower Of Goodbye (Giorno's Jump & Run Remix) - Persistent ID42320A305A1FB286 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/16.%20Prayer%20-%20The%20Power%20Of%20Goodbye%20(Giorno's%20Jump%20&%20Run%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6093 - - Track ID6093 - NameStop In My Mind 2010 (Frank Phonic Remix) - ArtistBeat Camouflage - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3403078 - Total Time132728 - Disc Number1 - Disc Count2 - Track Number17 - Year2010 - Date Modified2012-08-18T02:19:06Z - Date Added2012-08-18T02:16:53Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3162DDDCC0B9470A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/17.%20Beat%20Camouflage%20-%20Stop%20In%20My%20Mind%202010%20(Frank%20Phonic%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6095 - - Track ID6095 - NameListen To The Vibes - ArtistHennes Petersen - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3360645 - Total Time123742 - Disc Number1 - Disc Count2 - Track Number18 - Year2010 - Date Modified2012-08-18T02:19:06Z - Date Added2012-08-18T02:16:53Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDECB1BE10F18CE7DC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/18.%20Hennes%20Petersen%20-%20Listen%20To%20The%20Vibes.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6097 - - Track ID6097 - NameFollow Me (Deltaforcez Remix) - ArtistMadison - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size2981193 - Total Time113815 - Disc Number1 - Disc Count2 - Track Number19 - Year2010 - Date Modified2012-08-18T02:19:07Z - Date Added2012-08-18T02:16:53Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID57F47F46A6DFB575 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/19.%20Madison%20-%20Follow%20Me%20(Deltaforcez%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6099 - - Track ID6099 - NameI Am Free (Dancefloor Kingz Remix) - ArtistGordon & Doyle ft Players 69 - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3520418 - Total Time129541 - Disc Number1 - Disc Count2 - Track Number20 - Year2010 - Date Modified2012-08-18T02:19:07Z - Date Added2012-08-18T02:16:53Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC7E6FA29D74CA218 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/20.%20Gordon%20&%20Doyle%20ft%20Players%2069%20-%20I%20Am%20Free%20(Dancefloor%20Kingz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6101 - - Track ID6101 - NameTell Me (D-Freeze & IN-Quite Remix) - ArtistSpreadLegz - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3815231 - Total Time139284 - Disc Number1 - Disc Count2 - Track Number21 - Year2010 - Date Modified2012-08-18T02:19:07Z - Date Added2012-08-18T02:16:54Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID49F2FB6F0AF0FD07 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/21.%20SpreadLegz%20-%20Tell%20Me%20(D-Freeze%20&%20IN-Quite%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6103 - - Track ID6103 - NameFloor Burn (Club Mix) - ArtistPinball - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3787144 - Total Time138475 - Disc Number1 - Disc Count2 - Track Number22 - Year2010 - Date Modified2012-08-18T02:19:08Z - Date Added2012-08-18T02:16:54Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4AE3070D6A686398 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/22.%20Pinball%20-%20Floor%20Burn%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6105 - - Track ID6105 - NameWhen You Went Away (Kimura & Tube Tonic Remix) - ArtistHeartquake - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size5207914 - Total Time198243 - Disc Number1 - Disc Count2 - Track Number23 - Year2010 - Date Modified2012-08-18T02:19:08Z - Date Added2012-08-18T02:16:54Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD4DABA3045817780 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/23.%20Heartquake%20-%20When%20You%20Went%20Away%20(Kimura%20&%20Tube%20Tonic%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6107 - - Track ID6107 - NameMessage (Marc Pressure Mix) - ArtistClubstone meets Marc Pressure - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size5103484 - Total Time189544 - Disc Number1 - Disc Count2 - Track Number24 - Year2010 - Date Modified2012-08-18T02:19:09Z - Date Added2012-08-18T02:16:54Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE2CE588703428737 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/24.%20Clubstone%20meets%20Marc%20Pressure%20-%20Message%20(Marc%20Pressure%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6109 - - Track ID6109 - NameThe Desaster (Grief & Anger Remix) - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size7967384 - Total Time296646 - Disc Number1 - Disc Count2 - Track Number25 - Year2010 - Date Modified2012-08-18T02:19:09Z - Date Added2012-08-18T02:16:54Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameDesaster (Grief & Anger Remix) - Persistent IDB34DBDD6ABD45401 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD1/25.%20Accuface%20-%20The%20Desaster%20(Grief%20&%20Anger%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6111 - - Track ID6111 - NameSuperstring (Dave Darell Remix) - ArtistSol Noir - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3750059 - Total Time88894 - Disc Number2 - Disc Count2 - Track Number26 - Year2010 - Date Modified2012-08-18T02:18:28Z - Date Added2012-08-18T02:17:07Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID6E496A8E7BDB7685 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/26.%20Sol%20Noir%20-%20Superstring%20(Dave%20Darell%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6113 - - Track ID6113 - NameThe Dream (Original Club Mix) - ArtistTiger & Dragon - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3521454 - Total Time129906 - Disc Number2 - Disc Count2 - Track Number27 - Year2010 - Date Modified2012-08-18T02:18:30Z - Date Added2012-08-18T02:17:08Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameDream (Original Club Mix) - Persistent IDDBF66EF0C0753F2E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/27.%20Tiger%20&%20Dragon%20-%20The%20Dream%20(Original%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6115 - - Track ID6115 - NameDon't Let Go (Fuzzy & Owen Remix) - ArtistStereo Lovers ft Narany - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3371344 - Total Time121129 - Disc Number2 - Disc Count2 - Track Number28 - Year2010 - Date Modified2012-08-18T02:18:29Z - Date Added2012-08-18T02:17:08Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE454ED99B80E183C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/28.%20Stereo%20Lovers%20ft%20Narany%20-%20Don't%20Let%20Go%20(Fuzzy%20&%20Owen%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6117 - - Track ID6117 - NameFeel The Energy (Bigroom Mix) - ArtistSteamrocker & Christopher S. - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size2142546 - Total Time80143 - Disc Number2 - Disc Count2 - Track Number29 - Year2010 - Date Modified2012-08-18T02:18:28Z - Date Added2012-08-18T02:17:08Z - Bit Rate195 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5AD1CE539479C58E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/29.%20Steamrocker%20&%20Christopher%20S.%20-%20Feel%20The%20Energy%20(Bigroom%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6119 - - Track ID6119 - NameEl Diablo 2010 - ArtistDisco Cell - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size5694999 - Total Time218122 - Disc Number2 - Disc Count2 - Track Number30 - Year2010 - Date Modified2012-08-18T02:18:22Z - Date Added2012-08-18T02:17:08Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5A986C3CF655CC2F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/30.%20Disco%20Cell%20-%20El%20Diablo%202010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6121 - - Track ID6121 - NameFour To The Floor (Jasper Forks Remix) - ArtistJerome Jerkins - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size6549704 - Total Time246465 - Disc Number2 - Disc Count2 - Track Number31 - Year2010 - Date Modified2012-08-18T02:18:24Z - Date Added2012-08-18T02:17:08Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID545C0CA194AADF67 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/31.%20Jerome%20Jerkins%20-%20Four%20To%20The%20Floor%20(Jasper%20Forks%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6123 - - Track ID6123 - NameBla Bla Bla 2k10 (Original Mix) - ArtistGigi D'Agostino ft Bootmasters - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3176875 - Total Time113815 - Disc Number2 - Disc Count2 - Track Number32 - Year2010 - Date Modified2012-08-18T02:18:24Z - Date Added2012-08-18T02:17:08Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID24060F2290F50BD5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/32.%20Gigi%20D'Agostino%20ft%20Bootmasters%20-%20Bla%20Bla%20Bla%202k10%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6125 - - Track ID6125 - NameFlight 643 (Laidback Luke 2010 Rework) - ArtistTiesto - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size6819317 - Total Time251533 - Disc Number2 - Disc Count2 - Track Number33 - Year2010 - Date Modified2012-08-18T02:18:28Z - Date Added2012-08-18T02:17:08Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID258DE4C33CBA22A2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/33.%20Tiesto%20-%20Flight%20643%20(Laidback%20Luke%202010%20Rework).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6127 - - Track ID6127 - NameThe Beauty Of Silence (W&W vs Jonas Stenberg Remix) - ArtistSvenson & Gielen - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size6532951 - Total Time260466 - Disc Number2 - Disc Count2 - Track Number34 - Year2010 - Date Modified2012-08-18T02:18:29Z - Date Added2012-08-18T02:17:08Z - Bit Rate194 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameBeauty Of Silence (W&W vs Jonas Stenberg Remix) - Persistent IDD346358C7119CD3E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/34.%20Svenson%20&%20Gielen%20-%20The%20Beauty%20Of%20Silence%20(W&W%20vs%20Jonas%20Stenberg%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6129 - - Track ID6129 - NameGriffin (Original Mix) - ArtistArtento Divini - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size8077590 - Total Time291866 - Disc Number2 - Disc Count2 - Track Number35 - Year2010 - Date Modified2012-08-18T02:18:21Z - Date Added2012-08-18T02:17:08Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID97A8C9C766B39BEC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/35.%20Artento%20Divini%20-%20Griffin%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6131 - - Track ID6131 - NameViper (Original Mix) - ArtistJohn Miller - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size5090217 - Total Time190955 - Disc Number2 - Disc Count2 - Track Number36 - Year2010 - Date Modified2012-08-18T02:18:25Z - Date Added2012-08-18T02:17:08Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3D24A93E6DB6A182 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/36.%20John%20Miller%20-%20Viper%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6133 - - Track ID6133 - NameThe Flag Keeps Flying (Chrix & Chris Low Remix) - ArtistNature One Inc. - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size5598183 - Total Time204904 - Disc Number2 - Disc Count2 - Track Number37 - Year2010 - Date Modified2012-08-18T02:18:26Z - Date Added2012-08-18T02:17:09Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameFlag Keeps Flying (Chrix & Chris Low Remix) - Persistent IDAB10DF6402512CC9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/37.%20Nature%20One%20Inc.%20-%20The%20Flag%20Keeps%20Flying%20(Chrix%20&%20Chris%20Low%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6135 - - Track ID6135 - NameReach Up! - ArtistDJ Dean pres White Diamond - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size8670932 - Total Time313991 - Disc Number2 - Disc Count2 - Track Number38 - Year2010 - Date Modified2012-08-18T02:18:23Z - Date Added2012-08-18T02:17:09Z - Bit Rate216 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID468F41751FC046FF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/38.%20DJ%20Dean%20pres%20White%20Diamond%20-%20Reach%20Up!.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6137 - - Track ID6137 - NameHartseer (Scot Project Remix) - ArtistBart Claessen - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size2924598 - Total Time68257 - Disc Number2 - Disc Count2 - Track Number39 - Year2010 - Date Modified2012-08-18T02:18:21Z - Date Added2012-08-18T02:17:09Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDDEAE3167223A5132 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/39.%20Bart%20Claessen%20-%20Hartseer%20(Scot%20Project%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6139 - - Track ID6139 - NameForever (Other Mix) - Artist4 Strings ft Samantha Fox - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size4853280 - Total Time183849 - Disc Number2 - Disc Count2 - Track Number40 - Year2010 - Date Modified2012-08-18T02:18:31Z - Date Added2012-08-18T02:17:09Z - Bit Rate203 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA33055D80DE9EB3E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/40.%204%20Strings%20ft%20Samantha%20Fox%20-%20Forever%20(Other%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6141 - - Track ID6141 - NameEvery Inch A King (Original Mix) - ArtistErnesto vs Bastian - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size2788141 - Total Time105142 - Disc Number2 - Disc Count2 - Track Number41 - Year2010 - Date Modified2012-08-18T02:18:23Z - Date Added2012-08-18T02:17:09Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID631A526818C273A5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/41.%20Ernesto%20vs%20Bastian%20-%20Every%20Inch%20A%20King%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6143 - - Track ID6143 - NameLost Together (Armin van Buuren Mash Up) - ArtistSophie Sugar vs Sunlounger - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size5035522 - Total Time192548 - Disc Number2 - Disc Count2 - Track Number42 - Year2010 - Date Modified2012-08-18T02:18:28Z - Date Added2012-08-18T02:17:09Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID766AF0B501E8F2B2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/42.%20Sophie%20Sugar%20vs%20Sunlounger%20-%20Lost%20Together%20(Armin%20van%20Buuren%20Mash%20Up).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6145 - - Track ID6145 - NameArrival (Sebastian Brandt Remix) - ArtistDave202 - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size6994863 - Total Time270550 - Disc Number2 - Disc Count2 - Track Number43 - Year2010 - Date Modified2012-08-18T02:18:22Z - Date Added2012-08-18T02:17:09Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6A015E68916E950B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/43.%20Dave202%20-%20Arrival%20(Sebastian%20Brandt%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6147 - - Track ID6147 - NameDance As One (Original Mix) - ArtistMeller - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size4125747 - Total Time153129 - Disc Number2 - Disc Count2 - Track Number44 - Year2010 - Date Modified2012-08-18T02:18:26Z - Date Added2012-08-18T02:17:09Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID69CFC937DB1489C7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/44.%20Meller%20-%20Dance%20As%20One%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6149 - - Track ID6149 - NameEverywhere I Go (Claudia Cazacu Vocal Mix) - ArtistThe Space Brothers - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size3660631 - Total Time131004 - Disc Number2 - Disc Count2 - Track Number45 - Year2010 - Date Modified2012-08-18T02:18:28Z - Date Added2012-08-18T02:17:09Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistSpace Brothers - Persistent IDB02142263AFBD7ED - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/45.%20The%20Space%20Brothers%20-%20Everywhere%20I%20Go%20(Claudia%20Cazacu%20Vocal%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6151 - - Track ID6151 - Name450 (Original Mix) - ArtistSebastian Brandt - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size7038611 - Total Time278961 - Disc Number2 - Disc Count2 - Track Number46 - Year2010 - Date Modified2012-08-18T02:18:27Z - Date Added2012-08-18T02:17:09Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDE0410CD8E56C1FA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/46.%20Sebastian%20Brandt%20-%20450%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6153 - - Track ID6153 - NameNext Generation - ArtistChiller & Lou - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size2889383 - Total Time96417 - Disc Number2 - Disc Count2 - Track Number47 - Year2010 - Date Modified2012-08-18T02:18:21Z - Date Added2012-08-18T02:17:09Z - Bit Rate224 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA82AE8AD117659B5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/47.%20Chiller%20&%20Lou%20-%20Next%20Generation.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6155 - - Track ID6155 - NameMassive (Extended) - ArtistCliff Coenraad - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size4124764 - Total Time162925 - Disc Number2 - Disc Count2 - Track Number48 - Year2010 - Date Modified2012-08-18T02:18:21Z - Date Added2012-08-18T02:17:09Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3F5768CD306BB57D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/48.%20Cliff%20Coenraad%20-%20Massive%20(Extended).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6157 - - Track ID6157 - NameWhen Life Breaks Down (Extended Mix) - ArtistVan Nilson - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size7232700 - Total Time256862 - Disc Number2 - Disc Count2 - Track Number49 - Year2010 - Date Modified2012-08-18T02:18:31Z - Date Added2012-08-18T02:17:09Z - Bit Rate219 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF7F39F22E543AD0E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/49.%20Van%20Nilson%20-%20When%20Life%20Breaks%20Down%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6159 - - Track ID6159 - NameDark Heart Waiting (Jochen Miller Remix) - ArtistMarkus Schulz ft Khaz - Album ArtistVA - AlbumTunnel Trance Force Vol. 54 / CD1 - GenreTrance - KindMPEG audio file - Size9774031 - Total Time334994 - Disc Number2 - Disc Count2 - Track Number50 - Year2010 - Date Modified2012-08-18T02:18:25Z - Date Added2012-08-18T02:17:09Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID18BAD194EB51ABFB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2054%20(2010)%20(2%20CD)/CD2/50.%20Markus%20Schulz%20ft%20Khaz%20-%20Dark%20Heart%20Waiting%20(Jochen%20Miller%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6161 - - Track ID6161 - NameAtzin (Michael Mind Project Remix) - ArtistDie Atzen Frauenarzt & Manny Marc - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size7953595 - Total Time266631 - Disc Number2 - Disc Count2 - Track Number26 - Year2010 - Date Modified2012-08-18T02:29:30Z - Date Added2012-08-18T02:19:14Z - Bit Rate232 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDFB878510556EFD88 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/26.%20Die%20Atzen%20Frauenarzt%20&%20Manny%20Marc%20-%20Atzin%20(Michael%20Mind%20Project%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6163 - - Track ID6163 - NameFeel Your Body (Dutch Mix) - ArtistMichael Mind Project - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size4306793 - Total Time146311 - Disc Number2 - Disc Count2 - Track Number29 - Year2010 - Date Modified2012-08-18T02:29:30Z - Date Added2012-08-18T02:19:15Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3428087634 - Play Date UTC2012-08-18T02:33:54Z - Artwork Count1 - Persistent IDC470C4637B005A24 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/29.%20Michael%20Mind%20Project%20-%20Feel%20Your%20Body%20(Dutch%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6165 - - Track ID6165 - NameDrop The Gun 2010 (Just Begun Mix) - ArtistD.O.N.S. - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size5689175 - Total Time196362 - Disc Number2 - Disc Count2 - Track Number30 - Year2010 - Date Modified2012-08-18T02:29:31Z - Date Added2012-08-18T02:19:15Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID5D185C84FEC2B0DC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/30.%20D.O.N.S.%20-%20Drop%20The%20Gun%202010%20(Just%20Begun%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6167 - - Track ID6167 - NameRiver Flows In You (Club Mix) - ArtistJasper Forks - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size4484902 - Total Time139885 - Disc Number2 - Disc Count2 - Track Number35 - Year2010 - Date Modified2012-08-18T02:29:32Z - Date Added2012-08-18T02:19:15Z - Bit Rate244 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDF08DC426FCB8556A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/35.%20Jasper%20Forks%20-%20River%20Flows%20In%20You%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6169 - - Track ID6169 - NameSadness (DB Pure Remix) - ArtistMario Lopez - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size5250120 - Total Time180871 - Disc Number2 - Disc Count2 - Track Number37 - Year2010 - Date Modified2012-08-18T02:29:32Z - Date Added2012-08-18T02:19:15Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID5F2919F5992A6A51 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/37.%20Mario%20Lopez%20-%20Sadness%20(DB%20Pure%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6171 - - Track ID6171 - NameHold That Sucker Down (Original Mix) - ArtistJerome Isma-Ae - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size3349892 - Total Time114991 - Disc Number2 - Disc Count2 - Track Number38 - Year2010 - Date Modified2012-08-18T02:29:33Z - Date Added2012-08-18T02:19:15Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID0228FF454A18950C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/38.%20Jerome%20Isma-Ae%20-%20Hold%20That%20Sucker%20Down%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6173 - - Track ID6173 - NameFirst Strike 2010 (Sebastian Brandt Remix) - ArtistSignum - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size9624699 - Total Time341968 - Disc Number2 - Disc Count2 - Track Number42 - Year2010 - Date Modified2012-08-18T02:29:33Z - Date Added2012-08-18T02:19:15Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDB04212A68F7D3233 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/42.%20Signum%20-%20First%20Strike%202010%20(Sebastian%20Brandt%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6175 - - Track ID6175 - NameMemorable Quotes (Original Mix) - ArtistRaven & Kleekamp - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size5992553 - Total Time198791 - Disc Number2 - Disc Count2 - Track Number44 - Year2010 - Date Modified2012-08-18T02:29:34Z - Date Added2012-08-18T02:19:15Z - Bit Rate232 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID7E2F1A948373204C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/44.%20Raven%20&%20Kleekamp%20-%20Memorable%20Quotes%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6177 - - Track ID6177 - NameFlashback (Original Mix) - ArtistRafaël Frost - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size3039788 - Total Time94328 - Disc Number2 - Disc Count2 - Track Number45 - Year2010 - Date Modified2012-08-18T02:29:34Z - Date Added2012-08-18T02:19:15Z - Bit Rate239 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDB67B9158D3A9F817 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/45.%20Rafa%C3%ABl%20Frost%20-%20Flashback%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6179 - - Track ID6179 - NameKatsu (DNS Project Whiteglow Mix) - ArtistDavid Forbes - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size7310731 - Total Time241031 - Disc Number2 - Disc Count2 - Track Number48 - Year2010 - Date Modified2012-08-18T02:29:35Z - Date Added2012-08-18T02:19:15Z - Bit Rate235 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID213BFA4871D8A7B1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/48.%20David%20Forbes%20-%20Katsu%20(DNS%20Project%20Whiteglow%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6181 - - Track ID6181 - NameStart The Game Again - ArtistVan Nilson - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size10580648 - Total Time341263 - Disc Number2 - Disc Count2 - Track Number50 - Year2010 - Date Modified2012-08-18T02:29:35Z - Date Added2012-08-18T02:19:15Z - Bit Rate242 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDAA307168BBDBBA80 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/50.%20Van%20Nilson%20-%20Start%20The%20Game%20Again.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6183 - - Track ID6183 - NameMe And You (Manox RMX) - ArtistDancefloor Kingz - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size4997422 - Total Time160835 - Disc Number1 - Disc Count2 - Track Number10 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:52Z - Date Added2012-08-18T02:26:03Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID28518CB69AA96815 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/10.%20Dancefloor%20Kingz%20-%20Me%20And%20You%20(Manox%20RMX).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6185 - - Track ID6185 - NameCould It Be Love (Justin Corza meets Greg Blast Mix) - ArtistJustin Corza & Greg Blast meets Addicted Craze - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size7267300 - Total Time243382 - Disc Number1 - Disc Count2 - Track Number15 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:53Z - Date Added2012-08-18T02:26:03Z - Bit Rate221 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDF9CDF71259586BAF - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/15.%20Justin%20Corza%20&%20Greg%20Blast%20meets%20Addicted%20Craze%20-%20Could%20It%20Be%20Love%20(Justin%20Corza%20meets%20Greg%20Blast%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6187 - - Track ID6187 - NameBreak the Silence (Club Mix) - ArtistMike Nero - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size5157790 - Total Time168045 - Disc Number1 - Disc Count2 - Track Number17 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:53Z - Date Added2012-08-18T02:26:03Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID925DC3573C65B7B5 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/17.%20Mike%20Nero%20-%20Break%20the%20Silence%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6189 - - Track ID6189 - NameWhen the Sun comes out (Pete Sheppibone RMX) - ArtistThomtree - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size6096575 - Total Time200620 - Disc Number1 - Disc Count2 - Track Number18 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:53Z - Date Added2012-08-18T02:26:03Z - Bit Rate222 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID1F30F313EDC60985 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/18.%20Thomtree%20-%20When%20the%20Sun%20comes%20out%20(Pete%20Sheppibone%20RMX).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6191 - - Track ID6191 - NameWings (Original Mix) - ArtistQuickdrop - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size4728290 - Total Time150909 - Disc Number1 - Disc Count2 - Track Number19 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:53Z - Date Added2012-08-18T02:26:03Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID3915A186668B4551 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/19.%20Quickdrop%20-%20Wings%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6193 - - Track ID6193 - NameVoila (Girno'sJump & Run Mix) - ArtistRadio Killer - Album ArtistVA - AlbumDJ Networx Vol. 51 / CD1 - GenreTrance - KindMPEG audio file - Size6434845 - Total Time205139 - Disc Number1 - Disc Count2 - Track Number20 - Track Count25 - Year2012 - Date Modified2012-08-18T02:27:53Z - Date Added2012-08-18T02:26:03Z - Bit Rate230 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID98CF756659D42F51 - Track TypeFile - Locationfile://localhost/X:/Downloads/complete/VA%20-%20DJ%20Networx%20Vol.%2051%20(2012)%20(2%20CD)/cd1/20.%20Radio%20Killer%20-%20Voila%20(Girno'sJump%20&%20Run%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6195 - - Track ID6195 - NameLoneliness (2010) (Lissat and Voltaxx Remix) - ArtistTomcraft - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size4672185 - Total Time155742 - Disc Number2 - Disc Count2 - Track Number27 - Year2010 - Date Modified2012-08-18T02:29:43Z - Date Added2012-08-18T02:28:39Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3428087375 - Play Date UTC2012-08-18T02:29:35Z - Artwork Count1 - Persistent ID0FCDE6D44F232FBA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/27.%20Tomcraft%20-%20Loneliness%20(2010)%20(Lissat%20and%20Voltaxx%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6197 - - Track ID6197 - NamePush It Again 2.1 (The Mobb Remix) - ArtistDJ Lawless vs. Oliver Swab - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size3343823 - Total Time113266 - Disc Number2 - Disc Count2 - Track Number28 - Year2010 - Date Modified2012-08-18T02:29:48Z - Date Added2012-08-18T02:28:39Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Play Count1 - Play Date3428087488 - Play Date UTC2012-08-18T02:31:28Z - Artwork Count1 - Persistent IDC293D60101C001FD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/28.%20DJ%20Lawless%20vs.%20Oliver%20Swab%20-%20Push%20It%20Again%202.1%20(The%20Mobb%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6199 - - Track ID6199 - NameWho Is Elvis ? (David Amo and Julio Navas Remix) - ArtistInteractive - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size9163390 - Total Time296751 - Disc Number2 - Disc Count2 - Track Number31 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:39Z - Bit Rate241 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDD7E4DE4694FE6A4A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/31.%20Interactive%20-%20Who%20Is%20Elvis%20%20(David%20Amo%20and%20Julio%20Navas%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6201 - - Track ID6201 - NameLet The Beat Hit Em (Orchestral Dub Mix) - ArtistScotty - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size5047514 - Total Time168515 - Disc Number2 - Disc Count2 - Track Number32 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:39Z - Bit Rate229 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID7EB4D8FEEBA68A65 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/32.%20Scotty%20-%20Let%20The%20Beat%20Hit%20Em%20(Orchestral%20Dub%20Mix)%20.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6203 - - Track ID6203 - NameBack and Forth (Eric Chase Remix) - ArtistFedde Le Grand featuring Mr. V - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size3013268 - Total Time93831 - Disc Number2 - Disc Count2 - Track Number33 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:39Z - Bit Rate238 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID2B2CF67A5979D91B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/33.%20Fedde%20Le%20Grand%20featuring%20Mr.%20V%20-%20Back%20and%20Forth%20(Eric%20Chase%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6205 - - Track ID6205 - NameRoxanne's Lullaby (Fred De F Remix) - ArtistSkreatch feat. John Green - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size6278861 - Total Time228702 - Disc Number2 - Disc Count2 - Track Number34 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:39Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDB59CA7088E92E631 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/34.%20Skreatch%20feat.%20John%20Green%20-%20Roxanne's%20Lullaby%20(Fred%20De%20F%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6207 - - Track ID6207 - NameI Finally Found (David May Remix) - ArtistDJ Shog feat. Simon Binkenborn - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size4259985 - Total Time136437 - Disc Number2 - Disc Count2 - Track Number36 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:39Z - Bit Rate237 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDAC10BF0CE99C17F8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/36.%20DJ%20Shog%20feat.%20Simon%20Binkenborn%20%20-%20I%20Finally%20Found%20(David%20May%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6209 - - Track ID6209 - NameSpark (Robert Burian Trance Mix) - ArtistDJ Preach feat. Matthew Ryan - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size4497070 - Total Time149629 - Disc Number2 - Disc Count2 - Track Number39 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:39Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID14CDADD40BC75818 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/39.%20DJ%20Preach%20feat.%20Matthew%20Ryan%20-%20Spark%20(Robert%20Burian%20Trance%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6211 - - Track ID6211 - NameShanti (Sied Van Riel Remix) - ArtistFerry Corsten - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size5105503 - Total Time185155 - Disc Number2 - Disc Count2 - Track Number40 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:39Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDDED68664E00E1B3A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/40.%20Ferry%20Corsten%20%20-%20Shanti%20(Sied%20Van%20Riel%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6213 - - Track ID6213 - NameThe Great Escape (Jonas Stenberg Remix) - ArtistRank 1 vs. Jochen Miller - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size3242214 - Total Time108068 - Disc Number2 - Disc Count2 - Track Number41 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:39Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Sort NameGreat Escape (Jonas Stenberg Remix) - Persistent ID105C2CFE4080EDC8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/41.%20Rank%201%20vs.%20Jochen%20Miller%20-%20The%20Great%20Escape%20(Jonas%20Stenberg%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6215 - - Track ID6215 - NameNobody Ever Knows Any More (Original Mix) - ArtistDJ Dean vs. DJ Space Raven - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size7652797 - Total Time237923 - Disc Number2 - Disc Count2 - Track Number43 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:40Z - Bit Rate250 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID5128DE14D5454BE2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/43.%20DJ%20Dean%20vs.%20DJ%20Space%20Raven%20-%20Nobody%20Ever%20Knows%20Any%20More%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6217 - - Track ID6217 - NameHeaven Will Come (Stoneface and Terminal Dub Mix) - ArtistThe Space Brothers - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size8122397 - Total Time280528 - Disc Number2 - Disc Count2 - Track Number46 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:40Z - Bit Rate225 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Sort ArtistSpace Brothers - Persistent ID210B44B34B5377C8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/46.%20The%20Space%20Brothers%20-%20Heaven%20Will%20Come%20(Stoneface%20and%20Terminal%20Dub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6219 - - Track ID6219 - NameAlligator Fuckhouse (Original Mix) - ArtistW&W vs. Jonas Stenberg - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size6103354 - Total Time215823 - Disc Number2 - Disc Count2 - Track Number47 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:40Z - Bit Rate218 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDADFB86B1C52FBF15 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/47.%20W&W%20vs.%20Jonas%20Stenberg%20-%20Alligator%20Fuckhouse%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6221 - - Track ID6221 - NameLasting Light (Jorn Van Deynh... - ArtistRonski Speed pres. Sun Decade ft. Emma Hewitt - Album ArtistVA - AlbumTunnel Trance Force Vol. 53 / CD2 - GenreTrance - KindMPEG audio file - Size3920973 - Total Time124395 - Disc Number2 - Disc Count2 - Track Number49 - Year2010 - Date Modified2012-08-18T02:29:58Z - Date Added2012-08-18T02:28:40Z - Bit Rate238 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID0BCBF00553C2ABCD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2053%20(2010)%20(2%20CD)/CD%202/49.%20Ronski%20Speed%20pres.%20Sun%20Decade%20ft.%20Emma%20Hewitt%20-%20Lasting%20Light%20(Jorn%20Van%20Deynh....mp3 - File Folder Count-1 - Library Folder Count-1 - - 6223 - - Track ID6223 - NameLost In Love 2010 (Rocco & Bass-T Remix) - ArtistKid Kawaii vs Legend B - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size5751022 - Total Time219324 - Disc Number1 - Disc Count2 - Track Number1 - Year2010 - Date Modified2012-08-18T02:31:19Z - Date Added2012-08-18T02:30:26Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5539381130C85A58 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/01.%20Kid%20Kawaii%20vs%20Legend%20B%20-%20Lost%20In%20Love%202010%20(Rocco%20&%20Bass-T%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6225 - - Track ID6225 - NamePlayers In A Frame (In Frame Mix) - ArtistRocco & Bass-T - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size4127062 - Total Time150021 - Disc Number1 - Disc Count2 - Track Number2 - Year2010 - Date Modified2012-08-18T02:31:08Z - Date Added2012-08-18T02:30:26Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4A4B9187779E66E5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/02.%20Rocco%20&%20Bass-T%20-%20Players%20In%20A%20Frame%20(In%20Frame%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6227 - - Track ID6227 - NameLike A Lady (Club Mix) - ArtistThe Real Booty Babes - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size5658084 - Total Time206419 - Disc Number1 - Disc Count2 - Track Number3 - Year2010 - Date Modified2012-08-18T02:31:09Z - Date Added2012-08-18T02:30:26Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort ArtistReal Booty Babes - Persistent ID99295FA74253CACE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/03.%20The%20Real%20Booty%20Babes%20-%20Like%20A%20Lady%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6229 - - Track ID6229 - NameInnocent (Cc.K Remix) - ArtistGroove Coverage - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size3720074 - Total Time128679 - Disc Number1 - Disc Count2 - Track Number4 - Year2010 - Date Modified2012-08-18T02:31:09Z - Date Added2012-08-18T02:30:26Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF8A101320DC2E404 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/04.%20Groove%20Coverage%20-%20Innocent%20(Cc.K%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6231 - - Track ID6231 - NameSound Of Silence (Extended Mix) - ArtistDJ Dean meets Hennes Petersen - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size4290933 - Total Time156734 - Disc Number1 - Disc Count2 - Track Number5 - Year2010 - Date Modified2012-08-18T02:31:09Z - Date Added2012-08-18T02:30:26Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA52965736DD5DBBC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/05.%20DJ%20Dean%20meets%20Hennes%20Petersen%20-%20Sound%20Of%20Silence%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6233 - - Track ID6233 - NameThese Are The Days (Instrumental Mix) - ArtistRON:BON:BEAT Project - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size4590738 - Total Time163317 - Disc Number1 - Disc Count2 - Track Number6 - Year2010 - Date Modified2012-08-18T02:31:09Z - Date Added2012-08-18T02:30:26Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3F6196C25A73EEDD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/06.%20RON-BON-BEAT%20Project%20-%20These%20Are%20The%20Days%20(Instrumental%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6235 - - Track ID6235 - NameTime Will Come Again (Discotronic Remix) - ArtistThomas Petersen - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size7377700 - Total Time280032 - Disc Number1 - Disc Count2 - Track Number7 - Year2010 - Date Modified2012-08-18T02:31:10Z - Date Added2012-08-18T02:30:26Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3647B07431B4DDEA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/07.%20Thomas%20Petersen%20-%20Time%20Will%20Come%20Again%20(Discotronic%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6237 - - Track ID6237 - NameI Can Wait (Megara vs DJ Lee Remix) - ArtistApollo - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size5544970 - Total Time201534 - Disc Number1 - Disc Count2 - Track Number8 - Year2010 - Date Modified2012-08-18T02:31:10Z - Date Added2012-08-18T02:30:26Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID64F91BB26D79F944 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/08.%20Apollo%20-%20I%20Can%20Wait%20(Megara%20vs%20DJ%20Lee%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6239 - - Track ID6239 - NameExperience (Follow Me) 2K10 (Brooklyn Bounce S-Style Remix) - ArtistMegasonic - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size4108896 - Total Time143229 - Disc Number1 - Disc Count2 - Track Number9 - Year2010 - Date Modified2012-08-18T02:31:10Z - Date Added2012-08-18T02:30:26Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID235FBD5C7FFB0360 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/09.%20Megasonic%20-%20Experience%20(Follow%20Me)%202K10%20(Brooklyn%20Bounce%20S-Style%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6241 - - Track ID6241 - NameGet On The Floor (Club Mix) - ArtistPlaxx - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size4176797 - Total Time158928 - Disc Number1 - Disc Count2 - Track Number10 - Year2010 - Date Modified2012-08-18T02:31:10Z - Date Added2012-08-18T02:30:26Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC897BC085CB88914 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/10.%20Plaxx%20-%20Get%20On%20The%20Floor%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6243 - - Track ID6243 - NameNobody Knows (Original Mix) - ArtistDJ Fait - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size4246591 - Total Time158511 - Disc Number1 - Disc Count2 - Track Number11 - Year2010 - Date Modified2012-08-18T02:31:11Z - Date Added2012-08-18T02:30:26Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDFB33F092CBF9DD6E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/11.%20DJ%20Fait%20-%20Nobody%20Knows%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6245 - - Track ID6245 - NameTake Your Chance (Lunatic Inc. Remix) - ArtistGiga Dance meets Sven E - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size7288017 - Total Time270680 - Disc Number1 - Disc Count2 - Track Number12 - Year2010 - Date Modified2012-08-18T02:31:11Z - Date Added2012-08-18T02:30:26Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA0CAF90A26E2CACA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/12.%20Giga%20Dance%20meets%20Sven%20E%20-%20Take%20Your%20Chance%20(Lunatic%20Inc.%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6247 - - Track ID6247 - NameRelease Me (Empyre One Remix) - ArtistMoney-G - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size5245725 - Total Time182334 - Disc Number1 - Disc Count2 - Track Number13 - Year2010 - Date Modified2012-08-18T02:31:12Z - Date Added2012-08-18T02:30:26Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID207C49EA60953C6D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/13.%20Money-G%20-%20Release%20Me%20(Empyre%20One%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6249 - - Track ID6249 - NameKeep The Fire Burning (DJ Dean Remix) - ArtistMike Nero - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size6683662 - Total Time239490 - Disc Number1 - Disc Count2 - Track Number14 - Year2010 - Date Modified2012-08-18T02:31:12Z - Date Added2012-08-18T02:30:26Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDEFAB19C3CB8AFAFF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/14.%20Mike%20Nero%20-%20Keep%20The%20Fire%20Burning%20(DJ%20Dean%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6251 - - Track ID6251 - NameTonight Is The Night 2K10 (Extended) - ArtistRainDropz! vs Le Click - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size6328398 - Total Time226063 - Disc Number1 - Disc Count2 - Track Number15 - Year2010 - Date Modified2012-08-18T02:31:12Z - Date Added2012-08-18T02:30:26Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5AC8C4550F7AD0A3 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/15.%20RainDropz!%20vs%20Le%20Click%20-%20Tonight%20Is%20The%20Night%202K10%20(Extended).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6253 - - Track ID6253 - NameWonderful Night (Manila Remix) - ArtistPhilipp Ray vs Adagio Lovers - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size3777917 - Total Time136489 - Disc Number1 - Disc Count2 - Track Number16 - Year2010 - Date Modified2012-08-18T02:31:12Z - Date Added2012-08-18T02:30:26Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE7A1FA74890FE0F0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/16.%20Philipp%20Ray%20vs%20Adagio%20Lovers%20-%20Wonderful%20Night%20(Manila%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6255 - - Track ID6255 - NameCome To Me (Thomas Petersen Remix) - ArtistEBJ ft Anthya - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size5523581 - Total Time208953 - Disc Number1 - Disc Count2 - Track Number17 - Year2010 - Date Modified2012-08-18T02:31:13Z - Date Added2012-08-18T02:30:26Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA34EE6A2BB2E0B17 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/17.%20EBJ%20ft%20Anthya%20-%20Come%20To%20Me%20(Thomas%20Petersen%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6257 - - Track ID6257 - NameBe My Dream (Cosmic Overdrive vs Sys-K Remix) - ArtistMarc & Linus - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size4521160 - Total Time165694 - Disc Number1 - Disc Count2 - Track Number18 - Year2010 - Date Modified2012-08-18T02:31:13Z - Date Added2012-08-18T02:30:26Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA98A1FC5BE3B494F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/18.%20Marc%20&%20Linus%20-%20Be%20My%20Dream%20(Cosmic%20Overdrive%20vs%20Sys-K%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6259 - - Track ID6259 - NameHuman Emotions (Club Mix) - ArtistDezybill - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size8591046 - Total Time301531 - Disc Number1 - Disc Count2 - Track Number19 - Year2010 - Date Modified2012-08-18T02:31:13Z - Date Added2012-08-18T02:30:26Z - Bit Rate219 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8B62D126A7839886 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/19.%20Dezybill%20-%20Human%20Emotions%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6261 - - Track ID6261 - NameTell Me (D-Freeze & In-Quite Remix) - ArtistLowcash ft Mai - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size2925349 - Total Time101877 - Disc Number1 - Disc Count2 - Track Number20 - Year2010 - Date Modified2012-08-18T02:31:13Z - Date Added2012-08-18T02:30:26Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2E855062FFC59A3B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/20.%20Lowcash%20ft%20Mai%20-%20Tell%20Me%20(D-Freeze%20&%20In-Quite%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6263 - - Track ID6263 - NameLost Without You (Verano Remix) - ArtistDual Playaz - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size6627265 - Total Time157387 - Disc Number1 - Disc Count2 - Track Number21 - Year2010 - Date Modified2012-08-18T02:31:14Z - Date Added2012-08-18T02:30:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDF67E008F10325C4D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/21.%20Dual%20Playaz%20-%20Lost%20Without%20You%20(Verano%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6265 - - Track ID6265 - NameWe Engage (DJ FILLTER Remix) - ArtistCrasherz - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size4242088 - Total Time148741 - Disc Number1 - Disc Count2 - Track Number22 - Year2010 - Date Modified2012-08-18T02:31:14Z - Date Added2012-08-18T02:30:26Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID90DA5A806D37183C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/22.%20Crasherz%20-%20We%20Engage%20(DJ%20FILLTER%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6267 - - Track ID6267 - NameFly With Me - ArtistBastian Basic - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size5026793 - Total Time181133 - Disc Number1 - Disc Count2 - Track Number23 - Year2010 - Date Modified2012-08-18T02:31:14Z - Date Added2012-08-18T02:30:26Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD21EDD995FE3CF36 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/23.%20Bastian%20Basic%20-%20Fly%20With%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6269 - - Track ID6269 - NameOverdrive (DJ Sakin & Friends Remix) - ArtistTube Tonic - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size6590370 - Total Time237217 - Disc Number1 - Disc Count2 - Track Number24 - Year2010 - Date Modified2012-08-18T02:31:15Z - Date Added2012-08-18T02:30:27Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3C711EB4617DA947 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/24.%20Tube%20Tonic%20-%20Overdrive%20(DJ%20Sakin%20&%20Friends%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6271 - - Track ID6271 - NameOuterspace Energy (High Energy Upgrade) - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD1 - GenreTrance - KindMPEG audio file - Size7222343 - Total Time257097 - Disc Number1 - Disc Count2 - Track Number25 - Year2010 - Date Modified2012-08-18T02:31:15Z - Date Added2012-08-18T02:30:27Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2BA1EBFCA113C4C8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%201/25.%20Accuface%20-%20Outerspace%20Energy%20(High%20Energy%20Upgrade).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6273 - - Track ID6273 - NameNein, Mann! (Original Mix) - ArtistLaserkraft 3D - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size11338709 - Total Time275173 - Disc Number2 - Disc Count2 - Track Number26 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:17Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDFC379805AD620EC7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/26.%20Laserkraft%203D%20-%20Nein,%20Mann!%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6275 - - Track ID6275 - NameSturm Der Nacht 2010 (Big Room Mix) - ArtistMarc van Linden - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size8876942 - Total Time213629 - Disc Number2 - Disc Count2 - Track Number27 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:17Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDC2127265BA17E400 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/27.%20Marc%20van%20Linden%20-%20Sturm%20Der%20Nacht%202010%20(Big%20Room%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6277 - - Track ID6277 - NameRoyal Junk (Club Mix) - ArtistNiels Van Gogh vs Emilio Verdez - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size2725983 - Total Time89077 - Disc Number2 - Disc Count2 - Track Number28 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:17Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4E0774C5A80E508C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/28.%20Niels%20Van%20Gogh%20vs%20Emilio%20Verdez%20-%20Royal%20Junk%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6279 - - Track ID6279 - NameNo Soul (Bodybangers Remix) - ArtistAndrew Spencer & Daniel Slam - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size2513395 - Total Time85498 - Disc Number2 - Disc Count2 - Track Number29 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:17Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC824BC4B5C77B3F4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/29.%20Andrew%20Spencer%20&%20Daniel%20Slam%20-%20No%20Soul%20(Bodybangers%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6281 - - Track ID6281 - NameLookout Weekend (Club Mix) - ArtistPulsedriver - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size4892729 - Total Time114024 - Disc Number2 - Disc Count2 - Track Number30 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:17Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDE35558E39929EBA0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/30.%20Pulsedriver%20-%20Lookout%20Weekend%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6283 - - Track ID6283 - NameDetroit Is Dead (Original Mix) - ArtistCaudill & Turnispeed - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size3661700 - Total Time128156 - Disc Number2 - Disc Count2 - Track Number31 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:17Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID80AC0C4531909082 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/31.%20Caudill%20&%20Turnispeed%20-%20Detroit%20Is%20Dead%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6285 - - Track ID6285 - NameHouse Nation - ArtistMr. Smith - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size3055279 - Total Time99578 - Disc Number2 - Disc Count2 - Track Number32 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:18Z - Bit Rate219 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID01EE1F7CAE22CD15 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/32.%20Mr.%20Smith%20-%20House%20Nation.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6287 - - Track ID6287 - NameAcid Was My First Love (Antonio Baresi Remix) - ArtistDisco Cell - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size6736991 - Total Time160130 - Disc Number2 - Disc Count2 - Track Number33 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:18Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDBF3F8A3D94D090FD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/33.%20Disco%20Cell%20-%20Acid%20Was%20My%20First%20Love%20(Antonio%20Baresi%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6289 - - Track ID6289 - NameThese Walls (AboutBlank & KLC Remix) - ArtistDream Dance Alliance - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size3374617 - Total Time121835 - Disc Number2 - Disc Count2 - Track Number34 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:18Z - Bit Rate200 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC12D2FC7667AD449 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/34.%20Dream%20Dance%20Alliance%20-%20These%20Walls%20(AboutBlank%20&%20KLC%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6291 - - Track ID6291 - NameTogether Again (Christopher S Remix) - ArtistMike Candys - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size3579856 - Total Time127190 - Disc Number2 - Disc Count2 - Track Number35 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:18Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8669D9669EFFEF37 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/35.%20Mike%20Candys%20-%20Together%20Again%20(Christopher%20S%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6293 - - Track ID6293 - NameI'm Back Again (Gio Di Leva & Christian Cheval Remix) - ArtistPete Tha Zouk, Abigail Bailey & Mastercris - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size3478627 - Total Time121808 - Disc Number2 - Disc Count2 - Track Number36 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:18Z - Bit Rate207 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID433C85741BD3B13E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/36.%20Pete%20Tha%20Zouk,%20Abigail%20Bailey%20&%20Mastercris%20-%20I'm%20Back%20Again%20(Gio%20Di%20Leva%20&%20Christian%20Cheval%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6295 - - Track ID6295 - NameImprisoned (Original Mix) - ArtistShogun ft Emma Lock - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size8295493 - Total Time295314 - Disc Number2 - Disc Count2 - Track Number37 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:18Z - Bit Rate215 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7CB1BD46BFDECCDC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/37.%20Shogun%20ft%20Emma%20Lock%20-%20Imprisoned%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6297 - - Track ID6297 - NameFull Focus (Extended Version) - ArtistArmin van Buuren - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size8157559 - Total Time299728 - Disc Number2 - Disc Count2 - Track Number38 - Year2010 - Date Modified2012-08-18T02:32:14Z - Date Added2012-08-18T02:31:18Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID43C8AE1E83B2C6C0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/38.%20Armin%20van%20Buuren%20-%20Full%20Focus%20(Extended%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6299 - - Track ID6299 - NameThe Sound Of The Crowd (Scot Project Mix) - ArtistTalla 2XLC - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size5296073 - Total Time124107 - Disc Number2 - Disc Count2 - Track Number39 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Sort NameSound Of The Crowd (Scot Project Mix) - Persistent ID3566CFEE8BA501D4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/39.%20Talla%202XLC%20-%20The%20Sound%20Of%20The%20Crowd%20(Scot%20Project%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6301 - - Track ID6301 - NameIcarus (The Flight) (Firestorm Remix) - ArtistFlutlicht - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size7192222 - Total Time280737 - Disc Number2 - Disc Count2 - Track Number40 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate195 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5C8DD48F30AC7E0C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/40.%20Flutlicht%20-%20Icarus%20(The%20Flight)%20(Firestorm%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6303 - - Track ID6303 - NameRemember Love (Original Mix) - ArtistDJ's United - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size7923266 - Total Time312737 - Disc Number2 - Disc Count2 - Track Number41 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate194 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID055541D1A93F1B50 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/41.%20DJ's%20United%20-%20Remember%20Love%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6305 - - Track ID6305 - NameElysium (Dimension Heaven Remix) - ArtistMathias Moor - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size7362090 - Total Time270053 - Disc Number2 - Disc Count2 - Track Number42 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID886AB5DCC87C1566 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/42.%20Mathias%20Moor%20-%20Elysium%20(Dimension%20Heaven%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6307 - - Track ID6307 - NamePearl River (Alex M.O.R.P.H. Remix) - ArtistThree 'n One pres Johnny Shaker - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size7119232 - Total Time256522 - Disc Number2 - Disc Count2 - Track Number43 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID690FB573C103ECA4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/43.%20Three%20'n%20One%20pres%20Johnny%20Shaker%20-%20Pearl%20River%20(Alex%20M.O.R.P.H.%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6309 - - Track ID6309 - NameThis Is Your Day (Original Mix) - ArtistWezz Devall - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size4434729 - Total Time162142 - Disc Number2 - Disc Count2 - Track Number44 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate202 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9C6E6213522189DD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/44.%20Wezz%20Devall%20-%20This%20Is%20Your%20Day%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6311 - - Track ID6311 - NameAlpha (Original Mix) - ArtistW & W - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size2157013 - Total Time67552 - Disc Number2 - Disc Count2 - Track Number45 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF3A834E3EA9A8C19 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/45.%20W%20&%20W%20-%20Alpha%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6313 - - Track ID6313 - NameBack To The Kalahari (Sandeagle Remix) - ArtistKenan Teke - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size2867230 - Total Time95399 - Disc Number2 - Disc Count2 - Track Number46 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID99015A626FA3A52A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/46.%20Kenan%20Teke%20-%20Back%20To%20The%20Kalahari%20(Sandeagle%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6315 - - Track ID6315 - NameLove Fights All (Nish vs Hardroid Remix) - ArtistAthema - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size6866298 - Total Time256548 - Disc Number2 - Disc Count2 - Track Number47 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1672FEF752C0F0D0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/47.%20Athema%20-%20Love%20Fights%20All%20(Nish%20vs%20Hardroid%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6317 - - Track ID6317 - NameSecret Melody 2010 (DJ Toxic & Unique Mix) - ArtistDJ Toxic - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size5263678 - Total Time123297 - Disc Number2 - Disc Count2 - Track Number48 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID5FB0F13FC36C526D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/48.%20DJ%20Toxic%20-%20Secret%20Melody%202010%20(DJ%20Toxic%20&%20Unique%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6319 - - Track ID6319 - Name2001 (Original Lake Parade Live Mix) - ArtistDJ Vega - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size8890632 - Total Time324048 - Disc Number2 - Disc Count2 - Track Number49 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4BA639DDF604E076 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/49.%20DJ%20Vega%20-%202001%20(Original%20Lake%20Parade%20Live%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6321 - - Track ID6321 - NameLocal Essential - ArtistVan Nilson - Album ArtistVA - AlbumTunnel Trance Force Vol. 55 / CD2 - GenreTrance - KindMPEG audio file - Size9116005 - Total Time323474 - Disc Number2 - Disc Count2 - Track Number50 - Year2010 - Date Modified2012-08-18T02:32:15Z - Date Added2012-08-18T02:31:18Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD5CE935643AD700E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2055%20(2010)%20(2%20CD)/CD%202/50.%20Van%20Nilson%20-%20Local%20Essential.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6323 - - Track ID6323 - NameYou're Beautiful To Me 2K11 (DJ Dean's Balla Nation Remix) - ArtistFaceMan ft Mike - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size8603069 - Total Time329168 - Disc Number1 - Disc Count2 - Track Number1 - Year2011 - Date Modified2012-08-18T02:33:15Z - Date Added2012-08-18T02:32:15Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE21B062FDA122576 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/01.%20FaceMan%20ft%20Mike%20-%20You're%20Beautiful%20To%20Me%202K11%20(DJ%20Dean's%20Balla%20Nation%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6325 - - Track ID6325 - NameMegaBounce (Original Club Mix) - ArtistBrooklyn Bounce vs Megastylez - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size5415985 - Total Time205531 - Disc Number1 - Disc Count2 - Track Number2 - Year2011 - Date Modified2012-08-18T02:33:16Z - Date Added2012-08-18T02:32:15Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID47B52C6A7C5BF3DC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/02.%20Brooklyn%20Bounce%20vs%20Megastylez%20-%20MegaBounce%20(Original%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6327 - - Track ID6327 - NameI Like The Base (Club Mix) - ArtistMegara vs DJ Lee - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size5868342 - Total Time221936 - Disc Number1 - Disc Count2 - Track Number3 - Year2011 - Date Modified2012-08-18T02:33:16Z - Date Added2012-08-18T02:32:15Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID979797A9E4F33197 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/03.%20Megara%20vs%20DJ%20Lee%20-%20I%20Like%20The%20Base%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6329 - - Track ID6329 - NameNever Talk Again (Original Mix) - ArtistRocco & Bass-T - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size5817536 - Total Time137195 - Disc Number1 - Disc Count2 - Track Number4 - Year2011 - Date Modified2012-08-18T02:33:16Z - Date Added2012-08-18T02:32:15Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID1523B48F38FB30BA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/04.%20Rocco%20&%20Bass-T%20-%20Never%20Talk%20Again%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6331 - - Track ID6331 - NameSee The Light (Extended Mix) - ArtistPulsedriver - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size4853708 - Total Time181760 - Disc Number1 - Disc Count2 - Track Number5 - Year2011 - Date Modified2012-08-18T02:33:17Z - Date Added2012-08-18T02:32:15Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF38A65C1A8078598 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/05.%20Pulsedriver%20-%20See%20The%20Light%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6333 - - Track ID6333 - NameThis Feels Like Love (Axel Coon Remix) - ArtistSequenza & Wag - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size3200431 - Total Time116662 - Disc Number1 - Disc Count2 - Track Number6 - Year2011 - Date Modified2012-08-18T02:33:17Z - Date Added2012-08-18T02:32:15Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID148C68E2090BDFA5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/06.%20Sequenza%20&%20Wag%20-%20This%20Feels%20Like%20Love%20(Axel%20Coon%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6335 - - Track ID6335 - NameSupernatural (Vocal Club Mix) - ArtistRON:BON:BEAT Project - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size8101501 - Total Time290037 - Disc Number1 - Disc Count2 - Track Number7 - Year2011 - Date Modified2012-08-18T02:33:17Z - Date Added2012-08-18T02:32:15Z - Bit Rate214 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID07ECD4324F4AC373 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/07.%20RON-BON-BEAT%20Project%20-%20Supernatural%20(Vocal%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6337 - - Track ID6337 - NameSnowflakes (Extended Mix) - ArtistDream Dance Alliance - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size5760285 - Total Time200045 - Disc Number1 - Disc Count2 - Track Number8 - Year2011 - Date Modified2012-08-18T02:33:17Z - Date Added2012-08-18T02:32:15Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDF5CED72247B9F5B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/08.%20Dream%20Dance%20Alliance%20-%20Snowflakes%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6339 - - Track ID6339 - NameReaching Out (Extended Mix) - ArtistDriver & Face - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size4686532 - Total Time176848 - Disc Number1 - Disc Count2 - Track Number9 - Year2011 - Date Modified2012-08-18T02:33:18Z - Date Added2012-08-18T02:32:15Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID294654C83836B680 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/09.%20Driver%20&%20Face%20-%20Reaching%20Out%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6341 - - Track ID6341 - NameBelieve (Club Mix) - ArtistMike Nero - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size3695808 - Total Time135079 - Disc Number1 - Disc Count2 - Track Number10 - Year2011 - Date Modified2012-08-18T02:33:18Z - Date Added2012-08-18T02:32:15Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7D044221DB8CD5C9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/10.%20Mike%20Nero%20-%20Believe%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6343 - - Track ID6343 - NamePath To Paradise (DJ Dean Remix) - ArtistAddicted Craze ft The Circus - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size9055498 - Total Time333557 - Disc Number1 - Disc Count2 - Track Number11 - Year2011 - Date Modified2012-08-18T02:33:18Z - Date Added2012-08-18T02:32:15Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC655D3E657A85896 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/11.%20Addicted%20Craze%20ft%20The%20Circus%20-%20Path%20To%20Paradise%20(DJ%20Dean%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6345 - - Track ID6345 - NameFree (DJ Dean Remix) - ArtistThomas Petersen ft JD Wood - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size9271035 - Total Time339017 - Disc Number1 - Disc Count2 - Track Number12 - Year2011 - Date Modified2012-08-18T02:33:19Z - Date Added2012-08-18T02:32:16Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF27160AF8A65111E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/12.%20Thomas%20Petersen%20ft%20JD%20Wood%20-%20Free%20(DJ%20Dean%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6347 - - Track ID6347 - NameFay (Giorno Remix) - ArtistSunset Project meets Steve Stio - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size5261536 - Total Time193097 - Disc Number1 - Disc Count2 - Track Number13 - Year2011 - Date Modified2012-08-18T02:33:19Z - Date Added2012-08-18T02:32:16Z - Bit Rate204 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1B6BF5FD60DBF19E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/13.%20Sunset%20Project%20meets%20Steve%20Stio%20-%20Fay%20(Giorno%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6349 - - Track ID6349 - NameI Gotta Let You Go (Original Mix) - ArtistDJ Fait - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size4344728 - Total Time153652 - Disc Number1 - Disc Count2 - Track Number14 - Year2011 - Date Modified2012-08-18T02:33:19Z - Date Added2012-08-18T02:32:16Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID71C61C338DCB7C4F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/14.%20DJ%20Fait%20-%20I%20Gotta%20Let%20You%20Go%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6351 - - Track ID6351 - NameHeart Of The Ocean (Tunnel Allstars DJ Team Remix) - ArtistAndrew Spencer - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size7744347 - Total Time185364 - Disc Number1 - Disc Count2 - Track Number15 - Year2011 - Date Modified2012-08-18T02:33:20Z - Date Added2012-08-18T02:32:16Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDED7E590C0524AD78 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/15.%20Andrew%20Spencer%20-%20Heart%20Of%20The%20Ocean%20(Tunnel%20Allstars%20DJ%20Team%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6353 - - Track ID6353 - NameBack To Oldschool - ArtistAngel Beats - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size2604945 - Total Time80091 - Disc Number1 - Disc Count2 - Track Number16 - Year2011 - Date Modified2012-08-18T02:33:20Z - Date Added2012-08-18T02:32:16Z - Bit Rate228 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDC4A5D8A4E7A1A64 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/16.%20Angel%20Beats%20-%20Back%20To%20Oldschool.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6355 - - Track ID6355 - NameFire (Club Mix) - ArtistMike Molossa - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size5647240 - Total Time195787 - Disc Number1 - Disc Count2 - Track Number17 - Year2011 - Date Modified2012-08-18T02:33:20Z - Date Added2012-08-18T02:32:16Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0D230FBE57788683 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/17.%20Mike%20Molossa%20-%20Fire%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6357 - - Track ID6357 - NameWait For Me (Club Mix) - ArtistDezybill ft Gemma B. - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size3506507 - Total Time127791 - Disc Number1 - Disc Count2 - Track Number18 - Year2011 - Date Modified2012-08-18T02:33:20Z - Date Added2012-08-18T02:32:16Z - Bit Rate199 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC327C2F27AB7ABA9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/18.%20Dezybill%20ft%20Gemma%20B.%20-%20Wait%20For%20Me%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6359 - - Track ID6359 - NameVanished Dream (Tom Mountain goes Melodyparc Club Mix) - ArtistGainworx ft Anthya - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size6137178 - Total Time145188 - Disc Number1 - Disc Count2 - Track Number19 - Year2011 - Date Modified2012-08-18T02:33:21Z - Date Added2012-08-18T02:32:16Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDF0A9A4C6C3A7B9F7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/19.%20Gainworx%20ft%20Anthya%20-%20Vanished%20Dream%20(Tom%20Mountain%20goes%20Melodyparc%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6361 - - Track ID6361 - NameThe Sun (Deltaforcez Remix) - ArtistR.Gee & TeCay - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size7206199 - Total Time171911 - Disc Number1 - Disc Count2 - Track Number20 - Year2011 - Date Modified2012-08-18T02:33:22Z - Date Added2012-08-18T02:32:16Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Sort NameSun (Deltaforcez Remix) - Persistent ID0D0466A31005CA0F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/20.%20R.Gee%20&%20TeCay%20-%20The%20Sun%20(Deltaforcez%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6363 - - Track ID6363 - NameBass Back (Club Mix) - ArtistLowcash ft Mai - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size3691096 - Total Time121991 - Disc Number1 - Disc Count2 - Track Number21 - Year2011 - Date Modified2012-08-18T02:33:22Z - Date Added2012-08-18T02:32:16Z - Bit Rate220 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA3F1D33A25DC3C0A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/21.%20Lowcash%20ft%20Mai%20-%20Bass%20Back%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6365 - - Track ID6365 - NameThe Highjacker (Original Instrumental Mix) - ArtistPete Sheppibone - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size5195660 - Total Time174315 - Disc Number1 - Disc Count2 - Track Number22 - Year2011 - Date Modified2012-08-18T02:33:22Z - Date Added2012-08-18T02:32:16Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameHighjacker (Original Instrumental Mix) - Persistent ID993082B7DD1CED1F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/22.%20Pete%20Sheppibone%20-%20The%20Highjacker%20(Original%20Instrumental%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6367 - - Track ID6367 - NameThe Ride (High Energy Instrumental Piano Mix) - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size4335353 - Total Time151797 - Disc Number1 - Disc Count2 - Track Number23 - Year2011 - Date Modified2012-08-18T02:33:23Z - Date Added2012-08-18T02:32:16Z - Bit Rate211 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameRide (High Energy Instrumental Piano Mix) - Persistent IDCBE100A19D73DB53 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/23.%20Accuface%20-%20The%20Ride%20(High%20Energy%20Instrumental%20Piano%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6369 - - Track ID6369 - NameHurrican Of Love (Marc Pressure Mix) - ArtistClubstone meets Marc Pressure - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size3831656 - Total Time136176 - Disc Number1 - Disc Count2 - Track Number24 - Year2011 - Date Modified2012-08-18T02:33:23Z - Date Added2012-08-18T02:32:16Z - Bit Rate206 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2F661024EE85EB3A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/24.%20Clubstone%20meets%20Marc%20Pressure%20-%20Hurrican%20Of%20Love%20(Marc%20Pressure%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6371 - - Track ID6371 - NameCorcovado (Ti-Mo Remix) - ArtistRay Knox - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD1 - GenreTrance - KindMPEG audio file - Size7168512 - Total Time272222 - Disc Number1 - Disc Count2 - Track Number25 - Year2011 - Date Modified2012-08-18T02:33:23Z - Date Added2012-08-18T02:32:16Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID71205503B6827F91 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/25.%20Ray%20Knox%20-%20Corcovado%20(Ti-Mo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6373 - - Track ID6373 - NameOut Of The Blue (Endless Dreams Remix) - ArtistScotty - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size7587359 - Total Time292571 - Disc Number2 - Disc Count2 - Track Number26 - Year2011 - Date Modified2012-08-18T02:34:05Z - Date Added2012-08-18T02:33:12Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2B9B14A813338DBF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/26.%20Scotty%20-%20Out%20Of%20The%20Blue%20(Endless%20Dreams%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6375 - - Track ID6375 - NameExploration Of Space (Spencer & Hill Remix) - ArtistCosmic Gate - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size4500106 - Total Time171232 - Disc Number2 - Disc Count2 - Track Number27 - Year2011 - Date Modified2012-08-18T02:33:53Z - Date Added2012-08-18T02:33:12Z - Bit Rate195 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDEF6D5E28B429292 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/27.%20Cosmic%20Gate%20-%20Exploration%20Of%20Space%20(Spencer%20&%20Hill%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6377 - - Track ID6377 - NameIrresistible (Chuckie & Gregori Klosman Remix) - ArtistNERVO ft Ollie James - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size3144026 - Total Time114050 - Disc Number2 - Disc Count2 - Track Number28 - Year2011 - Date Modified2012-08-18T02:33:53Z - Date Added2012-08-18T02:33:12Z - Bit Rate197 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7BB6B9E2910B1D31 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/28.%20NERVO%20ft%20Ollie%20James%20-%20Irresistible%20(Chuckie%20&%20Gregori%20Klosman%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6379 - - Track ID6379 - NameNobody Likes The Records That I Play 2010 (Club Mix) - ArtistAlex Hilton - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size2350688 - Total Time83983 - Disc Number2 - Disc Count2 - Track Number29 - Year2011 - Date Modified2012-08-18T02:33:53Z - Date Added2012-08-18T02:33:12Z - Bit Rate193 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID35C71CAD29D81E3E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/29.%20Alex%20Hilton%20-%20Nobody%20Likes%20The%20Records%20That%20I%20Play%202010%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6381 - - Track ID6381 - NameUtopia (Disco Cell Remix) - ArtistSavon - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size4565897 - Total Time171154 - Disc Number2 - Disc Count2 - Track Number30 - Year2011 - Date Modified2012-08-18T02:33:54Z - Date Added2012-08-18T02:33:12Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3AB281561F15110A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/30.%20Savon%20-%20Utopia%20(Disco%20Cell%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6383 - - Track ID6383 - NameStart Our Love (Original Mix) - ArtistAndy Jay Powell - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size3281073 - Total Time112274 - Disc Number2 - Disc Count2 - Track Number31 - Year2011 - Date Modified2012-08-18T02:33:54Z - Date Added2012-08-18T02:33:12Z - Bit Rate210 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID49F3B014AC6091E9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/31.%20Andy%20Jay%20Powell%20-%20Start%20Our%20Love%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6385 - - Track ID6385 - NameSound Of Silence (Carlos Paris Remix) - ArtistDJ Dean meets Hennes Petersen - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size4562514 - Total Time170971 - Disc Number2 - Disc Count2 - Track Number32 - Year2011 - Date Modified2012-08-18T02:33:54Z - Date Added2012-08-18T02:33:12Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0EAFB550986D1738 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/32.%20DJ%20Dean%20meets%20Hennes%20Petersen%20-%20Sound%20Of%20Silence%20(Carlos%20Paris%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6387 - - Track ID6387 - NameCarimucho - ArtistFafaq - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size9056415 - Total Time335464 - Disc Number2 - Disc Count2 - Track Number33 - Year2011 - Date Modified2012-08-18T02:33:55Z - Date Added2012-08-18T02:33:12Z - Bit Rate208 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6A2049BD3D6C99DC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/33.%20Fafaq%20-%20Carimucho.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6389 - - Track ID6389 - NameOrbion (Extended Version) - ArtistArmin van Buuren - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size8537783 - Total Time309054 - Disc Number2 - Disc Count2 - Track Number34 - Year2011 - Date Modified2012-08-18T02:33:55Z - Date Added2012-08-18T02:33:12Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3E63925B13239AEF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/34.%20Armin%20van%20Buuren%20-%20Orbion%20(Extended%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6391 - - Track ID6391 - NameRain (Space Rockerz Remix) - ArtistMarkus Schulz - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size5510522 - Total Time195422 - Disc Number2 - Disc Count2 - Track Number35 - Year2011 - Date Modified2012-08-18T02:33:55Z - Date Added2012-08-18T02:33:12Z - Bit Rate212 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID942163B41043CBA7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/35.%20Markus%20Schulz%20-%20Rain%20(Space%20Rockerz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6393 - - Track ID6393 - NameI Believe (Original Mix) - ArtistGolden Coast - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size8628750 - Total Time338207 - Disc Number2 - Disc Count2 - Track Number36 - Year2011 - Date Modified2012-08-18T02:33:56Z - Date Added2012-08-18T02:33:12Z - Bit Rate196 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA1E73B4D965CED73 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/36.%20Golden%20Coast%20-%20I%20Believe%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6395 - - Track ID6395 - NameAncient World (Signum Club Mix) - ArtistRoger Shah & Signum - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size7089655 - Total Time253884 - Disc Number2 - Disc Count2 - Track Number37 - Year2011 - Date Modified2012-08-18T02:33:56Z - Date Added2012-08-18T02:33:12Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA870C40CBC0DF8A7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/37.%20Roger%20Shah%20&%20Signum%20-%20Ancient%20World%20(Signum%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6397 - - Track ID6397 - NameAisha (Aly & Fila Remix) - ArtistGaia - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size8843473 - Total Time331676 - Disc Number2 - Disc Count2 - Track Number38 - Year2011 - Date Modified2012-08-18T02:33:56Z - Date Added2012-08-18T02:33:12Z - Bit Rate205 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID465C055053DF6FBC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/38.%20Gaia%20-%20Aisha%20(Aly%20&%20Fila%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6399 - - Track ID6399 - NameInnocentia - ArtistDean & Goofy - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size9011144 - Total Time317361 - Disc Number2 - Disc Count2 - Track Number39 - Year2011 - Date Modified2012-08-18T02:33:57Z - Date Added2012-08-18T02:33:12Z - Bit Rate219 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID49E9F77C27EDBF4A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/39.%20Dean%20&%20Goofy%20-%20Innocentia.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6401 - - Track ID6401 - NameSky (Original Mix) - ArtistPakka - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size5159442 - Total Time177606 - Disc Number2 - Disc Count2 - Track Number40 - Year2011 - Date Modified2012-08-18T02:33:57Z - Date Added2012-08-18T02:33:12Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID94C98B8E2AFD8C70 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/40.%20Pakka%20-%20Sky%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6403 - - Track ID6403 - NameNexgen (Original Mix) - ArtistW & W vs Ben Gold - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size3104568 - Total Time98899 - Disc Number2 - Disc Count2 - Track Number41 - Year2011 - Date Modified2012-08-18T02:33:57Z - Date Added2012-08-18T02:33:12Z - Bit Rate225 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID20D881AEE1366B5F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/41.%20W%20&%20W%20vs%20Ben%20Gold%20-%20Nexgen%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6405 - - Track ID6405 - NameThe Darker Side Of Light (Original Mix) - ArtistIan Solano - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size3320383 - Total Time107389 - Disc Number2 - Disc Count2 - Track Number42 - Year2011 - Date Modified2012-08-18T02:33:57Z - Date Added2012-08-18T02:33:12Z - Bit Rate223 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameDarker Side Of Light (Original Mix) - Persistent ID80390FF9DE4E6BBE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/42.%20Ian%20Solano%20-%20The%20Darker%20Side%20Of%20Light%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6407 - - Track ID6407 - NameShine 2010 (TNR Remix) - ArtistTalla 2XLC - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size3952753 - Total Time121600 - Disc Number2 - Disc Count2 - Track Number43 - Year2011 - Date Modified2012-08-18T02:33:58Z - Date Added2012-08-18T02:33:12Z - Bit Rate238 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1E29C9E749A37AE5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/43.%20Talla%202XLC%20-%20Shine%202010%20(TNR%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6409 - - Track ID6409 - NameSunrise (Extended Mix) - ArtistDJ Eternity & Vince T Projekt - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size3847912 - Total Time134817 - Disc Number2 - Disc Count2 - Track Number44 - Year2011 - Date Modified2012-08-18T02:33:58Z - Date Added2012-08-18T02:33:13Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9D3C19E07E155E99 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/44.%20DJ%20Eternity%20&%20Vince%20T%20Projekt%20-%20Sunrise%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6411 - - Track ID6411 - NameWant U (Max Savietto Remix) - ArtistLCK ft Lenka Brazda - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size4354020 - Total Time148323 - Disc Number2 - Disc Count2 - Track Number45 - Year2011 - Date Modified2012-08-18T02:33:58Z - Date Added2012-08-18T02:33:13Z - Bit Rate217 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2DBE11B163390CF5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/45.%20LCK%20ft%20Lenka%20Brazda%20-%20Want%20U%20(Max%20Savietto%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6413 - - Track ID6413 - NameMoon Man (Wavetraxx Remix) - ArtistDJ Enzo.ch - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size5344020 - Total Time188290 - Disc Number2 - Disc Count2 - Track Number46 - Year2011 - Date Modified2012-08-18T02:33:58Z - Date Added2012-08-18T02:33:13Z - Bit Rate213 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1D60BDD29229E3B9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/46.%20DJ%20Enzo.ch%20-%20Moon%20Man%20(Wavetraxx%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6415 - - Track ID6415 - NameCelebrate The Music (TTF Mix) - ArtistBastian Basic - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size8884307 - Total Time213864 - Disc Number2 - Disc Count2 - Track Number47 - Year2011 - Date Modified2012-08-18T02:33:59Z - Date Added2012-08-18T02:33:13Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID715137CAB00B30D3 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/47.%20Bastian%20Basic%20-%20Celebrate%20The%20Music%20(TTF%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6417 - - Track ID6417 - NameMel Air (Original Mix) - ArtistMeller - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size3676159 - Total Time135157 - Disc Number2 - Disc Count2 - Track Number48 - Year2011 - Date Modified2012-08-18T02:33:59Z - Date Added2012-08-18T02:33:13Z - Bit Rate198 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID961477C5A13CC009 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/48.%20Meller%20-%20Mel%20Air%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6419 - - Track ID6419 - NameAnother Day In Paradise (Original Mix) - ArtistRunning Man pres Fifth Dimension - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size3252680 - Total Time111856 - Disc Number2 - Disc Count2 - Track Number49 - Year2011 - Date Modified2012-08-18T02:34:00Z - Date Added2012-08-18T02:33:13Z - Bit Rate209 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC896A36508204709 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/49.%20Running%20Man%20pres%20Fifth%20Dimension%20-%20Another%20Day%20In%20Paradise%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6421 - - Track ID6421 - NameGood Morning Sunshine (Ice Upon Fire Remix) - ArtistTranceEye - Album ArtistVA - AlbumTunnel Trance Force Vol. 56 / CD2 - GenreTrance - KindMPEG audio file - Size4144555 - Total Time152084 - Disc Number2 - Disc Count2 - Track Number50 - Year2011 - Date Modified2012-08-18T02:34:00Z - Date Added2012-08-18T02:33:13Z - Bit Rate201 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDB1195BCD6BEEA0D1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2056%20(2010)%20(2%20CD)/50.%20TranceEye%20-%20Good%20Morning%20Sunshine%20(Ice%20Upon%20Fire%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6423 - - Track ID6423 - NameThe Only One - ArtistScooter - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size6639842 - Total Time198896 - Disc Number1 - Disc Count2 - Track Number1 - Year2011 - Date Modified2012-08-18T03:13:20Z - Date Added2012-08-18T03:12:21Z - Bit Rate255 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Sort NameOnly One - Persistent ID7EA4546A262B36A0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(01)%20%5BScooter%5D%20The%20Only%20One.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6425 - - Track ID6425 - NameAre U Ready (Original Club Mix) - ArtistDJ Klubbingman feat. Beatrix Delgado - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size6878635 - Total Time201247 - Disc Number1 - Disc Count2 - Track Number2 - Year2011 - Date Modified2012-08-18T03:13:20Z - Date Added2012-08-18T03:12:21Z - Bit Rate262 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID134F1566D6C0ACEC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(02)%20%5BDJ%20Klubbingman%20feat.%20Beatrix%20Delgado%5D%20Are%20U%20Ready%20(Original%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6427 - - Track ID6427 - NameDance (Club Mix) - ArtistMegara vs. DJ Lee - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size8102992 - Total Time243200 - Disc Number1 - Disc Count2 - Track Number3 - Year2011 - Date Modified2012-08-18T03:13:20Z - Date Added2012-08-18T03:12:21Z - Bit Rate257 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID2E252D8C580A69FB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(03)%20%5BMegara%20vs.%20DJ%20Lee%5D%20Dance%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6429 - - Track ID6429 - NameCold Rock A Party (Booty Boy Remix) - ArtistBrooklyn Bounce feat. King Chronic and Miss L. - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size4064797 - Total Time119928 - Disc Number1 - Disc Count2 - Track Number4 - Year2011 - Date Modified2012-08-18T03:13:21Z - Date Added2012-08-18T03:12:21Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID75EAE44EE21CBC40 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(04)%20%5BBrooklyn%20Bounce%20feat.%20King%20Chronic%20and%20Miss%20L.%5D%20Cold%20Rock%20A%20Party%20(Booty%20Boy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6431 - - Track ID6431 - NameEverytime (Cc.K meets Rocco Remix) - ArtistRocco - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size3629915 - Total Time108225 - Disc Number1 - Disc Count2 - Track Number5 - Year2011 - Date Modified2012-08-18T03:13:21Z - Date Added2012-08-18T03:12:21Z - Bit Rate247 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID0521BCCF47F2FF9E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(05)%20%5BRocco%5D%20Everytime%20(Cc.K%20meets%20Rocco%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6433 - - Track ID6433 - NameSummertime (Instrumental Mix) - ArtistRON:BON:BEAT Project - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size6094469 - Total Time188081 - Disc Number1 - Disc Count2 - Track Number6 - Year2011 - Date Modified2012-08-18T03:13:21Z - Date Added2012-08-18T03:12:21Z - Bit Rate247 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDD9DDEAAF8F898F8A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(06)%20%5BRON-BON-BEAT%20Project%5D%20Summertime%20(Instrumental%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6435 - - Track ID6435 - NameEternal Peace (DJ Fait Remix) - ArtistDJ Dean meets Kolja Beckmann - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size5172598 - Total Time160914 - Disc Number1 - Disc Count2 - Track Number7 - Year2011 - Date Modified2012-08-18T03:13:21Z - Date Added2012-08-18T03:12:21Z - Bit Rate243 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDFDF04F1C1DE42539 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(07)%20%5BDJ%20Dean%20meets%20Kolja%20Beckmann%5D%20Eternal%20Peace%20(DJ%20Fait%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6437 - - Track ID6437 - NameI Can Hear The Silence (Club Mix) - ArtistDJ Fait - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size5280443 - Total Time168150 - Disc Number1 - Disc Count2 - Track Number8 - Year2011 - Date Modified2012-08-18T03:13:21Z - Date Added2012-08-18T03:12:21Z - Bit Rate237 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDB02BC70D93D5AD00 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(08)%20%5BDJ%20Fait%5D%20I%20Can%20Hear%20The%20Silence%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6439 - - Track ID6439 - NameCrazy Pipe 2K11 (Alex M. vs. Marc van Damme Remix) - ArtistDJ Bomba vs. Alex M. - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size5136697 - Total Time161541 - Disc Number1 - Disc Count2 - Track Number9 - Year2011 - Date Modified2012-08-18T03:13:22Z - Date Added2012-08-18T03:12:21Z - Bit Rate240 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDBB1C315927C62C3E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(09)%20%5BDJ%20Bomba%20vs.%20Alex%20M.%5D%20Crazy%20Pipe%202K11%20(Alex%20M.%20vs.%20Marc%20van%20Damme%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6441 - - Track ID6441 - NameBlow Ya Mind (Diamond Boy Remix) - ArtistLock 'n Load - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size5548671 - Total Time176300 - Disc Number1 - Disc Count2 - Track Number10 - Year2011 - Date Modified2012-08-18T03:13:22Z - Date Added2012-08-18T03:12:21Z - Bit Rate239 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID0D6C40C4DDF24485 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(10)%20%5BLock%20'n%20Load%5D%20Blow%20Ya%20Mind%20(Diamond%20Boy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6443 - - Track ID6443 - NameLeaving (Megara vs. DJ Lee Remix) - ArtistStee Wee Bee feat. Snyder and Ray - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size11240525 - Total Time342726 - Disc Number1 - Disc Count2 - Track Number11 - Year2011 - Date Modified2012-08-18T03:13:22Z - Date Added2012-08-18T03:12:21Z - Bit Rate255 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID154A1AB1175599BE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(11)%20%5BStee%20Wee%20Bee%20feat.%20Snyder%20and%20Ray%5D%20Leaving%20(Megara%20vs.%20DJ%20Lee%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6445 - - Track ID6445 - NameAfter Midnight (Quickdrop Remix) - ArtistSoulcry vs. DJ Deraven - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size4825197 - Total Time154435 - Disc Number1 - Disc Count2 - Track Number12 - Year2011 - Date Modified2012-08-18T03:13:23Z - Date Added2012-08-18T03:12:21Z - Bit Rate235 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDEF368C446E534FF2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(12)%20%5BSoulcry%20vs.%20DJ%20Deraven%5D%20After%20Midnight%20(Quickdrop%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6447 - - Track ID6447 - NameFuture Force - ArtistTrance-Forces - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size4376556 - Total Time134426 - Disc Number1 - Disc Count2 - Track Number13 - Year2011 - Date Modified2012-08-18T03:13:23Z - Date Added2012-08-18T03:12:21Z - Bit Rate243 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDEA731BAA68129A94 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(13)%20%5BTrance-Forces%5D%20Future%20Force.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6449 - - Track ID6449 - NameSmiling Faces 2011 (Club Mix) - ArtistMike Nero - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size4540789 - Total Time135183 - Disc Number1 - Disc Count2 - Track Number14 - Year2011 - Date Modified2012-08-18T03:13:23Z - Date Added2012-08-18T03:12:21Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID2B5AAFB0B4C5E20C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(14)%20%5BMike%20Nero%5D%20Smiling%20Faces%202011%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6451 - - Track ID6451 - Name2012 (Club Mix) - ArtistRobKay and Level-Up - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size5943082 - Total Time179722 - Disc Number1 - Disc Count2 - Track Number15 - Year2011 - Date Modified2012-08-18T03:13:23Z - Date Added2012-08-18T03:12:21Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID0352CFDA981890FC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(15)%20%5BRobKay%20and%20Level-Up%5D%202012%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6453 - - Track ID6453 - NameMy Style (Dezybill Remix) - ArtistDJ Mikesh - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size5099032 - Total Time152999 - Disc Number1 - Disc Count2 - Track Number16 - Year2011 - Date Modified2012-08-18T03:13:23Z - Date Added2012-08-18T03:12:21Z - Bit Rate251 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDE47E1ED2B8182A61 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(16)%20%5BDJ%20Mikesh%5D%20My%20Style%20(Dezybill%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6455 - - Track ID6455 - NameMotion (Original Mix) - ArtistThomas Petersen pres. Zylone - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size7848572 - Total Time239960 - Disc Number1 - Disc Count2 - Track Number17 - Year2011 - Date Modified2012-08-18T03:13:24Z - Date Added2012-08-18T03:12:21Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID8C28E7DD9591447B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(17)%20%5BThomas%20Petersen%20pres.%20Zylone%5D%20Motion%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6457 - - Track ID6457 - NameNew Dimension - ArtistAngel Beats - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size8246319 - Total Time252499 - Disc Number1 - Disc Count2 - Track Number18 - Year2011 - Date Modified2012-08-18T03:13:24Z - Date Added2012-08-18T03:12:21Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDA0696A3B6CD33B82 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(18)%20%5BAngel%20Beats%5D%20New%20Dimension.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6459 - - Track ID6459 - NameEvery Day I See You (T-Forces Remix) - ArtistDual Playaz - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size7254182 - Total Time227944 - Disc Number1 - Disc Count2 - Track Number19 - Year2011 - Date Modified2012-08-18T03:13:24Z - Date Added2012-08-18T03:12:21Z - Bit Rate244 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID529F463F51EAB4D4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(19)%20%5BDual%20Playaz%5D%20Every%20Day%20I%20See%20You%20(T-Forces%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6461 - - Track ID6461 - NameThe Trip (Accuface High Energy Remix) - ArtistHardface - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size7226007 - Total Time217965 - Disc Number1 - Disc Count2 - Track Number20 - Year2011 - Date Modified2012-08-18T03:13:25Z - Date Added2012-08-18T03:12:21Z - Bit Rate254 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Sort NameTrip (Accuface High Energy Remix) - Persistent IDC0C051432260CB15 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(20)%20%5BHardface%5D%20The%20Trip%20(Accuface%20High%20Energy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6463 - - Track ID6463 - NameInto My World (Keamon Remix) - Artist2 Raverz - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size4280225 - Total Time124943 - Disc Number1 - Disc Count2 - Track Number21 - Year2011 - Date Modified2012-08-18T03:13:25Z - Date Added2012-08-18T03:12:21Z - Bit Rate256 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID6F7D1989419A8C5B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(21)%20%5B2%20Raverz%5D%20Into%20My%20World%20(Keamon%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6465 - - Track ID6465 - NameI Need You To Be Here (Pete Sheppibone Remix) - ArtistThomTree feat. Rebecca - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size5479934 - Total Time166582 - Disc Number1 - Disc Count2 - Track Number22 - Year2011 - Date Modified2012-08-18T03:13:25Z - Date Added2012-08-18T03:12:22Z - Bit Rate249 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID486AE99C40FDA5F0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(22)%20%5BThomTree%20feat.%20Rebecca%5D%20I%20Need%20You%20To%20Be%20Here%20(Pete%20Sheppibone%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6467 - - Track ID6467 - NameCalling To Resurrection - ArtistBastian Basic - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size6148891 - Total Time196806 - Disc Number1 - Disc Count2 - Track Number23 - Year2011 - Date Modified2012-08-18T03:13:25Z - Date Added2012-08-18T03:12:22Z - Bit Rate238 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID83B2830C5092B54E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(23)%20%5BBastian%20Basic%5D%20Calling%20To%20Resurrection.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6469 - - Track ID6469 - NameAway (Topmodelz Remix) - ArtistMankee - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size6752275 - Total Time213498 - Disc Number1 - Disc Count2 - Track Number24 - Year2011 - Date Modified2012-08-18T03:13:26Z - Date Added2012-08-18T03:12:22Z - Bit Rate242 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID6E6BA19DC8FBA253 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(24)%20%5BMankee%5D%20Away%20(Topmodelz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6471 - - Track ID6471 - NameDance To The Beat (Topmodelz Remix) - ArtistTommy and Tibby - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD1 - GenreTrance - KindMPEG audio file - Size7748205 - Total Time246465 - Disc Number1 - Disc Count2 - Track Number25 - Year2011 - Date Modified2012-08-18T03:13:26Z - Date Added2012-08-18T03:12:22Z - Bit Rate242 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID4F5B8E4D026EFD2B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%201/(25)%20%5BTommy%20and%20Tibby%5D%20Dance%20To%20The%20Beat%20(Topmodelz%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6473 - - Track ID6473 - NameAdagio for Strings (Scotty Dub Mix) - ArtistSplash feat. Nick Austin - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size6320501 - Total Time185626 - Disc Number2 - Disc Count2 - Track Number26 - Year2011 - Date Modified2012-08-18T03:15:52Z - Date Added2012-08-18T03:14:15Z - Bit Rate260 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID216D24159B2BC7A5 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(26)%20%5BSplash%20feat.%20Nick%20Austin%5D%20Adagio%20for%20Strings%20(Scotty%20Dub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6475 - - Track ID6475 - NameEverytime You Need Me 2011 (Plastik Funk Remix) - ArtistFragma - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size3352864 - Total Time93152 - Disc Number2 - Disc Count2 - Track Number27 - Year2011 - Date Modified2012-08-18T03:16:03Z - Date Added2012-08-18T03:14:15Z - Bit Rate263 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDAE08A96FA771C291 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(27)%20%5BFragma%5D%20Everytime%20You%20Need%20Me%202011%20(Plastik%20Funk%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6477 - - Track ID6477 - NameBe Cool 2011 (DJ From Mars Dub Mix) - ArtistPaffendorf - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size6644567 - Total Time186305 - Disc Number2 - Disc Count2 - Track Number28 - Year2011 - Date Modified2012-08-18T03:15:52Z - Date Added2012-08-18T03:14:15Z - Bit Rate273 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID211942A75A35985D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(28)%20%5BPaffendorf%5D%20Be%20Cool%202011%20(DJ%20From%20Mars%20Dub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6479 - - Track ID6479 - NameTrouble On My Mind (Original Mix) - ArtistMax K. - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size5645406 - Total Time172042 - Disc Number2 - Disc Count2 - Track Number29 - Year2011 - Date Modified2012-08-18T03:16:04Z - Date Added2012-08-18T03:14:15Z - Bit Rate249 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID54E5405ED0059576 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(29)%20%5BMax%20K.%5D%20Trouble%20On%20My%20Mind%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6481 - - Track ID6481 - NameWelcome To St. Tropez (Clubzound vs. Jack-E Remix) - ArtistDJ Antoine vs. Timati feat. Kalenna - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size4782548 - Total Time141923 - Disc Number2 - Disc Count2 - Track Number30 - Year2011 - Date Modified2012-08-18T03:16:03Z - Date Added2012-08-18T03:14:15Z - Bit Rate253 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID55BDCD14AC4442FB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(30)%20%5BDJ%20Antoine%20vs.%20Timati%20feat.%20Kalenna%5D%20Welcome%20To%20St.%20Tropez%20(Clubzound%20vs.%20Jack-E%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6483 - - Track ID6483 - NameRunaway (The Saxophone Song) (Dirty Dub Mix) - ArtistD.Mand feat. Peter Be - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size6107186 - Total Time184450 - Disc Number2 - Disc Count2 - Track Number31 - Year2011 - Date Modified2012-08-18T03:16:03Z - Date Added2012-08-18T03:14:15Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID332D50CB9A579E2D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(31)%20%5BD.Mand%20feat.%20Peter%20Be%5D%20Runaway%20(The%20Saxophone%20Song)%20(Dirty%20Dub%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6485 - - Track ID6485 - NameMusic Generation - ArtistMr. Smith - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size6729007 - Total Time202187 - Disc Number2 - Disc Count2 - Track Number32 - Year2011 - Date Modified2012-08-18T03:16:04Z - Date Added2012-08-18T03:14:15Z - Bit Rate255 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID1C70EFF13F4FDFDC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(32)%20%5BMr.%20Smith%5D%20Music%20Generation.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6487 - - Track ID6487 - NameEncoded (Dada Life Remix) - ArtistHardwell - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size2616533 - Total Time70948 - Disc Number2 - Disc Count2 - Track Number33 - Year2011 - Date Modified2012-08-18T03:16:03Z - Date Added2012-08-18T03:14:15Z - Bit Rate263 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID3FC5BE1E670997E7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(33)%20%5BHardwell%5D%20Encoded%20(Dada%20Life%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6489 - - Track ID6489 - NameTurbulence (Original Mix) - ArtistKlauss Goulart - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size4950944 - Total Time145475 - Disc Number2 - Disc Count2 - Track Number34 - Year2011 - Date Modified2012-08-18T03:16:04Z - Date Added2012-08-18T03:14:15Z - Bit Rate256 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID2D7CEC8C6C064093 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(34)%20%5BKlauss%20Goulart%5D%20Turbulence%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6491 - - Track ID6491 - NameKokko (Original Mix) - ArtistSander van Doorn - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size7330972 - Total Time228702 - Disc Number2 - Disc Count2 - Track Number35 - Year2011 - Date Modified2012-08-18T03:15:53Z - Date Added2012-08-18T03:14:15Z - Bit Rate246 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID130229612C220252 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(35)%20%5BSander%20van%20Doorn%5D%20Kokko%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6493 - - Track ID6493 - NameFeel It - ArtistFerry Corsten - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size4713648 - Total Time144013 - Disc Number2 - Disc Count2 - Track Number36 - Year2011 - Date Modified2012-08-18T03:16:03Z - Date Added2012-08-18T03:14:15Z - Bit Rate246 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID44CA3010DA4A6B1E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(36)%20%5BFerry%20Corsten%5D%20Feel%20It.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6495 - - Track ID6495 - NameFreedom (Original Mix) - Artist3rd Planet - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size4909080 - Total Time143098 - Disc Number2 - Disc Count2 - Track Number37 - Year2011 - Date Modified2012-08-18T03:15:54Z - Date Added2012-08-18T03:14:15Z - Bit Rate258 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDC6E9EAA751B8A8F3 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(37)%20%5B3rd%20Planet%5D%20Freedom%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6497 - - Track ID6497 - NameApollo Road (Club Version) - ArtistATB with Dash Berlin - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size8649971 - Total Time253701 - Disc Number2 - Disc Count2 - Track Number38 - Year2011 - Date Modified2012-08-18T03:16:03Z - Date Added2012-08-18T03:14:15Z - Bit Rate263 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID7D587FCA49C79DB0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(38)%20%5BATB%20with%20Dash%20Berlin%5D%20Apollo%20Road%20(Club%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6499 - - Track ID6499 - NameThree O'Clock (Original Mix) - ArtistW&W feat. Ana Criado - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size10164804 - Total Time309002 - Disc Number2 - Disc Count2 - Track Number39 - Year2011 - Date Modified2012-08-18T03:15:54Z - Date Added2012-08-18T03:14:15Z - Bit Rate255 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID39436CC04DA43A31 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(39)%20%5BW&W%20feat.%20Ana%20Criado%5D%20Three%20O'Clock%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6501 - - Track ID6501 - NameRotunda (Original Mix) - ArtistMarkus Schulz and Jochen Miller - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size4881257 - Total Time157022 - Disc Number2 - Disc Count2 - Track Number40 - Year2011 - Date Modified2012-08-18T03:16:04Z - Date Added2012-08-18T03:14:15Z - Bit Rate234 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID230EA577194ED874 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(40)%20%5BMarkus%20Schulz%20and%20Jochen%20Miller%5D%20Rotunda%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6503 - - Track ID6503 - NameDrowning (Club Mix) - ArtistArmin van Buuren feat. Laura V - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size7110507 - Total Time215902 - Disc Number2 - Disc Count2 - Track Number41 - Year2011 - Date Modified2012-08-18T03:16:02Z - Date Added2012-08-18T03:14:15Z - Bit Rate253 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDE46FACD6C49F0327 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(41)%20%5BArmin%20van%20Buuren%20feat.%20Laura%20V%5D%20Drowning%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6505 - - Track ID6505 - NameRide The Wave (Original Mix) - ArtistJohn O'Callaghan and Giuseppe Ottaviani - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size8372430 - Total Time253570 - Disc Number2 - Disc Count2 - Track Number42 - Year2011 - Date Modified2012-08-18T03:16:04Z - Date Added2012-08-18T03:14:15Z - Bit Rate255 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID0ED25902662D3BA6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(42)%20%5BJohn%20O'Callaghan%20and%20Giuseppe%20Ottaviani%5D%20Ride%20The%20Wave%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6507 - - Track ID6507 - NameFloor Control (Giuseppe Ottaviani Remix) - ArtistCastaneda - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size5568010 - Total Time165694 - Disc Number2 - Disc Count2 - Track Number43 - Year2011 - Date Modified2012-08-18T03:16:03Z - Date Added2012-08-18T03:14:15Z - Bit Rate255 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID33F704BD42AC78F6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(43)%20%5BCastaneda%5D%20Floor%20Control%20(Giuseppe%20Ottaviani%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6509 - - Track ID6509 - NameSet It Up (Para X Upgressive Remix) - ArtistAndy Jay Powell - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size4404399 - Total Time124551 - Disc Number2 - Disc Count2 - Track Number44 - Year2011 - Date Modified2012-08-18T03:16:02Z - Date Added2012-08-18T03:14:15Z - Bit Rate264 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID77472D1074772229 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(44)%20%5BAndy%20Jay%20Powell%5D%20Set%20It%20Up%20(Para%20X%20Upgressive%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6511 - - Track ID6511 - NameStrangetune (John Miller Remix) - ArtistK. Blank - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size3002988 - Total Time86334 - Disc Number2 - Disc Count2 - Track Number45 - Year2011 - Date Modified2012-08-18T03:16:04Z - Date Added2012-08-18T03:14:15Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID16704A0A2AFB7D39 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(45)%20%5BK.%20Blank%5D%20Strangetune%20(John%20Miller%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6513 - - Track ID6513 - NameShine (Original Mix) - ArtistRunning Man - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size9465355 - Total Time289802 - Disc Number2 - Disc Count2 - Track Number46 - Year2011 - Date Modified2012-08-18T03:15:53Z - Date Added2012-08-18T03:14:15Z - Bit Rate253 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDAA1B06EFF094375B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(46)%20%5BRunning%20Man%5D%20Shine%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6515 - - Track ID6515 - NameFalling Lights (DJ Madwave Remix) - ArtistDJ Snowman - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size7131904 - Total Time207072 - Disc Number2 - Disc Count2 - Track Number47 - Year2011 - Date Modified2012-08-18T03:16:03Z - Date Added2012-08-18T03:14:16Z - Bit Rate264 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent IDC21B636CD296BC44 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(47)%20%5BDJ%20Snowman%5D%20Falling%20Lights%20(DJ%20Madwave%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6517 - - Track ID6517 - NameSurfing The Clouds (Original Mix) - Artist7 Baltic - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size4951577 - Total Time151823 - Disc Number2 - Disc Count2 - Track Number48 - Year2011 - Date Modified2012-08-18T03:15:54Z - Date Added2012-08-18T03:14:16Z - Bit Rate246 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID940B9FA1377200AD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(48)%20%5B7%20Baltic%5D%20Surfing%20The%20Clouds%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6519 - - Track ID6519 - NameOnto Tomorrow (Original Mix) - ArtistSneijder - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size8398591 - Total Time249338 - Disc Number2 - Disc Count2 - Track Number49 - Year2011 - Date Modified2012-08-18T03:15:53Z - Date Added2012-08-18T03:14:16Z - Bit Rate260 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID7309494448A91EAC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(49)%20%5BSneijder%5D%20Onto%20Tomorrow%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6521 - - Track ID6521 - NameFlowmotion 2.0 (Club Mix) - ArtistPara X - Album ArtistVA - AlbumTunnel Trance Force Vol. 58 / CD2 - GenreTrance - KindMPEG audio file - Size13196143 - Total Time389302 - Disc Number2 - Disc Count2 - Track Number50 - Year2011 - Date Modified2012-08-18T03:15:52Z - Date Added2012-08-18T03:14:16Z - Bit Rate265 - Sample Rate44100 - Part Of Gapless Album - Artwork Count1 - Persistent ID033542AAECE1696F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2058%20(2011)%20(2%20CD)/CD%202/(50)%20%5BPara%20X%5D%20Flowmotion%202.0%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6523 - - Track ID6523 - NameYou Take Me Away (New Extended Mix) - ArtistPulsedriver - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size6762780 - Total Time162507 - Disc Number1 - Disc Count2 - Track Number1 - Year2011 - Date Modified2012-08-18T03:18:31Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDEB8B992BFFD0B31 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/01.%20Pulsedriver%20-%20You%20Take%20Me%20Away%20(New%20Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6525 - - Track ID6525 - NameGive Me Your Sign (Original Mix) - ArtistRocco & Bass-T ft Juve - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size9953914 - Total Time242285 - Disc Number1 - Disc Count2 - Track Number2 - Year2011 - Date Modified2012-08-18T03:18:31Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDA4E391B20D845B2D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/02.%20Rocco%20&%20Bass-T%20ft%20Juve%20-%20Give%20Me%20Your%20Sign%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6527 - - Track ID6527 - NameTake A Ride (Thomas Petersen Remix) - ArtistBrooklyn Bounce - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size14280829 - Total Time350458 - Disc Number1 - Disc Count2 - Track Number3 - Year2011 - Date Modified2012-08-18T03:18:32Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD89FC58DFBE294F6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/03.%20Brooklyn%20Bounce%20-%20Take%20A%20Ride%20(Thomas%20Petersen%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6529 - - Track ID6529 - NameFollow Me Tonight (Axel Coon Remix) - ArtistDJ Sequenza - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size5777442 - Total Time137874 - Disc Number1 - Disc Count2 - Track Number4 - Year2011 - Date Modified2012-08-18T03:18:32Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID023DE9BA806A3995 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/04.%20DJ%20Sequenza%20-%20Follow%20Me%20Tonight%20(Axel%20Coon%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6531 - - Track ID6531 - NameTell Me Why I'm Crying Out (The Hitcher! Instrumental Mix) - ArtistPhilipp Ray ft Nevermind - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size7363668 - Total Time177528 - Disc Number1 - Disc Count2 - Track Number5 - Year2011 - Date Modified2012-08-18T03:18:33Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID8363D8C6160E39AA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/05.%20Philipp%20Ray%20ft%20Nevermind%20-%20Tell%20Me%20Why%20I'm%20Crying%20Out%20(The%20Hitcher!%20Instrumental%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6533 - - Track ID6533 - NameLiebe Und Freundschaft (Trance Forces Remix) - ArtistHandsup Playerz - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size7830692 - Total Time189204 - Disc Number1 - Disc Count2 - Track Number6 - Year2011 - Date Modified2012-08-18T03:18:34Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDFA48725A0E3310E0 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/06.%20Handsup%20Playerz%20-%20Liebe%20Und%20Freundschaft%20(Trance%20Forces%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6535 - - Track ID6535 - NameInto You (Megara vs DJ Lee Remix) - ArtistChemistry vs Mikka - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size9813893 - Total Time238785 - Disc Number1 - Disc Count2 - Track Number7 - Year2011 - Date Modified2012-08-18T03:18:34Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBF027F1C9385C146 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/07.%20Chemistry%20vs%20Mikka%20-%20Into%20You%20(Megara%20vs%20DJ%20Lee%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6537 - - Track ID6537 - NameForever (Keamon Remix) - ArtistSem - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size14383179 - Total Time353018 - Disc Number1 - Disc Count2 - Track Number8 - Year2011 - Date Modified2012-08-18T03:18:35Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC752079F61CD7628 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/08.%20Sem%20-%20Forever%20(Keamon%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6539 - - Track ID6539 - NameShake It (Club Mix) - ArtistAndy Jay Powell - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size5244519 - Total Time124551 - Disc Number1 - Disc Count2 - Track Number9 - Year2011 - Date Modified2012-08-18T03:18:35Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDED00CD688AC02656 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/09.%20Andy%20Jay%20Powell%20-%20Shake%20It%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6541 - - Track ID6541 - NameTake My Breath (Club Mix) - ArtistCalderone Inc. - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size7226701 - Total Time174106 - Disc Number1 - Disc Count2 - Track Number10 - Year2011 - Date Modified2012-08-18T03:18:36Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID289175EA2F915042 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/10.%20Calderone%20Inc.%20-%20Take%20My%20Breath%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6543 - - Track ID6543 - NameA Beautiful Place (Extended Mix) - ArtistLuca Antolini - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size10202582 - Total Time248502 - Disc Number1 - Disc Count2 - Track Number11 - Year2011 - Date Modified2012-08-18T03:18:36Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameBeautiful Place (Extended Mix) - Persistent ID43814BD88BDCE491 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/11.%20Luca%20Antolini%20-%20A%20Beautiful%20Place%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6545 - - Track ID6545 - NameBalla Nation (Still Alive) (Kay Trax Bootleg Remix) - ArtistDJ Dean - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size4979164 - Total Time117916 - Disc Number1 - Disc Count2 - Track Number12 - Year2011 - Date Modified2012-08-18T03:18:37Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID57A13868E81F92E1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/12.%20DJ%20Dean%20-%20Balla%20Nation%20(Still%20Alive)%20(Kay%20Trax%20Bootleg%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6547 - - Track ID6547 - NameUnderground Rox - ArtistMike Molossa - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size8892244 - Total Time215745 - Disc Number1 - Disc Count2 - Track Number13 - Year2011 - Date Modified2012-08-18T03:18:37Z - Date Added2012-08-18T03:16:21Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID132D6051E2AFDE3E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/13.%20Mike%20Molossa%20-%20Underground%20Rox.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6549 - - Track ID6549 - NameGet Your Hands Up (DJ Klubbingman vs Rain Dropz! Remix) - ArtistMattias & G80's ft Master Freez - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size5789015 - Total Time138161 - Disc Number1 - Disc Count2 - Track Number14 - Year2011 - Date Modified2012-08-18T03:18:38Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID44CC0818BD86ABC6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/14.%20Mattias%20&%20G80's%20ft%20Master%20Freez%20-%20Get%20Your%20Hands%20Up%20(DJ%20Klubbingman%20vs%20Rain%20Dropz!%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6551 - - Track ID6551 - NameDon't You Wanna Know (Club Mix) - ArtistDJ Fait - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size6135826 - Total Time146834 - Disc Number1 - Disc Count2 - Track Number15 - Year2011 - Date Modified2012-08-18T03:18:38Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE80FB85360CB56E2 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/15.%20DJ%20Fait%20-%20Don't%20You%20Wanna%20Know%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6553 - - Track ID6553 - NameDirty Flow (Addicted Craze & Jendrik de Ruvo Remix) - ArtistMashupmen - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size5163069 - Total Time122514 - Disc Number1 - Disc Count2 - Track Number16 - Year2011 - Date Modified2012-08-18T03:18:38Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID58B57D8CDD821219 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/16.%20Mashupmen%20-%20Dirty%20Flow%20(Addicted%20Craze%20&%20Jendrik%20de%20Ruvo%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6555 - - Track ID6555 - NameSomewhere Over The Rainbow (DJ Klubbingman Club Remix) - ArtistNaksi vs Brunner ft Marcie - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size6292644 - Total Time150752 - Disc Number1 - Disc Count2 - Track Number17 - Year2011 - Date Modified2012-08-18T03:18:39Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID3130908A0EF0599A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/17.%20Naksi%20vs%20Brunner%20ft%20Marcie%20-%20Somewhere%20Over%20The%20Rainbow%20(DJ%20Klubbingman%20Club%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6557 - - Track ID6557 - NameThe Game (Niccho Remix) - ArtistDJ Vortecs - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size5030313 - Total Time119196 - Disc Number1 - Disc Count2 - Track Number18 - Year2011 - Date Modified2012-08-18T03:18:40Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameGame (Niccho Remix) - Persistent IDF5184B488A9D4DFD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/18.%20DJ%20Vortecs%20-%20The%20Game%20(Niccho%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6559 - - Track ID6559 - NameStay With Me (Extended Mix) - ArtistSpikes & Slicks - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size4223671 - Total Time99030 - Disc Number1 - Disc Count2 - Track Number19 - Year2011 - Date Modified2012-08-18T03:18:40Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID0707A48E82A469CA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/19.%20Spikes%20&%20Slicks%20-%20Stay%20With%20Me%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6561 - - Track ID6561 - NameTop Of The Stars (Justin Corza meets Greg Blast Remix) - ArtistBig City Angels - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size5979152 - Total Time142915 - Disc Number1 - Disc Count2 - Track Number20 - Year2011 - Date Modified2012-08-18T03:18:40Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDAA3EECB6371A176E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/20.%20Big%20City%20Angels%20-%20Top%20Of%20The%20Stars%20(Justin%20Corza%20meets%20Greg%20Blast%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6563 - - Track ID6563 - NameThis Party - ArtistMichel Moriny - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size8551600 - Total Time207229 - Disc Number1 - Disc Count2 - Track Number21 - Year2011 - Date Modified2012-08-18T03:18:41Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID663818C4874C98C8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/21.%20Michel%20Moriny%20-%20This%20Party.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6565 - - Track ID6565 - NameOutside Of Life (Accuface High Energy Remix) - ArtistT-Forces - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size7082531 - Total Time170501 - Disc Number1 - Disc Count2 - Track Number22 - Year2011 - Date Modified2012-08-18T03:18:41Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4085AE1D63D6CAAE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/22.%20T-Forces%20-%20Outside%20Of%20Life%20(Accuface%20High%20Energy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6567 - - Track ID6567 - NameTheme From Accuface (High Energy Rework 2k11) - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size6949831 - Total Time167183 - Disc Number1 - Disc Count2 - Track Number23 - Year2011 - Date Modified2012-08-18T03:18:41Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDD111380FCD3037AB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/23.%20Accuface%20-%20Theme%20From%20Accuface%20(High%20Energy%20Rework%202k11).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6569 - - Track ID6569 - NameTrouble Doesn't Come From Nowhere - ArtistAngel Beats - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size12058319 - Total Time294896 - Disc Number1 - Disc Count2 - Track Number24 - Year2011 - Date Modified2012-08-18T03:18:42Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDDA80C82E434C3F36 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/24.%20Angel%20Beats%20-%20Trouble%20Doesn't%20Come%20From%20Nowhere.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6571 - - Track ID6571 - NameThe Silence - ArtistBastian Basic - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD1 - GenreTrance - KindMPEG audio file - Size11181610 - Total Time272979 - Disc Number1 - Disc Count2 - Track Number25 - Year2011 - Date Modified2012-08-18T03:18:43Z - Date Added2012-08-18T03:16:22Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameSilence - Persistent ID1FCE5EF406273979 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/25.%20Bastian%20Basic%20-%20The%20Silence.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6573 - - Track ID6573 - NameThe Age Of Love (Wippenberg Remix) - ArtistAge Of Love - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size10159741 - Total Time247431 - Disc Number2 - Disc Count2 - Track Number26 - Year2011 - Date Modified2012-08-18T03:20:39Z - Date Added2012-08-18T03:19:25Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Sort NameAge Of Love (Wippenberg Remix) - Persistent IDBFBD82F69B477A5D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/26.%20Age%20Of%20Love%20-%20The%20Age%20Of%20Love%20(Wippenberg%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6575 - - Track ID6575 - NameEmergency (Manuel De La Mare Remix) - ArtistNiels Van Gogh vs Daniel Strauss - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size6065875 - Total Time145084 - Disc Number2 - Disc Count2 - Track Number27 - Year2011 - Date Modified2012-08-18T03:20:46Z - Date Added2012-08-18T03:19:25Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDF9C839D83C0D90AE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/27.%20Niels%20Van%20Gogh%20vs%20Daniel%20Strauss%20-%20Emergency%20(Manuel%20De%20La%20Mare%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6577 - - Track ID6577 - NameGo Go Girl (Dirty Loud Remix) - ArtistSpencer & Hill - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size5476505 - Total Time130351 - Disc Number2 - Disc Count2 - Track Number28 - Year2011 - Date Modified2012-08-18T03:20:46Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID1159D5CA2B075F5B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/28.%20Spencer%20&%20Hill%20-%20Go%20Go%20Girl%20(Dirty%20Loud%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6579 - - Track ID6579 - NameKeep On Rising (Sebastien Drums Remix) - ArtistMicha Moor ft Terri B! - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size7148376 - Total Time172146 - Disc Number2 - Disc Count2 - Track Number29 - Year2011 - Date Modified2012-08-18T03:20:46Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID74D755E222345E59 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/29.%20Micha%20Moor%20ft%20Terri%20B!%20-%20Keep%20On%20Rising%20(Sebastien%20Drums%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6581 - - Track ID6581 - NameEverybody Surrender (Club Mix) - ArtistEric Chase - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size5625919 - Total Time134086 - Disc Number2 - Disc Count2 - Track Number30 - Year2011 - Date Modified2012-08-18T03:20:46Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDBADA9B07BD7E24E9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/30.%20Eric%20Chase%20-%20Everybody%20Surrender%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6583 - - Track ID6583 - NameFreak (Klaas Mix) - ArtistKlaas & Bodybangers - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size6495266 - Total Time155820 - Disc Number2 - Disc Count2 - Track Number31 - Year2011 - Date Modified2012-08-18T03:20:46Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID35AC0EFAEBCF3C8C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/31.%20Klaas%20&%20Bodybangers%20-%20Freak%20(Klaas%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6585 - - Track ID6585 - NameLove Is Darkness (Original Mix) - ArtistSander van Doorn ft Carol Lee - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size7709486 - Total Time186174 - Disc Number2 - Disc Count2 - Track Number32 - Year2011 - Date Modified2012-08-18T03:20:46Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE335791D1627C498 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/32.%20Sander%20van%20Doorn%20ft%20Carol%20Lee%20-%20Love%20Is%20Darkness%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6587 - - Track ID6587 - NameAlone (Extended Mix) - ArtistJasper Forks - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size4205887 - Total Time98586 - Disc Number2 - Disc Count2 - Track Number33 - Year2011 - Date Modified2012-08-18T03:20:46Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID4D2F0A5731DC1F8B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/33.%20Jasper%20Forks%20-%20Alone%20(Extended%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6589 - - Track ID6589 - NameEternal Peace (Original Vocal Version) - ArtistDJ Dean meets Kolja Beckmann - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size5029334 - Total Time119170 - Disc Number2 - Disc Count2 - Track Number34 - Year2011 - Date Modified2012-08-18T03:20:46Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDEA7C470557276C58 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/34.%20DJ%20Dean%20meets%20Kolja%20Beckmann%20-%20Eternal%20Peace%20(Original%20Vocal%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6591 - - Track ID6591 - NameListen (Aboutblank & KLC Remix) - ArtistDream Dance Alliance - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size7200603 - Total Time173453 - Disc Number2 - Disc Count2 - Track Number35 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC6D3A755A7FB0795 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/35.%20Dream%20Dance%20Alliance%20-%20Listen%20(Aboutblank%20&%20KLC%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6593 - - Track ID6593 - NamePunk (Arty Rock-n-Rolla Mix) - ArtistFerry Corsten - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size12631962 - Total Time309237 - Disc Number2 - Disc Count2 - Track Number36 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDE06ADFF4C4847471 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/36.%20Ferry%20Corsten%20-%20Punk%20(Arty%20Rock-n-Rolla%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6595 - - Track ID6595 - NameSituations (Olly Marx & Chrys Ruff Remix) - ArtistWavepushers - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size4765992 - Total Time112587 - Disc Number2 - Disc Count2 - Track Number37 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9E9F345B823377F7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/37.%20Wavepushers%20-%20Situations%20(Olly%20Marx%20&%20Chrys%20Ruff%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6597 - - Track ID6597 - NameRun To My Rescue (Original Mix) - ArtistShogun ft Emma Lock - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size10391719 - Total Time253231 - Disc Number2 - Disc Count2 - Track Number38 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2E71F82234947F4C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/38.%20Shogun%20ft%20Emma%20Lock%20-%20Run%20To%20My%20Rescue%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6599 - - Track ID6599 - NameSinners (Original Mix) - ArtistMarkus Schulz pres Dakota - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size5279027 - Total Time125413 - Disc Number2 - Disc Count2 - Track Number39 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5C609A27986688D7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/39.%20Markus%20Schulz%20pres%20Dakota%20-%20Sinners%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6601 - - Track ID6601 - NameBroken Glasses - ArtistVan Nilson - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size11603748 - Total Time283533 - Disc Number2 - Disc Count2 - Track Number40 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC5046932AFE8A99F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/40.%20Van%20Nilson%20-%20Broken%20Glasses.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6603 - - Track ID6603 - NameStatus Excessu D (ASOT 500 Theme) - ArtistArmin van Buuren pres Gaia - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size14044701 - Total Time344555 - Disc Number2 - Disc Count2 - Track Number41 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID9BECCCC732A478FE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/41.%20Armin%20van%20Buuren%20pres%20Gaia%20-%20Status%20Excessu%20D%20(ASOT%20500%20Theme).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6605 - - Track ID6605 - NamePhat Giraffe (Dark Moon Remix) - ArtistChris Turner - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size9144094 - Total Time222040 - Disc Number2 - Disc Count2 - Track Number42 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID5F1F4505D7764C0C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/42.%20Chris%20Turner%20-%20Phat%20Giraffe%20(Dark%20Moon%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6607 - - Track ID6607 - NameBack (Original Mix) - ArtistPaul Miller pres Meli - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size4670883 - Total Time110210 - Disc Number2 - Disc Count2 - Track Number43 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent IDC70B78F6AC54046D - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/43.%20Paul%20Miller%20pres%20Meli%20-%20Back%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6609 - - Track ID6609 - NameSophia (Original Mix) - ArtistAbstract Vision & Elite Electronic - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size4106667 - Total Time96104 - Disc Number2 - Disc Count2 - Track Number44 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID92AF8F6ECF4FC2A6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/44.%20Abstract%20Vision%20&%20Elite%20Electronic%20-%20Sophia%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6611 - - Track ID6611 - NameThese SIlent Hearts (Extended Version) - ArtistArmin van Buuren ft BT - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size6233045 - Total Time149263 - Disc Number2 - Disc Count2 - Track Number45 - Year2011 - Date Modified2012-08-18T03:20:52Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID31903236C3E1AF7A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/45.%20Armin%20van%20Buuren%20ft%20BT%20-%20These%20SIlent%20Hearts%20(Extended%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6613 - - Track ID6613 - NameDirect Drive (Paul Miller Remix) - ArtistBrett Wood - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size12342528 - Total Time302001 - Disc Number2 - Disc Count2 - Track Number46 - Year2011 - Date Modified2012-08-18T03:20:32Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID72A26B025D422909 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/46.%20Brett%20Wood%20-%20Direct%20Drive%20(Paul%20Miller%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6615 - - Track ID6615 - NameFreefall (DJ Space Raven Remix) - ArtistEternia - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size5245572 - Total Time124577 - Disc Number2 - Disc Count2 - Track Number47 - Year2011 - Date Modified2012-08-18T03:20:34Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID229538B047BB67C1 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/47.%20Eternia%20-%20Freefall%20(DJ%20Space%20Raven%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6617 - - Track ID6617 - NameDilemma (Matt Pincer Remix) - ArtistBluntSeixal ft Anthya - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size4601935 - Total Time108486 - Disc Number2 - Disc Count2 - Track Number48 - Year2011 - Date Modified2012-08-18T03:20:35Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID2A38CDC333F63AA7 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/48.%20BluntSeixal%20ft%20Anthya%20-%20Dilemma%20(Matt%20Pincer%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6619 - - Track ID6619 - NameNew Hope (Original Mix) - ArtistDJ Vega - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size12006046 - Total Time293590 - Disc Number2 - Disc Count2 - Track Number49 - Year2011 - Date Modified2012-08-18T03:20:35Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID6586FDB907016527 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/49.%20DJ%20Vega%20-%20New%20Hope%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6621 - - Track ID6621 - NameInvisible Walls (Accuface 'Back To The Roots' Mix) - ArtistNektario meets Kirsty Hawkshaw & Jan Johnston - Album ArtistVA - AlbumTunnel Trance Force Vol.57 / CD2 - GenreTrance - KindMPEG audio file - Size15758405 - Total Time387395 - Disc Number2 - Disc Count2 - Track Number50 - Year2011 - Date Modified2012-08-18T03:20:36Z - Date Added2012-08-18T03:19:26Z - Bit Rate320 - Sample Rate44100 - Part Of Gapless Album - Comments - Artwork Count1 - Persistent ID7D35631941DBD52B - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2057%20(2011)%20(2%20CD)/50.%20Nektario%20meets%20Kirsty%20Hawkshaw%20&%20Jan%20Johnston%20-%20Invisible%20Walls%20(Accuface%20'Back%20To%20The%20Roots'%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6623 - - Track ID6623 - NameYouth Of The Nation (DJ Gollum Remix) - ArtistPulsedriver vs. DJs from Mars - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size7003914 - Total Time205871 - Disc Number1 - Disc Count2 - Track Number1 - Year2011 - Date Modified2012-08-18T03:27:05Z - Date Added2012-08-18T03:23:00Z - Bit Rate257 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID2C142780FC790E6F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(01)%20%5BPulsedriver%20vs.%20DJs%20from%20Mars%5D%20Youth%20Of%20The%20Nation%20(DJ%20Gollum%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6625 - - Track ID6625 - NameNessaja (Crystal Lake Remix) - ArtistSunset Project meets Tomtrax - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size6979078 - Total Time212480 - Disc Number1 - Disc Count2 - Track Number2 - Year2011 - Date Modified2012-08-18T03:27:06Z - Date Added2012-08-18T03:23:00Z - Bit Rate248 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDD7DE0CB246603F77 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(02)%20%5BSunset%20Project%20meets%20Tomtrax%5D%20Nessaja%20(Crystal%20Lake%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6627 - - Track ID6627 - NameC U 2nite - ArtistDJ Sequenza - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size5365282 - Total Time158275 - Disc Number1 - Disc Count2 - Track Number3 - Year2011 - Date Modified2012-08-18T03:27:01Z - Date Added2012-08-18T03:23:00Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID6B61B54AEF72C7D9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(03)%20%5BDJ%20Sequenza%5D%20C%20U%202nite.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6629 - - Track ID6629 - NameBring Me To Life (Empyre One Remix) - ArtistJan Wayne - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size6642612 - Total Time197015 - Disc Number1 - Disc Count2 - Track Number4 - Year2011 - Date Modified2012-08-18T03:27:02Z - Date Added2012-08-18T03:23:00Z - Bit Rate254 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDD0123C782E396EF9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(04)%20%5BJan%20Wayne%5D%20Bring%20Me%20To%20Life%20(Empyre%20One%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6631 - - Track ID6631 - NameAxel F. 2011 (DJ Klubbingman meets RainDropz! Remix) - ArtistNaksi and Brunner feat. Maxim - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size4462421 - Total Time125204 - Disc Number1 - Disc Count2 - Track Number5 - Year2011 - Date Modified2012-08-18T03:27:04Z - Date Added2012-08-18T03:23:00Z - Bit Rate261 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID19878BB139D24039 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(05)%20%5BNaksi%20and%20Brunner%20feat.%20Maxim%5D%20Axel%20F.%202011%20(DJ%20Klubbingman%20meets%20RainDropz!%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6633 - - Track ID6633 - NamePor Que No? (Original Mix) - ArtistAlex M. vs. Marc van Damme - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size8270226 - Total Time250540 - Disc Number1 - Disc Count2 - Track Number6 - Year2011 - Date Modified2012-08-18T03:27:00Z - Date Added2012-08-18T03:23:00Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDFF0C667E259E0A35 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(06)%20%5BAlex%20M.%20vs.%20Marc%20van%20Damme%5D%20Por%20Que%20No-%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6635 - - Track ID6635 - NameIn Heaven With You! (Vocal Club Mix) - ArtistThe Hitcher vs. Butcher - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size4876248 - Total Time136960 - Disc Number1 - Disc Count2 - Track Number7 - Year2011 - Date Modified2012-08-18T03:27:02Z - Date Added2012-08-18T03:23:00Z - Bit Rate263 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort ArtistHitcher vs. Butcher - Persistent IDC5F474AD3B229322 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(07)%20%5BThe%20Hitcher%20vs.%20Butcher%5D%20In%20Heaven%20With%20You!%20(Vocal%20Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6637 - - Track ID6637 - NameShining Star 2.0 (Mike Nero Remix) - ArtistDJ Fait - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size4479146 - Total Time132022 - Disc Number1 - Disc Count2 - Track Number8 - Year2011 - Date Modified2012-08-18T03:27:01Z - Date Added2012-08-18T03:23:00Z - Bit Rate248 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID0135D2EF53447715 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(08)%20%5BDJ%20Fait%5D%20Shining%20Star%202.0%20(Mike%20Nero%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6639 - - Track ID6639 - NameI Try (Alternative Mix) - ArtistJose Mose feat. Diamond Boy - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size8840019 - Total Time268382 - Disc Number1 - Disc Count2 - Track Number9 - Year2011 - Date Modified2012-08-18T03:27:03Z - Date Added2012-08-18T03:23:00Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID1F430919CB9D5D71 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(09)%20%5BJose%20Mose%20feat.%20Diamond%20Boy%5D%20I%20Try%20(Alternative%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6641 - - Track ID6641 - NameWithout Your Love (Accuface High Energy Remix) - ArtistThomas Petersen vs. Mega Lo Mania feat. Franca Morgano - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size6544995 - Total Time199000 - Disc Number1 - Disc Count2 - Track Number10 - Year2011 - Date Modified2012-08-18T03:27:06Z - Date Added2012-08-18T03:23:00Z - Bit Rate248 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDAD8F15F74052D0CE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(10)%20%5BThomas%20Petersen%20vs.%20Mega%20Lo%20Mania%20feat.%20Franca%20Morgano%5D%20Without%20Your%20Love%20(Accuface%20High%20Energy%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6643 - - Track ID6643 - NameI Can Stand It (Thomas Petersen vs. Gainworx Remix) - ArtistMario Lopez - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size5835372 - Total Time180871 - Disc Number1 - Disc Count2 - Track Number11 - Year2011 - Date Modified2012-08-18T03:27:04Z - Date Added2012-08-18T03:23:00Z - Bit Rate241 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID8CCAD20F1164B84F - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(11)%20%5BMario%20Lopez%5D%20I%20Can%20Stand%20It%20(Thomas%20Petersen%20vs.%20Gainworx%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6645 - - Track ID6645 - NameShining Star 2k11 (DJ Dean Remix) - ArtistVisTexx Project - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size7588780 - Total Time225724 - Disc Number1 - Disc Count2 - Track Number12 - Year2011 - Date Modified2012-08-18T03:27:07Z - Date Added2012-08-18T03:23:00Z - Bit Rate255 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDFEBFC8EBCD12C84E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(12)%20%5BVisTexx%20Project%5D%20Shining%20Star%202k11%20(DJ%20Dean%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6647 - - Track ID6647 - NameBreak The Silence (Club Mix) - ArtistMike Nero - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size4480227 - Total Time133381 - Disc Number1 - Disc Count2 - Track Number13 - Year2011 - Date Modified2012-08-18T03:27:04Z - Date Added2012-08-18T03:23:00Z - Bit Rate246 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID4874FD6BCCC048F8 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(13)%20%5BMike%20Nero%5D%20Break%20The%20Silence%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6649 - - Track ID6649 - NameSecret Love (Giorno Remix) - ArtistChris van Dutch meets Raindropz! - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size7904017 - Total Time237035 - Disc Number1 - Disc Count2 - Track Number14 - Year2011 - Date Modified2012-08-18T03:27:01Z - Date Added2012-08-18T03:23:00Z - Bit Rate254 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID228B55ED62AF5BF4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(14)%20%5BChris%20van%20Dutch%20meets%20Raindropz!%5D%20Secret%20Love%20(Giorno%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6651 - - Track ID6651 - NameDon't Go Away (Instrumental Version) - ArtistQuickdrop - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size4517030 - Total Time135836 - Disc Number1 - Disc Count2 - Track Number15 - Year2011 - Date Modified2012-08-18T03:27:06Z - Date Added2012-08-18T03:23:00Z - Bit Rate244 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID51C1C846171D936C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(15)%20%5BQuickdrop%5D%20Don't%20Go%20Away%20(Instrumental%20Version).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6653 - - Track ID6653 - NamePoison (Empyre One Remix) - ArtistPetros feat. Roxay - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size5978022 - Total Time177214 - Disc Number1 - Disc Count2 - Track Number16 - Year2011 - Date Modified2012-08-18T03:27:05Z - Date Added2012-08-18T03:23:00Z - Bit Rate253 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID6C3DA464E68BD96C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(16)%20%5BPetros%20feat.%20Roxay%5D%20Poison%20(Empyre%20One%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6655 - - Track ID6655 - NameTurn It Up (Niccho Remix) - ArtistKompulsor - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size5439594 - Total Time164989 - Disc Number1 - Disc Count2 - Track Number17 - Year2011 - Date Modified2012-08-18T03:27:03Z - Date Added2012-08-18T03:23:00Z - Bit Rate245 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID06BCA6BB91B2A142 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(17)%20%5BKompulsor%5D%20Turn%20It%20Up%20(Niccho%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6657 - - Track ID6657 - NameThe Rythm Of A Song (Original Mix) - ArtistKaemon - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size4930360 - Total Time146703 - Disc Number1 - Disc Count2 - Track Number18 - Year2011 - Date Modified2012-08-18T03:27:03Z - Date Added2012-08-18T03:23:00Z - Bit Rate248 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort NameRythm Of A Song (Original Mix) - Persistent IDEA4BE7A3E13F0518 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(18)%20%5BKaemon%5D%20The%20Rythm%20Of%20A%20Song%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6659 - - Track ID6659 - NameWhen You Come Home - ArtistAngel Beats - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size11108914 - Total Time347088 - Disc Number1 - Disc Count2 - Track Number19 - Year2011 - Date Modified2012-08-18T03:27:00Z - Date Added2012-08-18T03:23:01Z - Bit Rate247 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDEEFBF5DD6B602A25 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(19)%20%5BAngel%20Beats%5D%20When%20You%20Come%20Home.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6661 - - Track ID6661 - NameFollow Me - ArtistBastian Basic - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size5486621 - Total Time171258 - Disc Number1 - Disc Count2 - Track Number20 - Year2011 - Date Modified2012-08-18T03:27:00Z - Date Added2012-08-18T03:23:01Z - Bit Rate239 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDFFF8182984DB7F66 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(20)%20%5BBastian%20Basic%5D%20Follow%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6663 - - Track ID6663 - Name(Don't Try) The Apprehendum (High Energy Rework) - ArtistAccuface - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size8192745 - Total Time250253 - Disc Number1 - Disc Count2 - Track Number21 - Year2011 - Date Modified2012-08-18T03:26:59Z - Date Added2012-08-18T03:23:01Z - Bit Rate250 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID7D7F858F062D2E3C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(21)%20%5BAccuface%5D%20(Don't%20Try)%20The%20Apprehendum%20(High%20Energy%20Rework).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6665 - - Track ID6665 - NameXbw 360 - ArtistLouis van Geest - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size5970528 - Total Time178155 - Disc Number1 - Disc Count2 - Track Number22 - Year2011 - Date Modified2012-08-18T03:27:04Z - Date Added2012-08-18T03:23:01Z - Bit Rate251 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID7C2F0CC7BB2B84DF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(22)%20%5BLouis%20van%20Geest%5D%20Xbw%20360.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6667 - - Track ID6667 - NameTurn On (Club Mix) - ArtistDJ Texx - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size5568623 - Total Time166922 - Disc Number1 - Disc Count2 - Track Number23 - Year2011 - Date Modified2012-08-18T03:27:01Z - Date Added2012-08-18T03:23:01Z - Bit Rate249 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID8F023A5671DFA864 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(23)%20%5BDJ%20Texx%5D%20Turn%20On%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6669 - - Track ID6669 - NameDruck 100 - ArtistImpegment Syndrom - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size6612046 - Total Time187088 - Disc Number1 - Disc Count2 - Track Number24 - Year2011 - Date Modified2012-08-18T03:27:02Z - Date Added2012-08-18T03:23:01Z - Bit Rate266 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID06DEAF24E8D8BD14 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(24)%20%5BImpegment%20Syndrom%5D%20Druck%20100.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6671 - - Track ID6671 - NameThe Sign (Wragg and Log:One Remix) - ArtistActivator - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD2 - GenreTrance - KindMPEG audio file - Size6474604 - Total Time196127 - Disc Number1 - Disc Count2 - Track Number25 - Year2011 - Date Modified2012-08-18T03:26:59Z - Date Added2012-08-18T03:23:01Z - Bit Rate249 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort NameSign (Wragg and Log:One Remix) - Persistent ID70BCF7B365DFA5DA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(25)%20%5BActivator%5D%20The%20Sign%20(Wragg%20and%20Log-One%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6673 - - Track ID6673 - NameMr. Saxobeat (Michael Mind Proj.Remix feat. Carl Prit) - ArtistAlexandra Stan - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size5490583 - Total Time165799 - Disc Number2 - Disc Count2 - Track Number26 - Year2011 - Date Modified2012-08-18T03:25:49Z - Date Added2012-08-18T03:23:44Z - Bit Rate247 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID4DD81AF3733A0838 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(26)%20%5BAlexandra%20Stan%5D%20Mr.%20Saxobeat%20(Michael%20Mind%20Proj.Remix%20feat.%20Carl%20Prit).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6675 - - Track ID6675 - NamePunkd (Damn Stupid Remix) - ArtistNiels van Gogh vs. Daniel Strauss - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size5551092 - Total Time158641 - Disc Number2 - Disc Count2 - Track Number27 - Year2011 - Date Modified2012-08-18T03:25:33Z - Date Added2012-08-18T03:23:44Z - Bit Rate261 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDFC4A9EFA13CB3893 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(27)%20%5BNiels%20van%20Gogh%20vs.%20Daniel%20Strauss%5D%20Punkd%20(Damn%20Stupid%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6677 - - Track ID6677 - NameAsteroid (Original Mix) - ArtistBrain Blast Creator - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size4134512 - Total Time117315 - Disc Number2 - Disc Count2 - Track Number28 - Year2011 - Date Modified2012-08-18T03:25:33Z - Date Added2012-08-18T03:23:44Z - Bit Rate256 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID94E32FE3C7C0053C - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(28)%20%5BBrain%20Blast%20Creator%5D%20Asteroid%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6679 - - Track ID6679 - NameRaise Your Hands (Chico Del Mar Mix) - ArtistStereoliner and Chico del Mar - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size5263263 - Total Time158876 - Disc Number2 - Disc Count2 - Track Number29 - Year2011 - Date Modified2012-08-18T03:25:33Z - Date Added2012-08-18T03:23:44Z - Bit Rate246 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDFE13EC2795C835E9 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(29)%20%5BStereoliner%20and%20Chico%20del%20Mar%5D%20Raise%20Your%20Hands%20(Chico%20Del%20Mar%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6681 - - Track ID6681 - NameMaximal Crazy (Original Mix) - ArtistTiesto - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size10267728 - Total Time310439 - Disc Number2 - Disc Count2 - Track Number30 - Year2011 - Date Modified2012-08-18T03:25:33Z - Date Added2012-08-18T03:23:44Z - Bit Rate255 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDF9B915BF052BB40A - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(30)%20%5BTiesto%5D%20Maximal%20Crazy%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6683 - - Track ID6683 - NameThe Mule (Original Mix) - ArtistOrjan Nilsen - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size3145167 - Total Time86648 - Disc Number2 - Disc Count2 - Track Number31 - Year2011 - Date Modified2012-08-18T03:25:34Z - Date Added2012-08-18T03:23:44Z - Bit Rate256 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort NameMule (Original Mix) - Persistent ID84A3CCC19963110E - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(31)%20%5BOrjan%20Nilsen%5D%20The%20Mule%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6685 - - Track ID6685 - NameGold (Aboutblank and KLC Remix) - ArtistDream Dance Alliance - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size4388656 - Total Time129750 - Disc Number2 - Disc Count2 - Track Number32 - Year2011 - Date Modified2012-08-18T03:25:34Z - Date Added2012-08-18T03:23:44Z - Bit Rate247 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDE003965C2DFCE0B4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(32)%20%5BDream%20Dance%20Alliance%5D%20Gold%20(Aboutblank%20and%20KLC%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6687 - - Track ID6687 - NameGo Wild - Freak Out (ATB And Tom Novy Anthem Mix Extended) - ArtistNature One Inc. - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size6610119 - Total Time206315 - Disc Number2 - Disc Count2 - Track Number33 - Year2011 - Date Modified2012-08-18T03:25:34Z - Date Added2012-08-18T03:23:44Z - Bit Rate241 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDE6877678626378BC - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(33)%20%5BNature%20One%20Inc.%5D%20Go%20Wild%20-%20Freak%20Out%20(ATB%20And%20Tom%20Novy%20Anthem%20Mix%20Extended).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6689 - - Track ID6689 - NameRush (Original Mix) - ArtistStoneface and Terminal - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size9255903 - Total Time287529 - Disc Number2 - Disc Count2 - Track Number34 - Year2011 - Date Modified2012-08-18T03:25:34Z - Date Added2012-08-18T03:23:45Z - Bit Rate247 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDE9BAD2DE1BA9C1DF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(34)%20%5BStoneface%20and%20Terminal%5D%20Rush%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6691 - - Track ID6691 - NameStay All Nite - ArtistVan Nilson - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size8578030 - Total Time249756 - Disc Number2 - Disc Count2 - Track Number35 - Year2011 - Date Modified2012-08-18T03:25:35Z - Date Added2012-08-18T03:23:45Z - Bit Rate262 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDA65A01AF3A464AAB - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(35)%20%5BVan%20Nilson%5D%20Stay%20All%20Nite.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6693 - - Track ID6693 - NameFallen Angel (Club Mix) - ArtistDennis Sheperd and Cold Blue feat. Ana Criado - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size13014792 - Total Time403905 - Disc Number2 - Disc Count2 - Track Number36 - Year2011 - Date Modified2012-08-18T03:25:35Z - Date Added2012-08-18T03:23:45Z - Bit Rate250 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID3CA8F973DA0B7CBF - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(36)%20%5BDennis%20Sheperd%20and%20Cold%20Blue%20feat.%20Ana%20Criado%5D%20Fallen%20Angel%20(Club%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6695 - - Track ID6695 - NameBrute (Original Extended) - ArtistFerry Corsten vs. Armin van Buuren - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size3516197 - Total Time98899 - Disc Number2 - Disc Count2 - Track Number37 - Year2011 - Date Modified2012-08-18T03:25:51Z - Date Added2012-08-18T03:23:45Z - Bit Rate254 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428131215 - Play Date UTC2012-08-18T14:40:15Z - Artwork Count1 - Persistent ID783619D050A919F3 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(37)%20%5BFerry%20Corsten%20vs.%20Armin%20van%20Buuren%5D%20Brute%20(Original%20Extended).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6697 - - Track ID6697 - NameOnce In A Lifetime (Original Mix) - ArtistDJ Energy - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size6827124 - Total Time213707 - Disc Number2 - Disc Count2 - Track Number38 - Year2011 - Date Modified2012-08-18T03:25:51Z - Date Added2012-08-18T03:23:45Z - Bit Rate241 - Sample Rate44100 - Part Of Gapless Album - Comments. - Play Count1 - Play Date3428131429 - Play Date UTC2012-08-18T14:43:49Z - Artwork Count1 - Persistent ID7246F6974B1AC9A6 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(38)%20%5BDJ%20Energy%5D%20Once%20In%20A%20Lifetime%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6699 - - Track ID6699 - NameMorning Star (Original Club MIx) - ArtistRoger Shah feat. Moya Brennan - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size6768969 - Total Time201012 - Disc Number2 - Disc Count2 - Track Number39 - Year2011 - Date Modified2012-08-18T03:25:51Z - Date Added2012-08-18T03:23:45Z - Bit Rate254 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID1876EE78B5659C24 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(39)%20%5BRoger%20Shah%20feat.%20Moya%20Brennan%5D%20Morning%20Star%20(Original%20Club%20MIx).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6701 - - Track ID6701 - NameSomeone Like You (Alex M.O.R.P,H.'s Darth Morph Rework) - ArtistLinnea Schössow - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size6087674 - Total Time185364 - Disc Number2 - Disc Count2 - Track Number40 - Year2011 - Date Modified2012-08-18T03:25:51Z - Date Added2012-08-18T03:23:45Z - Bit Rate246 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID83F2F31DB516F279 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(40)%20%5BLinnea%20Sch%C3%B6ssow%5D%20Someone%20Like%20You%20(Alex%20M.O.R.P,H.'s%20Darth%20Morph%20Rework).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6703 - - Track ID6703 - NameInvisible Walls (Dennis Sheperd Remix) - ArtistNektarios meets Kirsty Hawkshaw and Jan Johnston - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size4383037 - Total Time126824 - Disc Number2 - Disc Count2 - Track Number41 - Year2011 - Date Modified2012-08-18T03:25:36Z - Date Added2012-08-18T03:23:45Z - Bit Rate253 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID088E727F521CBD17 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(41)%20%5BNektarios%20meets%20Kirsty%20Hawkshaw%20and%20Jan%20Johnston%5D%20Invisible%20Walls%20(Dennis%20Sheperd%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6705 - - Track ID6705 - NameSatisfraction (Akato Mix) - ArtistTalla 2XLC pres. Akato - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size3246577 - Total Time87536 - Disc Number2 - Disc Count2 - Track Number42 - Year2011 - Date Modified2012-08-18T03:25:51Z - Date Added2012-08-18T03:23:45Z - Bit Rate262 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDAF0B789B237ADE46 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(42)%20%5BTalla%202XLC%20pres.%20Akato%5D%20Satisfraction%20(Akato%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6707 - - Track ID6707 - NameSkyfire (Alex M.O.R.P.H. Remix) - ArtistShogun - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size3538837 - Total Time102243 - Disc Number2 - Disc Count2 - Track Number43 - Year2011 - Date Modified2012-08-18T03:25:37Z - Date Added2012-08-18T03:23:45Z - Bit Rate247 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID147CB727FD128268 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(43)%20%5BShogun%5D%20Skyfire%20(Alex%20M.O.R.P.H.%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6709 - - Track ID6709 - NameThe Opening (Original Mix) - ArtistPeter Knife - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size2426799 - Total Time70191 - Disc Number2 - Disc Count2 - Track Number44 - Year2011 - Date Modified2012-08-18T03:25:37Z - Date Added2012-08-18T03:23:45Z - Bit Rate234 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Sort NameOpening (Original Mix) - Persistent ID33499AA24370BFCD - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(44)%20%5BPeter%20Knife%5D%20The%20Opening%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6711 - - Track ID6711 - NameWe Are One (Instrumental Mix) - ArtistDave202 - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size12853173 - Total Time400770 - Disc Number2 - Disc Count2 - Track Number45 - Year2011 - Date Modified2012-08-18T03:25:37Z - Date Added2012-08-18T03:23:45Z - Bit Rate249 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDE08707012BFC6FEE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(45)%20%5BDave202%5D%20We%20Are%20One%20(Instrumental%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6713 - - Track ID6713 - NameOlympia (Original Mix) - ArtistDart Rayne - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size8224342 - Total Time248764 - Disc Number2 - Disc Count2 - Track Number46 - Year2011 - Date Modified2012-08-18T03:25:38Z - Date Added2012-08-18T03:23:45Z - Bit Rate252 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID27C7625851BDA4C4 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(46)%20%5BDart%20Rayne%5D%20Olympia%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6715 - - Track ID6715 - NameSequoia (Daniel Kandi's Bangin' Mix) - ArtistNeal Scarborough - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size2496166 - Total Time69198 - Disc Number2 - Disc Count2 - Track Number47 - Year2011 - Date Modified2012-08-18T03:25:38Z - Date Added2012-08-18T03:23:45Z - Bit Rate245 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDC4ED3AE5C56E2B50 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(47)%20%5BNeal%20Scarborough%5D%20Sequoia%20(Daniel%20Kandi's%20Bangin'%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6717 - - Track ID6717 - NameInternational Airport (Original Mix) - ArtistDamian Wasse - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size3234874 - Total Time96339 - Disc Number2 - Disc Count2 - Track Number48 - Year2011 - Date Modified2012-08-18T03:25:38Z - Date Added2012-08-18T03:23:45Z - Bit Rate237 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDC1087AE89D6AE508 - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(48)%20%5BDamian%20Wasse%5D%20International%20Airport%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6719 - - Track ID6719 - NameMy Thoughts Are You (Upward Motion Project Remix) - ArtistSy Gardner - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size8575732 - Total Time270053 - Disc Number2 - Disc Count2 - Track Number49 - Year2011 - Date Modified2012-08-18T03:25:39Z - Date Added2012-08-18T03:23:45Z - Bit Rate243 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent IDC1944280DBD19ABA - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(49)%20%5BSy%20Gardner%5D%20My%20Thoughts%20Are%20You%20(Upward%20Motion%20Project%20Remix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6721 - - Track ID6721 - NameBelieve (Original Mix) - ArtistAthema - Album ArtistVA - AlbumTunnel Trance Force Vol. 59 / CD1 - GenreTrance - KindMPEG audio file - Size10238329 - Total Time329456 - Disc Number2 - Disc Count2 - Track Number50 - Year2011 - Date Modified2012-08-18T03:25:39Z - Date Added2012-08-18T03:23:45Z - Bit Rate239 - Sample Rate44100 - Part Of Gapless Album - Comments. - Artwork Count1 - Persistent ID7A1CDEE088FCACFE - Track TypeFile - Locationfile://localhost/X:/MP3s/07.%20Techno/01.%20Compilations/02.%20Tunnel%20Trance%20Rips/Tunnel%20Trance%20Force%20Vol.%2059%20(2011)%20(2%20CD)/(50)%20%5BAthema%5D%20Believe%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6723 - - Track ID6723 - NameAfrojack - Electric Zoo NYC - 04-09-2010 - KindMPEG audio file - Size105821492 - Total Time4409051 - Date Modified2010-09-07T13:33:40Z - Date Added2012-08-18T03:28:13Z - Bit Rate192 - Sample Rate44100 - Persistent ID96F915F6E1180FA5 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Afrojack%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6725 - - Track ID6725 - NameAvicii - Electric Zoo NYC - 04-09-2010 - GenreOther - KindMPEG audio file - Size86222759 - Total Time3592437 - Date Modified2010-09-07T13:33:37Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent IDEA0552DE5A431290 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Avicii%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6727 - - Track ID6727 - NameAxwell - Electric Zoo NYC - 04-09-2010 - GenreOther - KindMPEG audio file - Size81942649 - Total Time3414099 - Date Modified2010-09-07T13:33:43Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent IDA0DA8154803BFBD4 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Axwell%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6729 - - Track ID6729 - NameBenny Benassi - Electric Zoo - 04-09-2010 - GenreOther - KindMPEG audio file - Size30985692 - Total Time1290893 - Date Modified2010-09-07T13:33:33Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent ID2CB39C9B7FBB28F4 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Benny%20Benassi%20-%20Electric%20Zoo%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6731 - - Track ID6731 - NameBoris - Electric Zoo NYC - 04-09-2010 - GenreOther - KindMPEG audio file - Size115367889 - Total Time4806817 - Date Modified2010-09-07T13:33:42Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent IDD76DF952E22E3084 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Boris%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6733 - - Track ID6733 - NameChuckie - Electric Zoo NYC - 04-09-2010 - GenreOther - KindMPEG audio file - Size116493871 - Total Time4853733 - Date Modified2010-09-07T13:33:33Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent IDAC0CBF58E046AFD4 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Chuckie%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6735 - - Track ID6735 - NameDirty South - Electric Zoo NYC - 04-09-2010 - GenreOther - KindMPEG audio file - Size94027520 - Total Time3917635 - Date Modified2010-09-07T13:33:25Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent ID6E3902DD9400713B - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Dirty%20South%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6737 - - Track ID6737 - NameGareth Emery - Electric Zoo NYC - 04-09-2010 - KindMPEG audio file - Size89968518 - Total Time3748597 - Date Modified2010-09-07T13:33:35Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent ID86CBC22280186FEB - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Gareth%20Emery%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6739 - - Track ID6739 - NameJoachim Garraud - Electric Zoo NYC - 04-09-2010 - GenreOther - KindMPEG audio file - Size86054113 - Total Time3585410 - Date Modified2010-09-07T13:33:33Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent ID597D85255DAD22FB - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Joachim%20Garraud%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6741 - - Track ID6741 - NameKaskade - Electric Zoo NYC - 04-09-2010 - GenreOther - KindMPEG audio file - Size78578495 - Total Time3273926 - Date Modified2010-09-07T13:33:13Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent IDCE4A8DECDABFF1BF - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Kaskade%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6743 - - Track ID6743 - NameMarkus Schulz - Electric Zoo NYC - 04-09-2010 - KindMPEG audio file - Size109322118 - Total Time4554997 - Date Modified2010-09-07T13:33:36Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent ID3250F8E571135559 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Markus%20Schulz%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6745 - - Track ID6745 - NameTom Middleton - Electric Zoo NYC - 04-09-2010 - GenreOther - KindMPEG audio file - Size23567752 - Total Time981812 - Date Modified2010-09-07T13:33:01Z - Date Added2012-08-18T03:28:14Z - Bit Rate192 - Sample Rate44100 - Persistent ID69E283DCF81F0BF5 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%201)%2004-09-2010/Tom%20Middleton%20-%20Electric%20Zoo%20NYC%20-%2004-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6747 - - Track ID6747 - NameAbove & Beyond - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size44420362 - Total Time1850671 - Date Modified2010-09-07T13:29:12Z - Date Added2012-08-18T03:28:21Z - Bit Rate192 - Sample Rate44100 - Persistent ID4584B839F01C62D2 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Above%20&%20Beyond%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6749 - - Track ID6749 - NameArmin van Buuren - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size155930794 - Total Time6496940 - Date Modified2010-09-07T13:29:22Z - Date Added2012-08-18T03:28:21Z - Bit Rate192 - Sample Rate44100 - Persistent ID462016EEA08197BD - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Armin%20van%20Buuren%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6751 - - Track ID6751 - NameAvicii - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size122634110 - Total Time5109577 - Date Modified2010-09-07T13:29:49Z - Date Added2012-08-18T03:28:21Z - Bit Rate192 - Sample Rate44100 - Persistent ID6506BC0820FED45D - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Avicii%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6753 - - Track ID6753 - NameCosmic Gate - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size80679993 - Total Time3361488 - Date Modified2010-09-07T13:29:16Z - Date Added2012-08-18T03:28:21Z - Bit Rate192 - Sample Rate44100 - Persistent ID42B93EF64ACFD460 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Cosmic%20Gate%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6755 - - Track ID6755 - NameD.Ramirez - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size121383993 - Total Time5057488 - Date Modified2010-09-07T13:29:52Z - Date Added2012-08-18T03:28:21Z - Bit Rate192 - Sample Rate44100 - Persistent IDC0B7FFF842C04D0E - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/D.Ramirez%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6757 - - Track ID6757 - NameDiplo - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size91947337 - Total Time3830961 - Date Modified2010-09-07T13:29:55Z - Date Added2012-08-18T03:28:21Z - Bit Rate192 - Sample Rate44100 - Persistent ID0F92E4A9F5C668A6 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Diplo%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6759 - - Track ID6759 - NameFedde LeGrand - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size91225104 - Total Time3800868 - Date Modified2010-09-07T13:29:16Z - Date Added2012-08-18T03:28:21Z - Bit Rate192 - Sample Rate44100 - Persistent ID9776B84E086F5F34 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Fedde%20LeGrand%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6761 - - Track ID6761 - NameFunkagenda - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size85035964 - Total Time3542987 - Date Modified2010-09-07T13:29:43Z - Date Added2012-08-18T03:28:22Z - Bit Rate192 - Sample Rate44100 - Persistent ID6F85E8EA0EFB56E8 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Funkagenda%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6763 - - Track ID6763 - NameLaidback Luke - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size127812624 - Total Time5325348 - Date Modified2010-09-07T13:29:55Z - Date Added2012-08-18T03:28:22Z - Bit Rate192 - Sample Rate44100 - Persistent ID45FBA4EB391CDA72 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Laidback%20Luke%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6765 - - Track ID6765 - NameMoby - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size123799588 - Total Time5158138 - Date Modified2010-09-07T13:29:57Z - Date Added2012-08-18T03:28:22Z - Bit Rate192 - Sample Rate44100 - Persistent IDB7440D94B6758930 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Moby%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6767 - - Track ID6767 - NameSander van Doorn - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size107306710 - Total Time4470935 - Date Modified2010-09-07T13:29:45Z - Date Added2012-08-18T03:28:22Z - Bit Rate192 - Sample Rate44100 - Persistent ID87BBA6E26937D625 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Sander%20van%20Doorn%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6769 - - Track ID6769 - NameSteve Aoki - Electric Zoo NYC - 05-09-2010 - GenreOther - KindMPEG audio file - Size43204728 - Total Time1800019 - Date Modified2010-09-07T13:29:50Z - Date Added2012-08-18T03:28:22Z - Bit Rate192 - Sample Rate44100 - Persistent ID8392278B716B95B1 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Zoo%20Festival%20NYC%20(Day%202)%2005-09-2010/Steve%20Aoki%20-%20Electric%20Zoo%20NYC%20-%2005-09-2010.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6771 - - Track ID6771 - NameLive at Electric Daisy Carnival 2010-SAT-06-26-2010 - ArtistAbove and Beyond - AlbumLive at Electric Daisy Carnival 2010-SAT-06-26 - GenreTrance - KindMPEG audio file - Size89541393 - Total Time4721214 - Track Number1 - Year2010 - Date Modified2010-06-28T14:28:55Z - Date Added2012-08-18T03:32:25Z - Bit Rate151 - Sample Rate44100 - CommentsTALiON - Persistent ID42F55A4B09BA14D4 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Above%20and%20Beyond%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-26-2010-TALiON/01-above_and_beyond_-_live_at_electric_daisy_carnival_2010-sat-06-26-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6773 - - Track ID6773 - NameLive at Electric Daisy Carnival 2010-SAT-06-25-2010 - ArtistAndroid Cartel - AlbumLive at Electric Daisy Carnival 2010-SAT-06-25 - GenreHouse - KindMPEG audio file - Size48241687 - Total Time2458174 - Track Number1 - Year2010 - Date Modified2010-06-28T13:21:00Z - Date Added2012-08-18T03:32:25Z - Bit Rate156 - Sample Rate44100 - CommentsTALiON - Persistent IDDC30466BE43B96AB - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Android%20Cartel%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-25-2010-TALiON/01-android_cartel_-_live_at_electric_daisy_carnival_2010-sat-06-25-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6775 - - Track ID6775 - NameLive at Electric Daisy Carnival 2010-SAT-06-26-2010 - ArtistArmin Van Buuren - AlbumLive at Electric Daisy Carnival 2010-SAT-06-26 - GenreTrance - KindMPEG audio file - Size130729714 - Total Time6899826 - Track Number1 - Year2010 - Date Modified2010-06-28T13:25:26Z - Date Added2012-08-18T03:32:25Z - Bit Rate151 - Sample Rate44100 - CommentsTALiON - Persistent ID58FEF39408F5EA40 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Armin%20Van%20Buuren%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-26-2010-TALiON/01-armin_van_buuren_-_live_at_electric_daisy_carnival_2010-sat-06-26-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6777 - - Track ID6777 - NameLive at Electric Daisy Carnival 2010-SAT-06-25-2010 - ArtistBasement Jaxx - AlbumLive at Electric Daisy Carnival 2010-SAT-06-25 - GenreElectronic - KindMPEG audio file - Size97475791 - Total Time5293453 - Track Number1 - Year2010 - Date Modified2010-06-28T13:27:17Z - Date Added2012-08-18T03:32:25Z - Bit Rate147 - Sample Rate44100 - CommentsTALiON - Persistent ID48FE84DC04D752B7 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Basement%20Jaxx%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-25-2010-TALiON/01-basement_jaxx_-_live_at_electric_daisy_carnival_2010-sat-06-25-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6779 - - Track ID6779 - NameLive at Electric Daisy Carnival 2010-SAT-06-26-2010 - ArtistBenny Benassi - AlbumLive at Electric Daisy Carnival 2010-SAT-06-26 - GenreHouse - KindMPEG audio file - Size88620804 - Total Time4965982 - Track Number1 - Year2010 - Date Modified2010-06-28T13:28:55Z - Date Added2012-08-18T03:32:25Z - Bit Rate142 - Sample Rate44100 - CommentsTALiON - Persistent ID8DA6CDB5CCD3A160 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Benny%20Benassi%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-26-2010-TALiON/01-benny_benassi_-_live_at_electric_daisy_carnival_2010-sat-06-26-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6781 - - Track ID6781 - NameLive at Electric Daisy Carnival 2010-SAT-06-25-2010 - ArtistBT - AlbumLive at Electric Daisy Carnival 2010-SAT-06-25 - GenreTrance - KindMPEG audio file - Size57238429 - Total Time2953822 - Track Number1 - Year2010 - Date Modified2010-06-28T13:30:01Z - Date Added2012-08-18T03:32:25Z - Bit Rate155 - Sample Rate44100 - CommentsTALiON - Persistent ID8DE5E647142A9A51 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/BT%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-25-2010-TALiON/01-bt_-_live_at_electric_daisy_carnival_2010-sat-06-25-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6783 - - Track ID6783 - NameLive at Electric Daisy Carnival 2010-SAT-06-25-2010 - ArtistChuckie - AlbumLive at Electric Daisy Carnival 2010-SAT-06-25 - GenreHouse - KindMPEG audio file - Size88697256 - Total Time4899840 - Track Number1 - Year2010 - Date Modified2010-06-28T13:31:37Z - Date Added2012-08-18T03:32:25Z - Bit Rate144 - Sample Rate44100 - CommentsTALiON - Persistent IDC4AC9B94F7EC66DD - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Chuckie%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-25-2010-TALiON/01-chuckie_-_live_at_electric_daisy_carnival_2010-sat-06-25-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6785 - - Track ID6785 - NameLive at Electric Daisy Carnival 2010-SAT-06-25-2010 - ArtistDirty South - AlbumLive at Electric Daisy Carnival 2010-SAT-06-25 - GenreHouse - KindMPEG audio file - Size83449030 - Total Time4475480 - Track Number1 - Year2010 - Date Modified2010-06-28T13:33:09Z - Date Added2012-08-18T03:32:25Z - Bit Rate149 - Sample Rate44100 - CommentsTALiON - Persistent ID756634A56F04FD07 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Dirty%20South%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-25-2010-TALiON/01-dirty_south_-_live_at_electric_daisy_carnival_2010-sat-06-25-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6787 - - Track ID6787 - NameLive at Electric Daisy Carnival 2010-SAT-06-26-2010 - ArtistFedde Le Grand - AlbumLive at Electric Daisy Carnival 2010-SAT-06-26 - GenreHouse - KindMPEG audio file - Size97028063 - Total Time4835787 - Track Number1 - Year2010 - Date Modified2010-06-28T13:34:54Z - Date Added2012-08-18T03:32:25Z - Bit Rate160 - Sample Rate44100 - CommentsTALiON - Persistent IDFDDC3D3415878D0F - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Fedde%20Le%20Grand%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-26-2010-TALiON/01-fedde_le_grand_-_live_at_electric_daisy_carnival_2010-sat-06-26-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6789 - - Track ID6789 - NameLive at Electric Daisy Carnival 2010-SAT-06-25-2010 - ArtistJoaquin Bamaca - AlbumLive at Electric Daisy Carnival 2010-SAT-06-25 - GenreHouse - KindMPEG audio file - Size87597059 - Total Time4902164 - Track Number1 - Year2010 - Date Modified2010-06-28T13:36:31Z - Date Added2012-08-18T03:32:25Z - Bit Rate142 - Sample Rate44100 - CommentsTALiON - Persistent IDF1CF3B2CCA614E46 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Joaquin%20Bamaca%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-25-2010-TALiON/01-joaquin_bamaca_-_live_at_electric_daisy_carnival_2010-sat-06-25-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6791 - - Track ID6791 - NameLive at Electric Daisy Carnival 2010-SAT-06-25-2010 - ArtistKaskade - AlbumLive at Electric Daisy Carnival 2010-SAT-06-25 - GenreHouse - KindMPEG audio file - Size82664732 - Total Time4435147 - Track Number1 - Year2010 - Date Modified2010-06-28T13:38:03Z - Date Added2012-08-18T03:32:25Z - Bit Rate149 - Sample Rate44100 - CommentsTALiON - Persistent IDDE9082C2E2C0698C - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Kaskade%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-25-2010-TALiON/01-kaskade_-_live_at_electric_daisy_carnival_2010-sat-06-25-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6793 - - Track ID6793 - NameLive at Electric Daisy Carnival 2010-SAT-06-26-2010 - ArtistLaidback Luke - AlbumLive at Electric Daisy Carnival 2010-SAT-06-26 - GenreHouse - KindMPEG audio file - Size83909736 - Total Time4545515 - Track Number1 - Year2010 - Date Modified2010-06-28T13:39:35Z - Date Added2012-08-18T03:32:25Z - Bit Rate147 - Sample Rate44100 - CommentsTALiON - Persistent ID009B5931133A8B94 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Laidback%20Luke%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-26-2010-TALiON/01-laidback_luke_-_live_at_electric_daisy_carnival_2010-sat-06-26-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6795 - - Track ID6795 - NameLive at Electric Daisy Carnival 2010-SAT-06-26-2010 - ArtistRoger Sanchez - AlbumLive at Electric Daisy Carnival 2010-SAT-06-26 - GenreHouse - KindMPEG audio file - Size63452205 - Total Time3421936 - Track Number1 - Year2010 - Date Modified2010-06-28T13:40:47Z - Date Added2012-08-18T03:32:25Z - Bit Rate148 - Sample Rate44100 - CommentsTALiON - Persistent ID0B4D3C0F8475F46E - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Roger%20Sanchez%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-26-2010-TALiON/01-roger_sanchez_-_live_at_electric_daisy_carnival_2010-sat-06-26-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6797 - - Track ID6797 - NameLive at Electric Daisy Carnival 2010-SAT-06-26-2010 - ArtistSasha - AlbumLive at Electric Daisy Carnival 2010-SAT-06-26 - GenreHouse - KindMPEG audio file - Size78967972 - Total Time4053681 - Track Number1 - Year2010 - Date Modified2010-06-28T13:42:12Z - Date Added2012-08-18T03:32:26Z - Bit Rate155 - Sample Rate44100 - CommentsTALiON - Persistent ID0A2FF97BE6655480 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Sasha%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-26-2010-TALiON/01-sasha_-_live_at_electric_daisy_carnival_2010-sat-06-26-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6799 - - Track ID6799 - NameLive at Electric Daisy Carnival 2010-SAT-06-25-2010 - ArtistSwedish House Mafia - AlbumLive at Electric Daisy Carnival 2010-SAT-06-25 - GenreHouse - KindMPEG audio file - Size116370897 - Total Time6227539 - Track Number1 - Year2010 - Date Modified2010-06-28T13:44:16Z - Date Added2012-08-18T03:32:26Z - Bit Rate149 - Sample Rate44100 - CommentsTALiON - Persistent IDC06CAFF90E7A073C - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Swedish%20House%20Mafia%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-25-2010-TALiON/01-swedish_house_mafia_-_live_at_electric_daisy_carnival_2010-sat-06-25-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6801 - - Track ID6801 - NameLive at Electric Daisy Carnival 2010-SAT-06-26-2010 - ArtistWill.I.Am - AlbumLive at Electric Daisy Carnival 2010-SAT-06-26 - GenreHouse - KindMPEG audio file - Size50158732 - Total Time2750589 - Track Number1 - Year2010 - Date Modified2010-06-28T13:45:18Z - Date Added2012-08-18T03:32:26Z - Bit Rate145 - Sample Rate44100 - CommentsTALiON - Persistent IDCABA9673D25704A7 - Track TypeFile - Locationfile://localhost/X:/MP3s/25.%20Techno%20Shows/Electric%20Daisy%20Carnival%202010/Will.I.Am%20-%20Live%20at%20Electric%20Daisy%20Carnival%202010-SAT-06-26-2010-TALiON/01-will.i.am_-_live_at_electric_daisy_carnival_2010-sat-06-26-2010-talion.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6803 - - Track ID6803 - NameTurn Me On - ArtistDavid Guetta feat. Nicki Minaj - AlbumSlam!40 week 05 - GenreVA - KindMPEG audio file - Size6624150 - Total Time199706 - Track Number10 - Year2011 - Date Modified2012-08-14T15:35:57Z - Date Added2012-08-18T03:50:34Z - Bit Rate254 - Sample Rate44100 - CommentsBy Hellboy - Artwork Count1 - Persistent ID47A840FB124E8CDD - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/10-David_Guetta_feat._Nicki_Minaj-Turn_Me_On.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6805 - - Track ID6805 - NameTitanium - ArtistDavid Guetta feat. Sia - Album ArtistDavid Guetta - KindMPEG audio file - Size10256777 - Total Time245185 - Track Number12 - Year2011 - Date Modified2012-08-14T14:56:40Z - Date Added2012-08-18T03:50:35Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID415E01D84A5052F7 - Track TypeFile - Locationfile://localhost/X:/MP3s/Incoming/David%20Guetta%20feat.%20Sia%20-%20Titanium.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6807 - - Track ID6807 - NameNYC Party 4 Medly - ArtistLouie DeVito and Bad Boy Joe - GenrePop - KindMPEG audio file - Size3710189 - Total Time231862 - Date Modified2003-01-31T23:42:26Z - Date Added2012-08-18T04:00:48Z - Bit Rate128 - Sample Rate44100 - Persistent ID41818573EEE5C49B - Track TypeFile - Locationfile://localhost/X:/MP3s/24.%20Unsorted/Louie%20DeVito%20-%20NYC%20Party%204%20Medly.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6809 - - Track ID6809 - NameBreezeblock Mix 08-06-2004 - ArtistRJD2 - AlbumRadio 1 Breezeblock - GenreOther - KindMPEG audio file - Size33691297 - Total Time1684558 - Year2004 - Date Modified2006-07-23T05:55:34Z - Date Added2012-08-18T04:03:08Z - Bit Rate160 - Sample Rate44100 - Persistent ID3E20ED095B95125A - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/RJD2/RJD2%20-%20Breezeblock%20(BBC%20Radio%201)%20(2004.08.06)/RJD2%20-%20Breezeblock%20-%2008-06-04.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6811 - - Track ID6811 - NameAll For U - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size4975403 - Total Time208248 - Track Number1 - Year2006 - Date Modified2012-08-18T04:05:46Z - Date Added2012-08-18T04:04:22Z - Bit Rate190 - Sample Rate44100 - Persistent ID0E962A357681AF26 - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/01-aceyalone_and_rjd2-all_for_u.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6813 - - Track ID6813 - NameFire - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size5575712 - Total Time251088 - Track Number2 - Year2006 - Date Modified2006-07-23T06:27:47Z - Date Added2012-08-18T04:04:22Z - Bit Rate177 - Sample Rate44100 - Persistent IDD351A38C9CF83B25 - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/02-aceyalone_and_rjd2-fire.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6815 - - Track ID6815 - NameCornbread, Eddy, and Me - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size4201098 - Total Time166765 - Track Number3 - Year2006 - Date Modified2006-07-23T06:33:54Z - Date Added2012-08-18T04:04:22Z - Bit Rate201 - Sample Rate44100 - Persistent IDB0A59A9976770AA3 - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/03-aceyalone_and_rjd2-cornbread_eddy_and_me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6817 - - Track ID6817 - NameMoore - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size6498607 - Total Time289384 - Track Number4 - Year2006 - Date Modified2006-07-23T07:14:12Z - Date Added2012-08-18T04:04:22Z - Bit Rate179 - Sample Rate44100 - Persistent ID3BF8A0BB7F2A683B - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/04-aceyalone_and_rjd2-moore.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6819 - - Track ID6819 - NameSupahero - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size5100772 - Total Time251245 - Track Number5 - Year2006 - Date Modified2006-07-23T16:30:12Z - Date Added2012-08-18T04:04:22Z - Bit Rate162 - Sample Rate44100 - Persistent IDC0FCAC1A6C47DFF5 - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/05-aceyalone_and_rjd2-supahero.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6821 - - Track ID6821 - NameHigh Lights - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size4917068 - Total Time202945 - Track Number6 - Year2006 - Date Modified2006-07-23T17:29:21Z - Date Added2012-08-18T04:04:22Z - Bit Rate193 - Sample Rate44100 - Persistent ID9D600805EC8731AB - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/06-aceyalone_and_rjd2-high_lights.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6823 - - Track ID6823 - NameDisconnected - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size5300527 - Total Time201430 - Track Number7 - Year2006 - Date Modified2009-08-29T19:20:49Z - Date Added2012-08-18T04:04:22Z - Bit Rate209 - Sample Rate44100 - Artwork Count1 - Persistent ID530F00D2BC0A74DC - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/07-aceyalone_and_rjd2-disconnected.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6825 - - Track ID6825 - NameCaged Bird - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size4428987 - Total Time192653 - Track Number8 - Year2006 - Date Modified2006-07-23T17:38:51Z - Date Added2012-08-18T04:04:22Z - Bit Rate183 - Sample Rate44100 - Persistent IDA1489657C8FFBCA1 - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/08-aceyalone_and_rjd2-caged_bird.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6827 - - Track ID6827 - NameSolomon Jones - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size5217937 - Total Time226115 - Track Number9 - Year2006 - Date Modified2006-07-23T18:06:22Z - Date Added2012-08-18T04:04:22Z - Bit Rate184 - Sample Rate44100 - Persistent ID801B1664C014A893 - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/09-aceyalone_and_rjd2-solomon_jones.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6829 - - Track ID6829 - NameA Sunday Mystery - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size2319724 - Total Time93596 - Track Number10 - Year2006 - Date Modified2006-07-23T18:46:17Z - Date Added2012-08-18T04:04:22Z - Bit Rate197 - Sample Rate44100 - Sort NameSunday Mystery - Persistent IDCC6375BE4D3851A4 - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/10-aceyalone_and_rjd2-a_sunday_mystery.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6831 - - Track ID6831 - NameJunior - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size4686704 - Total Time221257 - Track Number11 - Year2006 - Date Modified2006-07-23T19:04:29Z - Date Added2012-08-18T04:04:22Z - Bit Rate169 - Sample Rate44100 - Persistent ID4B26E36E16E55C56 - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/11-aceyalone_and_rjd2-junior.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6833 - - Track ID6833 - NameHeaven - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size4549724 - Total Time218958 - Track Number12 - Year2006 - Date Modified2006-07-23T21:09:56Z - Date Added2012-08-18T04:04:22Z - Bit Rate166 - Sample Rate44100 - Persistent IDAEDD495DD0EA46BC - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/12-aceyalone_and_rjd2-heaven.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6835 - - Track ID6835 - NameHere and Now - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size5317175 - Total Time261120 - Track Number13 - Year2006 - Date Modified2006-07-23T21:45:35Z - Date Added2012-08-18T04:04:22Z - Bit Rate162 - Sample Rate44100 - Persistent ID51B9683B62C0FEDF - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/13-aceyalone_and_rjd2-here_and_now.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6837 - - Track ID6837 - NameA Beautiful Mine - ArtistAceyalone & RJD2 - AlbumMagnificent City - GenreHip-Hop - KindMPEG audio file - Size7650072 - Total Time329168 - Track Number14 - Year2006 - Date Modified2006-07-23T23:12:31Z - Date Added2012-08-18T04:04:22Z - Bit Rate185 - Sample Rate44100 - Sort NameBeautiful Mine - Persistent IDD1F1B1780EDAECC6 - Track TypeFile - Locationfile://localhost/X:/MP3s/04.%20Hip%20Hop/Aceyalone/Aceyalone%20and%20RJD2%20-%20Magnificent%20City/14-aceyalone_and_rjd2-a_beautiful_mine.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6839 - - Track ID6839 - NamePapercut - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size4445123 - Total Time185208 - Track Number1 - Year2000 - Date Modified2000-10-05T04:49:48Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Persistent IDE7312CB535C9202D - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/01%20-%20Papercut.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6841 - - Track ID6841 - NameOne Step Closer - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size3737310 - Total Time155715 - Track Number2 - Year2000 - Date Modified2000-10-05T04:58:54Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Persistent ID8EC9E2F57C15C2DA - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/02%20-%20One%20Step%20Closer.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6843 - - Track ID6843 - NameWith You - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size4878965 - Total Time203284 - Track Number3 - Year2000 - Date Modified2000-10-05T04:49:04Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Persistent ID9DC1FC91EFAFCDC7 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/03%20-%20With%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6845 - - Track ID6845 - NamePoints Of Authority - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size4806240 - Total Time200254 - Track Number4 - Year2000 - Date Modified2000-10-05T04:49:08Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Persistent IDFD1A5D096C922E31 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/04%20-%20Points%20of%20Authority.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6847 - - Track ID6847 - Namecrawling - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size5015638 - Total Time208979 - Track Number5 - Year2000 - Date Modified2000-10-05T04:50:28Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Persistent IDC52A0393C69A8323 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/05%20-%20Crawling.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6849 - - Track ID6849 - Namerunaway - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size4415657 - Total Time183980 - Track Number6 - Year2000 - Date Modified2000-10-05T04:52:28Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Persistent ID83C08E2A0CE69E99 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/06%20-%20Runaway.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6851 - - Track ID6851 - NameBy Myself - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size4555465 - Total Time189805 - Track Number7 - Year2000 - Date Modified2000-10-05T04:51:00Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Persistent ID64D42AB0B40F27B9 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/07%20-%20By%20Myself.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6853 - - Track ID6853 - NameThe Untitled (In the End) - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size5191181 - Total Time216293 - Track Number8 - Year2000 - Date Modified2000-10-05T04:54:20Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Sort NameUntitled (In the End) - Persistent ID33E2120A253B810A - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/08%20-%20In%20The%20End.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6855 - - Track ID6855 - NameA Place For My Head - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size4431958 - Total Time184659 - Track Number9 - Year2000 - Date Modified2000-10-05T04:52:50Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Sort NamePlace For My Head - Persistent ID7C842C550ED79A5F - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/09%20-%20A%20Place%20For%20My%20Head.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6857 - - Track ID6857 - NameForgotten - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size4666433 - Total Time194429 - Track Number10 - Year2000 - Date Modified2000-10-05T04:53:42Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Persistent ID6E1EA45E89961696 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/10%20-%20Forgotten.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6859 - - Track ID6859 - NameMr. Hahn - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size3773045 - Total Time157204 - Track Number11 - Year2000 - Date Modified2000-10-05T04:51:40Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Persistent ID456E0F3A73AA474F - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/11%20-%20Mr.%20Hahn.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6861 - - Track ID6861 - NamePushing Me Away - ArtistLinkin Park - AlbumHybrid Theory - GenreAlternRock - KindMPEG audio file - Size4591827 - Total Time191320 - Track Number12 - Year2000 - Date Modified2000-10-05T04:53:06Z - Date Added2012-08-18T04:12:12Z - Bit Rate192 - Sample Rate44100 - Persistent ID3B575E8688660997 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Hybrid%20Theory/12%20-%20Pushing%20Me%20Away.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6863 - - Track ID6863 - NameBreaking the Habit - ArtistLinkin Park - AlbumMeteora - GenreRock - KindMPEG audio file - Size4707863 - Total Time196153 - Year2003 - Date Modified2003-03-20T20:45:00Z - Date Added2012-08-18T04:12:39Z - Bit Rate192 - Sample Rate44100 - CommentsTEAM Faint Ownage - Persistent IDBB243C818FDAD6A6 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Linkin%20Park/Meteora%20(2003)/09-linkin_park-breaking_the_habit-fnt.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6865 - - Track ID6865 - NameJET - Last Chance - ArtistJET - Album ArtistJet - ComposerC. Cester/C. Muncey - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size2756608 - Total Time114938 - Track Number1 - Year2003 - Date Modified2004-06-01T22:18:06Z - Date Added2012-08-18T04:13:17Z - Bit Rate192 - Sample Rate44100 - Persistent IDF8894416B465E0CD - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/01%20-%20JET%20-%20Last%20Chance.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6867 - - Track ID6867 - NameJET - Are You Gonna Be My Girl - ArtistJET - Album ArtistJet - ComposerC. Muncey/N. Cester - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size5189810 - Total Time216502 - Track Number2 - Year2003 - Date Modified2004-06-04T19:56:26Z - Date Added2012-08-18T04:13:17Z - Bit Rate192 - Sample Rate44100 - Persistent IDF4E7B6496775D59F - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/02%20-%20JET%20-%20Are%20You%20Gonna%20Be%20My%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6869 - - Track ID6869 - NameJET - Rollover D.J. - ArtistJET - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size4775936 - Total Time199209 - Track Number3 - Year2003 - Date Modified2004-05-24T03:04:50Z - Date Added2012-08-18T04:13:17Z - Bit Rate192 - Sample Rate44100 - Persistent IDDC51E60135BFFD17 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/03%20-%20JET%20-%20Rollover%20D.J..mp3 - File Folder Count-1 - Library Folder Count-1 - - 6871 - - Track ID6871 - NameJET - Look What You've Done - ArtistJET - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size5599232 - Total Time233560 - Track Number4 - Year2003 - Date Modified2004-05-24T03:05:00Z - Date Added2012-08-18T04:13:17Z - Bit Rate192 - Sample Rate44100 - Persistent ID1D2506969D92635C - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/04%20-%20JET%20-%20Look%20What%20You've%20Done.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6873 - - Track ID6873 - NameJET - Get What You Need - ArtistJET - Album ArtistJet - ComposerC. Cester/C. Muncey/N. Cester - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size5998592 - Total Time250200 - Track Number5 - Year2003 - Date Modified2004-06-01T21:34:04Z - Date Added2012-08-18T04:13:18Z - Bit Rate192 - Sample Rate44100 - Persistent ID18896E869D52F69B - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/05%20-%20JET%20-%20Get%20What%20You%20Need.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6875 - - Track ID6875 - NameJET - Move On - ArtistJET - Album ArtistJet - ComposerC. Cester/N. Cester - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size6309888 - Total Time263209 - Track Number6 - Year2003 - Date Modified2004-06-01T21:34:08Z - Date Added2012-08-18T04:13:18Z - Bit Rate192 - Sample Rate44100 - Persistent IDAD323AC1B8750393 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/06%20-%20JET%20-%20Move%20On.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6877 - - Track ID6877 - NameJET - Radio Song - ArtistJET - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size6580224 - Total Time274520 - Track Number7 - Year2003 - Date Modified2004-05-24T03:05:30Z - Date Added2012-08-18T04:13:18Z - Bit Rate192 - Sample Rate44100 - Persistent ID7DEB369C5BAF7D4D - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/07%20-%20JET%20-%20Radio%20Song.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6879 - - Track ID6879 - NameJET - Get Me Outta Here - ArtistJET - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size4284416 - Total Time178729 - Track Number8 - Year2003 - Date Modified2004-05-24T03:05:36Z - Date Added2012-08-18T04:13:18Z - Bit Rate192 - Sample Rate44100 - Persistent IDE48A6559F1A51C4B - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/08%20-%20JET%20-%20Get%20Me%20Outta%20Here.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6881 - - Track ID6881 - NameJET - Cold Hard Bitch - ArtistJET - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size5890048 - Total Time245733 - Track Number9 - Year2003 - Date Modified2004-05-24T03:05:46Z - Date Added2012-08-18T04:13:18Z - Bit Rate192 - Sample Rate44100 - Persistent ID7F81A370E2AB325E - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/09%20-%20JET%20-%20Cold%20Hard%20Bitch.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6883 - - Track ID6883 - NameJET - Come Around Again - ArtistJET - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size6545408 - Total Time273031 - Track Number10 - Year2003 - Date Modified2004-05-24T03:05:56Z - Date Added2012-08-18T04:13:18Z - Bit Rate192 - Sample Rate44100 - Persistent ID2F177F515FFA5256 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/10%20-%20JET%20-%20Come%20Around%20Again.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6885 - - Track ID6885 - NameJET - Take It Or Leave It - ArtistJET - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size3491840 - Total Time145658 - Track Number11 - Year2003 - Date Modified2004-05-24T03:06:02Z - Date Added2012-08-18T04:13:18Z - Bit Rate192 - Sample Rate44100 - Persistent IDF391CF14BE9D91E7 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/11%20-%20JET%20-%20Take%20It%20Or%20Leave%20It.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6887 - - Track ID6887 - NameJET - Lazy Gun - ArtistJET - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size6815744 - Total Time284342 - Track Number12 - Year2003 - Date Modified2004-05-24T03:06:14Z - Date Added2012-08-18T04:13:18Z - Bit Rate192 - Sample Rate44100 - Persistent IDE3436CAEE8DDA188 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/12%20-%20JET%20-%20Lazy%20Gun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6889 - - Track ID6889 - NameJET - Timothy - ArtistJET - AlbumGet Born - GenreHard Rock - KindMPEG audio file - Size6488064 - Total Time270680 - Track Number13 - Year2003 - Date Modified2004-05-24T03:06:28Z - Date Added2012-08-18T04:13:19Z - Bit Rate192 - Sample Rate44100 - Persistent ID73E06316A7F55A82 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/JET%20-%20Get%20Born/13%20-%20JET%20-%20Timothy.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6891 - - Track ID6891 - NameButterfly (Rock Remix) - ArtistCrazy Town - GenreClassical - KindMPEG audio file - Size4915328 - Total Time204800 - Track Number2 - Date Modified2001-03-27T06:39:32Z - Date Added2012-08-18T04:13:39Z - Bit Rate192 - Sample Rate44100 - CommentsStekson / K-Rock - Persistent IDB760534D3EC2819F - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Crazytown/Crazy%20Town%20-%20Butterfly%20(Rock%20Remix).MP3 - File Folder Count-1 - Library Folder Count-1 - - 6893 - - Track ID6893 - NameButterfly - ArtistCrazy Town - Albumthe gift of game-explicit - GenreMetal - KindMPEG audio file - Size5235068 - Total Time218122 - Year1999 - Date Modified2001-03-12T16:41:02Z - Date Added2012-08-18T04:13:40Z - Bit Rate192 - Sample Rate44100 - Commentsk0rNc1oWn / BKF - Sort Albumgift of game-explicit - Persistent ID6EBFCE8191E3580B - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Crazytown/Crazy%20Town%20-%20Butterfly.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6895 - - Track ID6895 - NameMellon Collie and the Infinite Sadness - ArtistThe Smashing Pumpkins - AlbumMellon Collie and the Infinite Sadness (Disc 1) - GenreAlt. Rock - KindMPEG audio file - Size4792545 - Total Time172329 - Track Number1 - Track Count14 - Year1995 - Date Modified2005-02-05T05:45:16Z - Date Added2012-08-18T04:14:38Z - Bit Rate222 - Sample Rate44100 - CommentsTrack 1 - Sort ArtistSmashing Pumpkins - Persistent IDE0671F2D3C95A9E1 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Smashing%20Pumpkins/Mellon%20Collie%20and%20the%20Infinite%20Sadness/Disc1_01_-Mellon_Collie_and_the_Infinite_Sadness.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6897 - - Track ID6897 - NameTonight, Tonight - ArtistThe Smashing Pumpkins - AlbumMellon Collie and the Infinite Sadness (Disc 1) - GenreAlt. Rock - KindMPEG audio file - Size6318186 - Total Time254667 - Track Number2 - Track Count14 - Year1995 - Date Modified2005-02-05T05:45:16Z - Date Added2012-08-18T04:14:38Z - Bit Rate198 - Sample Rate44100 - CommentsTrack 2 - Sort ArtistSmashing Pumpkins - Persistent ID02AD92AE6EC059F0 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Smashing%20Pumpkins/Mellon%20Collie%20and%20the%20Infinite%20Sadness/Disc1_02_-Tonight,_Tonight.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6899 - - Track ID6899 - NameZero - ArtistThe Smashing Pumpkins - AlbumMellon Collie and the Infinite Sadness (Disc 1) - GenreAlt. Rock - KindMPEG audio file - Size3944453 - Total Time160522 - Track Number4 - Track Count14 - Year1995 - Date Modified2005-02-05T05:45:18Z - Date Added2012-08-18T04:14:38Z - Bit Rate196 - Sample Rate44100 - CommentsTrack 4 - Sort ArtistSmashing Pumpkins - Persistent ID0005467FDF55F414 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Smashing%20Pumpkins/Mellon%20Collie%20and%20the%20Infinite%20Sadness/Disc1_04_-Zero.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6901 - - Track ID6901 - NameBullet With Butterfly Wings - ArtistThe Smashing Pumpkins - AlbumMellon Collie and the Infinite Sadness (Disc 1) - GenreAlt. Rock - KindMPEG audio file - Size7552014 - Total Time258037 - Track Number6 - Track Count14 - Year1995 - Date Modified2005-02-05T05:45:18Z - Date Added2012-08-18T04:14:38Z - Bit Rate233 - Sample Rate44100 - CommentsTrack 6 - Sort ArtistSmashing Pumpkins - Persistent IDB9D12F3ED22406F5 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Smashing%20Pumpkins/Mellon%20Collie%20and%20the%20Infinite%20Sadness/Disc1_06_-Bullet_With_Butterfly_Wings.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6903 - - Track ID6903 - NameMuzzle - ArtistThe Smashing Pumpkins - AlbumMellon Collie and the Infinite Sadness (Disc 1) - GenreAlt. Rock - KindMPEG audio file - Size4719903 - Total Time224130 - Track Number12 - Track Count14 - Year1995 - Date Modified2005-02-05T05:45:18Z - Date Added2012-08-18T04:14:38Z - Bit Rate168 - Sample Rate44100 - CommentsTrack 12 - Sort ArtistSmashing Pumpkins - Persistent ID887F22C90FFAFE07 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Smashing%20Pumpkins/Mellon%20Collie%20and%20the%20Infinite%20Sadness/Disc1_12_-Muzzle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6905 - - Track ID6905 - Name1979 - ArtistThe Smashing Pumpkins - AlbumMellon Collie And The Infinite Sadness- Twilight To Starlight (CD2) - GenreRock - KindMPEG audio file - Size5810632 - Total Time266031 - Track Number5 - Track Count14 - Year1995 - Date Modified2005-02-05T05:45:20Z - Date Added2012-08-18T04:14:38Z - Bit Rate174 - Sample Rate44100 - CommentsTrack 5 - Sort ArtistSmashing Pumpkins - Persistent IDE846F79CCF2140C7 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Smashing%20Pumpkins/Mellon%20Collie%20and%20the%20Infinite%20Sadness/Disc2_05_-1979.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6907 - - Track ID6907 - NameSynthetic - ArtistSpineshank - AlbumThe Height Of Callousness - GenreMetal - KindMPEG audio file - Size4546688 - Total Time189440 - Year2000 - Date Modified2000-11-12T23:30:28Z - Date Added2012-08-18T04:15:56Z - Bit Rate192 - Sample Rate44100 - Comments-+- [-P-M-S-] -+- - Sort AlbumHeight Of Callousness - Persistent ID4607C4038449876F - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Spineshank/Spineshank%20-%20The%20Height%20Of%20Callousness%20-%2003%20-%20Synthetic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6909 - - Track ID6909 - NameNew Disease - ArtistSpineshank - AlbumThe Height Of Callousness - GenreMetal - KindMPEG audio file - Size4669568 - Total Time194560 - Year2000 - Date Modified2000-11-12T23:47:28Z - Date Added2012-08-18T04:15:56Z - Bit Rate192 - Sample Rate44100 - Comments-+- [-P-M-S-] -+- - Sort AlbumHeight Of Callousness - Persistent ID26E8A564D0890EF5 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Spineshank/Spineshank%20-%20The%20Height%20of%20Callousness%20-%2004%20-%20New%20Disease.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6911 - - Track ID6911 - NameWolfmother - Wolfmother - 01 - Dimension - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size8923661 - Total Time261668 - Date Modified2012-08-18T19:33:56Z - Date Added2012-08-18T19:33:11Z - Bit Rate272 - Sample Rate44100 - Persistent IDC9A5DF9B96B6920D - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2001%20-%20Dimension.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6913 - - Track ID6913 - NameWolfmother - Wolfmother - 02 - White Unicorn - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size10601753 - Total Time304770 - Date Modified2012-08-18T19:33:56Z - Date Added2012-08-18T19:33:11Z - Bit Rate278 - Sample Rate44100 - Persistent IDEB9F61D3A13B6DFE - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2002%20-%20White%20Unicorn.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6915 - - Track ID6915 - NameWolfmother - Wolfmother - 03 - Woman - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size6272237 - Total Time176378 - Date Modified2012-08-18T19:33:56Z - Date Added2012-08-18T19:33:11Z - Bit Rate284 - Sample Rate44100 - Persistent IDB69318184ACF97BC - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2003%20-%20Woman.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6917 - - Track ID6917 - NameWolfmother - Wolfmother - 04 - Where Eagles Have Been - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size10426804 - Total Time333897 - Date Modified2012-08-18T19:33:57Z - Date Added2012-08-18T19:33:11Z - Bit Rate249 - Sample Rate44100 - Persistent IDBCCE0A72D91E7D1F - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2004%20-%20Where%20Eagles%20Have%20Been.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6919 - - Track ID6919 - NameWolfmother - Wolfmother - 05 - Apple Tree - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size6940842 - Total Time210311 - Date Modified2012-08-18T19:33:57Z - Date Added2012-08-18T19:33:12Z - Bit Rate263 - Sample Rate44100 - Persistent ID4A738AE128F2F7CF - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2005%20-%20Apple%20Tree.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6921 - - Track ID6921 - NameWolfmother - Wolfmother - 06 - Joker & The Thief - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size9441097 - Total Time280555 - Date Modified2012-08-18T19:33:57Z - Date Added2012-08-18T19:33:12Z - Bit Rate268 - Sample Rate44100 - Persistent ID0950B2BC1F7F4BE5 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2006%20-%20Joker%20&%20The%20Thief.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6923 - - Track ID6923 - NameWolfmother - Wolfmother - 07 - Colossal - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size10360603 - Total Time304666 - Date Modified2012-08-18T19:33:58Z - Date Added2012-08-18T19:33:12Z - Bit Rate271 - Sample Rate44100 - Persistent IDB999F90491092B29 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2007%20-%20Colossal.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6925 - - Track ID6925 - NameWolfmother - Wolfmother - 08 - Mind's Eye - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size9949881 - Total Time294112 - Date Modified2012-08-18T19:33:58Z - Date Added2012-08-18T19:33:12Z - Bit Rate270 - Sample Rate44100 - Persistent IDBBE0DE3AAC8D5CE8 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2008%20-%20Mind's%20Eye.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6927 - - Track ID6927 - NameWolfmother - Wolfmother - 09 - Pyramid - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size8683992 - Total Time268747 - Date Modified2012-08-18T19:33:58Z - Date Added2012-08-18T19:33:12Z - Bit Rate258 - Sample Rate44100 - Persistent ID0CA45458CA9BC4DB - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2009%20-%20Pyramid.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6929 - - Track ID6929 - NameWolfmother - Wolfmother - 10 - Witchcraft - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size6898973 - Total Time205505 - Date Modified2012-08-18T19:33:58Z - Date Added2012-08-18T19:33:12Z - Bit Rate268 - Sample Rate44100 - Persistent ID382C0EF1D8E35F8A - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2010%20-%20Witchcraft.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6931 - - Track ID6931 - NameWolfmother - Wolfmother - 11 - Tales - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size7321907 - Total Time219506 - Date Modified2012-08-18T19:33:59Z - Date Added2012-08-18T19:33:12Z - Bit Rate266 - Sample Rate44100 - Persistent ID90B8C9736801482A - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2011%20-%20Tales.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6933 - - Track ID6933 - NameWolfmother - Wolfmother - 12 - Love Train - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size5385858 - Total Time183066 - Date Modified2012-08-18T19:33:59Z - Date Added2012-08-18T19:33:12Z - Bit Rate234 - Sample Rate44100 - Persistent IDB72D4B6E42D27B75 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2012%20-%20Love%20Train.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6935 - - Track ID6935 - NameWolfmother - Wolfmother - 13 - Vagabond - ArtistWolfmother - Album ArtistWolfmother - AlbumWolfmother - KindMPEG audio file - Size7260841 - Total Time230295 - Date Modified2012-08-18T19:33:59Z - Date Added2012-08-18T19:33:12Z - Bit Rate251 - Sample Rate44100 - Persistent ID05D43B1EBCA4CB77 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Wolfmother%20-%20Wolfmother/Wolfmother%20-%20Wolfmother%20-%2013%20-%20Vagabond.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6937 - - Track ID6937 - NamePure Morning - ArtistPlacebo - KindMPEG audio file - Size6110900 - Total Time254615 - Date Modified2001-07-13T14:14:38Z - Date Added2012-08-18T19:35:01Z - Bit Rate192 - Sample Rate44100 - Persistent ID4BB7FA78CFDD4DB9 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Placebo%20-%20Pure%20Morning.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6939 - - Track ID6939 - NamePoetic Ammo - 21 - Ammunition Check [Feat. Dave Childs] - ArtistPoetic Ammo - AlbumIt's A Nice Day to Be Alive - Genredefault - KindMPEG audio file - Size4716544 - Total Time294713 - Track Number21 - Date Modified2001-04-05T19:01:26Z - Date Added2012-08-18T19:35:01Z - Bit Rate128 - Sample Rate44100 - Persistent IDD37F05297D802F91 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Poetic%20Ammo%20-%20Ammunition%20Check.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6941 - - Track ID6941 - NameAll For You - ArtistSister Hazel - GenreRock - KindMPEG audio file - Size3500536 - Total Time218775 - Date Modified2000-08-02T01:06:34Z - Date Added2012-08-18T19:35:01Z - Bit Rate128 - Sample Rate44100 - Persistent IDD1CF69259917B693 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Sister%20Hazel%20-%20All%20For%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6943 - - Track ID6943 - NamePower Struggle - ArtistSunna - AlbumOne Minute Science - GenreAlternative - KindMPEG audio file - Size5792101 - Total Time241319 - Year2000 - Date Modified2000-09-05T20:02:34Z - Date Added2012-08-18T19:35:02Z - Bit Rate192 - Sample Rate44100 - Persistent IDFDC1A45FCFED1F58 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Sunna%20-%20Power%20Struggle.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6945 - - Track ID6945 - NameCornershop - Brim Full of Asha - KindMPEG audio file - Size5026896 - Total Time314880 - Date Modified2000-03-28T02:22:52Z - Date Added2012-08-18T19:35:02Z - Bit Rate128 - Sample Rate44100 - Persistent ID4282A0CAE6987368 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Cornershop%20-%20Brim%20Full%20of%20Asha.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6947 - - Track ID6947 - NameDandy Warhols - Bohemian Like You - KindMPEG audio file - Size3387032 - Total Time211670 - Date Modified2000-10-05T05:23:42Z - Date Added2012-08-18T19:35:02Z - Bit Rate128 - Sample Rate44100 - Persistent ID201DF0B374D09C3C - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Dandy%20Warhols%20-%20Bohemian%20Like%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6949 - - Track ID6949 - NameGod Lives Underwater - All Wrong - KindMPEG audio file - Size7069320 - Total Time294530 - Date Modified2001-06-12T16:29:40Z - Date Added2012-08-18T19:35:02Z - Bit Rate192 - Sample Rate44100 - Persistent ID1934095F9ED3C63C - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/God%20Lives%20Underwater%20-%20%20All%20Wrong.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6951 - - Track ID6951 - NameBlue on Black - ArtistKenny Wayne Shepherd - AlbumTrouble Is - GenrePop - KindMPEG audio file - Size7934665 - Total Time330605 - Year1999 - Date Modified2000-01-04T02:19:06Z - Date Added2012-08-18T19:35:02Z - Bit Rate192 - Sample Rate44100 - Comments, AG# 8A21CAF5 - Persistent ID0E3ADE990E2DC841 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Kenny%20Wayne%20Shepherd%20-%20Blue%20on%20Black.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6953 - - Track ID6953 - NameMaybe Tomorrow - ArtistMesh StL - AlbumLowercase - GenreRock - KindMPEG audio file - Size4820765 - Total Time241031 - Year2001 - Date Modified2002-08-26T02:58:44Z - Date Added2012-08-18T19:35:02Z - Bit Rate160 - Sample Rate44100 - Commentswww.meshmusic.com - Persistent ID5F7793E94AD88635 - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Mesh%20-%20Maybe%20Tomorrow.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6955 - - Track ID6955 - NameForget to Remember - ArtistMudvayne - AlbumPromo Only Modern Rock August - GenreRock - KindMPEG audio file - Size6708387 - Total Time212140 - Track Number7 - Track Count21 - Year2005 - Date Modified2006-03-24T00:35:29Z - Date Added2012-08-18T19:35:02Z - Bit Rate252 - Sample Rate44100 - CommentsScans for pr00f ;> - Play Count1 - Play Date3428985286 - Play Date UTC2012-08-28T11:54:46Z - Persistent IDB0065CDCBA04F79D - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Mudvayne%20-%20Forget%20to%20Remember.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6957 - - Track ID6957 - NameHey Bartender - ArtistHed PE - KindMPEG audio file - Size10994544 - Total Time274860 - Track Number1 - Date Modified2001-02-14T02:31:30Z - Date Added2012-08-18T19:37:02Z - Bit Rate320 - Sample Rate44100 - Persistent IDE0131F762E21892E - Track TypeFile - Locationfile://localhost/X:/MP3s/02.%20Rock%20-%20Alternative%20-%20Metal%20-%20Industrial/Hed%20PE%20-%20Hey%20Bartender.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6959 - - Track ID6959 - NameBobby Darin - Beyond The Sea - ArtistBobby Darin - AlbumUnknown - GenreBlues - KindMPEG audio file - Size2730946 - Total Time170657 - Date Modified1999-02-25T03:33:56Z - Date Added2012-08-18T19:37:37Z - Bit Rate128 - Sample Rate44100 - CommentsBy TaggerMp v2.30 - Persistent IDC98F5967ABBA4F36 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Bobby%20Darin%20-%20Beyond%20The%20Sea.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6961 - - Track ID6961 - NameBill Haley & His Comets - Rock Around The Clock - KindMPEG audio file - Size2093296 - Total Time131108 - Date Modified1999-03-05T01:29:34Z - Date Added2012-08-18T19:37:37Z - Bit Rate128 - Sample Rate44100 - Persistent ID01F927CDEDD929DA - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Bill%20Haley%20&%20His%20Comets%20-%20Rock%20Around%20The%20Clock.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6963 - - Track ID6963 - NameFrankie Valli & The Four Seasons - Walk Like a Man - KindMPEG audio file - Size2216019 - Total Time138501 - Date Modified2002-04-22T18:05:00Z - Date Added2012-08-18T19:37:37Z - Bit Rate128 - Sample Rate44100 - Persistent ID723AFF6A0B99C7EC - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Frankie%20Valli%20&%20The%20Four%20Seasons%20-%20Walk%20Like%20a%20Man.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6965 - - Track ID6965 - NameTurtles - Happy Together - ArtistTurtles - GenrePop - KindMPEG audio file - Size2801290 - Total Time175072 - Date Modified2000-04-01T23:10:22Z - Date Added2012-08-18T19:37:37Z - Bit Rate128 - Sample Rate44100 - Persistent ID5974A2C41CCDA2D9 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Turtles%20-%20Happy%20Together.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6967 - - Track ID6967 - NameTommy James And the Shondells - KindMPEG audio file - Size2071533 - Total Time129462 - Track Number1 - Date Modified2000-09-07T17:06:54Z - Date Added2012-08-18T19:37:37Z - Bit Rate128 - Sample Rate44100 - Persistent ID8A524FBBC305D83D - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Tommy%20James%20And%20the%20Shondells%20-%20I%20Think%20We're%20Alone%20Now.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6969 - - Track ID6969 - NameSam Cooke - (What A) Wonderful World - ArtistSam Cooke - ComposerSam Cooke, Lou Adler, Herb Alpert - AlbumPortrait Of A Legend 1951-1964 - GenreR&B - KindMPEG audio file - Size5177344 - Total Time129410 - Track Number13 - Track Count31 - Year2003 - Date Modified2011-08-12T01:39:51Z - Date Added2012-08-18T19:37:37Z - Bit Rate320 - Sample Rate44100 - CommentsEncoded by NovaMDM. - Persistent ID0D2D09AA07E31ED9 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/sam%20cooke%20-%20portrait%20of%20a%20legend%201951-1964%20-%2013%20-%20(what%20a)%20wonderful%20world.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6971 - - Track ID6971 - NameMoscow Virtuosi Vladimir Spivakov - Eine kleine Nachtmusik- Allegro - ArtistMoscow Virtuosi Vladimir Spivakov - Album ArtistMoscow Virtuosi Vladimir Spivakov - AlbumMozart - Eine Kleine Nachtmusik K.525 3 Divertimenti K. 136-138 - GenreArt/Classical - KindMPEG audio file - Size12175488 - Total Time467800 - Track Number1 - Year1990 - Date Modified2011-08-12T01:43:59Z - Date Added2012-08-18T19:37:37Z - Bit Rate208 - Sample Rate44100 - Persistent ID5503AC3AC0840E12 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/14.%20Classical/01%20-%20eine%20kleine%20nachtmusik-%20allegro.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6973 - - Track ID6973 - NameDave Clark Five - Glad All Over - KindMPEG audio file - Size2626455 - Total Time164153 - Date Modified2002-01-20T23:51:58Z - Date Added2012-08-18T19:37:37Z - Bit Rate128 - Sample Rate44100 - Persistent IDBA9D463D29F0B6EF - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Dave%20Clark%20Five/The%20History%20Of/Disc%201/Dave%20Clark%20Five%20-%20Glad%20All%20Over.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6975 - - Track ID6975 - NameGreen Day - Sassafrass Roots - ArtistGreen Day - AlbumDookie - GenrePunk Rock - KindMPEG audio file - Size5642057 - Total Time157675 - Track Number9 - Track Count14 - Year1994 - Date Modified2008-11-23T16:24:48Z - Date Added2012-08-18T19:37:37Z - Bit Rate286 - Sample Rate44100 - CommentsProduced by: Rob Cavallo & Green Day [Reprise] - Persistent ID9958070607FB1200 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/01.%20Punk%20-%20Ska%20-%20Emo/Green%20Day/Dookie%20(1994)/09%20-%20Sassafrass%20Roots.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6977 - - Track ID6977 - NameGrateful Dead - Ripple - ArtistGrateful Dead - Album ArtistThe Grateful Dead - ComposerJerry Garcia/Robert Hunter - AlbumAmerican Beauty - GenreBluegrass - KindMPEG audio file - Size8014530 - Total Time249756 - Track Number6 - Year1970 - Date Modified2011-08-12T01:46:29Z - Date Added2012-08-18T19:37:38Z - Bit Rate256 - Sample Rate44100 - Comments 000001D7 0000021F 00000C13 0000094B 000158FF 00024599 00006412 00005261 000158E8 00024599 - Sort Album ArtistGrateful Dead - Persistent IDBF9275CA09755AE7 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Grateful%20Dead%20-%2006%20-%20Ripple.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6979 - - Track ID6979 - NameStealers Wheel - Stuck in the middle with you - ArtistStealers Wheel - AlbumReservoir Dogs (Soundtrack) - KindMPEG audio file - Size4081938 - Total Time203885 - Track Number11 - Date Modified2007-01-07T00:46:06Z - Date Added2012-08-18T19:37:38Z - Bit Rate160 - Sample Rate44100 - Persistent ID84BC2C26D745D3D4 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Stealers%20Wheel%20-%20Stuck%20In%20The%20Middle%20With%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6981 - - Track ID6981 - NameRJD2 - Chicken-Bone Circuit - ArtistRJD2 - AlbumDead Ringer - GenreHip-Hop - KindMPEG audio file - Size5628836 - Total Time234527 - Year2002 - Date Modified2002-07-20T00:02:04Z - Date Added2012-08-18T19:37:38Z - Bit Rate192 - Sample Rate44100 - Comments[F.T.D] - Persistent ID298DD7F83CD7B453 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/04.%20Hip%20Hop/RJD2/RJD2%20-%20Deadringer%20(2002)/10-rjd2-chicken-bone_circuit-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6983 - - Track ID6983 - NameRonald Jenkees - Guitar Sound - ArtistRonald Jenkees - AlbumDisorganized Fun - GenreElectronic - KindMPEG audio file - Size16828459 - Total Time420649 - Track Number3 - Year2009 - BPM200 - Date Modified2009-08-27T14:10:37Z - Date Added2012-08-18T19:37:38Z - Bit Rate320 - Sample Rate44100 - CommentsCopyright 2009 Ronald Jenkees - Persistent IDEAEAAE9D22CB9061 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Ronald%20Jenkees/03._Ronald_Jenkees_-_Guitar_Sound.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6985 - - Track ID6985 - NameDeadmau5 & Kaskade - I Remember - ArtistDeadmau5 & Kaskade - AlbumPromo Only Dance Radio November - GenreDance - KindMPEG audio file - Size5660960 - Total Time230896 - Track Number10 - Track Count22 - Year2008 - Date Modified2008-11-21T02:36:00Z - Date Added2012-08-18T19:37:38Z - Bit Rate196 - Sample Rate44100 - Persistent IDF5E6D14EDCE80A0B - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/24.%20Unsorted/New%20From%20Rick/VA%20-%20Promo%20Only%20-%20Dance%20Radio%20(2008-11)/10-deadmau5_and_kaskade-i_remember.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6987 - - Track ID6987 - NameVarious Artists - Fluke 'Absurd (Whitewash Mix)' - ArtistVarious Artists - Album ArtistVA - AlbumHackers 3 - Genresoundtrack - KindMPEG audio file - Size7184384 - Total Time359183 - Track Number3 - Date Modified2010-03-13T19:59:22Z - Date Added2012-08-18T19:37:38Z - Bit Rate160 - Sample Rate44100 - Persistent IDD50F529C4B0B763B - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/Fluke%20'Absurd%20(Whitewash%20Mix)'.MP3 - File Folder Count-1 - Library Folder Count-1 - - 6989 - - Track ID6989 - NameFerry Corsten - We Belong (Radio Edit) - ArtistFerry Corsten - AlbumWe Belong - GenreTrance - KindMPEG audio file - Size7651726 - Total Time191059 - Track Number1 - Year2009 - Date Modified2009-09-24T03:26:44Z - Date Added2012-08-18T19:37:38Z - Bit Rate320 - Sample Rate44100 - CommentsUltra Records / UL2097 - Artwork Count1 - Persistent ID7396D916B852D490 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/ferry_corsten-we_belong__incl_bingo_players_remix-web-2009-wav/01-ferry_corsten-we_belong__radio_edit.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6991 - - Track ID6991 - NameThe Who - I Can't Explain - ArtistThe Who - KindMPEG audio file - Size2000186 - Total Time124368 - Date Modified2010-03-14T00:46:11Z - Date Added2012-08-18T19:37:38Z - Bit Rate128 - Sample Rate44100 - Sort ArtistWho - Sort NameWho - I Can't Explain - Persistent ID7800518A053A009F - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Who/The%20Who%20-%20I%20Can't%20Explain.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6993 - - Track ID6993 - NamePaul Oakenfold - Paul Van Dyk - Words (For Love) (Original Mix) - ArtistPaul Oakenfold - AlbumTranceport - GenreGeneral Trance - KindMPEG audio file - Size7811689 - Total Time325433 - Track Number9 - Year2001 - Date Modified2004-08-05T05:38:24Z - Date Added2012-08-18T19:37:38Z - Bit Rate192 - Sample Rate44100 - CommentsTechno makes me *so* happy!!! - Persistent ID93FE29628EA261F7 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/18.%20Justin's%20Music/Techno/Paul%20Oakenfold%20-%20Paul%20Van%20Dyk%20-%20Words%20(For%20Love)%20(Original%20Mix).mp3 - File Folder Count-1 - Library Folder Count-1 - - 6995 - - Track ID6995 - NameStardust - Music sounds better with you - ArtistStardust - Genre128 - KindMPEG audio file - Size6514851 - Total Time407170 - Year1998 - Date Modified1999-02-05T21:19:48Z - Date Added2012-08-18T19:37:38Z - Bit Rate128 - Sample Rate44100 - Comments12" club mix - Persistent IDDED8BBB125DAE6C1 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/Stardust%20-%20Music%20Sounds%20Better%20With%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6997 - - Track ID6997 - NameFerry Corsten - Punk - ArtistFerry Corsten - AlbumFuture Trance Vol 20 - GenreTrance - KindMPEG audio file - Size5186791 - Total Time216111 - Year2002 - Date Modified2002-07-01T19:59:02Z - Date Added2012-08-18T19:37:38Z - Bit Rate192 - Sample Rate44100 - CommentsTeam NBD/ Tha Best - Persistent ID6106BD5A2F9D797C - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/01.%20Compilations/05.%20Future%20Trance%20Rips/Future%20Trance%20Vol.%2020%20(2002)/214-ferry_corsten_-_punk-nbd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 6999 - - Track ID6999 - NameFatboy Slim - Praise You (Ost. Cruel Intentions) - ArtistFatboy Slim - Album ArtistFatboy Slim - AlbumSingles & Remixes 1996-2005 - GenreBig Beat - KindMPEG audio file - Size5413692 - Total Time206001 - Track Number3 - Year2005 - Date Modified2006-07-07T03:04:23Z - Date Added2012-08-18T19:37:38Z - Bit Rate210 - Sample Rate44100 - Persistent ID1140ADF3B139EC2C - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/Fatboy%20Slim/Fatboy%20Slim%20-%20Singles%20&%20Remixes%201996-2005%20(2005)/Fatboy%20Slim%20-%20Singles%20&%20Remixes%201996-2005%20(2005)%20-%2003%20-%20Praise%20You%20(Ost.%20Cruel%20Intentions).mp3 - File Folder Count-1 - Library Folder Count-1 - - 7001 - - Track ID7001 - NameKaskade - One Heart - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size9659303 - Total Time240457 - Track Number9 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:05Z - Date Added2012-08-18T19:37:38Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent ID33B8FAE690D70307 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/09%20One%20Heart.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7003 - - Track ID7003 - NameAmon Tobin - stoney street - KindMPEG audio file - Size5654860 - Total Time353410 - Date Modified2001-04-30T06:06:34Z - Date Added2012-08-18T19:37:38Z - Bit Rate128 - Sample Rate44100 - Persistent ID42DD06B549DFB12D - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/15.%20Chill%20-%20Jazz/Amon%20Tobin%20-%20stoney%20street.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7005 - - Track ID7005 - NameRJD2 - Ghostwriter - ArtistRJD2 - AlbumDead Ringer - GenreHip-Hop - KindMPEG audio file - Size7631905 - Total Time317988 - Year2002 - Date Modified2002-07-20T00:12:16Z - Date Added2012-08-18T19:37:38Z - Bit Rate192 - Sample Rate44100 - Comments[F.T.D] - Persistent ID909386EE93F89E52 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/04.%20Hip%20Hop/RJD2/RJD2%20-%20Deadringer%20(2002)/06-rjd2-ghostwriter-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7007 - - Track ID7007 - NameRJD2 - Smoke and Mirrors - ArtistRJD2 - AlbumDead Ringer - GenreHip-Hop - KindMPEG audio file - Size6390566 - Total Time266266 - Year2002 - Date Modified2002-07-20T00:23:28Z - Date Added2012-08-18T19:37:38Z - Bit Rate192 - Sample Rate44100 - Comments[F.T.D] - Persistent IDBE6529AC27756387 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/04.%20Hip%20Hop/RJD2/RJD2%20-%20Deadringer%20(2002)/03-rjd2-smoke_and_mirrors-ftd.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7009 - - Track ID7009 - NameSneaker Pimps - Six Underground - ArtistSneaker Pimps - KindMPEG audio file - Size3756066 - Total Time234109 - Date Modified2010-02-22T01:56:27Z - Date Added2012-08-18T19:37:38Z - Bit Rate128 - Sample Rate44100 - Persistent ID2DB74C8040E6C5EC - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/Sneaker%20Pimps%20-%20Six%20Underground.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7011 - - Track ID7011 - NameRob D-Clubbed To Death - KindMPEG audio file - Size7148618 - Total Time446197 - Date Modified2001-02-16T02:48:22Z - Date Added2012-08-18T19:37:38Z - Bit Rate128 - Sample Rate44100 - Persistent ID1D409D5EE2DA5BA6 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/Rob%20D-Clubbed%20To%20Death.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7013 - - Track ID7013 - NameMixed by Tall Paul - Push - Strange World - ArtistMixed by Tall Paul - AlbumMinistry of Sound Clubbers Guide to... 2001 - Genremisc - KindMPEG audio file - Size7120896 - Total Time444995 - Track Number14 - Date Modified2002-01-09T20:14:04Z - Date Added2012-08-18T19:37:38Z - Bit Rate128 - Sample Rate44100 - Persistent IDBCA7F240AEEBF38F - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/Tall%20Paul%20-%20Strange%20World.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7015 - - Track ID7015 - NameMOBY - SouthSide - KindMPEG audio file - Size7405696 - Total Time229590 - Date Modified2001-01-28T18:48:46Z - Date Added2012-08-18T19:37:38Z - Bit Rate256 - Sample Rate44100 - Persistent IDA74F8F32D99009A1 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/Moby/Moby%20(feat.%20Gwen)%20-%20SouthSide.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7017 - - Track ID7017 - NameFaces - OOH LA LA - ArtistFaces - AlbumOoh La La - GenreRock - KindMPEG audio file - Size6771996 - Total Time211617 - Track Number10 - Date Modified2006-07-07T14:59:21Z - Date Added2012-08-18T19:37:39Z - Bit Rate256 - Sample Rate44100 - Persistent IDDEE3EB2DCBB89F8E - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Faces%20-%20Ooh%20La%20La/The%20Faces%20-%20Ooh%20La%20La%20-%2010%20-%20OOH%20LA%20LA.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7019 - - Track ID7019 - NameJamiroquoi - Virtual Insanity - KindMPEG audio file - Size3607694 - Total Time225462 - Date Modified1999-02-05T13:37:58Z - Date Added2012-08-18T19:37:39Z - Bit Rate128 - Sample Rate44100 - Persistent IDBD25DF01CCFDCAAE - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/Jamiroquoi%20-%20Virtual%20Insanity.MP3 - File Folder Count-1 - Library Folder Count-1 - - 7021 - - Track ID7021 - NameRonald Jenkees - Disorganized Fun - ArtistRonald Jenkees - AlbumDisorganized Fun - GenreElectronic - KindMPEG audio file - Size10148861 - Total Time250148 - Track Number1 - Year2009 - BPM196 - Date Modified2009-08-29T20:05:12Z - Date Added2012-08-18T19:37:39Z - Bit Rate320 - Sample Rate44100 - CommentsCopyright 2009 Ronald Jenkees - Artwork Count1 - Persistent ID493EF757688A7146 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Ronald%20Jenkees/01._Ronald_Jenkees_-_Disorganized_Fun.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7023 - - Track ID7023 - NameWhite Stripes - Fell in Love With a Girl - ArtistWhite Stripes - AlbumWhite Blood Cells - GenreRock - KindMPEG audio file - Size1762243 - Total Time110132 - Date Modified2006-01-10T17:25:54Z - Date Added2012-08-18T19:37:39Z - Bit Rate128 - Sample Rate44100 - Persistent IDA7C324FB3A196CDE - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/17.%20Sadie's%20Music/White%20Stripe%20-%20Fell%20in%20Love%20With%20a%20Girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7025 - - Track ID7025 - NameDeadmau5 - Ghosts N Stuff - ArtistDeadmau5 - AlbumGhosts N Stuff - GenreHouse - KindMPEG audio file - Size14832889 - Total Time370755 - Track Number1 - Track Count1 - Year2008 - Date Modified2009-05-29T02:32:25Z - Date Added2012-08-18T19:37:39Z - Bit Rate320 - Sample Rate44100 - CommentsMau5trap / MAU5LTD-001 - Persistent ID7C90D89C535E300B - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/24.%20Unsorted/Deadmau5%20-%20Ghosts%20n%20stuff.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7027 - - Track ID7027 - NameHeavy D & The Boyz - Now That We Found Love - KindMPEG audio file - Size6215471 - Total Time258977 - Date Modified1999-09-24T21:15:34Z - Date Added2012-08-18T19:37:39Z - Bit Rate192 - Sample Rate44100 - Persistent IDA7B7FC997AB3C330 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/08.%20Rap/Heavy%20D%20&%20The%20Boyz%20-%20Now%20That%20We%20Found%20Love.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7029 - - Track ID7029 - NameBeastie Boys - Intergalactic - ArtistBeastie Boys - AlbumHello Nasty - KindMPEG audio file - Size3705754 - Total Time231601 - Track Number7 - Date Modified2005-08-28T01:23:52Z - Date Added2012-08-18T19:37:39Z - Bit Rate128 - Sample Rate44100 - Persistent IDCC491C3AB45F9A07 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/18.%20Justin's%20Music/Rap/Beastie%20Boys%20-%20Intergalactic.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7031 - - Track ID7031 - Namewww.homeofmusic.com - (fatboy slim vs rollingstones) - Artistwww.homeofmusic.com - AlbumDJ EZG - GenreHouse - KindMPEG audio file - Size5878960 - Total Time366889 - Track Number34 - Date Modified2000-02-15T21:27:20Z - Date Added2012-08-18T19:37:39Z - Bit Rate128 - Sample Rate44100 - CommentsDJ008® http://i.am/dj008 - Persistent IDF5BFFACA4FAA795E - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/Fatboy%20Slim/Fatboy%20Slim%20vs%20Rolling%20Stones%20-%20Rockerfaction%20Remix.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7033 - - Track ID7033 - NameFatboy Slim - Weapon Of Choice - ArtistFatboy Slim - AlbumHalfway Between The Gutter And - GenreRock - KindMPEG audio file - Size8286564 - Total Time345782 - Year2000 - Date Modified2001-03-27T06:45:18Z - Date Added2012-08-18T19:37:39Z - Bit Rate192 - Sample Rate44100 - Comments#Mp3Friends / Undernet - Persistent IDF6077A437724D864 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/07.%20Techno/Fatboy%20Slim/Fatboy%20Slim%20-%20Weapon%20Of%20Choice.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7035 - - Track ID7035 - NameBrian Setzer Orchestra - Jump, Jive, An' Wail - ArtistBrian Setzer Orchestra - AlbumDirty Boogie - GenreSwing - KindMPEG audio file - Size2753530 - Total Time172486 - Year1998 - Date Modified1999-02-05T13:53:00Z - Date Added2012-08-18T19:37:39Z - Bit Rate128 - Sample Rate44100 - CommentsaPC [mr_x] aPC - Persistent IDE7C2795F28218C69 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/06.%20Swing/Brian%20Setzer%20Orchestra%20-%20Jump,%20Jive,%20and%20Wail.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7037 - - Track ID7037 - NameBig Bad Voodoo Daddy - You and Me and the Bottle Makes Three Tonight - KindMPEG audio file - Size3411894 - Total Time213733 - Date Modified1999-02-05T13:54:02Z - Date Added2012-08-18T19:37:39Z - Bit Rate128 - Sample Rate44100 - Persistent IDE0EB2B2D3F59C7CB - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/06.%20Swing/Big%20Bad%20Voodoo%20Daddy%20-%20You%20and%20Me%20and%20the%20Bottle%20Makes%20Three%20Tonight.MP3 - File Folder Count-1 - Library Folder Count-1 - - 7039 - - Track ID7039 - NameThe Kinks - What I Like About You - ArtistThe Kinks - KindMPEG audio file - Size2854968 - Total Time177789 - Date Modified2010-02-22T01:55:43Z - Date Added2012-08-18T19:37:40Z - Bit Rate128 - Sample Rate44100 - Sort ArtistKinks - Sort NameKinks - What I Like About You - Persistent ID31BCCE714B85024C - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/The%20Kinks/The%20Kinks%20-%20What%20I%20Like%20About%20You.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7041 - - Track ID7041 - NameVan Halen - You Really Got Me - ArtistVan Halen - KindMPEG audio file - Size3147828 - Total Time156865 - Date Modified2010-02-22T02:03:51Z - Date Added2012-08-18T19:37:40Z - Bit Rate160 - Sample Rate44100 - Persistent ID8CACA7FCFD50C560 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/03.%20Classic%20Rock%20-%20Old%20Artists/Van%20Halen%20-%20You%20Really%20Got%20Me.MP3 - File Folder Count-1 - Library Folder Count-1 - - 7043 - - Track ID7043 - NamePilot Scott Tracy - So Strange - ArtistPilot Scott Tracy - AlbumWe Cut Loose! - GenreAlternative - KindMPEG audio file - Size3031714 - Total Time111229 - Disc Number1 - Disc Count1 - Track Number6 - Year2006 - Date Modified2009-05-29T01:36:10Z - Date Added2012-08-18T19:37:40Z - Bit Rate217 - Sample Rate44100 - Persistent ID55BD145A3B623B40 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/24.%20Unsorted/pilot%20scott%20tracy%20-%20we%20cut%20loose!%20(2006)/6.so%20strange.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7045 - - Track ID7045 - NamePendulum - Propane Nightmares - ArtistPendulum - Album ArtistPendulum - ComposerB. Burhoff/J. Ottrich/O. Froning/Rob Swire/Thompson - AlbumIn Silico - GenrePendulum - KindMPEG audio file - Size8168910 - Total Time255242 - Track Number3 - Year2008 - Date Modified2009-05-29T02:33:54Z - Date Added2012-08-18T19:37:40Z - Bit Rate256 - Sample Rate44100 - Persistent IDC1AEF9CCC5B421A4 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/24.%20Unsorted/Pendulum%20-%20Propane%20Nightmares.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7047 - - Track ID7047 - NameRatatat - One - ArtistRatatat - AlbumSample - GenreElectronic - KindMPEG audio file - Size4789858 - Total Time161828 - Disc Number1 - Track Number5 - Track Count18 - Date Modified2009-05-29T02:11:40Z - Date Added2012-08-18T19:37:40Z - Bit Rate236 - Sample Rate44100 - Persistent ID3D58C996F609DC26 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/24.%20Unsorted/Ratatat/05%20One%20-%20Ratatat.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7049 - - Track ID7049 - NameKaskade - Move for Me - ArtistKaskade - Album ArtistKaskade - AlbumStrobelite Seduction - GenreProgressive House - KindMPEG audio file - Size9534964 - Total Time237348 - Track Number1 - Track Count11 - Year2008 - Date Modified2008-05-22T14:24:01Z - Date Added2012-08-18T19:37:40Z - Bit Rate320 - Sample Rate44100 - Artwork Count1 - Persistent IDAF637D1106FC6621 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/Kaskade%20-%20Strobelight%20(2009)/01%20Move%20for%20Me.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7051 - - Track ID7051 - NameYeah Yeah Yeahs - Heads Will Roll - ArtistYeah Yeah Yeahs - Album ArtistVarious Artists - AlbumBlalock's Indie/Rock Playlist: April (2009) - GenreIndie - KindMPEG audio file - Size5351557 - Total Time222197 - Disc Number1 - Disc Count1 - Track Number43 - Year2009 - Date Modified2011-08-12T02:18:46Z - Date Added2012-08-18T19:37:40Z - Bit Rate192 - Sample Rate44100 - CommentsBlalock's Indie Rock Playlist - http://www.last.fm/group/Blalocks+Indie+Rock+Playlist - www.myspace.com/blalocksindierockplaylist - Artwork Count1 - Persistent IDF3AEA789AD81699F - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/43%20-%20Yeah%20Yeah%20Yeahs%20-%20Heads%20Will%20Roll.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7053 - - Track ID7053 - NameFranz Ferdinand - Take Me Out - ArtistFranz Ferdinand - KindMPEG audio file - Size3864416 - Total Time193201 - Date Modified2004-11-11T02:23:00Z - Date Added2012-08-18T19:37:40Z - Bit Rate160 - Sample Rate44100 - Persistent ID20635CAD6A11332D - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/24.%20Unsorted/Franz%20Ferdinand%20-%20Take%20Me%20Out.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7055 - - Track ID7055 - NamePhoenix - Lisztomania - ArtistPhoenix - Album ArtistPhoenix - AlbumWolfgang Amadeus Phoenix - Genre131 - KindMPEG audio file - Size5107712 - Total Time248450 - Track Number1 - Year2009 - Date Modified2011-08-12T02:40:41Z - Date Added2012-08-18T19:37:40Z - Bit Rate160 - Sample Rate44100 - Commentspolish-tender-hooligan.blogspot.com - Artwork Count1 - Persistent ID8BB54154AE119482 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/01-phoenix-lisztomania.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7057 - - Track ID7057 - NameThe Airborne Toxic Event - Changing - ArtistThe Airborne Toxic Event - Album ArtistThe Airborne Toxic Event - AlbumAll At Once - KindMPEG audio file - Size6390755 - Total Time201665 - Track Number3 - Track Count11 - Year2011 - Date Modified2011-08-12T02:27:51Z - Date Added2012-08-18T19:37:40Z - Bit Rate253 - Sample Rate44100 - Sort Album ArtistAirborne Toxic Event - Sort ArtistAirborne Toxic Event - Sort NameAirborne Toxic Event - Changing - Persistent IDE0BCAF011287B0D3 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/03-the_airborne_toxic_event-changing.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7059 - - Track ID7059 - NameWeezer - (If You're Wondering If I Want You To) I Want You To - ArtistWeezer - AlbumRaditude (Deluxe Edition) - GenreRock - KindMPEG audio file - Size8208383 - Total Time208483 - Disc Number1 - Disc Count2 - Track Number1 - Track Count11 - Year2009 - Date Modified2010-02-07T02:10:14Z - Date Added2012-08-18T19:37:40Z - Bit Rate314 - Sample Rate44100 - Persistent ID9A0C718F85A18163 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/01%20weezer%20(if%20youre%20wondering%20if%20i%20want%20you%20to)%20i%20want%20you%20to.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7061 - - Track ID7061 - NameFlorence + The Machine - Dog Days Are Over - ArtistFlorence + The Machine - Album ArtistFlorence and the Machine - ComposerFlorence Welch/Isabella Summers - AlbumLungs - GenreAlternative - KindMPEG audio file - Size8475341 - Total Time252917 - Disc Number1 - Disc Count1 - Track Number1 - Year2009 - Date Modified2011-08-12T02:23:54Z - Date Added2012-08-18T19:37:40Z - Bit Rate268 - Sample Rate44100 - CommentsTrack 1 - Persistent ID2AC33D5B122D8CFB - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/01%20Dog%20Days%20Are%20Over.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7063 - - Track ID7063 - NameEdward Sharpe & The Magnetic Zeros - Home - ArtistEdward Sharpe & The Magnetic Zeros - Album ArtistEdward Sharpe & the Magnetic Zeros - ComposerEdward Sharpe & the Magnetic Zeros/Jade - AlbumFrom Below - GenreRock - KindMPEG audio file - Size12257204 - Total Time306364 - Track Number6 - Year2009 - Date Modified2011-08-12T02:31:21Z - Date Added2012-08-18T19:37:40Z - Bit Rate320 - Sample Rate44100 - Persistent IDC2806B14FC17205C - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/edward%20sharpe%20&%20the%20magnetic%20zeros%20-%20%5B06%5D%20home.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7065 - - Track ID7065 - NameNo Doubt - Just a Girl - ArtistNo Doubt - Album ArtistNo Doubt - AlbumThe Singles 1992-2003 (No Doubt 2003) - GenreRock - KindMPEG audio file - Size6769570 - Total Time206001 - Track Number1 - Year2003 - Date Modified2011-08-12T02:34:54Z - Date Added2012-08-18T19:37:40Z - Bit Rate260 - Sample Rate44100 - Artwork Count1 - Sort AlbumSingles 1992-2003 (No Doubt 2003) - Persistent ID653FC7B8E4010E05 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/Incoming/01%20just%20a%20girl.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7067 - - Track ID7067 - NameChantal Kreviazuk - Leaving on a Jet Plane - KindMPEG audio file - Size5614944 - Total Time280737 - Date Modified2001-01-29T07:10:10Z - Date Added2012-08-18T19:37:40Z - Bit Rate160 - Sample Rate44100 - Persistent ID2FA35A3857C194FB - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/09.%20Pop/Chantal%20Kreviazuk%20-%20Leaving%20on%20a%20Jet%20Plane.mp3 - File Folder Count-1 - Library Folder Count-1 - - 7069 - - Track ID7069 - NameHarvey Danger - Flagpole Sitta - ArtistHarvey Danger - Albumwhere have all the mm's gone? - GenreRock - KindMPEG audio file - Size3478325 - Total Time217887 - Year1998 - Date Modified1998-08-01T11:30:42Z - Date Added2012-08-18T19:37:40Z - Bit Rate128 - Sample Rate44100 - Comments[rns]ripped-by-bonethug[rns] - Persistent IDE688946D84FADB20 - Track TypeFile - Locationfile://localhost//ds1/ds1/MP3s/09.%20Pop/Harvey%20Danger%20-%20Flagpole%20Sitta.mp3 - File Folder Count-1 - Library Folder Count-1 - - - Playlists - - - NameLibrary - Master - Playlist ID7071 - Playlist Persistent IDA17C71C7D3E6BAD6 - Visible - All Items - Playlist Items - - - Track ID5511 - - - Track ID5477 - - - Track ID5677 - - - Track ID5587 - - - Track ID5217 - - - Track ID4481 - - - Track ID3499 - - - Track ID6771 - - - Track ID6609 - - - Track ID5289 - - - Track ID2275 - - - Track ID4461 - - - Track ID4537 - - - Track ID5797 - - - Track ID4385 - - - Track ID3389 - - - Track ID2859 - - - Track ID6059 - - - Track ID6109 - - - Track ID6271 - - - Track ID6367 - - - Track ID6663 - - - Track ID3143 - - - Track ID3295 - - - Track ID6567 - - - Track ID1385 - - - Track ID6811 - - - Track ID6813 - - - Track ID6815 - - - Track ID6817 - - - Track ID6819 - - - Track ID6821 - - - Track ID6823 - - - Track ID6825 - - - Track ID6827 - - - Track ID6829 - - - Track ID6831 - - - Track ID6833 - - - Track ID6835 - - - Track ID6837 - - - Track ID1383 - - - Track ID5953 - - - Track ID5077 - - - Track ID6671 - - - Track ID5413 - - - Track ID5213 - - - Track ID5755 - - - Track ID5339 - - - Track ID6343 - - - Track ID2927 - - - Track ID2845 - - - Track ID4361 - - - Track ID2101 - - - Track ID1343 - - - Track ID6573 - - - Track ID3387 - - - Track ID1381 - - - Track ID3479 - - - Track ID3515 - - - Track ID5669 - - - Track ID7057 - - - Track ID4791 - - - Track ID2283 - - - Track ID6379 - - - Track ID4809 - - - Track ID5333 - - - Track ID5525 - - - Track ID3115 - - - Track ID6633 - - - Track ID2895 - - - Track ID3483 - - - Track ID6673 - - - Track ID2565 - - - Track ID2573 - - - Track ID1913 - - - Track ID5997 - - - Track ID2031 - - - Track ID5697 - - - Track ID3563 - - - Track ID5923 - - - Track ID4639 - - - Track ID3555 - - - Track ID5743 - - - Track ID5415 - - - Track ID2993 - - - Track ID5109 - - - Track ID5387 - - - Track ID5393 - - - Track ID5729 - - - Track ID4611 - - - Track ID3071 - - - Track ID5293 - - - Track ID5417 - - - Track ID6037 - - - Track ID6351 - - - Track ID6279 - - - Track ID6773 - - - Track ID5551 - - - Track ID4607 - - - Track ID2825 - - - Track ID6065 - - - Track ID6383 - - - Track ID6509 - - - Track ID6539 - - - Track ID4819 - - - Track ID3385 - - - Track ID6023 - - - Track ID6353 - - - Track ID6457 - - - Track ID6659 - - - Track ID3189 - - - Track ID6569 - - - Track ID3761 - - - Track ID4825 - - - Track ID1781 - - - Track ID6057 - - - Track ID6237 - - - Track ID4469 - - - Track ID5623 - - - Track ID1969 - - - Track ID2251 - - - Track ID4521 - - - Track ID3427 - - - Track ID3465 - - - Track ID3509 - - - Track ID3487 - - - Track ID3539 - - - Track ID3021 - - - Track ID6775 - - - Track ID3013 - - - Track ID2883 - - - Track ID6297 - - - Track ID6389 - - - Track ID6503 - - - Track ID3321 - - - Track ID6611 - - - Track ID6603 - - - Track ID3419 - - - Track ID3459 - - - Track ID3061 - - - Track ID6129 - - - Track ID5713 - - - Track ID4567 - - - Track ID3023 - - - Track ID1957 - - - Track ID6497 - - - Track ID6315 - - - Track ID6721 - - - Track ID1293 - - - Track ID1295 - - - Track ID1389 - - - Track ID1387 - - - Track ID1391 - - - Track ID4115 - - - Track ID5723 - - - Track ID4141 - - - Track ID4219 - - - Track ID4347 - - - Track ID4379 - - - Track ID5839 - - - Track ID5083 - - - Track ID5097 - - - Track ID5505 - - - Track ID2997 - - - Track ID5513 - - - Track ID2357 - - - Track ID3771 - - - Track ID5979 - - - Track ID2879 - - - Track ID5233 - - - Track ID6047 - - - Track ID4545 - - - Track ID6137 - - - Track ID6777 - - - Track ID2995 - - - Track ID5207 - - - Track ID5593 - - - Track ID5915 - - - Track ID5747 - - - Track ID5283 - - - Track ID4813 - - - Track ID2003 - - - Track ID1999 - - - Track ID2001 - - - Track ID4373 - - - Track ID5881 - - - Track ID6267 - - - Track ID6415 - - - Track ID6467 - - - Track ID6661 - - - Track ID6571 - - - Track ID5995 - - - Track ID3149 - - - Track ID5861 - - - Track ID4359 - - - Track ID7029 - - - Track ID2103 - - - Track ID2105 - - - Track ID2107 - - - Track ID5249 - - - Track ID6093 - - - Track ID6049 - - - Track ID5103 - - - Track ID5117 - - - Track ID3713 - - - Track ID3715 - - - Track ID3787 - - - Track ID3789 - - - Track ID3797 - - - Track ID3805 - - - Track ID3811 - - - Track ID3749 - - - Track ID3743 - - - Track ID3747 - - - Track ID3751 - - - Track ID3745 - - - Track ID3755 - - - Track ID3741 - - - Track ID3721 - - - Track ID3719 - - - Track ID3723 - - - Track ID3957 - - - Track ID3959 - - - Track ID3961 - - - Track ID3963 - - - Track ID3965 - - - Track ID3967 - - - Track ID3971 - - - Track ID3951 - - - Track ID3947 - - - Track ID3949 - - - Track ID3953 - - - Track ID3955 - - - Track ID3973 - - - Track ID3975 - - - Track ID3977 - - - Track ID3979 - - - Track ID3791 - - - Track ID3795 - - - Track ID3733 - - - Track ID3731 - - - Track ID3737 - - - Track ID3735 - - - Track ID3727 - - - Track ID3729 - - - Track ID3725 - - - Track ID3739 - - - Track ID3623 - - - Track ID3625 - - - Track ID3627 - - - Track ID3629 - - - Track ID3631 - - - Track ID3621 - - - Track ID3633 - - - Track ID3635 - - - Track ID3637 - - - Track ID3639 - - - Track ID3641 - - - Track ID3643 - - - Track ID3645 - - - Track ID3647 - - - Track ID3649 - - - Track ID3651 - - - Track ID3653 - - - Track ID3655 - - - Track ID3657 - - - Track ID3659 - - - Track ID3661 - - - Track ID3663 - - - Track ID3665 - - - Track ID3667 - - - Track ID3669 - - - Track ID3671 - - - Track ID3675 - - - Track ID3673 - - - Track ID3695 - - - Track ID3677 - - - Track ID3699 - - - Track ID3679 - - - Track ID3681 - - - Track ID3683 - - - Track ID3685 - - - Track ID3687 - - - Track ID3689 - - - Track ID3691 - - - Track ID3693 - - - Track ID3697 - - - Track ID3701 - - - Track ID3703 - - - Track ID3705 - - - Track ID3707 - - - Track ID3709 - - - Track ID3711 - - - Track ID3717 - - - Track ID2109 - - - Track ID1611 - - - Track ID4147 - - - Track ID2111 - - - Track ID2113 - - - Track ID2115 - - - Track ID1339 - - - Track ID5265 - - - Track ID2815 - - - Track ID3025 - - - Track ID3599 - - - Track ID3027 - - - Track ID6779 - - - Track ID2091 - - - Track ID6561 - - - Track ID2925 - - - Track ID3097 - - - Track ID2117 - - - Track ID4619 - - - Track ID4263 - - - Track ID5897 - - - Track ID2119 - - - Track ID5957 - - - Track ID5857 - - - Track ID1261 - - - Track ID3489 - - - Track ID2361 - - - Track ID2581 - - - Track ID2267 - - - Track ID3491 - - - Track ID2599 - - - Track ID2399 - - - Track ID2919 - - - Track ID6617 - - - Track ID2035 - - - Track ID4433 - - - Track ID4549 - - - Track ID2985 - - - Track ID5499 - - - Track ID3825 - - - Track ID2121 - - - Track ID2123 - - - Track ID3827 - - - Track ID6959 - - - Track ID2591 - - - Track ID3615 - - - Track ID2125 - - - Track ID3829 - - - Track ID6677 - - - Track ID3349 - - - Track ID5377 - - - Track ID5391 - - - Track ID4185 - - - Track ID4313 - - - Track ID4739 - - - Track ID5919 - - - Track ID4253 - - - Track ID6613 - - - Track ID7035 - - - Track ID4573 - - - Track ID2037 - - - Track ID5389 - - - Track ID6061 - - - Track ID6527 - - - Track ID5629 - - - Track ID5907 - - - Track ID5969 - - - Track ID6429 - - - Track ID6013 - - - Track ID5423 - - - Track ID6325 - - - Track ID5037 - - - Track ID5105 - - - Track ID5877 - - - Track ID5555 - - - Track ID5435 - - - Track ID6781 - - - Track ID1873 - - - Track ID2515 - - - Track ID2475 - - - Track ID5007 - - - Track ID1297 - - - Track ID1779 - - - Track ID1729 - - - Track ID1731 - - - Track ID2593 - - - Track ID3831 - - - Track ID4635 - - - Track ID5047 - - - Track ID5161 - - - Track ID3277 - - - Track ID2933 - - - Track ID5707 - - - Track ID1673 - - - Track ID5651 - - - Track ID5653 - - - Track ID5255 - - - Track ID6081 - - - Track ID3283 - - - Track ID6541 - - - Track ID4789 - - - Track ID4797 - - - Track ID5023 - - - Track ID1263 - - - Track ID5009 - - - Track ID1247 - - - Track ID2611 - - - Track ID2083 - - - Track ID6507 - - - Track ID3835 - - - Track ID5759 - - - Track ID6283 - - - Track ID1259 - - - Track ID3137 - - - Track ID4563 - - - Track ID3075 - - - Track ID3523 - - - Track ID5201 - - - Track ID4239 - - - Track ID4255 - - - Track ID1941 - - - Track ID1907 - - - Track ID2551 - - - Track ID2835 - - - Track ID6535 - - - Track ID5893 - - - Track ID5311 - - - Track ID5419 - - - Track ID5717 - - - Track ID6153 - - - Track ID4731 - - - Track ID3593 - - - Track ID6605 - - - Track ID5779 - - - Track ID5563 - - - Track ID6649 - - - Track ID5305 - - - Track ID5153 - - - Track ID2127 - - - Track ID2129 - - - Track ID6783 - - - Track ID3029 - - - Track ID1935 - - - Track ID4367 - - - Track ID1265 - - - Track ID6155 - - - Track ID5531 - - - Track ID5447 - - - Track ID5533 - - - Track ID5781 - - - Track ID6107 - - - Track ID6369 - - - Track ID5911 - - - Track ID5735 - - - Track ID5819 - - - Track ID4737 - - - Track ID2041 - - - Track ID5955 - - - Track ID5829 - - - Track ID5345 - - - Track ID2131 - - - Track ID5359 - - - Track ID2929 - - - Track ID5211 - - - Track ID5403 - - - Track ID4191 - - - Track ID4319 - - - Track ID5585 - - - Track ID5841 - - - Track ID5739 - - - Track ID2781 - - - Track ID5515 - - - Track ID3503 - - - Track ID4471 - - - Track ID6375 - - - Track ID1927 - - - Track ID1987 - - - Track ID5451 - - - Track ID5271 - - - Track ID5905 - - - Track ID6265 - - - Track ID4821 - - - Track ID5347 - - - Track ID6893 - - - Track ID6891 - - - Track ID2575 - - - Track ID2483 - - - Track ID2377 - - - Track ID2537 - - - Track ID5461 - - - Track ID5135 - - - Track ID6031 - - - Track ID5895 - - - Track ID2315 - - - Track ID2133 - - - Track ID2135 - - - Track ID2981 - - - Track ID5205 - - - Track ID2963 - - - Track ID2973 - - - Track ID5177 - - - Track ID5583 - - - Track ID5913 - - - Track ID5691 - - - Track ID4195 - - - Track ID4323 - - - Track ID4209 - - - Track ID4337 - - - Track ID2777 - - - Track ID2785 - - - Track ID2789 - - - Track ID2793 - - - Track ID2805 - - - Track ID5609 - - - Track ID2811 - - - Track ID2799 - - - Track ID5727 - - - Track ID5381 - - - Track ID5529 - - - Track ID5641 - - - Track ID6483 - - - Track ID6165 - - - Track ID3159 - - - Track ID5405 - - - Track ID5491 - - - Track ID5503 - - - Track ID5711 - - - Track ID5725 - - - Track ID4227 - - - Track ID4229 - - - Track ID1905 - - - Track ID2137 - - - Track ID2139 - - - Track ID2605 - - - Track ID4231 - - - Track ID4233 - - - Track ID2141 - - - Track ID2143 - - - Track ID2145 - - - Track ID2147 - - - Track ID2149 - - - Track ID2151 - - - Track ID2153 - - - Track ID6717 - - - Track ID5463 - - - Track ID5887 - - - Track ID3557 - - - Track ID6183 - - - Track ID5899 - - - Track ID2947 - - - Track ID3119 - - - Track ID3431 - - - Track ID3469 - - - Track ID5125 - - - Track ID6015 - - - Track ID3311 - - - Track ID5449 - - - Track ID4173 - - - Track ID4301 - - - Track ID6009 - - - Track ID6713 - - - Track ID1955 - - - Track ID4429 - - - Track ID3453 - - - Track ID3323 - - - Track ID4401 - - - Track ID6145 - - - Track ID6711 - - - Track ID3175 - - - Track ID2327 - - - Track ID2155 - - - Track ID6179 - - - Track ID2901 - - - Track ID3031 - - - Track ID6803 - - - Track ID6805 - - - Track ID3151 - - - Track ID5483 - - - Track ID5643 - - - Track ID2345 - - - Track ID2349 - - - Track ID2405 - - - Track ID4713 - - - Track ID4719 - - - Track ID4705 - - - Track ID4701 - - - Track ID4715 - - - Track ID4727 - - - Track ID4717 - - - Track ID4723 - - - Track ID4721 - - - Track ID4725 - - - Track ID4703 - - - Track ID4709 - - - Track ID4711 - - - Track ID4707 - - - Track ID1681 - - - Track ID5987 - - - Track ID5627 - - - Track ID2915 - - - Track ID4937 - - - Track ID4939 - - - Track ID4941 - - - Track ID4943 - - - Track ID4945 - - - Track ID4947 - - - Track ID4949 - - - Track ID4951 - - - Track ID4953 - - - Track ID4955 - - - Track ID4957 - - - Track ID4961 - - - Track ID4963 - - - Track ID4965 - - - Track ID4959 - - - Track ID4979 - - - Track ID4981 - - - Track ID4983 - - - Track ID4967 - - - Track ID4969 - - - Track ID4971 - - - Track ID4973 - - - Track ID4975 - - - Track ID4977 - - - Track ID7025 - - - Track ID2043 - - - Track ID4935 - - - Track ID4985 - - - Track ID4987 - - - Track ID4989 - - - Track ID4991 - - - Track ID4993 - - - Track ID4995 - - - Track ID4997 - - - Track ID4999 - - - Track ID5001 - - - Track ID5003 - - - Track ID5005 - - - Track ID6985 - - - Track ID2029 - - - Track ID6399 - - - Track ID5241 - - - Track ID2937 - - - Track ID2833 - - - Track ID5243 - - - Track ID3193 - - - Track ID3069 - - - Track ID5279 - - - Track ID4225 - - - Track ID4353 - - - Track ID2809 - - - Track ID2977 - - - Track ID2413 - - - Track ID1361 - - - Track ID5341 - - - Track ID6693 - - - Track ID4577 - - - Track ID5421 - - - Track ID5043 - - - Track ID5457 - - - Track ID6259 - - - Track ID3297 - - - Track ID6357 - - - Track ID4513 - - - Track ID4515 - - - Track ID5337 - - - Track ID3301 - - - Track ID5033 - - - Track ID6161 - - - Track ID5951 - - - Track ID5605 - - - Track ID5703 - - - Track ID3859 - - - Track ID3365 - - - Track ID5151 - - - Track ID6087 - - - Track ID4729 - - - Track ID5357 - - - Track ID5453 - - - Track ID6785 - - - Track ID6119 - - - Track ID6287 - - - Track ID5649 - - - Track ID5327 - - - Track ID4483 - - - Track ID1319 - - - Track ID1363 - - - Track ID6003 - - - Track ID3187 - - - Track ID2157 - - - Track ID2159 - - - Track ID4801 - - - Track ID6303 - - - Track ID5057 - - - Track ID6481 - - - Track ID6039 - - - Track ID5439 - - - Track ID6439 - - - Track ID3357 - - - Track ID3591 - - - Track ID5561 - - - Track ID1967 - - - Track ID4507 - - - Track ID4389 - - - Track ID3275 - - - Track ID6545 - - - Track ID4407 - - - Track ID2821 - - - Track ID3125 - - - Track ID5365 - - - Track ID6231 - - - Track ID6385 - - - Track ID5659 - - - Track ID5859 - - - Track ID6435 - - - Track ID6589 - - - Track ID5261 - - - Track ID6135 - - - Track ID3589 - - - Track ID5051 - - - Track ID5965 - - - Track ID6071 - - - Track ID6215 - - - Track ID4509 - - - Track ID3109 - - - Track ID4159 - - - Track ID5245 - - - Track ID5445 - - - Track ID4497 - - - Track ID6697 - - - Track ID1933 - - - Track ID6413 - - - Track ID6409 - - - Track ID5657 - - - Track ID2829 - - - Track ID6025 - - - Track ID6077 - - - Track ID6243 - - - Track ID6349 - - - Track ID6437 - - - Track ID6637 - - - Track ID3135 - - - Track ID3279 - - - Track ID6551 - - - Track ID4449 - - - Track ID5053 - - - Track ID5253 - - - Track ID6005 - - - Track ID4495 - - - Track ID1961 - - - Track ID3063 - - - Track ID5069 - - - Track ID2773 - - - Track ID3081 - - - Track ID4405 - - - Track ID1869 - - - Track ID4399 - - - Track ID6425 - - - Track ID5679 - - - Track ID5137 - - - Track ID6197 - - - Track ID3585 - - - Track ID6029 - - - Track ID3285 - - - Track ID4131 - - - Track ID6007 - - - Track ID4235 - - - Track ID4283 - - - Track ID2953 - - - Track ID5133 - - - Track ID5303 - - - Track ID5543 - - - Track ID6085 - - - Track ID6453 - - - Track ID3055 - - - Track ID3067 - - - Track ID5981 - - - Track ID5071 - - - Track ID5931 - - - Track ID5701 - - - Track ID5831 - - - Track ID1867 - - - Track ID5089 - - - Track ID4585 - - - Track ID6209 - - - Track ID1615 - - - Track ID1919 - - - Track ID1605 - - - Track ID1609 - - - Track ID1617 - - - Track ID1625 - - - Track ID1629 - - - Track ID1637 - - - Track ID1641 - - - Track ID1651 - - - Track ID1659 - - - Track ID1663 - - - Track ID1671 - - - Track ID1675 - - - Track ID1679 - - - Track ID1683 - - - Track ID1693 - - - Track ID1523 - - - Track ID1525 - - - Track ID1527 - - - Track ID1529 - - - Track ID1531 - - - Track ID1533 - - - Track ID1535 - - - Track ID1537 - - - Track ID1539 - - - Track ID1541 - - - Track ID1543 - - - Track ID1545 - - - Track ID1547 - - - Track ID1549 - - - Track ID1551 - - - Track ID1553 - - - Track ID1555 - - - Track ID1557 - - - Track ID1559 - - - Track ID1561 - - - Track ID1563 - - - Track ID1565 - - - Track ID1567 - - - Track ID1569 - - - Track ID1571 - - - Track ID1573 - - - Track ID1575 - - - Track ID1577 - - - Track ID1579 - - - Track ID1581 - - - Track ID1583 - - - Track ID1585 - - - Track ID1587 - - - Track ID1589 - - - Track ID1591 - - - Track ID1593 - - - Track ID1595 - - - Track ID1597 - - - Track ID1599 - - - Track ID1601 - - - Track ID1603 - - - Track ID1513 - - - Track ID1485 - - - Track ID1463 - - - Track ID1477 - - - Track ID1497 - - - Track ID1451 - - - Track ID1447 - - - Track ID1505 - - - Track ID1443 - - - Track ID1471 - - - Track ID1439 - - - Track ID1435 - - - Track ID1445 - - - Track ID1521 - - - Track ID1509 - - - Track ID1459 - - - Track ID1515 - - - Track ID1501 - - - Track ID1455 - - - Track ID1517 - - - Track ID1489 - - - Track ID1475 - - - Track ID1495 - - - Track ID1465 - - - Track ID1433 - - - Track ID1479 - - - Track ID1519 - - - Track ID1437 - - - Track ID1429 - - - Track ID1469 - - - Track ID1487 - - - Track ID1473 - - - Track ID1507 - - - Track ID1461 - - - Track ID1457 - - - Track ID1425 - - - Track ID1449 - - - Track ID1499 - - - Track ID1483 - - - Track ID1441 - - - Track ID1511 - - - Track ID1453 - - - Track ID1491 - - - Track ID1423 - - - Track ID1427 - - - Track ID1431 - - - Track ID1493 - - - Track ID1503 - - - Track ID1481 - - - Track ID1467 - - - Track ID5541 - - - Track ID5889 - - - Track ID2831 - - - Track ID4363 - - - Track ID6017 - - - Track ID5879 - - - Track ID4583 - - - Track ID6627 - - - Track ID3105 - - - Track ID6529 - - - Track ID2161 - - - Track ID4417 - - - Track ID6207 - - - Track ID4553 - - - Track ID4535 - - - Track ID6515 - - - Track ID5675 - - - Track ID4171 - - - Track ID4299 - - - Track ID4245 - - - Track ID4249 - - - Track ID6667 - - - Track ID5777 - - - Track ID5845 - - - Track ID4237 - - - Track ID5795 - - - Track ID1909 - - - Track ID4377 - - - Track ID3303 - - - Track ID6317 - - - Track ID4493 - - - Track ID6319 - - - Track ID6619 - - - Track ID6557 - - - Track ID2853 - - - Track ID6073 - - - Track ID5765 - - - Track ID5035 - - - Track ID4129 - - - Track ID5111 - - - Track ID5163 - - - Track ID4827 - - - Track ID2467 - - - Track ID2849 - - - Track ID4447 - - - Track ID3073 - - - Track ID5617 - - - Track ID5849 - - - Track ID4631 - - - Track ID3551 - - - Track ID4137 - - - Track ID4747 - - - Track ID1371 - - - Track ID5693 - - - Track ID2801 - - - Track ID1621 - - - Track ID5315 - - - Track ID4383 - - - Track ID2921 - - - Track ID2813 - - - Track ID6067 - - - Track ID6289 - - - Track ID6337 - - - Track ID6685 - - - Track ID3117 - - - Track ID3263 - - - Track ID6591 - - - Track ID1233 - - - Track ID6339 - - - Track ID3173 - - - Track ID5665 - - - Track ID6263 - - - Track ID6459 - - - Track ID3421 - - - Track ID5079 - - - Track ID5175 - - - Track ID5209 - - - Track ID4199 - - - Track ID4327 - - - Track ID3289 - - - Track ID1357 - - - Track ID5741 - - - Track ID5789 - - - Track ID3861 - - - Track ID6255 - - - Track ID1643 - - - Track ID4805 - - - Track ID4817 - - - Track ID7063 - - - Track ID5263 - - - Track ID3865 - - - Track ID2543 - - - Track ID2539 - - - Track ID2163 - - - Track ID6021 - - - Track ID5067 - - - Track ID2841 - - - Track ID6053 - - - Track ID3337 - - - Track ID6581 - - - Track ID3869 - - - Track ID1255 - - - Track ID6141 - - - Track ID4543 - - - Track ID4369 - - - Track ID1903 - - - Track ID6615 - - - Track ID2279 - - - Track ID2429 - - - Track ID5317 - - - Track ID1267 - - - Track ID2517 - - - Track ID6323 - - - Track ID7017 - - - Track ID6387 - - - Track ID3347 - - - Track ID2609 - - - Track ID1687 - - - Track ID1631 - - - Track ID7033 - - - Track ID6999 - - - Track ID3019 - - - Track ID6787 - - - Track ID2877 - - - Track ID6203 - - - Track ID2165 - - - Track ID5287 - - - Track ID3455 - - - Track ID3033 - - - Track ID6997 - - - Track ID2885 - - - Track ID6493 - - - Track ID3331 - - - Track ID6593 - - - Track ID6989 - - - Track ID1995 - - - Track ID6211 - - - Track ID6695 - - - Track ID3511 - - - Track ID4733 - - - Track ID2569 - - - Track ID2271 - - - Track ID1347 - - - Track ID2577 - - - Track ID3307 - - - Track ID2045 - - - Track ID4539 - - - Track ID3449 - - - Track ID5407 - - - Track ID4517 - - - Track ID4815 - - - Track ID7061 - - - Track ID6301 - - - Track ID2875 - - - Track ID5523 - - - Track ID2167 - - - Track ID2169 - - - Track ID6475 - - - Track ID5301 - - - Track ID5937 - - - Track ID3035 - - - Track ID5259 - - - Track ID5227 - - - Track ID6063 - - - Track ID5961 - - - Track ID7053 - - - Track ID2863 - - - Track ID5947 - - - Track ID5837 - - - Track ID2983 - - - Track ID5183 - - - Track ID5479 - - - Track ID5611 - - - Track ID4215 - - - Track ID4343 - - - Track ID2967 - - - Track ID2975 - - - Track ID2961 - - - Track ID5815 - - - Track ID4475 - - - Track ID5321 - - - Track ID4519 - - - Track ID5123 - - - Track ID6019 - - - Track ID1699 - - - Track ID5805 - - - Track ID2999 - - - Track ID5219 - - - Track ID5517 - - - Track ID5613 - - - Track ID5943 - - - Track ID5527 - - - Track ID5773 - - - Track ID6397 - - - Track ID3167 - - - Track ID5361 - - - Track ID6359 - - - Track ID2171 - - - Track ID3425 - - - Track ID3463 - - - Track ID3089 - - - Track ID1875 - - - Track ID4403 - - - Track ID3519 - - - Track ID3875 - - - Track ID3877 - - - Track ID1269 - - - Track ID1899 - - - Track ID5369 - - - Track ID6245 - - - Track ID1965 - - - Track ID5323 - - - Track ID6123 - - - Track ID1879 - - - Track ID5865 - - - Track ID5985 - - - Track ID5631 - - - Track ID4859 - - - Track ID4861 - - - Track ID4863 - - - Track ID4865 - - - Track ID4867 - - - Track ID4869 - - - Track ID4871 - - - Track ID4873 - - - Track ID4875 - - - Track ID4877 - - - Track ID4879 - - - Track ID4881 - - - Track ID3525 - - - Track ID4531 - - - Track ID1369 - - - Track ID5547 - - - Track ID2439 - - - Track ID6393 - - - Track ID2443 - - - Track ID2403 - - - Track ID5115 - - - Track ID5221 - - - Track ID5519 - - - Track ID5761 - - - Track ID5853 - - - Track ID4439 - - - Track ID6099 - - - Track ID1239 - - - Track ID2173 - - - Track ID2965 - - - Track ID4617 - - - Track ID4179 - - - Track ID4307 - - - Track ID4261 - - - Track ID5179 - - - Track ID2175 - - - Track ID2177 - - - Track ID6977 - - - Track ID1991 - - - Track ID1993 - - - Track ID3195 - - - Track ID3197 - - - Track ID3199 - - - Track ID3201 - - - Track ID3203 - - - Track ID3205 - - - Track ID3207 - - - Track ID3209 - - - Track ID3211 - - - Track ID3213 - - - Track ID3215 - - - Track ID3217 - - - Track ID3219 - - - Track ID2613 - - - Track ID2615 - - - Track ID2617 - - - Track ID2529 - - - Track ID2289 - - - Track ID2619 - - - Track ID2479 - - - Track ID2621 - - - Track ID6975 - - - Track ID2623 - - - Track ID2625 - - - Track ID2627 - - - Track ID2629 - - - Track ID2631 - - - Track ID2633 - - - Track ID2635 - - - Track ID2637 - - - Track ID2639 - - - Track ID2477 - - - Track ID2641 - - - Track ID2643 - - - Track ID2645 - - - Track ID2647 - - - Track ID2649 - - - Track ID2527 - - - Track ID2651 - - - Track ID2653 - - - Track ID2655 - - - Track ID2657 - - - Track ID2659 - - - Track ID2661 - - - Track ID2663 - - - Track ID2665 - - - Track ID2667 - - - Track ID2669 - - - Track ID2671 - - - Track ID2673 - - - Track ID2675 - - - Track ID2677 - - - Track ID2679 - - - Track ID2507 - - - Track ID2681 - - - Track ID2493 - - - Track ID2683 - - - Track ID2685 - - - Track ID2397 - - - Track ID2687 - - - Track ID3395 - - - Track ID3401 - - - Track ID3397 - - - Track ID3405 - - - Track ID3399 - - - Track ID3407 - - - Track ID3409 - - - Track ID3415 - - - Track ID3413 - - - Track ID3403 - - - Track ID3411 - - - Track ID3393 - - - Track ID3221 - - - Track ID3223 - - - Track ID3225 - - - Track ID3227 - - - Track ID3229 - - - Track ID3231 - - - Track ID3233 - - - Track ID3235 - - - Track ID3237 - - - Track ID3239 - - - Track ID3241 - - - Track ID3243 - - - Track ID3245 - - - Track ID3247 - - - Track ID3249 - - - Track ID3251 - - - Track ID3253 - - - Track ID3255 - - - Track ID1235 - - - Track ID5637 - - - Track ID6229 - - - Track ID3093 - - - Track ID2441 - - - Track ID5851 - - - Track ID5699 - - - Track ID3147 - - - Track ID5975 - - - Track ID2303 - - - Track ID5011 - - - Track ID1249 - - - Track ID2179 - - - Track ID2181 - - - Track ID2183 - - - Track ID6533 - - - Track ID2843 - - - Track ID5803 - - - Track ID5949 - - - Track ID4579 - - - Track ID3609 - - - Track ID2949 - - - Track ID5073 - - - Track ID5167 - - - Track ID5573 - - - Track ID5999 - - - Track ID5903 - - - Track ID6461 - - - Track ID4527 - - - Track ID5663 - - - Track ID5575 - - - Track ID5275 - - - Track ID5281 - - - Track ID4647 - - - Track ID2957 - - - Track ID5099 - - - Track ID4829 - - - Track ID6487 - - - Track ID7069 - - - Track ID5661 - - - Track ID3083 - - - Track ID4749 - - - Track ID4751 - - - Track ID4753 - - - Track ID4755 - - - Track ID4757 - - - Track ID4759 - - - Track ID4761 - - - Track ID4763 - - - Track ID4765 - - - Track ID4767 - - - Track ID4769 - - - Track ID5081 - - - Track ID5375 - - - Track ID5579 - - - Track ID4287 - - - Track ID4609 - - - Track ID4623 - - - Track ID4629 - - - Track ID4643 - - - Track ID4197 - - - Track ID4325 - - - Track ID4213 - - - Track ID4341 - - - Track ID4189 - - - Track ID4317 - - - Track ID5813 - - - Track ID4529 - - - Track ID6105 - - - Track ID3447 - - - Track ID6957 - - - Track ID5367 - - - Track ID5559 - - - Track ID5671 - - - Track ID6043 - - - Track ID6095 - - - Track ID3287 - - - Track ID1271 - - - Track ID2185 - - - Track ID3879 - - - Track ID2865 - - - Track ID2951 - - - Track ID5799 - - - Track ID6635 - - - Track ID1639 - - - Track ID2047 - - - Track ID4811 - - - Track ID4169 - - - Track ID4297 - - - Track ID5885 - - - Track ID2917 - - - Track ID4503 - - - Track ID5075 - - - Track ID6405 - - - Track ID3379 - - - Track ID1677 - - - Track ID6051 - - - Track ID5909 - - - Track ID5351 - - - Track ID5467 - - - Track ID5549 - - - Track ID4463 - - - Track ID4375 - - - Track ID2857 - - - Track ID6669 - - - Track ID3191 - - - Track ID6001 - - - Track ID2603 - - - Track ID1335 - - - Track ID2531 - - - Track ID2187 - - - Track ID4441 - - - Track ID3003 - - - Track ID5307 - - - Track ID5577 - - - Track ID5769 - - - Track ID5855 - - - Track ID5045 - - - Track ID5941 - - - Track ID5397 - - - Track ID1325 - - - Track ID5299 - - - Track ID6199 - - - Track ID5409 - - - Track ID6035 - - - Track ID5927 - - - Track ID2445 - - - Track ID2991 - - - Track ID5195 - - - Track ID4247 - - - Track ID2431 - - - Track ID4139 - - - Track ID2189 - - - Track ID2191 - - - Track ID1667 - - - Track ID2889 - - - Track ID6629 - - - Track ID5791 - - - Track ID4587 - - - Track ID4589 - - - Track ID4591 - - - Track ID4593 - - - Track ID4595 - - - Track ID4597 - - - Track ID4599 - - - Track ID4601 - - - Track ID4603 - - - Track ID5635 - - - Track ID6167 - - - Track ID6587 - - - Track ID2911 - - - Track ID1623 - - - Track ID1691 - - - Track ID2193 - - - Track ID2195 - - - Track ID2197 - - - Track ID3271 - - - Track ID5603 - - - Track ID4275 - - - Track ID2199 - - - Track ID2851 - - - Track ID2839 - - - Track ID5039 - - - Track ID5131 - - - Track ID5867 - - - Track ID5329 - - - Track ID5793 - - - Track ID1633 - - - Track ID1657 - - - Track ID6171 - - - Track ID6121 - - - Track ID3887 - - - Track ID5537 - - - Track ID6865 - - - Track ID6867 - - - Track ID6869 - - - Track ID6871 - - - Track ID6873 - - - Track ID6875 - - - Track ID6877 - - - Track ID6879 - - - Track ID6881 - - - Track ID6883 - - - Track ID6885 - - - Track ID6887 - - - Track ID6889 - - - Track ID4505 - - - Track ID4425 - - - Track ID3391 - - - Track ID5091 - - - Track ID2509 - - - Track ID6789 - - - Track ID2899 - - - Track ID3177 - - - Track ID4823 - - - Track ID1953 - - - Track ID1889 - - - Track ID3893 - - - Track ID6131 - - - Track ID3343 - - - Track ID3537 - - - Track ID3011 - - - Track ID6505 - - - Track ID4421 - - - Track ID1985 - - - Track ID5065 - - - Track ID3329 - - - Track ID6639 - - - Track ID5189 - - - Track ID4181 - - - Track ID4309 - - - Track ID2807 - - - Track ID4269 - - - Track ID1877 - - - Track ID5215 - - - Track ID3065 - - - Track ID1273 - - - Track ID1275 - - - Track ID2201 - - - Track ID2203 - - - Track ID6185 - - - Track ID2567 - - - Track ID2409 - - - Track ID5055 - - - Track ID4561 - - - Track ID5687 - - - Track ID6511 - - - Track ID6657 - - - Track ID4523 - - - Track ID3363 - - - Track ID3037 - - - Track ID6791 - - - Track ID7049 - - - Track ID2007 - - - Track ID2009 - - - Track ID2011 - - - Track ID2013 - - - Track ID2015 - - - Track ID2017 - - - Track ID2019 - - - Track ID2021 - - - Track ID7001 - - - Track ID2023 - - - Track ID2025 - - - Track ID3281 - - - Track ID2049 - - - Track ID4741 - - - Track ID6313 - - - Track ID4499 - - - Track ID6951 - - - Track ID5021 - - - Track ID5041 - - - Track ID4133 - - - Track ID4175 - - - Track ID4303 - - - Track ID2205 - - - Track ID5331 - - - Track ID6223 - - - Track ID1257 - - - Track ID2285 - - - Track ID2339 - - - Track ID2587 - - - Track ID2253 - - - Track ID1871 - - - Track ID7039 - - - Track ID2323 - - - Track ID2561 - - - Track ID3313 - - - Track ID6583 - - - Track ID6489 - - - Track ID2823 - - - Track ID4625 - - - Track ID3371 - - - Track ID4511 - - - Track ID2923 - - - Track ID5763 - - - Track ID6655 - - - Track ID2207 - - - Track ID2381 - - - Track ID2309 - - - Track ID1373 - - - Track ID2277 - - - Track ID2589 - - - Track ID2579 - - - Track ID2519 - - - Track ID2513 - - - Track ID1975 - - - Track ID1349 - - - Track ID5187 - - - Track ID4161 - - - Track ID4289 - - - Track ID4795 - - - Track ID3497 - - - Track ID6793 - - - Track ID3333 - - - Track ID2893 - - - Track ID5127 - - - Track ID4427 - - - Track ID1997 - - - Track ID6273 - - - Track ID3309 - - - Track ID4443 - - - Track ID3373 - - - Track ID6411 - - - Track ID4575 - - - Track ID3913 - - - Track ID3925 - - - Track ID3773 - - - Track ID3885 - - - Track ID3945 - - - Track ID3883 - - - Track ID3531 - - - Track ID1215 - - - Track ID1207 - - - Track ID1209 - - - Track ID1211 - - - Track ID1213 - - - Track ID1217 - - - Track ID1203 - - - Track ID1205 - - - Track ID1783 - - - Track ID1785 - - - Track ID1787 - - - Track ID1789 - - - Track ID1791 - - - Track ID1793 - - - Track ID1795 - - - Track ID1797 - - - Track ID1799 - - - Track ID1801 - - - Track ID1803 - - - Track ID1805 - - - Track ID1807 - - - Track ID1809 - - - Track ID1173 - - - Track ID1189 - - - Track ID1191 - - - Track ID1193 - - - Track ID1195 - - - Track ID1197 - - - Track ID1199 - - - Track ID1201 - - - Track ID1219 - - - Track ID1221 - - - Track ID1223 - - - Track ID1225 - - - Track ID1227 - - - Track ID1229 - - - Track ID1161 - - - Track ID1159 - - - Track ID1157 - - - Track ID1175 - - - Track ID1177 - - - Track ID1179 - - - Track ID1181 - - - Track ID1183 - - - Track ID2463 - - - Track ID1185 - - - Track ID1187 - - - Track ID1237 - - - Track ID1163 - - - Track ID1165 - - - Track ID1167 - - - Track ID1169 - - - Track ID2597 - - - Track ID2313 - - - Track ID1171 - - - Track ID1645 - - - Track ID3355 - - - Track ID1367 - - - Track ID2341 - - - Track ID2583 - - - Track ID2481 - - - Track ID6839 - - - Track ID1365 - - - Track ID6841 - - - Track ID6843 - - - Track ID6845 - - - Track ID6847 - - - Track ID6849 - - - Track ID6851 - - - Track ID1333 - - - Track ID6853 - - - Track ID6855 - - - Track ID6857 - - - Track ID6859 - - - Track ID6861 - - - Track ID6863 - - - Track ID6701 - - - Track ID2209 - - - Track ID2545 - - - Track ID6441 - - - Track ID5325 - - - Track ID2435 - - - Track ID6807 - - - Track ID6665 - - - Track ID4745 - - - Track ID5843 - - - Track ID3001 - - - Track ID5455 - - - Track ID6261 - - - Track ID6363 - - - Track ID4125 - - - Track ID5465 - - - Track ID3305 - - - Track ID6543 - - - Track ID1619 - - - Track ID3553 - - - Track ID2087 - - - Track ID3903 - - - Track ID2211 - - - Track ID2213 - - - Track ID3481 - - - Track ID1277 - - - Track ID3607 - - - Track ID5199 - - - Track ID5507 - - - Track ID4265 - - - Track ID4271 - - - Track ID5169 - - - Track ID6097 - - - Track ID6469 - - - Track ID3583 - - - Track ID3987 - - - Track ID6257 - - - Track ID3053 - - - Track ID3377 - - - Track ID4489 - - - Track ID6275 - - - Track ID3605 - - - Track ID3017 - - - Track ID2887 - - - Track ID3327 - - - Track ID4501 - - - Track ID3161 - - - Track ID3325 - - - Track ID5149 - - - Track ID2081 - - - Track ID3367 - - - Track ID6169 - - - Track ID6643 - - - Track ID3099 - - - Track ID3437 - - - Track ID3467 - - - Track ID3039 - - - Track ID6391 - - - Track ID3169 - - - Track ID6501 - - - Track ID5013 - - - Track ID1251 - - - Track ID6159 - - - Track ID6599 - - - Track ID3991 - - - Track ID3533 - - - Track ID5425 - - - Track ID3601 - - - Track ID2215 - - - Track ID2055 - - - Track ID6553 - - - Track ID5639 - - - Track ID4525 - - - Track ID1291 - - - Track ID6305 - - - Track ID6549 - - - Track ID1883 - - - Track ID4581 - - - Track ID4453 - - - Track ID4135 - - - Track ID5181 - - - Track ID5785 - - - Track ID6479 - - - Track ID3619 - - - Track ID3613 - - - Track ID4671 - - - Track ID1375 - - - Track ID5625 - - - Track ID6069 - - - Track ID6327 - - - Track ID3111 - - - Track ID2819 - - - Track ID6427 - - - Track ID5061 - - - Track ID5229 - - - Track ID6239 - - - Track ID3293 - - - Track ID6147 - - - Track ID6417 - - - Track ID3091 - - - Track ID6953 - - - Track ID2541 - - - Track ID2317 - - - Track ID2437 - - - Track ID2331 - - - Track ID2571 - - - Track ID2369 - - - Track ID2427 - - - Track ID2447 - - - Track ID2391 - - - Track ID2453 - - - Track ID1689 - - - Track ID1665 - - - Track ID2057 - - - Track ID5443 - - - Track ID6579 - - - Track ID2891 - - - Track ID3153 - - - Track ID6163 - - - Track ID3315 - - - Track ID3603 - - - Track ID6079 - - - Track ID2945 - - - Track ID6563 - - - Track ID6291 - - - Track ID5863 - - - Track ID5427 - - - Track ID3445 - - - Track ID5371 - - - Track ID5569 - - - Track ID6355 - - - Track ID6547 - - - Track ID5147 - - - Track ID5335 - - - Track ID6187 - - - Track ID6033 - - - Track ID6249 - - - Track ID6341 - - - Track ID6449 - - - Track ID6647 - - - Track ID5257 - - - Track ID6075 - - - Track ID2941 - - - Track ID3121 - - - Track ID5395 - - - Track ID5809 - - - Track ID3127 - - - Track ID5157 - - - Track ID2363 - - - Track ID2555 - - - Track ID5145 - - - Track ID3131 - - - Track ID2053 - - - Track ID5237 - - - Track ID6045 - - - Track ID4431 - - - Track ID5049 - - - Track ID5165 - - - Track ID4357 - - - Track ID5113 - - - Track ID7013 - - - Track ID3981 - - - Track ID6041 - - - Track ID1653 - - - Track ID5991 - - - Track ID1299 - - - Track ID6247 - - - Track ID5873 - - - Track ID5251 - - - Track ID2059 - - - Track ID5121 - - - Track ID3291 - - - Track ID4771 - - - Track ID4773 - - - Track ID4775 - - - Track ID4777 - - - Track ID4779 - - - Track ID4781 - - - Track ID4783 - - - Track ID5027 - - - Track ID1243 - - - Track ID1241 - - - Track ID6971 - - - Track ID2093 - - - Track ID2827 - - - Track ID3507 - - - Track ID6285 - - - Track ID6485 - - - Track ID6955 - - - Track ID2061 - - - Track ID2359 - - - Track ID2343 - - - Track ID2373 - - - Track ID2375 - - - Track ID3417 - - - Track ID4487 - - - Track ID2217 - - - Track ID6631 - - - Track ID6555 - - - Track ID1627 - - - Track ID6133 - - - Track ID6687 - - - Track ID1649 - - - Track ID6715 - - - Track ID3907 - - - Track ID6621 - - - Track ID6703 - - - Track ID5029 - - - Track ID6377 - - - Track ID4435 - - - Track ID5539 - - - Track ID5343 - - - Track ID1337 - - - Track ID2335 - - - Track ID5971 - - - Track ID6575 - - - Track ID6277 - - - Track ID3155 - - - Track ID6675 - - - Track ID3317 - - - Track ID2411 - - - Track ID2503 - - - Track ID2465 - - - Track ID2355 - - - Track ID2075 - - - Track ID7065 - - - Track ID3375 - - - Track ID2389 - - - Track ID2689 - - - Track ID2287 - - - Track ID2347 - - - Track ID2351 - - - Track ID2533 - - - Track ID2959 - - - Track ID5373 - - - Track ID5615 - - - Track ID5745 - - - Track ID4285 - - - Track ID4621 - - - Track ID4633 - - - Track ID4641 - - - Track ID4193 - - - Track ID4321 - - - Track ID5173 - - - Track ID4201 - - - Track ID4329 - - - Track ID2787 - - - Track ID5193 - - - Track ID4277 - - - Track ID5811 - - - Track ID2219 - - - Track ID2855 - - - Track ID1305 - - - Track ID1303 - - - Track ID1309 - - - Track ID1747 - - - Track ID1733 - - - Track ID1301 - - - Track ID1735 - - - Track ID1307 - - - Track ID1741 - - - Track ID1743 - - - Track ID1745 - - - Track ID1749 - - - Track ID1737 - - - Track ID1739 - - - Track ID1753 - - - Track ID1751 - - - Track ID4455 - - - Track ID5807 - - - Track ID3611 - - - Track ID3353 - - - Track ID3157 - - - Track ID4395 - - - Track ID4477 - - - Track ID2407 - - - Track ID2495 - - - Track ID2293 - - - Track ID2461 - - - Track ID2521 - - - Track ID2379 - - - Track ID2417 - - - Track ID4541 - - - Track ID2425 - - - Track ID5925 - - - Track ID4413 - - - Track ID5129 - - - Track ID3113 - - - Track ID2557 - - - Track ID3495 - - - Track ID6683 - - - Track ID5437 - - - Track ID2487 - - - Track ID5591 - - - Track ID2943 - - - Track ID4151 - - - Track ID5633 - - - Track ID6477 - - - Track ID6401 - - - Track ID3269 - - - Track ID1971 - - - Track ID3265 - - - Track ID2455 - - - Track ID6521 - - - Track ID4787 - - - Track ID3911 - - - Track ID6607 - - - Track ID3351 - - - Track ID1931 - - - Track ID6993 - - - Track ID1915 - - - Track ID3015 - - - Track ID2871 - - - Track ID3165 - - - Track ID2221 - - - Track ID4121 - - - Track ID1701 - - - Track ID1703 - - - Track ID1705 - - - Track ID1707 - - - Track ID1709 - - - Track ID1711 - - - Track ID1713 - - - Track ID1715 - - - Track ID1717 - - - Track ID1719 - - - Track ID1721 - - - Track ID1723 - - - Track ID1725 - - - Track ID1727 - - - Track ID3339 - - - Track ID5411 - - - Track ID5093 - - - Track ID4613 - - - Track ID4207 - - - Track ID4335 - - - Track ID4569 - - - Track ID5959 - - - Track ID7045 - - - Track ID2063 - - - Track ID3381 - - - Track ID2311 - - - Track ID1341 - - - Track ID1289 - - - Track ID5143 - - - Track ID5247 - - - Track ID6365 - - - Track ID6293 - - - Track ID6709 - - - Track ID6653 - - - Track ID6055 - - - Track ID2907 - - - Track ID5225 - - - Track ID5869 - - - Track ID6531 - - - Track ID6253 - - - Track ID5487 - - - Track ID5475 - - - Track ID7055 - - - Track ID2089 - - - Track ID4451 - - - Track ID1421 - - - Track ID1419 - - - Track ID1407 - - - Track ID1399 - - - Track ID1401 - - - Track ID1403 - - - Track ID1409 - - - Track ID1393 - - - Track ID1397 - - - Track ID1395 - - - Track ID1411 - - - Track ID1405 - - - Track ID1413 - - - Track ID1417 - - - Track ID1415 - - - Track ID3059 - - - Track ID7043 - - - Track ID6103 - - - Track ID3103 - - - Track ID3057 - - - Track ID2027 - - - Track ID2065 - - - Track ID4127 - - - Track ID5489 - - - Track ID5935 - - - Track ID4165 - - - Track ID4293 - - - Track ID5835 - - - Track ID2987 - - - Track ID6937 - - - Track ID4415 - - - Track ID6241 - - - Track ID3101 - - - Track ID1377 - - - Track ID6939 - - - Track ID4485 - - - Track ID2371 - - - Track ID1921 - - - Track ID5595 - - - Track ID5681 - - - Track ID5977 - - - Track ID6091 - - - Track ID5767 - - - Track ID4437 - - - Track ID3005 - - - Track ID5119 - - - Track ID2423 - - - Track ID4615 - - - Track ID3559 - - - Track ID4157 - - - Track ID3085 - - - Track ID5599 - - - Track ID5945 - - - Track ID5833 - - - Track ID3573 - - - Track ID4241 - - - Track ID4259 - - - Track ID3547 - - - Track ID4627 - - - Track ID4459 - - - Track ID4551 - - - Track ID5385 - - - Track ID5401 - - - Track ID5933 - - - Track ID5695 - - - Track ID5731 - - - Track ID2803 - - - Track ID4793 - - - Track ID2223 - - - Track ID2225 - - - Track ID2227 - - - Track ID1323 - - - Track ID2383 - - - Track ID2367 - - - Track ID3581 - - - Track ID5429 - - - Track ID5875 - - - Track ID2817 - - - Track ID6281 - - - Track ID6331 - - - Track ID3261 - - - Track ID6523 - - - Track ID6623 - - - Track ID5571 - - - Track ID6027 - - - Track ID2229 - - - Track ID1279 - - - Track ID2231 - - - Track ID2233 - - - Track ID5553 - - - Track ID6191 - - - Track ID5901 - - - Track ID6651 - - - Track ID2559 - - - Track ID3051 - - - Track ID5459 - - - Track ID6361 - - - Track ID5775 - - - Track ID1635 - - - Track ID3087 - - - Track ID2989 - - - Track ID5715 - - - Track ID4273 - - - Track ID4645 - - - Track ID4221 - - - Track ID4349 - - - Track ID6193 - - - Track ID6177 - - - Track ID4637 - - - Track ID4167 - - - Track ID4295 - - - Track ID2779 - - - Track ID6251 - - - Track ID2903 - - - Track ID3345 - - - Track ID5601 - - - Track ID5733 - - - Track ID5821 - - - Track ID3517 - - - Track ID3439 - - - Track ID3171 - - - Track ID6213 - - - Track ID2325 - - - Track ID7047 - - - Track ID4409 - - - Track ID3587 - - - Track ID6175 - - - Track ID5063 - - - Track ID3139 - - - Track ID5363 - - - Track ID6371 - - - Track ID4799 - - - Track ID4803 - - - Track ID5031 - - - Track ID5223 - - - Track ID5967 - - - Track ID6227 - - - Track ID3267 - - - Track ID1655 - - - Track ID1697 - - - Track ID2595 - - - Track ID1327 - - - Track ID3505 - - - Track ID3257 - - - Track ID2235 - - - Track ID2237 - - - Track ID2239 - - - Track ID5783 - - - Track ID3123 - - - Track ID2909 - - - Track ID1317 - - - Track ID6981 - - - Track ID7005 - - - Track ID7007 - - - Track ID1315 - - - Track ID1313 - - - Track ID6809 - - - Track ID1939 - - - Track ID5963 - - - Track ID2505 - - - Track ID2525 - - - Track ID5647 - - - Track ID6451 - - - Track ID5431 - - - Track ID6431 - - - Track ID5231 - - - Track ID5973 - - - Track ID6225 - - - Track ID6329 - - - Track ID6525 - - - Track ID5645 - - - Track ID1669 - - - Track ID2931 - - - Track ID2869 - - - Track ID6795 - - - Track ID3423 - - - Track ID3501 - - - Track ID6395 - - - Track ID6699 - - - Track ID3915 - - - Track ID3917 - - - Track ID3919 - - - Track ID2419 - - - Track ID6233 - - - Track ID6335 - - - Track ID6433 - - - Track ID2067 - - - Track ID7021 - - - Track ID2069 - - - Track ID6983 - - - Track ID2071 - - - Track ID2073 - - - Track ID3181 - - - Track ID5171 - - - Track ID6221 - - - Track ID1613 - - - Track ID1281 - - - Track ID5705 - - - Track ID6513 - - - Track ID6419 - - - Track ID3543 - - - Track ID3335 - - - Track ID1321 - - - Track ID6969 - - - Track ID2873 - - - Track ID5355 - - - Track ID3457 - - - Track ID6491 - - - Track ID6585 - - - Track ID3923 - - - Track ID3921 - - - Track ID6797 - - - Track ID5441 - - - Track ID5297 - - - Track ID1283 - - - Track ID1285 - - - Track ID4785 - - - Track ID2837 - - - Track ID6381 - - - Track ID3273 - - - Track ID4397 - - - Track ID2913 - - - Track ID6011 - - - Track ID6423 - - - Track ID3095 - - - Track ID3259 - - - Track ID5185 - - - Track ID5589 - - - Track ID4205 - - - Track ID4333 - - - Track ID4211 - - - Track ID4339 - - - Track ID5917 - - - Track ID4355 - - - Track ID6201 - - - Track ID6373 - - - Track ID3145 - - - Track ID2255 - - - Track ID4743 - - - Track ID3435 - - - Track ID3493 - - - Track ID6151 - - - Track ID3163 - - - Track ID4163 - - - Track ID4291 - - - Track ID5667 - - - Track ID6537 - - - Track ID6333 - - - Track ID2935 - - - Track ID4465 - - - Track ID3041 - - - Track ID2299 - - - Track ID3617 - - - Track ID2241 - - - Track ID6707 - - - Track ID6295 - - - Track ID6597 - - - Track ID3077 - - - Track ID4145 - - - Track ID5273 - - - Track ID3545 - - - Track ID2775 - - - Track ID2795 - - - Track ID4281 - - - Track ID3433 - - - Track ID3461 - - - Track ID3451 - - - Track ID3485 - - - Track ID2881 - - - Track ID6173 - - - Track ID4491 - - - Track ID2861 - - - Track ID6083 - - - Track ID3471 - - - Track ID3513 - - - Track ID6941 - - - Track ID4557 - - - Track ID6205 - - - Track ID4907 - - - Track ID4909 - - - Track ID4911 - - - Track ID4913 - - - Track ID4915 - - - Track ID4917 - - - Track ID4919 - - - Track ID5025 - - - Track ID4533 - - - Track ID1231 - - - Track ID4831 - - - Track ID5823 - - - Track ID2401 - - - Track ID6905 - - - Track ID6895 - - - Track ID6897 - - - Track ID6899 - - - Track ID6901 - - - Track ID6903 - - - Track ID3473 - - - Track ID2469 - - - Track ID2393 - - - Track ID2547 - - - Track ID7009 - - - Track ID6519 - - - Track ID1647 - - - Track ID1685 - - - Track ID3597 - - - Track ID6111 - - - Track ID4387 - - - Track ID3319 - - - Track ID3529 - - - Track ID6143 - - - Track ID5567 - - - Track ID6445 - - - Track ID4419 - - - Track ID4687 - - - Track ID4689 - - - Track ID4691 - - - Track ID4693 - - - Track ID4695 - - - Track ID4697 - - - Track ID4699 - - - Track ID4673 - - - Track ID4675 - - - Track ID4677 - - - Track ID4679 - - - Track ID4681 - - - Track ID4683 - - - Track ID4685 - - - Track ID5159 - - - Track ID4149 - - - Track ID6217 - - - Track ID6149 - - - Track ID4423 - - - Track ID3179 - - - Track ID5433 - - - Track ID6577 - - - Track ID6559 - - - Track ID6909 - - - Track ID6907 - - - Track ID3079 - - - Track ID6473 - - - Track ID5545 - - - Track ID5269 - - - Track ID6101 - - - Track ID1287 - - - Track ID1353 - - - Track ID2365 - - - Track ID2535 - - - Track ID2319 - - - Track ID2321 - - - Track ID2523 - - - Track ID4445 - - - Track ID1331 - - - Track ID1329 - - - Track ID2333 - - - Track ID3927 - - - Track ID2939 - - - Track ID3133 - - - Track ID6995 - - - Track ID4467 - - - Track ID3361 - - - Track ID6979 - - - Track ID6117 - - - Track ID6443 - - - Track ID5353 - - - Track ID6115 - - - Track ID6679 - - - Track ID5709 - - - Track ID3043 - - - Track ID3045 - - - Track ID5239 - - - Track ID5883 - - - Track ID2691 - - - Track ID2693 - - - Track ID2695 - - - Track ID2697 - - - Track ID2699 - - - Track ID2701 - - - Track ID2703 - - - Track ID2705 - - - Track ID2707 - - - Track ID2709 - - - Track ID2711 - - - Track ID2713 - - - Track ID4649 - - - Track ID4651 - - - Track ID4653 - - - Track ID4655 - - - Track ID4657 - - - Track ID4659 - - - Track ID4661 - - - Track ID4663 - - - Track ID4665 - - - Track ID4667 - - - Track ID4669 - - - Track ID2747 - - - Track ID2749 - - - Track ID2751 - - - Track ID2753 - - - Track ID2755 - - - Track ID2757 - - - Track ID2759 - - - Track ID2761 - - - Track ID2763 - - - Track ID2765 - - - Track ID2767 - - - Track ID2769 - - - Track ID2771 - - - Track ID1755 - - - Track ID1757 - - - Track ID1759 - - - Track ID1761 - - - Track ID1763 - - - Track ID1765 - - - Track ID1767 - - - Track ID1769 - - - Track ID1771 - - - Track ID1773 - - - Track ID1775 - - - Track ID1777 - - - Track ID2715 - - - Track ID2717 - - - Track ID2719 - - - Track ID2721 - - - Track ID2723 - - - Track ID2725 - - - Track ID2727 - - - Track ID2729 - - - Track ID2731 - - - Track ID2733 - - - Track ID2735 - - - Track ID2737 - - - Track ID2739 - - - Track ID2741 - - - Track ID2743 - - - Track ID2745 - - - Track ID2585 - - - Track ID3521 - - - Track ID6689 - - - Track ID4123 - - - Track ID2243 - - - Track ID5139 - - - Track ID4735 - - - Track ID1355 - - - Track ID1379 - - - Track ID6943 - - - Track ID3129 - - - Track ID5349 - - - Track ID6347 - - - Track ID6625 - - - Track ID4833 - - - Track ID4835 - - - Track ID4837 - - - Track ID4839 - - - Track ID4841 - - - Track ID4843 - - - Track ID4845 - - - Track ID4847 - - - Track ID4849 - - - Track ID4851 - - - Track ID4853 - - - Track ID4855 - - - Track ID4857 - - - Track ID4883 - - - Track ID4885 - - - Track ID4887 - - - Track ID4889 - - - Track ID4891 - - - Track ID4893 - - - Track ID4895 - - - Track ID4897 - - - Track ID4899 - - - Track ID4901 - - - Track ID4903 - - - Track ID4905 - - - Track ID3429 - - - Track ID4479 - - - Track ID6127 - - - Track ID3369 - - - Track ID6799 - - - Track ID6719 - - - Track ID5939 - - - Track ID5565 - - - Track ID5087 - - - Track ID1345 - - - Track ID6565 - - - Track ID3383 - - - Track ID1311 - - - Track ID4371 - - - Track ID6299 - - - Track ID6407 - - - Track ID6705 - - - Track ID4203 - - - Track ID4331 - - - Track ID5295 - - - Track ID4155 - - - Track ID5203 - - - Track ID5291 - - - Track ID3549 - - - Track ID5101 - - - Track ID5493 - - - Track ID2245 - - - Track ID2247 - - - Track ID2249 - - - Track ID1881 - - - Track ID4547 - - - Track ID3571 - - - Track ID3141 - - - Track ID2421 - - - Track ID2511 - - - Track ID2485 - - - Track ID2337 - - - Track ID2451 - - - Track ID3535 - - - Track ID4111 - - - Track ID5313 - - - Track ID5319 - - - Track ID3441 - - - Track ID2005 - - - Track ID5771 - - - Track ID6235 - - - Track ID6345 - - - Track ID5721 - - - Track ID6455 - - - Track ID6641 - - - Track ID6189 - - - Track ID5993 - - - Track ID6465 - - - Track ID6307 - - - Track ID5107 - - - Track ID5787 - - - Track ID6125 - - - Track ID6681 - - - Track ID6113 - - - Track ID2847 - - - Track ID1253 - - - Track ID5015 - - - Track ID4243 - - - Track ID4267 - - - Track ID5155 - - - Track ID4559 - - - Track ID5673 - - - Track ID3047 - - - Track ID5557 - - - Track ID3937 - - - Track ID6195 - - - Track ID6471 - - - Track ID5277 - - - Track ID5285 - - - Track ID5753 - - - Track ID4217 - - - Track ID4345 - - - Track ID5619 - - - Track ID5383 - - - Track ID5017 - - - Track ID1245 - - - Track ID2353 - - - Track ID2433 - - - Track ID2387 - - - Track ID5059 - - - Track ID5871 - - - Track ID4365 - - - Track ID3107 - - - Track ID5235 - - - Track ID5535 - - - Track ID3595 - - - Track ID2601 - - - Track ID4381 - - - Track ID5471 - - - Track ID6447 - - - Track ID2085 - - - Track ID1989 - - - Track ID4807 - - - Track ID6421 - - - Track ID3983 - - - Track ID3985 - - - Track ID5983 - - - Track ID2897 - - - Track ID5891 - - - Track ID4457 - - - Track ID5469 - - - Track ID1695 - - - Track ID6269 - - - Track ID3299 - - - Track ID4555 - - - Track ID5095 - - - Track ID5191 - - - Track ID4177 - - - Track ID4305 - - - Track ID2797 - - - Track ID3941 - - - Track ID6965 - - - Track ID5495 - - - Track ID5929 - - - Track ID5827 - - - Track ID2563 - - - Track ID4391 - - - Track ID3527 - - - Track ID3009 - - - Track ID1351 - - - Track ID4393 - - - Track ID5737 - - - Track ID4119 - - - Track ID3567 - - - Track ID3569 - - - Track ID4107 - - - Track ID4109 - - - Track ID7041 - - - Track ID2449 - - - Track ID2955 - - - Track ID5267 - - - Track ID6181 - - - Track ID6157 - - - Track ID6321 - - - Track ID6691 - - - Track ID3341 - - - Track ID6601 - - - Track ID5655 - - - Track ID2257 - - - Track ID2259 - - - Track ID1925 - - - Track ID1897 - - - Track ID6987 - - - Track ID3007 - - - Track ID2033 - - - Track ID2385 - - - Track ID5989 - - - Track ID2395 - - - Track ID5509 - - - Track ID5757 - - - Track ID5607 - - - Track ID6645 - - - Track ID5801 - - - Track ID3359 - - - Track ID3443 - - - Track ID6311 - - - Track ID6403 - - - Track ID3183 - - - Track ID6499 - - - Track ID6219 - - - Track ID2261 - - - Track ID1607 - - - Track ID5683 - - - Track ID6595 - - - Track ID5817 - - - Track ID2301 - - - Track ID2079 - - - Track ID7059 - - - Track ID2307 - - - Track ID2263 - - - Track ID4565 - - - Track ID1661 - - - Track ID6309 - - - Track ID1359 - - - Track ID7023 - - - Track ID2553 - - - Track ID2549 - - - Track ID2297 - - - Track ID6991 - - - Track ID2265 - - - Track ID5379 - - - Track ID5485 - - - Track ID5581 - - - Track ID4187 - - - Track ID4315 - - - Track ID4117 - - - Track ID2783 - - - Track ID5399 - - - Track ID5689 - - - Track ID6801 - - - Track ID3477 - - - Track ID6911 - - - Track ID6913 - - - Track ID6915 - - - Track ID6917 - - - Track ID6919 - - - Track ID6921 - - - Track ID6923 - - - Track ID6925 - - - Track ID6927 - - - Track ID6929 - - - Track ID6931 - - - Track ID6933 - - - Track ID6935 - - - Track ID2607 - - - Track ID7031 - - - Track ID7051 - - - Track ID3541 - - - Track ID5085 - - - Track ID4223 - - - Track ID4351 - - - Track ID4251 - - - Track ID4257 - - - Track ID4279 - - - Track ID5847 - - - Track ID5751 - - - Track ID4143 - - - Track ID5621 - - - Track ID2971 - - - Track ID4153 - - - Track ID2969 - - - Track ID2979 - - - Track ID5197 - - - Track ID5921 - - - Track ID5685 - - - Track ID5749 - - - Track ID2791 - - - Track ID5481 - - - Track ID5825 - - - Track ID5473 - - - Track ID5597 - - - Track ID5501 - - - Track ID5497 - - - Track ID2905 - - - Track ID4571 - - - Track ID4183 - - - Track ID4311 - - - Track ID5019 - - - Track ID6089 - - - Track ID6463 - - - Track ID3757 - - - Track ID4411 - - - Track ID2095 - - - Track ID5141 - - - Track ID3185 - - - Track ID1811 - - - Track ID1813 - - - Track ID1815 - - - Track ID1817 - - - Track ID1819 - - - Track ID1821 - - - Track ID1823 - - - Track ID1825 - - - Track ID1827 - - - Track ID1829 - - - Track ID1831 - - - Track ID1833 - - - Track ID1835 - - - Track ID1837 - - - Track ID1839 - - - Track ID1841 - - - Track ID1843 - - - Track ID1845 - - - Track ID1847 - - - Track ID1849 - - - Track ID1851 - - - Track ID1853 - - - Track ID1855 - - - Track ID1857 - - - Track ID1859 - - - Track ID1861 - - - Track ID1863 - - - Track ID1865 - - - Track ID2457 - - - Track ID6495 - - - Track ID4473 - - - Track ID2867 - - - Track ID6139 - - - Track ID5309 - - - Track ID5521 - - - Track ID5719 - - - Track ID2097 - - - Track ID2099 - - - Track ID6517 - - - Track ID4031 - - - Track ID4033 - - - Track ID4035 - - - Track ID4037 - - - Track ID4039 - - - Track ID4041 - - - Track ID4043 - - - Track ID4045 - - - Track ID4047 - - - Track ID4049 - - - Track ID4051 - - - Track ID4053 - - - Track ID4055 - - - Track ID4057 - - - Track ID4059 - - - Track ID4061 - - - Track ID4063 - - - Track ID4065 - - - Track ID4067 - - - Track ID4069 - - - Track ID4071 - - - Track ID4073 - - - Track ID4075 - - - Track ID4077 - - - Track ID4079 - - - Track ID4081 - - - Track ID4083 - - - Track ID4085 - - - Track ID4087 - - - Track ID4089 - - - Track ID4091 - - - Track ID4093 - - - Track ID4095 - - - Track ID4097 - - - Track ID4099 - - - Track ID4101 - - - Track ID4103 - - - Track ID4105 - - - Track ID3993 - - - Track ID3995 - - - Track ID3997 - - - Track ID3999 - - - Track ID4001 - - - Track ID4003 - - - Track ID4005 - - - Track ID4007 - - - Track ID4009 - - - Track ID4011 - - - Track ID4013 - - - Track ID4015 - - - Track ID4017 - - - Track ID4019 - - - Track ID4021 - - - Track ID4023 - - - Track ID4025 - - - Track ID4027 - - - Track ID4029 - - - Track ID3579 - - - Track ID3575 - - - Track ID3577 - - - Track ID3943 - - - Track ID6747 - - - Track ID6723 - - - Track ID3759 - - - Track ID7003 - - - Track ID6749 - - - Track ID3763 - - - Track ID1947 - - - Track ID1959 - - - Track ID6725 - - - Track ID6751 - - - Track ID6727 - - - Track ID1901 - - - Track ID3765 - - - Track ID3785 - - - Track ID3767 - - - Track ID1973 - - - Track ID3769 - - - Track ID3775 - - - Track ID3777 - - - Track ID3779 - - - Track ID3781 - - - Track ID3783 - - - Track ID3815 - - - Track ID2501 - - - Track ID1949 - - - Track ID6729 - - - Track ID7037 - - - Track ID3819 - - - Track ID6961 - - - Track ID3821 - - - Track ID3823 - - - Track ID6731 - - - Track ID3833 - - - Track ID7067 - - - Track ID3837 - - - Track ID3839 - - - Track ID3841 - - - Track ID3843 - - - Track ID6733 - - - Track ID2039 - - - Track ID3813 - - - Track ID6945 - - - Track ID6753 - - - Track ID3845 - - - Track ID6755 - - - Track ID1911 - - - Track ID6947 - - - Track ID3847 - - - Track ID3849 - - - Track ID3851 - - - Track ID3853 - - - Track ID6973 - - - Track ID3855 - - - Track ID3857 - - - Track ID6757 - - - Track ID6735 - - - Track ID1963 - - - Track ID3565 - - - Track ID3561 - - - Track ID1983 - - - Track ID1945 - - - Track ID1887 - - - Track ID1917 - - - Track ID3929 - - - Track ID3863 - - - Track ID1929 - - - Track ID3867 - - - Track ID6759 - - - Track ID3871 - - - Track ID6963 - - - Track ID6761 - - - Track ID6737 - - - Track ID3873 - - - Track ID6949 - - - Track ID2489 - - - Track ID3799 - - - Track ID7027 - - - Track ID3881 - - - Track ID4605 - - - Track ID3803 - - - Track ID3801 - - - Track ID1977 - - - Track ID1923 - - - Track ID7019 - - - Track ID3889 - - - Track ID3891 - - - Track ID6739 - - - Track ID3049 - - - Track ID6741 - - - Track ID2051 - - - Track ID3895 - - - Track ID3897 - - - Track ID6763 - - - Track ID1979 - - - Track ID2291 - - - Track ID2415 - - - Track ID3899 - - - Track ID1891 - - - Track ID3901 - - - Track ID3905 - - - Track ID3807 - - - Track ID2471 - - - Track ID6743 - - - Track ID3989 - - - Track ID2281 - - - Track ID2473 - - - Track ID1885 - - - Track ID1895 - - - Track ID6765 - - - Track ID7015 - - - Track ID3475 - - - Track ID2499 - - - Track ID3809 - - - Track ID3909 - - - Track ID2273 - - - Track ID7011 - - - Track ID2269 - - - Track ID6767 - - - Track ID2497 - - - Track ID1893 - - - Track ID1981 - - - Track ID2459 - - - Track ID2305 - - - Track ID6769 - - - Track ID2295 - - - Track ID2329 - - - Track ID1951 - - - Track ID1937 - - - Track ID1943 - - - Track ID6745 - - - Track ID3935 - - - Track ID3793 - - - Track ID2491 - - - Track ID3817 - - - Track ID3931 - - - Track ID3933 - - - Track ID4921 - - - Track ID4923 - - - Track ID3753 - - - Track ID4925 - - - Track ID4927 - - - Track ID4929 - - - Track ID4931 - - - Track ID4933 - - - Track ID2077 - - - Track ID3969 - - - Track ID4113 - - - Track ID3939 - - - Track ID6967 - - - - - NameMusic - Playlist ID10060 - Playlist Persistent ID626F2A5CF010012E - Distinguished Kind4 - Music - All Items - Playlist Items - - - Track ID5511 - - - Track ID5477 - - - Track ID5677 - - - Track ID5587 - - - Track ID5217 - - - Track ID4481 - - - Track ID3499 - - - Track ID6771 - - - Track ID6609 - - - Track ID5289 - - - Track ID2275 - - - Track ID4461 - - - Track ID4537 - - - Track ID5797 - - - Track ID4385 - - - Track ID3389 - - - Track ID2859 - - - Track ID6059 - - - Track ID6109 - - - Track ID6271 - - - Track ID6367 - - - Track ID6663 - - - Track ID3143 - - - Track ID3295 - - - Track ID6567 - - - Track ID1385 - - - Track ID6811 - - - Track ID6813 - - - Track ID6815 - - - Track ID6817 - - - Track ID6819 - - - Track ID6821 - - - Track ID6823 - - - Track ID6825 - - - Track ID6827 - - - Track ID6829 - - - Track ID6831 - - - Track ID6833 - - - Track ID6835 - - - Track ID6837 - - - Track ID1383 - - - Track ID5953 - - - Track ID5077 - - - Track ID6671 - - - Track ID5413 - - - Track ID5213 - - - Track ID5755 - - - Track ID5339 - - - Track ID6343 - - - Track ID2927 - - - Track ID2845 - - - Track ID4361 - - - Track ID2101 - - - Track ID1343 - - - Track ID6573 - - - Track ID3387 - - - Track ID1381 - - - Track ID3479 - - - Track ID3515 - - - Track ID5669 - - - Track ID7057 - - - Track ID4791 - - - Track ID2283 - - - Track ID6379 - - - Track ID4809 - - - Track ID5333 - - - Track ID5525 - - - Track ID3115 - - - Track ID6633 - - - Track ID2895 - - - Track ID3483 - - - Track ID6673 - - - Track ID2565 - - - Track ID2573 - - - Track ID1913 - - - Track ID5997 - - - Track ID2031 - - - Track ID5697 - - - Track ID3563 - - - Track ID5923 - - - Track ID4639 - - - Track ID3555 - - - Track ID5743 - - - Track ID5415 - - - Track ID2993 - - - Track ID5109 - - - Track ID5387 - - - Track ID5393 - - - Track ID5729 - - - Track ID4611 - - - Track ID3071 - - - Track ID5293 - - - Track ID5417 - - - Track ID6037 - - - Track ID6351 - - - Track ID6279 - - - Track ID6773 - - - Track ID5551 - - - Track ID4607 - - - Track ID2825 - - - Track ID6065 - - - Track ID6383 - - - Track ID6509 - - - Track ID6539 - - - Track ID4819 - - - Track ID3385 - - - Track ID6023 - - - Track ID6353 - - - Track ID6457 - - - Track ID6659 - - - Track ID3189 - - - Track ID6569 - - - Track ID3761 - - - Track ID4825 - - - Track ID1781 - - - Track ID6057 - - - Track ID6237 - - - Track ID4469 - - - Track ID5623 - - - Track ID1969 - - - Track ID2251 - - - Track ID4521 - - - Track ID3427 - - - Track ID3465 - - - Track ID3509 - - - Track ID3487 - - - Track ID3539 - - - Track ID3021 - - - Track ID6775 - - - Track ID3013 - - - Track ID2883 - - - Track ID6297 - - - Track ID6389 - - - Track ID6503 - - - Track ID3321 - - - Track ID6611 - - - Track ID6603 - - - Track ID3419 - - - Track ID3459 - - - Track ID3061 - - - Track ID6129 - - - Track ID5713 - - - Track ID4567 - - - Track ID3023 - - - Track ID1957 - - - Track ID6497 - - - Track ID6315 - - - Track ID6721 - - - Track ID1293 - - - Track ID1295 - - - Track ID1389 - - - Track ID1387 - - - Track ID1391 - - - Track ID4115 - - - Track ID5723 - - - Track ID4141 - - - Track ID4219 - - - Track ID4347 - - - Track ID4379 - - - Track ID5839 - - - Track ID5083 - - - Track ID5097 - - - Track ID5505 - - - Track ID2997 - - - Track ID5513 - - - Track ID2357 - - - Track ID3771 - - - Track ID5979 - - - Track ID2879 - - - Track ID5233 - - - Track ID6047 - - - Track ID4545 - - - Track ID6137 - - - Track ID6777 - - - Track ID2995 - - - Track ID5207 - - - Track ID5593 - - - Track ID5915 - - - Track ID5747 - - - Track ID5283 - - - Track ID4813 - - - Track ID2003 - - - Track ID1999 - - - Track ID2001 - - - Track ID4373 - - - Track ID5881 - - - Track ID6267 - - - Track ID6415 - - - Track ID6467 - - - Track ID6661 - - - Track ID6571 - - - Track ID5995 - - - Track ID3149 - - - Track ID5861 - - - Track ID4359 - - - Track ID7029 - - - Track ID2103 - - - Track ID2105 - - - Track ID2107 - - - Track ID5249 - - - Track ID6093 - - - Track ID6049 - - - Track ID5103 - - - Track ID5117 - - - Track ID3713 - - - Track ID3715 - - - Track ID3787 - - - Track ID3789 - - - Track ID3797 - - - Track ID3805 - - - Track ID3811 - - - Track ID3749 - - - Track ID3743 - - - Track ID3747 - - - Track ID3751 - - - Track ID3745 - - - Track ID3755 - - - Track ID3741 - - - Track ID3721 - - - Track ID3719 - - - Track ID3723 - - - Track ID3957 - - - Track ID3959 - - - Track ID3961 - - - Track ID3963 - - - Track ID3965 - - - Track ID3967 - - - Track ID3971 - - - Track ID3951 - - - Track ID3947 - - - Track ID3949 - - - Track ID3953 - - - Track ID3955 - - - Track ID3973 - - - Track ID3975 - - - Track ID3977 - - - Track ID3979 - - - Track ID3791 - - - Track ID3795 - - - Track ID3733 - - - Track ID3731 - - - Track ID3737 - - - Track ID3735 - - - Track ID3727 - - - Track ID3729 - - - Track ID3725 - - - Track ID3739 - - - Track ID3623 - - - Track ID3625 - - - Track ID3627 - - - Track ID3629 - - - Track ID3631 - - - Track ID3621 - - - Track ID3633 - - - Track ID3635 - - - Track ID3637 - - - Track ID3639 - - - Track ID3641 - - - Track ID3643 - - - Track ID3645 - - - Track ID3647 - - - Track ID3649 - - - Track ID3651 - - - Track ID3653 - - - Track ID3655 - - - Track ID3657 - - - Track ID3659 - - - Track ID3661 - - - Track ID3663 - - - Track ID3665 - - - Track ID3667 - - - Track ID3669 - - - Track ID3671 - - - Track ID3675 - - - Track ID3673 - - - Track ID3695 - - - Track ID3677 - - - Track ID3699 - - - Track ID3679 - - - Track ID3681 - - - Track ID3683 - - - Track ID3685 - - - Track ID3687 - - - Track ID3689 - - - Track ID3691 - - - Track ID3693 - - - Track ID3697 - - - Track ID3701 - - - Track ID3703 - - - Track ID3705 - - - Track ID3707 - - - Track ID3709 - - - Track ID3711 - - - Track ID3717 - - - Track ID2109 - - - Track ID1611 - - - Track ID4147 - - - Track ID2111 - - - Track ID2113 - - - Track ID2115 - - - Track ID1339 - - - Track ID5265 - - - Track ID2815 - - - Track ID3025 - - - Track ID3599 - - - Track ID3027 - - - Track ID6779 - - - Track ID2091 - - - Track ID6561 - - - Track ID2925 - - - Track ID3097 - - - Track ID2117 - - - Track ID4619 - - - Track ID4263 - - - Track ID5897 - - - Track ID2119 - - - Track ID5957 - - - Track ID5857 - - - Track ID1261 - - - Track ID3489 - - - Track ID2361 - - - Track ID2581 - - - Track ID2267 - - - Track ID3491 - - - Track ID2599 - - - Track ID2399 - - - Track ID2919 - - - Track ID6617 - - - Track ID2035 - - - Track ID4433 - - - Track ID4549 - - - Track ID2985 - - - Track ID5499 - - - Track ID3825 - - - Track ID2121 - - - Track ID2123 - - - Track ID3827 - - - Track ID6959 - - - Track ID2591 - - - Track ID3615 - - - Track ID2125 - - - Track ID3829 - - - Track ID6677 - - - Track ID3349 - - - Track ID5377 - - - Track ID5391 - - - Track ID4185 - - - Track ID4313 - - - Track ID4739 - - - Track ID5919 - - - Track ID4253 - - - Track ID6613 - - - Track ID7035 - - - Track ID4573 - - - Track ID2037 - - - Track ID5389 - - - Track ID6061 - - - Track ID6527 - - - Track ID5629 - - - Track ID5907 - - - Track ID5969 - - - Track ID6429 - - - Track ID6013 - - - Track ID5423 - - - Track ID6325 - - - Track ID5037 - - - Track ID5105 - - - Track ID5877 - - - Track ID5555 - - - Track ID5435 - - - Track ID6781 - - - Track ID1873 - - - Track ID2515 - - - Track ID2475 - - - Track ID5007 - - - Track ID1297 - - - Track ID1779 - - - Track ID1729 - - - Track ID1731 - - - Track ID2593 - - - Track ID3831 - - - Track ID4635 - - - Track ID5047 - - - Track ID5161 - - - Track ID3277 - - - Track ID2933 - - - Track ID5707 - - - Track ID1673 - - - Track ID5651 - - - Track ID5653 - - - Track ID5255 - - - Track ID6081 - - - Track ID3283 - - - Track ID6541 - - - Track ID4789 - - - Track ID4797 - - - Track ID5023 - - - Track ID1263 - - - Track ID5009 - - - Track ID1247 - - - Track ID2611 - - - Track ID2083 - - - Track ID6507 - - - Track ID3835 - - - Track ID5759 - - - Track ID6283 - - - Track ID1259 - - - Track ID3137 - - - Track ID4563 - - - Track ID3075 - - - Track ID3523 - - - Track ID5201 - - - Track ID4239 - - - Track ID4255 - - - Track ID1941 - - - Track ID1907 - - - Track ID2551 - - - Track ID2835 - - - Track ID6535 - - - Track ID5893 - - - Track ID5311 - - - Track ID5419 - - - Track ID5717 - - - Track ID6153 - - - Track ID4731 - - - Track ID3593 - - - Track ID6605 - - - Track ID5779 - - - Track ID5563 - - - Track ID6649 - - - Track ID5305 - - - Track ID5153 - - - Track ID2127 - - - Track ID2129 - - - Track ID6783 - - - Track ID3029 - - - Track ID1935 - - - Track ID4367 - - - Track ID1265 - - - Track ID6155 - - - Track ID5531 - - - Track ID5447 - - - Track ID5533 - - - Track ID5781 - - - Track ID6107 - - - Track ID6369 - - - Track ID5911 - - - Track ID5735 - - - Track ID5819 - - - Track ID4737 - - - Track ID2041 - - - Track ID5955 - - - Track ID5829 - - - Track ID5345 - - - Track ID2131 - - - Track ID5359 - - - Track ID2929 - - - Track ID5211 - - - Track ID5403 - - - Track ID4191 - - - Track ID4319 - - - Track ID5585 - - - Track ID5841 - - - Track ID5739 - - - Track ID2781 - - - Track ID5515 - - - Track ID3503 - - - Track ID4471 - - - Track ID6375 - - - Track ID1927 - - - Track ID1987 - - - Track ID5451 - - - Track ID5271 - - - Track ID5905 - - - Track ID6265 - - - Track ID4821 - - - Track ID5347 - - - Track ID6893 - - - Track ID6891 - - - Track ID2575 - - - Track ID2483 - - - Track ID2377 - - - Track ID2537 - - - Track ID5461 - - - Track ID5135 - - - Track ID6031 - - - Track ID5895 - - - Track ID2315 - - - Track ID2133 - - - Track ID2135 - - - Track ID2981 - - - Track ID5205 - - - Track ID2963 - - - Track ID2973 - - - Track ID5177 - - - Track ID5583 - - - Track ID5913 - - - Track ID5691 - - - Track ID4195 - - - Track ID4323 - - - Track ID4209 - - - Track ID4337 - - - Track ID2777 - - - Track ID2785 - - - Track ID2789 - - - Track ID2793 - - - Track ID2805 - - - Track ID5609 - - - Track ID2811 - - - Track ID2799 - - - Track ID5727 - - - Track ID5381 - - - Track ID5529 - - - Track ID5641 - - - Track ID6483 - - - Track ID6165 - - - Track ID3159 - - - Track ID5405 - - - Track ID5491 - - - Track ID5503 - - - Track ID5711 - - - Track ID5725 - - - Track ID4227 - - - Track ID4229 - - - Track ID1905 - - - Track ID2137 - - - Track ID2139 - - - Track ID2605 - - - Track ID4231 - - - Track ID4233 - - - Track ID2141 - - - Track ID2143 - - - Track ID2145 - - - Track ID2147 - - - Track ID2149 - - - Track ID2151 - - - Track ID2153 - - - Track ID6717 - - - Track ID5463 - - - Track ID5887 - - - Track ID3557 - - - Track ID6183 - - - Track ID5899 - - - Track ID2947 - - - Track ID3119 - - - Track ID3431 - - - Track ID3469 - - - Track ID5125 - - - Track ID6015 - - - Track ID3311 - - - Track ID5449 - - - Track ID4173 - - - Track ID4301 - - - Track ID6009 - - - Track ID6713 - - - Track ID1955 - - - Track ID4429 - - - Track ID3453 - - - Track ID3323 - - - Track ID4401 - - - Track ID6145 - - - Track ID6711 - - - Track ID3175 - - - Track ID2327 - - - Track ID2155 - - - Track ID6179 - - - Track ID2901 - - - Track ID3031 - - - Track ID6803 - - - Track ID6805 - - - Track ID3151 - - - Track ID5483 - - - Track ID5643 - - - Track ID2345 - - - Track ID2349 - - - Track ID2405 - - - Track ID4713 - - - Track ID4719 - - - Track ID4705 - - - Track ID4701 - - - Track ID4715 - - - Track ID4727 - - - Track ID4717 - - - Track ID4723 - - - Track ID4721 - - - Track ID4725 - - - Track ID4703 - - - Track ID4709 - - - Track ID4711 - - - Track ID4707 - - - Track ID1681 - - - Track ID5987 - - - Track ID5627 - - - Track ID2915 - - - Track ID4937 - - - Track ID4939 - - - Track ID4941 - - - Track ID4943 - - - Track ID4945 - - - Track ID4947 - - - Track ID4949 - - - Track ID4951 - - - Track ID4953 - - - Track ID4955 - - - Track ID4957 - - - Track ID4961 - - - Track ID4963 - - - Track ID4965 - - - Track ID4959 - - - Track ID4979 - - - Track ID4981 - - - Track ID4983 - - - Track ID4967 - - - Track ID4969 - - - Track ID4971 - - - Track ID4973 - - - Track ID4975 - - - Track ID4977 - - - Track ID7025 - - - Track ID2043 - - - Track ID4935 - - - Track ID4985 - - - Track ID4987 - - - Track ID4989 - - - Track ID4991 - - - Track ID4993 - - - Track ID4995 - - - Track ID4997 - - - Track ID4999 - - - Track ID5001 - - - Track ID5003 - - - Track ID5005 - - - Track ID6985 - - - Track ID2029 - - - Track ID6399 - - - Track ID5241 - - - Track ID2937 - - - Track ID2833 - - - Track ID5243 - - - Track ID3193 - - - Track ID3069 - - - Track ID5279 - - - Track ID4225 - - - Track ID4353 - - - Track ID2809 - - - Track ID2977 - - - Track ID2413 - - - Track ID1361 - - - Track ID5341 - - - Track ID6693 - - - Track ID4577 - - - Track ID5421 - - - Track ID5043 - - - Track ID5457 - - - Track ID6259 - - - Track ID3297 - - - Track ID6357 - - - Track ID4513 - - - Track ID4515 - - - Track ID5337 - - - Track ID3301 - - - Track ID5033 - - - Track ID6161 - - - Track ID5951 - - - Track ID5605 - - - Track ID5703 - - - Track ID3859 - - - Track ID3365 - - - Track ID5151 - - - Track ID6087 - - - Track ID4729 - - - Track ID5357 - - - Track ID5453 - - - Track ID6785 - - - Track ID6119 - - - Track ID6287 - - - Track ID5649 - - - Track ID5327 - - - Track ID4483 - - - Track ID1319 - - - Track ID1363 - - - Track ID6003 - - - Track ID3187 - - - Track ID2157 - - - Track ID2159 - - - Track ID4801 - - - Track ID6303 - - - Track ID5057 - - - Track ID6481 - - - Track ID6039 - - - Track ID5439 - - - Track ID6439 - - - Track ID3357 - - - Track ID3591 - - - Track ID5561 - - - Track ID1967 - - - Track ID4507 - - - Track ID4389 - - - Track ID3275 - - - Track ID6545 - - - Track ID4407 - - - Track ID2821 - - - Track ID3125 - - - Track ID5365 - - - Track ID6231 - - - Track ID6385 - - - Track ID5659 - - - Track ID5859 - - - Track ID6435 - - - Track ID6589 - - - Track ID5261 - - - Track ID6135 - - - Track ID3589 - - - Track ID5051 - - - Track ID5965 - - - Track ID6071 - - - Track ID6215 - - - Track ID4509 - - - Track ID3109 - - - Track ID4159 - - - Track ID5245 - - - Track ID5445 - - - Track ID4497 - - - Track ID6697 - - - Track ID1933 - - - Track ID6413 - - - Track ID6409 - - - Track ID5657 - - - Track ID2829 - - - Track ID6025 - - - Track ID6077 - - - Track ID6243 - - - Track ID6349 - - - Track ID6437 - - - Track ID6637 - - - Track ID3135 - - - Track ID3279 - - - Track ID6551 - - - Track ID4449 - - - Track ID5053 - - - Track ID5253 - - - Track ID6005 - - - Track ID4495 - - - Track ID1961 - - - Track ID3063 - - - Track ID5069 - - - Track ID2773 - - - Track ID3081 - - - Track ID4405 - - - Track ID1869 - - - Track ID4399 - - - Track ID6425 - - - Track ID5679 - - - Track ID5137 - - - Track ID6197 - - - Track ID3585 - - - Track ID6029 - - - Track ID3285 - - - Track ID4131 - - - Track ID6007 - - - Track ID4235 - - - Track ID4283 - - - Track ID2953 - - - Track ID5133 - - - Track ID5303 - - - Track ID5543 - - - Track ID6085 - - - Track ID6453 - - - Track ID3055 - - - Track ID3067 - - - Track ID5981 - - - Track ID5071 - - - Track ID5931 - - - Track ID5701 - - - Track ID5831 - - - Track ID1867 - - - Track ID5089 - - - Track ID4585 - - - Track ID6209 - - - Track ID1615 - - - Track ID1919 - - - Track ID1605 - - - Track ID1609 - - - Track ID1617 - - - Track ID1625 - - - Track ID1629 - - - Track ID1637 - - - Track ID1641 - - - Track ID1651 - - - Track ID1659 - - - Track ID1663 - - - Track ID1671 - - - Track ID1675 - - - Track ID1679 - - - Track ID1683 - - - Track ID1693 - - - Track ID1523 - - - Track ID1525 - - - Track ID1527 - - - Track ID1529 - - - Track ID1531 - - - Track ID1533 - - - Track ID1535 - - - Track ID1537 - - - Track ID1539 - - - Track ID1541 - - - Track ID1543 - - - Track ID1545 - - - Track ID1547 - - - Track ID1549 - - - Track ID1551 - - - Track ID1553 - - - Track ID1555 - - - Track ID1557 - - - Track ID1559 - - - Track ID1561 - - - Track ID1563 - - - Track ID1565 - - - Track ID1567 - - - Track ID1569 - - - Track ID1571 - - - Track ID1573 - - - Track ID1575 - - - Track ID1577 - - - Track ID1579 - - - Track ID1581 - - - Track ID1583 - - - Track ID1585 - - - Track ID1587 - - - Track ID1589 - - - Track ID1591 - - - Track ID1593 - - - Track ID1595 - - - Track ID1597 - - - Track ID1599 - - - Track ID1601 - - - Track ID1603 - - - Track ID1513 - - - Track ID1485 - - - Track ID1463 - - - Track ID1477 - - - Track ID1497 - - - Track ID1451 - - - Track ID1447 - - - Track ID1505 - - - Track ID1443 - - - Track ID1471 - - - Track ID1439 - - - Track ID1435 - - - Track ID1445 - - - Track ID1521 - - - Track ID1509 - - - Track ID1459 - - - Track ID1515 - - - Track ID1501 - - - Track ID1455 - - - Track ID1517 - - - Track ID1489 - - - Track ID1475 - - - Track ID1495 - - - Track ID1465 - - - Track ID1433 - - - Track ID1479 - - - Track ID1519 - - - Track ID1437 - - - Track ID1429 - - - Track ID1469 - - - Track ID1487 - - - Track ID1473 - - - Track ID1507 - - - Track ID1461 - - - Track ID1457 - - - Track ID1425 - - - Track ID1449 - - - Track ID1499 - - - Track ID1483 - - - Track ID1441 - - - Track ID1511 - - - Track ID1453 - - - Track ID1491 - - - Track ID1423 - - - Track ID1427 - - - Track ID1431 - - - Track ID1493 - - - Track ID1503 - - - Track ID1481 - - - Track ID1467 - - - Track ID5541 - - - Track ID5889 - - - Track ID2831 - - - Track ID4363 - - - Track ID6017 - - - Track ID5879 - - - Track ID4583 - - - Track ID6627 - - - Track ID3105 - - - Track ID6529 - - - Track ID2161 - - - Track ID4417 - - - Track ID6207 - - - Track ID4553 - - - Track ID4535 - - - Track ID6515 - - - Track ID5675 - - - Track ID4171 - - - Track ID4299 - - - Track ID4245 - - - Track ID4249 - - - Track ID6667 - - - Track ID5777 - - - Track ID5845 - - - Track ID4237 - - - Track ID5795 - - - Track ID1909 - - - Track ID4377 - - - Track ID3303 - - - Track ID6317 - - - Track ID4493 - - - Track ID6319 - - - Track ID6619 - - - Track ID6557 - - - Track ID2853 - - - Track ID6073 - - - Track ID5765 - - - Track ID5035 - - - Track ID4129 - - - Track ID5111 - - - Track ID5163 - - - Track ID4827 - - - Track ID2467 - - - Track ID2849 - - - Track ID4447 - - - Track ID3073 - - - Track ID5617 - - - Track ID5849 - - - Track ID4631 - - - Track ID3551 - - - Track ID4137 - - - Track ID4747 - - - Track ID1371 - - - Track ID5693 - - - Track ID2801 - - - Track ID1621 - - - Track ID5315 - - - Track ID4383 - - - Track ID2921 - - - Track ID2813 - - - Track ID6067 - - - Track ID6289 - - - Track ID6337 - - - Track ID6685 - - - Track ID3117 - - - Track ID3263 - - - Track ID6591 - - - Track ID1233 - - - Track ID6339 - - - Track ID3173 - - - Track ID5665 - - - Track ID6263 - - - Track ID6459 - - - Track ID3421 - - - Track ID5079 - - - Track ID5175 - - - Track ID5209 - - - Track ID4199 - - - Track ID4327 - - - Track ID3289 - - - Track ID1357 - - - Track ID5741 - - - Track ID5789 - - - Track ID3861 - - - Track ID6255 - - - Track ID1643 - - - Track ID4805 - - - Track ID4817 - - - Track ID7063 - - - Track ID5263 - - - Track ID3865 - - - Track ID2543 - - - Track ID2539 - - - Track ID2163 - - - Track ID6021 - - - Track ID5067 - - - Track ID2841 - - - Track ID6053 - - - Track ID3337 - - - Track ID6581 - - - Track ID3869 - - - Track ID1255 - - - Track ID6141 - - - Track ID4543 - - - Track ID4369 - - - Track ID1903 - - - Track ID6615 - - - Track ID2279 - - - Track ID2429 - - - Track ID5317 - - - Track ID1267 - - - Track ID2517 - - - Track ID6323 - - - Track ID7017 - - - Track ID6387 - - - Track ID3347 - - - Track ID2609 - - - Track ID1687 - - - Track ID1631 - - - Track ID7033 - - - Track ID6999 - - - Track ID3019 - - - Track ID6787 - - - Track ID2877 - - - Track ID6203 - - - Track ID2165 - - - Track ID5287 - - - Track ID3455 - - - Track ID3033 - - - Track ID6997 - - - Track ID2885 - - - Track ID6493 - - - Track ID3331 - - - Track ID6593 - - - Track ID6989 - - - Track ID1995 - - - Track ID6211 - - - Track ID6695 - - - Track ID3511 - - - Track ID4733 - - - Track ID2569 - - - Track ID2271 - - - Track ID1347 - - - Track ID2577 - - - Track ID3307 - - - Track ID2045 - - - Track ID4539 - - - Track ID3449 - - - Track ID5407 - - - Track ID4517 - - - Track ID4815 - - - Track ID7061 - - - Track ID6301 - - - Track ID2875 - - - Track ID5523 - - - Track ID2167 - - - Track ID2169 - - - Track ID6475 - - - Track ID5301 - - - Track ID5937 - - - Track ID3035 - - - Track ID5259 - - - Track ID5227 - - - Track ID6063 - - - Track ID5961 - - - Track ID7053 - - - Track ID2863 - - - Track ID5947 - - - Track ID5837 - - - Track ID2983 - - - Track ID5183 - - - Track ID5479 - - - Track ID5611 - - - Track ID4215 - - - Track ID4343 - - - Track ID2967 - - - Track ID2975 - - - Track ID2961 - - - Track ID5815 - - - Track ID4475 - - - Track ID5321 - - - Track ID4519 - - - Track ID5123 - - - Track ID6019 - - - Track ID1699 - - - Track ID5805 - - - Track ID2999 - - - Track ID5219 - - - Track ID5517 - - - Track ID5613 - - - Track ID5943 - - - Track ID5527 - - - Track ID5773 - - - Track ID6397 - - - Track ID3167 - - - Track ID5361 - - - Track ID6359 - - - Track ID2171 - - - Track ID3425 - - - Track ID3463 - - - Track ID3089 - - - Track ID1875 - - - Track ID4403 - - - Track ID3519 - - - Track ID3875 - - - Track ID3877 - - - Track ID1269 - - - Track ID1899 - - - Track ID5369 - - - Track ID6245 - - - Track ID1965 - - - Track ID5323 - - - Track ID6123 - - - Track ID1879 - - - Track ID5865 - - - Track ID5985 - - - Track ID5631 - - - Track ID4859 - - - Track ID4861 - - - Track ID4863 - - - Track ID4865 - - - Track ID4867 - - - Track ID4869 - - - Track ID4871 - - - Track ID4873 - - - Track ID4875 - - - Track ID4877 - - - Track ID4879 - - - Track ID4881 - - - Track ID3525 - - - Track ID4531 - - - Track ID1369 - - - Track ID5547 - - - Track ID2439 - - - Track ID6393 - - - Track ID2443 - - - Track ID2403 - - - Track ID5115 - - - Track ID5221 - - - Track ID5519 - - - Track ID5761 - - - Track ID5853 - - - Track ID4439 - - - Track ID6099 - - - Track ID1239 - - - Track ID2173 - - - Track ID2965 - - - Track ID4617 - - - Track ID4179 - - - Track ID4307 - - - Track ID4261 - - - Track ID5179 - - - Track ID2175 - - - Track ID2177 - - - Track ID6977 - - - Track ID1991 - - - Track ID1993 - - - Track ID3195 - - - Track ID3197 - - - Track ID3199 - - - Track ID3201 - - - Track ID3203 - - - Track ID3205 - - - Track ID3207 - - - Track ID3209 - - - Track ID3211 - - - Track ID3213 - - - Track ID3215 - - - Track ID3217 - - - Track ID3219 - - - Track ID2613 - - - Track ID2615 - - - Track ID2617 - - - Track ID2529 - - - Track ID2289 - - - Track ID2619 - - - Track ID2479 - - - Track ID2621 - - - Track ID6975 - - - Track ID2623 - - - Track ID2625 - - - Track ID2627 - - - Track ID2629 - - - Track ID2631 - - - Track ID2633 - - - Track ID2635 - - - Track ID2637 - - - Track ID2639 - - - Track ID2477 - - - Track ID2641 - - - Track ID2643 - - - Track ID2645 - - - Track ID2647 - - - Track ID2649 - - - Track ID2527 - - - Track ID2651 - - - Track ID2653 - - - Track ID2655 - - - Track ID2657 - - - Track ID2659 - - - Track ID2661 - - - Track ID2663 - - - Track ID2665 - - - Track ID2667 - - - Track ID2669 - - - Track ID2671 - - - Track ID2673 - - - Track ID2675 - - - Track ID2677 - - - Track ID2679 - - - Track ID2507 - - - Track ID2681 - - - Track ID2493 - - - Track ID2683 - - - Track ID2685 - - - Track ID2397 - - - Track ID2687 - - - Track ID3395 - - - Track ID3401 - - - Track ID3397 - - - Track ID3405 - - - Track ID3399 - - - Track ID3407 - - - Track ID3409 - - - Track ID3415 - - - Track ID3413 - - - Track ID3403 - - - Track ID3411 - - - Track ID3393 - - - Track ID3221 - - - Track ID3223 - - - Track ID3225 - - - Track ID3227 - - - Track ID3229 - - - Track ID3231 - - - Track ID3233 - - - Track ID3235 - - - Track ID3237 - - - Track ID3239 - - - Track ID3241 - - - Track ID3243 - - - Track ID3245 - - - Track ID3247 - - - Track ID3249 - - - Track ID3251 - - - Track ID3253 - - - Track ID3255 - - - Track ID1235 - - - Track ID5637 - - - Track ID6229 - - - Track ID3093 - - - Track ID2441 - - - Track ID5851 - - - Track ID5699 - - - Track ID3147 - - - Track ID5975 - - - Track ID2303 - - - Track ID5011 - - - Track ID1249 - - - Track ID2179 - - - Track ID2181 - - - Track ID2183 - - - Track ID6533 - - - Track ID2843 - - - Track ID5803 - - - Track ID5949 - - - Track ID4579 - - - Track ID3609 - - - Track ID2949 - - - Track ID5073 - - - Track ID5167 - - - Track ID5573 - - - Track ID5999 - - - Track ID5903 - - - Track ID6461 - - - Track ID4527 - - - Track ID5663 - - - Track ID5575 - - - Track ID5275 - - - Track ID5281 - - - Track ID4647 - - - Track ID2957 - - - Track ID5099 - - - Track ID4829 - - - Track ID6487 - - - Track ID7069 - - - Track ID5661 - - - Track ID3083 - - - Track ID4749 - - - Track ID4751 - - - Track ID4753 - - - Track ID4755 - - - Track ID4757 - - - Track ID4759 - - - Track ID4761 - - - Track ID4763 - - - Track ID4765 - - - Track ID4767 - - - Track ID4769 - - - Track ID5081 - - - Track ID5375 - - - Track ID5579 - - - Track ID4287 - - - Track ID4609 - - - Track ID4623 - - - Track ID4629 - - - Track ID4643 - - - Track ID4197 - - - Track ID4325 - - - Track ID4213 - - - Track ID4341 - - - Track ID4189 - - - Track ID4317 - - - Track ID5813 - - - Track ID4529 - - - Track ID6105 - - - Track ID3447 - - - Track ID6957 - - - Track ID5367 - - - Track ID5559 - - - Track ID5671 - - - Track ID6043 - - - Track ID6095 - - - Track ID3287 - - - Track ID1271 - - - Track ID2185 - - - Track ID3879 - - - Track ID2865 - - - Track ID2951 - - - Track ID5799 - - - Track ID6635 - - - Track ID1639 - - - Track ID2047 - - - Track ID4811 - - - Track ID4169 - - - Track ID4297 - - - Track ID5885 - - - Track ID2917 - - - Track ID4503 - - - Track ID5075 - - - Track ID6405 - - - Track ID3379 - - - Track ID1677 - - - Track ID6051 - - - Track ID5909 - - - Track ID5351 - - - Track ID5467 - - - Track ID5549 - - - Track ID4463 - - - Track ID4375 - - - Track ID2857 - - - Track ID6669 - - - Track ID3191 - - - Track ID6001 - - - Track ID2603 - - - Track ID1335 - - - Track ID2531 - - - Track ID2187 - - - Track ID4441 - - - Track ID3003 - - - Track ID5307 - - - Track ID5577 - - - Track ID5769 - - - Track ID5855 - - - Track ID5045 - - - Track ID5941 - - - Track ID5397 - - - Track ID1325 - - - Track ID5299 - - - Track ID6199 - - - Track ID5409 - - - Track ID6035 - - - Track ID5927 - - - Track ID2445 - - - Track ID2991 - - - Track ID5195 - - - Track ID4247 - - - Track ID2431 - - - Track ID4139 - - - Track ID2189 - - - Track ID2191 - - - Track ID1667 - - - Track ID2889 - - - Track ID6629 - - - Track ID5791 - - - Track ID4587 - - - Track ID4589 - - - Track ID4591 - - - Track ID4593 - - - Track ID4595 - - - Track ID4597 - - - Track ID4599 - - - Track ID4601 - - - Track ID4603 - - - Track ID5635 - - - Track ID6167 - - - Track ID6587 - - - Track ID2911 - - - Track ID1623 - - - Track ID1691 - - - Track ID2193 - - - Track ID2195 - - - Track ID2197 - - - Track ID3271 - - - Track ID5603 - - - Track ID4275 - - - Track ID2199 - - - Track ID2851 - - - Track ID2839 - - - Track ID5039 - - - Track ID5131 - - - Track ID5867 - - - Track ID5329 - - - Track ID5793 - - - Track ID1633 - - - Track ID1657 - - - Track ID6171 - - - Track ID6121 - - - Track ID3887 - - - Track ID5537 - - - Track ID6865 - - - Track ID6867 - - - Track ID6869 - - - Track ID6871 - - - Track ID6873 - - - Track ID6875 - - - Track ID6877 - - - Track ID6879 - - - Track ID6881 - - - Track ID6883 - - - Track ID6885 - - - Track ID6887 - - - Track ID6889 - - - Track ID4505 - - - Track ID4425 - - - Track ID3391 - - - Track ID5091 - - - Track ID2509 - - - Track ID6789 - - - Track ID2899 - - - Track ID3177 - - - Track ID4823 - - - Track ID1953 - - - Track ID1889 - - - Track ID3893 - - - Track ID6131 - - - Track ID3343 - - - Track ID3537 - - - Track ID3011 - - - Track ID6505 - - - Track ID4421 - - - Track ID1985 - - - Track ID5065 - - - Track ID3329 - - - Track ID6639 - - - Track ID5189 - - - Track ID4181 - - - Track ID4309 - - - Track ID2807 - - - Track ID4269 - - - Track ID1877 - - - Track ID5215 - - - Track ID3065 - - - Track ID1273 - - - Track ID1275 - - - Track ID2201 - - - Track ID2203 - - - Track ID6185 - - - Track ID2567 - - - Track ID2409 - - - Track ID5055 - - - Track ID4561 - - - Track ID5687 - - - Track ID6511 - - - Track ID6657 - - - Track ID4523 - - - Track ID3363 - - - Track ID3037 - - - Track ID6791 - - - Track ID7049 - - - Track ID2007 - - - Track ID2009 - - - Track ID2011 - - - Track ID2013 - - - Track ID2015 - - - Track ID2017 - - - Track ID2019 - - - Track ID2021 - - - Track ID7001 - - - Track ID2023 - - - Track ID2025 - - - Track ID3281 - - - Track ID2049 - - - Track ID4741 - - - Track ID6313 - - - Track ID4499 - - - Track ID6951 - - - Track ID5021 - - - Track ID5041 - - - Track ID4133 - - - Track ID4175 - - - Track ID4303 - - - Track ID2205 - - - Track ID5331 - - - Track ID6223 - - - Track ID1257 - - - Track ID2285 - - - Track ID2339 - - - Track ID2587 - - - Track ID2253 - - - Track ID1871 - - - Track ID7039 - - - Track ID2323 - - - Track ID2561 - - - Track ID3313 - - - Track ID6583 - - - Track ID6489 - - - Track ID2823 - - - Track ID4625 - - - Track ID3371 - - - Track ID4511 - - - Track ID2923 - - - Track ID5763 - - - Track ID6655 - - - Track ID2207 - - - Track ID2381 - - - Track ID2309 - - - Track ID1373 - - - Track ID2277 - - - Track ID2589 - - - Track ID2579 - - - Track ID2519 - - - Track ID2513 - - - Track ID1975 - - - Track ID1349 - - - Track ID5187 - - - Track ID4161 - - - Track ID4289 - - - Track ID4795 - - - Track ID3497 - - - Track ID6793 - - - Track ID3333 - - - Track ID2893 - - - Track ID5127 - - - Track ID4427 - - - Track ID1997 - - - Track ID6273 - - - Track ID3309 - - - Track ID4443 - - - Track ID3373 - - - Track ID6411 - - - Track ID4575 - - - Track ID3913 - - - Track ID3925 - - - Track ID3773 - - - Track ID3885 - - - Track ID3945 - - - Track ID3883 - - - Track ID3531 - - - Track ID1215 - - - Track ID1207 - - - Track ID1209 - - - Track ID1211 - - - Track ID1213 - - - Track ID1217 - - - Track ID1203 - - - Track ID1205 - - - Track ID1783 - - - Track ID1785 - - - Track ID1787 - - - Track ID1789 - - - Track ID1791 - - - Track ID1793 - - - Track ID1795 - - - Track ID1797 - - - Track ID1799 - - - Track ID1801 - - - Track ID1803 - - - Track ID1805 - - - Track ID1807 - - - Track ID1809 - - - Track ID1173 - - - Track ID1189 - - - Track ID1191 - - - Track ID1193 - - - Track ID1195 - - - Track ID1197 - - - Track ID1199 - - - Track ID1201 - - - Track ID1219 - - - Track ID1221 - - - Track ID1223 - - - Track ID1225 - - - Track ID1227 - - - Track ID1229 - - - Track ID1161 - - - Track ID1159 - - - Track ID1157 - - - Track ID1175 - - - Track ID1177 - - - Track ID1179 - - - Track ID1181 - - - Track ID1183 - - - Track ID2463 - - - Track ID1185 - - - Track ID1187 - - - Track ID1237 - - - Track ID1163 - - - Track ID1165 - - - Track ID1167 - - - Track ID1169 - - - Track ID2597 - - - Track ID2313 - - - Track ID1171 - - - Track ID1645 - - - Track ID3355 - - - Track ID1367 - - - Track ID2341 - - - Track ID2583 - - - Track ID2481 - - - Track ID6839 - - - Track ID1365 - - - Track ID6841 - - - Track ID6843 - - - Track ID6845 - - - Track ID6847 - - - Track ID6849 - - - Track ID6851 - - - Track ID1333 - - - Track ID6853 - - - Track ID6855 - - - Track ID6857 - - - Track ID6859 - - - Track ID6861 - - - Track ID6863 - - - Track ID6701 - - - Track ID2209 - - - Track ID2545 - - - Track ID6441 - - - Track ID5325 - - - Track ID2435 - - - Track ID6807 - - - Track ID6665 - - - Track ID4745 - - - Track ID5843 - - - Track ID3001 - - - Track ID5455 - - - Track ID6261 - - - Track ID6363 - - - Track ID4125 - - - Track ID5465 - - - Track ID3305 - - - Track ID6543 - - - Track ID1619 - - - Track ID3553 - - - Track ID2087 - - - Track ID3903 - - - Track ID2211 - - - Track ID2213 - - - Track ID3481 - - - Track ID1277 - - - Track ID3607 - - - Track ID5199 - - - Track ID5507 - - - Track ID4265 - - - Track ID4271 - - - Track ID5169 - - - Track ID6097 - - - Track ID6469 - - - Track ID3583 - - - Track ID3987 - - - Track ID6257 - - - Track ID3053 - - - Track ID3377 - - - Track ID4489 - - - Track ID6275 - - - Track ID3605 - - - Track ID3017 - - - Track ID2887 - - - Track ID3327 - - - Track ID4501 - - - Track ID3161 - - - Track ID3325 - - - Track ID5149 - - - Track ID2081 - - - Track ID3367 - - - Track ID6169 - - - Track ID6643 - - - Track ID3099 - - - Track ID3437 - - - Track ID3467 - - - Track ID3039 - - - Track ID6391 - - - Track ID3169 - - - Track ID6501 - - - Track ID5013 - - - Track ID1251 - - - Track ID6159 - - - Track ID6599 - - - Track ID3991 - - - Track ID3533 - - - Track ID5425 - - - Track ID3601 - - - Track ID2215 - - - Track ID2055 - - - Track ID6553 - - - Track ID5639 - - - Track ID4525 - - - Track ID1291 - - - Track ID6305 - - - Track ID6549 - - - Track ID1883 - - - Track ID4581 - - - Track ID4453 - - - Track ID4135 - - - Track ID5181 - - - Track ID5785 - - - Track ID6479 - - - Track ID3619 - - - Track ID3613 - - - Track ID4671 - - - Track ID1375 - - - Track ID5625 - - - Track ID6069 - - - Track ID6327 - - - Track ID3111 - - - Track ID2819 - - - Track ID6427 - - - Track ID5061 - - - Track ID5229 - - - Track ID6239 - - - Track ID3293 - - - Track ID6147 - - - Track ID6417 - - - Track ID3091 - - - Track ID6953 - - - Track ID2541 - - - Track ID2317 - - - Track ID2437 - - - Track ID2331 - - - Track ID2571 - - - Track ID2369 - - - Track ID2427 - - - Track ID2447 - - - Track ID2391 - - - Track ID2453 - - - Track ID1689 - - - Track ID1665 - - - Track ID2057 - - - Track ID5443 - - - Track ID6579 - - - Track ID2891 - - - Track ID3153 - - - Track ID6163 - - - Track ID3315 - - - Track ID3603 - - - Track ID6079 - - - Track ID2945 - - - Track ID6563 - - - Track ID6291 - - - Track ID5863 - - - Track ID5427 - - - Track ID3445 - - - Track ID5371 - - - Track ID5569 - - - Track ID6355 - - - Track ID6547 - - - Track ID5147 - - - Track ID5335 - - - Track ID6187 - - - Track ID6033 - - - Track ID6249 - - - Track ID6341 - - - Track ID6449 - - - Track ID6647 - - - Track ID5257 - - - Track ID6075 - - - Track ID2941 - - - Track ID3121 - - - Track ID5395 - - - Track ID5809 - - - Track ID3127 - - - Track ID5157 - - - Track ID2363 - - - Track ID2555 - - - Track ID5145 - - - Track ID3131 - - - Track ID2053 - - - Track ID5237 - - - Track ID6045 - - - Track ID4431 - - - Track ID5049 - - - Track ID5165 - - - Track ID4357 - - - Track ID5113 - - - Track ID7013 - - - Track ID3981 - - - Track ID6041 - - - Track ID1653 - - - Track ID5991 - - - Track ID1299 - - - Track ID6247 - - - Track ID5873 - - - Track ID5251 - - - Track ID2059 - - - Track ID5121 - - - Track ID3291 - - - Track ID4771 - - - Track ID4773 - - - Track ID4775 - - - Track ID4777 - - - Track ID4779 - - - Track ID4781 - - - Track ID4783 - - - Track ID5027 - - - Track ID1243 - - - Track ID1241 - - - Track ID6971 - - - Track ID2093 - - - Track ID2827 - - - Track ID3507 - - - Track ID6285 - - - Track ID6485 - - - Track ID6955 - - - Track ID2061 - - - Track ID2359 - - - Track ID2343 - - - Track ID2373 - - - Track ID2375 - - - Track ID3417 - - - Track ID4487 - - - Track ID2217 - - - Track ID6631 - - - Track ID6555 - - - Track ID1627 - - - Track ID6133 - - - Track ID6687 - - - Track ID1649 - - - Track ID6715 - - - Track ID3907 - - - Track ID6621 - - - Track ID6703 - - - Track ID5029 - - - Track ID6377 - - - Track ID4435 - - - Track ID5539 - - - Track ID5343 - - - Track ID1337 - - - Track ID2335 - - - Track ID5971 - - - Track ID6575 - - - Track ID6277 - - - Track ID3155 - - - Track ID6675 - - - Track ID3317 - - - Track ID2411 - - - Track ID2503 - - - Track ID2465 - - - Track ID2355 - - - Track ID2075 - - - Track ID7065 - - - Track ID3375 - - - Track ID2389 - - - Track ID2689 - - - Track ID2287 - - - Track ID2347 - - - Track ID2351 - - - Track ID2533 - - - Track ID2959 - - - Track ID5373 - - - Track ID5615 - - - Track ID5745 - - - Track ID4285 - - - Track ID4621 - - - Track ID4633 - - - Track ID4641 - - - Track ID4193 - - - Track ID4321 - - - Track ID5173 - - - Track ID4201 - - - Track ID4329 - - - Track ID2787 - - - Track ID5193 - - - Track ID4277 - - - Track ID5811 - - - Track ID2219 - - - Track ID2855 - - - Track ID1305 - - - Track ID1303 - - - Track ID1309 - - - Track ID1747 - - - Track ID1733 - - - Track ID1301 - - - Track ID1735 - - - Track ID1307 - - - Track ID1741 - - - Track ID1743 - - - Track ID1745 - - - Track ID1749 - - - Track ID1737 - - - Track ID1739 - - - Track ID1753 - - - Track ID1751 - - - Track ID4455 - - - Track ID5807 - - - Track ID3611 - - - Track ID3353 - - - Track ID3157 - - - Track ID4395 - - - Track ID4477 - - - Track ID2407 - - - Track ID2495 - - - Track ID2293 - - - Track ID2461 - - - Track ID2521 - - - Track ID2379 - - - Track ID2417 - - - Track ID4541 - - - Track ID2425 - - - Track ID5925 - - - Track ID4413 - - - Track ID5129 - - - Track ID3113 - - - Track ID2557 - - - Track ID3495 - - - Track ID6683 - - - Track ID5437 - - - Track ID2487 - - - Track ID5591 - - - Track ID2943 - - - Track ID4151 - - - Track ID5633 - - - Track ID6477 - - - Track ID6401 - - - Track ID3269 - - - Track ID1971 - - - Track ID3265 - - - Track ID2455 - - - Track ID6521 - - - Track ID4787 - - - Track ID3911 - - - Track ID6607 - - - Track ID3351 - - - Track ID1931 - - - Track ID6993 - - - Track ID1915 - - - Track ID3015 - - - Track ID2871 - - - Track ID3165 - - - Track ID2221 - - - Track ID4121 - - - Track ID1701 - - - Track ID1703 - - - Track ID1705 - - - Track ID1707 - - - Track ID1709 - - - Track ID1711 - - - Track ID1713 - - - Track ID1715 - - - Track ID1717 - - - Track ID1719 - - - Track ID1721 - - - Track ID1723 - - - Track ID1725 - - - Track ID1727 - - - Track ID3339 - - - Track ID5411 - - - Track ID5093 - - - Track ID4613 - - - Track ID4207 - - - Track ID4335 - - - Track ID4569 - - - Track ID5959 - - - Track ID7045 - - - Track ID2063 - - - Track ID3381 - - - Track ID2311 - - - Track ID1341 - - - Track ID1289 - - - Track ID5143 - - - Track ID5247 - - - Track ID6365 - - - Track ID6293 - - - Track ID6709 - - - Track ID6653 - - - Track ID6055 - - - Track ID2907 - - - Track ID5225 - - - Track ID5869 - - - Track ID6531 - - - Track ID6253 - - - Track ID5487 - - - Track ID5475 - - - Track ID7055 - - - Track ID2089 - - - Track ID4451 - - - Track ID1421 - - - Track ID1419 - - - Track ID1407 - - - Track ID1399 - - - Track ID1401 - - - Track ID1403 - - - Track ID1409 - - - Track ID1393 - - - Track ID1397 - - - Track ID1395 - - - Track ID1411 - - - Track ID1405 - - - Track ID1413 - - - Track ID1417 - - - Track ID1415 - - - Track ID3059 - - - Track ID7043 - - - Track ID6103 - - - Track ID3103 - - - Track ID3057 - - - Track ID2027 - - - Track ID2065 - - - Track ID4127 - - - Track ID5489 - - - Track ID5935 - - - Track ID4165 - - - Track ID4293 - - - Track ID5835 - - - Track ID2987 - - - Track ID6937 - - - Track ID4415 - - - Track ID6241 - - - Track ID3101 - - - Track ID1377 - - - Track ID6939 - - - Track ID4485 - - - Track ID2371 - - - Track ID1921 - - - Track ID5595 - - - Track ID5681 - - - Track ID5977 - - - Track ID6091 - - - Track ID5767 - - - Track ID4437 - - - Track ID3005 - - - Track ID5119 - - - Track ID2423 - - - Track ID4615 - - - Track ID3559 - - - Track ID4157 - - - Track ID3085 - - - Track ID5599 - - - Track ID5945 - - - Track ID5833 - - - Track ID3573 - - - Track ID4241 - - - Track ID4259 - - - Track ID3547 - - - Track ID4627 - - - Track ID4459 - - - Track ID4551 - - - Track ID5385 - - - Track ID5401 - - - Track ID5933 - - - Track ID5695 - - - Track ID5731 - - - Track ID2803 - - - Track ID4793 - - - Track ID2223 - - - Track ID2225 - - - Track ID2227 - - - Track ID1323 - - - Track ID2383 - - - Track ID2367 - - - Track ID3581 - - - Track ID5429 - - - Track ID5875 - - - Track ID2817 - - - Track ID6281 - - - Track ID6331 - - - Track ID3261 - - - Track ID6523 - - - Track ID6623 - - - Track ID5571 - - - Track ID6027 - - - Track ID2229 - - - Track ID1279 - - - Track ID2231 - - - Track ID2233 - - - Track ID5553 - - - Track ID6191 - - - Track ID5901 - - - Track ID6651 - - - Track ID2559 - - - Track ID3051 - - - Track ID5459 - - - Track ID6361 - - - Track ID5775 - - - Track ID1635 - - - Track ID3087 - - - Track ID2989 - - - Track ID5715 - - - Track ID4273 - - - Track ID4645 - - - Track ID4221 - - - Track ID4349 - - - Track ID6193 - - - Track ID6177 - - - Track ID4637 - - - Track ID4167 - - - Track ID4295 - - - Track ID2779 - - - Track ID6251 - - - Track ID2903 - - - Track ID3345 - - - Track ID5601 - - - Track ID5733 - - - Track ID5821 - - - Track ID3517 - - - Track ID3439 - - - Track ID3171 - - - Track ID6213 - - - Track ID2325 - - - Track ID7047 - - - Track ID4409 - - - Track ID3587 - - - Track ID6175 - - - Track ID5063 - - - Track ID3139 - - - Track ID5363 - - - Track ID6371 - - - Track ID4799 - - - Track ID4803 - - - Track ID5031 - - - Track ID5223 - - - Track ID5967 - - - Track ID6227 - - - Track ID3267 - - - Track ID1655 - - - Track ID1697 - - - Track ID2595 - - - Track ID1327 - - - Track ID3505 - - - Track ID3257 - - - Track ID2235 - - - Track ID2237 - - - Track ID2239 - - - Track ID5783 - - - Track ID3123 - - - Track ID2909 - - - Track ID1317 - - - Track ID6981 - - - Track ID7005 - - - Track ID7007 - - - Track ID1315 - - - Track ID1313 - - - Track ID6809 - - - Track ID1939 - - - Track ID5963 - - - Track ID2505 - - - Track ID2525 - - - Track ID5647 - - - Track ID6451 - - - Track ID5431 - - - Track ID6431 - - - Track ID5231 - - - Track ID5973 - - - Track ID6225 - - - Track ID6329 - - - Track ID6525 - - - Track ID5645 - - - Track ID1669 - - - Track ID2931 - - - Track ID2869 - - - Track ID6795 - - - Track ID3423 - - - Track ID3501 - - - Track ID6395 - - - Track ID6699 - - - Track ID3915 - - - Track ID3917 - - - Track ID3919 - - - Track ID2419 - - - Track ID6233 - - - Track ID6335 - - - Track ID6433 - - - Track ID2067 - - - Track ID7021 - - - Track ID2069 - - - Track ID6983 - - - Track ID2071 - - - Track ID2073 - - - Track ID3181 - - - Track ID5171 - - - Track ID6221 - - - Track ID1613 - - - Track ID1281 - - - Track ID5705 - - - Track ID6513 - - - Track ID6419 - - - Track ID3543 - - - Track ID3335 - - - Track ID1321 - - - Track ID6969 - - - Track ID2873 - - - Track ID5355 - - - Track ID3457 - - - Track ID6491 - - - Track ID6585 - - - Track ID3923 - - - Track ID3921 - - - Track ID6797 - - - Track ID5441 - - - Track ID5297 - - - Track ID1283 - - - Track ID1285 - - - Track ID4785 - - - Track ID2837 - - - Track ID6381 - - - Track ID3273 - - - Track ID4397 - - - Track ID2913 - - - Track ID6011 - - - Track ID6423 - - - Track ID3095 - - - Track ID3259 - - - Track ID5185 - - - Track ID5589 - - - Track ID4205 - - - Track ID4333 - - - Track ID4211 - - - Track ID4339 - - - Track ID5917 - - - Track ID4355 - - - Track ID6201 - - - Track ID6373 - - - Track ID3145 - - - Track ID2255 - - - Track ID4743 - - - Track ID3435 - - - Track ID3493 - - - Track ID6151 - - - Track ID3163 - - - Track ID4163 - - - Track ID4291 - - - Track ID5667 - - - Track ID6537 - - - Track ID6333 - - - Track ID2935 - - - Track ID4465 - - - Track ID3041 - - - Track ID2299 - - - Track ID3617 - - - Track ID2241 - - - Track ID6707 - - - Track ID6295 - - - Track ID6597 - - - Track ID3077 - - - Track ID4145 - - - Track ID5273 - - - Track ID3545 - - - Track ID2775 - - - Track ID2795 - - - Track ID4281 - - - Track ID3433 - - - Track ID3461 - - - Track ID3451 - - - Track ID3485 - - - Track ID2881 - - - Track ID6173 - - - Track ID4491 - - - Track ID2861 - - - Track ID6083 - - - Track ID3471 - - - Track ID3513 - - - Track ID6941 - - - Track ID4557 - - - Track ID6205 - - - Track ID4907 - - - Track ID4909 - - - Track ID4911 - - - Track ID4913 - - - Track ID4915 - - - Track ID4917 - - - Track ID4919 - - - Track ID5025 - - - Track ID4533 - - - Track ID1231 - - - Track ID4831 - - - Track ID5823 - - - Track ID2401 - - - Track ID6905 - - - Track ID6895 - - - Track ID6897 - - - Track ID6899 - - - Track ID6901 - - - Track ID6903 - - - Track ID3473 - - - Track ID2469 - - - Track ID2393 - - - Track ID2547 - - - Track ID7009 - - - Track ID6519 - - - Track ID1647 - - - Track ID1685 - - - Track ID3597 - - - Track ID6111 - - - Track ID4387 - - - Track ID3319 - - - Track ID3529 - - - Track ID6143 - - - Track ID5567 - - - Track ID6445 - - - Track ID4419 - - - Track ID4687 - - - Track ID4689 - - - Track ID4691 - - - Track ID4693 - - - Track ID4695 - - - Track ID4697 - - - Track ID4699 - - - Track ID4673 - - - Track ID4675 - - - Track ID4677 - - - Track ID4679 - - - Track ID4681 - - - Track ID4683 - - - Track ID4685 - - - Track ID5159 - - - Track ID4149 - - - Track ID6217 - - - Track ID6149 - - - Track ID4423 - - - Track ID3179 - - - Track ID5433 - - - Track ID6577 - - - Track ID6559 - - - Track ID6909 - - - Track ID6907 - - - Track ID3079 - - - Track ID6473 - - - Track ID5545 - - - Track ID5269 - - - Track ID6101 - - - Track ID1287 - - - Track ID1353 - - - Track ID2365 - - - Track ID2535 - - - Track ID2319 - - - Track ID2321 - - - Track ID2523 - - - Track ID4445 - - - Track ID1331 - - - Track ID1329 - - - Track ID2333 - - - Track ID3927 - - - Track ID2939 - - - Track ID3133 - - - Track ID6995 - - - Track ID4467 - - - Track ID3361 - - - Track ID6979 - - - Track ID6117 - - - Track ID6443 - - - Track ID5353 - - - Track ID6115 - - - Track ID6679 - - - Track ID5709 - - - Track ID3043 - - - Track ID3045 - - - Track ID5239 - - - Track ID5883 - - - Track ID2691 - - - Track ID2693 - - - Track ID2695 - - - Track ID2697 - - - Track ID2699 - - - Track ID2701 - - - Track ID2703 - - - Track ID2705 - - - Track ID2707 - - - Track ID2709 - - - Track ID2711 - - - Track ID2713 - - - Track ID4649 - - - Track ID4651 - - - Track ID4653 - - - Track ID4655 - - - Track ID4657 - - - Track ID4659 - - - Track ID4661 - - - Track ID4663 - - - Track ID4665 - - - Track ID4667 - - - Track ID4669 - - - Track ID2747 - - - Track ID2749 - - - Track ID2751 - - - Track ID2753 - - - Track ID2755 - - - Track ID2757 - - - Track ID2759 - - - Track ID2761 - - - Track ID2763 - - - Track ID2765 - - - Track ID2767 - - - Track ID2769 - - - Track ID2771 - - - Track ID1755 - - - Track ID1757 - - - Track ID1759 - - - Track ID1761 - - - Track ID1763 - - - Track ID1765 - - - Track ID1767 - - - Track ID1769 - - - Track ID1771 - - - Track ID1773 - - - Track ID1775 - - - Track ID1777 - - - Track ID2715 - - - Track ID2717 - - - Track ID2719 - - - Track ID2721 - - - Track ID2723 - - - Track ID2725 - - - Track ID2727 - - - Track ID2729 - - - Track ID2731 - - - Track ID2733 - - - Track ID2735 - - - Track ID2737 - - - Track ID2739 - - - Track ID2741 - - - Track ID2743 - - - Track ID2745 - - - Track ID2585 - - - Track ID3521 - - - Track ID6689 - - - Track ID4123 - - - Track ID2243 - - - Track ID5139 - - - Track ID4735 - - - Track ID1355 - - - Track ID1379 - - - Track ID6943 - - - Track ID3129 - - - Track ID5349 - - - Track ID6347 - - - Track ID6625 - - - Track ID4833 - - - Track ID4835 - - - Track ID4837 - - - Track ID4839 - - - Track ID4841 - - - Track ID4843 - - - Track ID4845 - - - Track ID4847 - - - Track ID4849 - - - Track ID4851 - - - Track ID4853 - - - Track ID4855 - - - Track ID4857 - - - Track ID4883 - - - Track ID4885 - - - Track ID4887 - - - Track ID4889 - - - Track ID4891 - - - Track ID4893 - - - Track ID4895 - - - Track ID4897 - - - Track ID4899 - - - Track ID4901 - - - Track ID4903 - - - Track ID4905 - - - Track ID3429 - - - Track ID4479 - - - Track ID6127 - - - Track ID3369 - - - Track ID6799 - - - Track ID6719 - - - Track ID5939 - - - Track ID5565 - - - Track ID5087 - - - Track ID1345 - - - Track ID6565 - - - Track ID3383 - - - Track ID1311 - - - Track ID4371 - - - Track ID6299 - - - Track ID6407 - - - Track ID6705 - - - Track ID4203 - - - Track ID4331 - - - Track ID5295 - - - Track ID4155 - - - Track ID5203 - - - Track ID5291 - - - Track ID3549 - - - Track ID5101 - - - Track ID5493 - - - Track ID2245 - - - Track ID2247 - - - Track ID2249 - - - Track ID1881 - - - Track ID4547 - - - Track ID3571 - - - Track ID3141 - - - Track ID2421 - - - Track ID2511 - - - Track ID2485 - - - Track ID2337 - - - Track ID2451 - - - Track ID3535 - - - Track ID4111 - - - Track ID5313 - - - Track ID5319 - - - Track ID3441 - - - Track ID2005 - - - Track ID5771 - - - Track ID6235 - - - Track ID6345 - - - Track ID5721 - - - Track ID6455 - - - Track ID6641 - - - Track ID6189 - - - Track ID5993 - - - Track ID6465 - - - Track ID6307 - - - Track ID5107 - - - Track ID5787 - - - Track ID6125 - - - Track ID6681 - - - Track ID6113 - - - Track ID2847 - - - Track ID1253 - - - Track ID5015 - - - Track ID4243 - - - Track ID4267 - - - Track ID5155 - - - Track ID4559 - - - Track ID5673 - - - Track ID3047 - - - Track ID5557 - - - Track ID3937 - - - Track ID6195 - - - Track ID6471 - - - Track ID5277 - - - Track ID5285 - - - Track ID5753 - - - Track ID4217 - - - Track ID4345 - - - Track ID5619 - - - Track ID5383 - - - Track ID5017 - - - Track ID1245 - - - Track ID2353 - - - Track ID2433 - - - Track ID2387 - - - Track ID5059 - - - Track ID5871 - - - Track ID4365 - - - Track ID3107 - - - Track ID5235 - - - Track ID5535 - - - Track ID3595 - - - Track ID2601 - - - Track ID4381 - - - Track ID5471 - - - Track ID6447 - - - Track ID2085 - - - Track ID1989 - - - Track ID4807 - - - Track ID6421 - - - Track ID3983 - - - Track ID3985 - - - Track ID5983 - - - Track ID2897 - - - Track ID5891 - - - Track ID4457 - - - Track ID5469 - - - Track ID1695 - - - Track ID6269 - - - Track ID3299 - - - Track ID4555 - - - Track ID5095 - - - Track ID5191 - - - Track ID4177 - - - Track ID4305 - - - Track ID2797 - - - Track ID3941 - - - Track ID6965 - - - Track ID5495 - - - Track ID5929 - - - Track ID5827 - - - Track ID2563 - - - Track ID4391 - - - Track ID3527 - - - Track ID3009 - - - Track ID1351 - - - Track ID4393 - - - Track ID5737 - - - Track ID4119 - - - Track ID3567 - - - Track ID3569 - - - Track ID4107 - - - Track ID4109 - - - Track ID7041 - - - Track ID2449 - - - Track ID2955 - - - Track ID5267 - - - Track ID6181 - - - Track ID6157 - - - Track ID6321 - - - Track ID6691 - - - Track ID3341 - - - Track ID6601 - - - Track ID5655 - - - Track ID2257 - - - Track ID2259 - - - Track ID1925 - - - Track ID1897 - - - Track ID6987 - - - Track ID3007 - - - Track ID2033 - - - Track ID2385 - - - Track ID5989 - - - Track ID2395 - - - Track ID5509 - - - Track ID5757 - - - Track ID5607 - - - Track ID6645 - - - Track ID5801 - - - Track ID3359 - - - Track ID3443 - - - Track ID6311 - - - Track ID6403 - - - Track ID3183 - - - Track ID6499 - - - Track ID6219 - - - Track ID2261 - - - Track ID1607 - - - Track ID5683 - - - Track ID6595 - - - Track ID5817 - - - Track ID2301 - - - Track ID2079 - - - Track ID7059 - - - Track ID2307 - - - Track ID2263 - - - Track ID4565 - - - Track ID1661 - - - Track ID6309 - - - Track ID1359 - - - Track ID7023 - - - Track ID2553 - - - Track ID2549 - - - Track ID2297 - - - Track ID6991 - - - Track ID2265 - - - Track ID5379 - - - Track ID5485 - - - Track ID5581 - - - Track ID4187 - - - Track ID4315 - - - Track ID4117 - - - Track ID2783 - - - Track ID5399 - - - Track ID5689 - - - Track ID6801 - - - Track ID3477 - - - Track ID6911 - - - Track ID6913 - - - Track ID6915 - - - Track ID6917 - - - Track ID6919 - - - Track ID6921 - - - Track ID6923 - - - Track ID6925 - - - Track ID6927 - - - Track ID6929 - - - Track ID6931 - - - Track ID6933 - - - Track ID6935 - - - Track ID2607 - - - Track ID7031 - - - Track ID7051 - - - Track ID3541 - - - Track ID5085 - - - Track ID4223 - - - Track ID4351 - - - Track ID4251 - - - Track ID4257 - - - Track ID4279 - - - Track ID5847 - - - Track ID5751 - - - Track ID4143 - - - Track ID5621 - - - Track ID2971 - - - Track ID4153 - - - Track ID2969 - - - Track ID2979 - - - Track ID5197 - - - Track ID5921 - - - Track ID5685 - - - Track ID5749 - - - Track ID2791 - - - Track ID5481 - - - Track ID5825 - - - Track ID5473 - - - Track ID5597 - - - Track ID5501 - - - Track ID5497 - - - Track ID2905 - - - Track ID4571 - - - Track ID4183 - - - Track ID4311 - - - Track ID5019 - - - Track ID6089 - - - Track ID6463 - - - Track ID3757 - - - Track ID4411 - - - Track ID2095 - - - Track ID5141 - - - Track ID3185 - - - Track ID1811 - - - Track ID1813 - - - Track ID1815 - - - Track ID1817 - - - Track ID1819 - - - Track ID1821 - - - Track ID1823 - - - Track ID1825 - - - Track ID1827 - - - Track ID1829 - - - Track ID1831 - - - Track ID1833 - - - Track ID1835 - - - Track ID1837 - - - Track ID1839 - - - Track ID1841 - - - Track ID1843 - - - Track ID1845 - - - Track ID1847 - - - Track ID1849 - - - Track ID1851 - - - Track ID1853 - - - Track ID1855 - - - Track ID1857 - - - Track ID1859 - - - Track ID1861 - - - Track ID1863 - - - Track ID1865 - - - Track ID2457 - - - Track ID6495 - - - Track ID4473 - - - Track ID2867 - - - Track ID6139 - - - Track ID5309 - - - Track ID5521 - - - Track ID5719 - - - Track ID2097 - - - Track ID2099 - - - Track ID6517 - - - Track ID4031 - - - Track ID4033 - - - Track ID4035 - - - Track ID4037 - - - Track ID4039 - - - Track ID4041 - - - Track ID4043 - - - Track ID4045 - - - Track ID4047 - - - Track ID4049 - - - Track ID4051 - - - Track ID4053 - - - Track ID4055 - - - Track ID4057 - - - Track ID4059 - - - Track ID4061 - - - Track ID4063 - - - Track ID4065 - - - Track ID4067 - - - Track ID4069 - - - Track ID4071 - - - Track ID4073 - - - Track ID4075 - - - Track ID4077 - - - Track ID4079 - - - Track ID4081 - - - Track ID4083 - - - Track ID4085 - - - Track ID4087 - - - Track ID4089 - - - Track ID4091 - - - Track ID4093 - - - Track ID4095 - - - Track ID4097 - - - Track ID4099 - - - Track ID4101 - - - Track ID4103 - - - Track ID4105 - - - Track ID3993 - - - Track ID3995 - - - Track ID3997 - - - Track ID3999 - - - Track ID4001 - - - Track ID4003 - - - Track ID4005 - - - Track ID4007 - - - Track ID4009 - - - Track ID4011 - - - Track ID4013 - - - Track ID4015 - - - Track ID4017 - - - Track ID4019 - - - Track ID4021 - - - Track ID4023 - - - Track ID4025 - - - Track ID4027 - - - Track ID4029 - - - Track ID3579 - - - Track ID3575 - - - Track ID3577 - - - Track ID3943 - - - Track ID6747 - - - Track ID6723 - - - Track ID3759 - - - Track ID7003 - - - Track ID6749 - - - Track ID3763 - - - Track ID1947 - - - Track ID1959 - - - Track ID6725 - - - Track ID6751 - - - Track ID6727 - - - Track ID1901 - - - Track ID3765 - - - Track ID3785 - - - Track ID3767 - - - Track ID1973 - - - Track ID3769 - - - Track ID3775 - - - Track ID3777 - - - Track ID3779 - - - Track ID3781 - - - Track ID3783 - - - Track ID3815 - - - Track ID2501 - - - Track ID1949 - - - Track ID6729 - - - Track ID7037 - - - Track ID3819 - - - Track ID6961 - - - Track ID3821 - - - Track ID3823 - - - Track ID6731 - - - Track ID3833 - - - Track ID7067 - - - Track ID3837 - - - Track ID3839 - - - Track ID3841 - - - Track ID3843 - - - Track ID6733 - - - Track ID2039 - - - Track ID3813 - - - Track ID6945 - - - Track ID6753 - - - Track ID3845 - - - Track ID6755 - - - Track ID1911 - - - Track ID6947 - - - Track ID3847 - - - Track ID3849 - - - Track ID3851 - - - Track ID3853 - - - Track ID6973 - - - Track ID3855 - - - Track ID3857 - - - Track ID6757 - - - Track ID6735 - - - Track ID1963 - - - Track ID3565 - - - Track ID3561 - - - Track ID1983 - - - Track ID1945 - - - Track ID1887 - - - Track ID1917 - - - Track ID3929 - - - Track ID3863 - - - Track ID1929 - - - Track ID3867 - - - Track ID6759 - - - Track ID3871 - - - Track ID6963 - - - Track ID6761 - - - Track ID6737 - - - Track ID3873 - - - Track ID6949 - - - Track ID2489 - - - Track ID3799 - - - Track ID7027 - - - Track ID3881 - - - Track ID4605 - - - Track ID3803 - - - Track ID3801 - - - Track ID1977 - - - Track ID1923 - - - Track ID7019 - - - Track ID3889 - - - Track ID3891 - - - Track ID6739 - - - Track ID3049 - - - Track ID6741 - - - Track ID2051 - - - Track ID3895 - - - Track ID3897 - - - Track ID6763 - - - Track ID1979 - - - Track ID2291 - - - Track ID2415 - - - Track ID3899 - - - Track ID1891 - - - Track ID3901 - - - Track ID3905 - - - Track ID3807 - - - Track ID2471 - - - Track ID6743 - - - Track ID3989 - - - Track ID2281 - - - Track ID2473 - - - Track ID1885 - - - Track ID1895 - - - Track ID6765 - - - Track ID7015 - - - Track ID3475 - - - Track ID2499 - - - Track ID3809 - - - Track ID3909 - - - Track ID2273 - - - Track ID7011 - - - Track ID2269 - - - Track ID6767 - - - Track ID2497 - - - Track ID1893 - - - Track ID1981 - - - Track ID2459 - - - Track ID2305 - - - Track ID6769 - - - Track ID2295 - - - Track ID2329 - - - Track ID1951 - - - Track ID1937 - - - Track ID1943 - - - Track ID6745 - - - Track ID3935 - - - Track ID3793 - - - Track ID2491 - - - Track ID3817 - - - Track ID3931 - - - Track ID3933 - - - Track ID4921 - - - Track ID4923 - - - Track ID3753 - - - Track ID4925 - - - Track ID4927 - - - Track ID4929 - - - Track ID4931 - - - Track ID4933 - - - Track ID2077 - - - Track ID3969 - - - Track ID4113 - - - Track ID3939 - - - Track ID6967 - - - - - NameMovies - Playlist ID13020 - Playlist Persistent IDC2652B524E860F24 - Distinguished Kind2 - Movies - All Items - - - NameTV Shows - Playlist ID13023 - Playlist Persistent ID07E2EB297E0F5865 - Distinguished Kind3 - TV Shows - All Items - - - NamePodcasts - Playlist ID10050 - Playlist Persistent ID4ACBF8E19A08281C - Distinguished Kind10 - Podcasts - All Items - - - NamePurchased - Playlist ID14864 - Playlist Persistent ID4A0CFE07BA10FF9C - Distinguished Kind19 - Purchased Music - All Items - Playlist Items - - - Track ID1231 - - - Track ID1233 - - - Track ID1235 - - - - - NameGenius - Playlist ID13035 - Playlist Persistent ID0F11612120718DF7 - Distinguished Kind26 - All Items - - - NameiTunes DJ - Playlist ID10031 - Playlist Persistent ID810D99136671A0F4 - Distinguished Kind22 - Party Shuffle - All Items - Playlist Items - - - Track ID2295 - - - Track ID1731 - - - Track ID1379 - - - Track ID4355 - - - Track ID1213 - - - Track ID1779 - - - Track ID4409 - - - Track ID1745 - - - Track ID2937 - - - Track ID4731 - - - Track ID4689 - - - Track ID4135 - - - Track ID3875 - - - Track ID1309 - - - Track ID4503 - - - Track ID3857 - - - - - Name90’s Music - Playlist ID14876 - Playlist Persistent ID5EC6460F56D68233 - All Items - Smart Info - - AQEAAwAAAAIAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAA== - - Smart Criteria - - U0xzdAABAAEAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAEAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAB8YAAAAAAAAAAAAAAAAAAAAB - AAAAAAAAB88AAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgFNMc3QAAQAB - AAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAB - AAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAABAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAIAAAAAAAAAAA - AAAAAAAAAAEAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAA== - - Playlist Items - - - Track ID1189 - - - Track ID1191 - - - Track ID1193 - - - Track ID1195 - - - Track ID1197 - - - Track ID1199 - - - Track ID1201 - - - Track ID1161 - - - Track ID1159 - - - Track ID1157 - - - Track ID1175 - - - Track ID1177 - - - Track ID1179 - - - Track ID1181 - - - Track ID1183 - - - Track ID1185 - - - Track ID1187 - - - Track ID1163 - - - Track ID1165 - - - Track ID1167 - - - Track ID1169 - - - Track ID1171 - - - Track ID1237 - - - Track ID1271 - - - Track ID1375 - - - Track ID1377 - - - Track ID1755 - - - Track ID1757 - - - Track ID1759 - - - Track ID1761 - - - Track ID1763 - - - Track ID1765 - - - Track ID1767 - - - Track ID1769 - - - Track ID1771 - - - Track ID1773 - - - Track ID1775 - - - Track ID1777 - - - Track ID1907 - - - Track ID1935 - - - Track ID1867 - - - Track ID1939 - - - Track ID2059 - - - Track ID2283 - - - Track ID2565 - - - Track ID2573 - - - Track ID2361 - - - Track ID2581 - - - Track ID2267 - - - Track ID2399 - - - Track ID2515 - - - Track ID2475 - - - Track ID2551 - - - Track ID2575 - - - Track ID2483 - - - Track ID2377 - - - Track ID2537 - - - Track ID2327 - - - Track ID2345 - - - Track ID2349 - - - Track ID2405 - - - Track ID2517 - - - Track ID2609 - - - Track ID2443 - - - Track ID2603 - - - Track ID2431 - - - Track ID2285 - - - Track ID2381 - - - Track ID2309 - - - Track ID2277 - - - Track ID2579 - - - Track ID2463 - - - Track ID2597 - - - Track ID2313 - - - Track ID2583 - - - Track ID2481 - - - Track ID2545 - - - Track ID2541 - - - Track ID2343 - - - Track ID2373 - - - Track ID2375 - - - Track ID2411 - - - Track ID2503 - - - Track ID2465 - - - Track ID2355 - - - Track ID2287 - - - Track ID2407 - - - Track ID2495 - - - Track ID2293 - - - Track ID2461 - - - Track ID2521 - - - Track ID2379 - - - Track ID2417 - - - Track ID2487 - - - Track ID2367 - - - Track ID2505 - - - Track ID2365 - - - Track ID2535 - - - Track ID2319 - - - Track ID2421 - - - Track ID2511 - - - Track ID2485 - - - Track ID2337 - - - Track ID2451 - - - Track ID2353 - - - Track ID2433 - - - Track ID2601 - - - Track ID2385 - - - Track ID2457 - - - Track ID2613 - - - Track ID2615 - - - Track ID2617 - - - Track ID2529 - - - Track ID2289 - - - Track ID2619 - - - Track ID2479 - - - Track ID2621 - - - Track ID2623 - - - Track ID2625 - - - Track ID2627 - - - Track ID2629 - - - Track ID2631 - - - Track ID2633 - - - Track ID2635 - - - Track ID2637 - - - Track ID2639 - - - Track ID2477 - - - Track ID2641 - - - Track ID2643 - - - Track ID2645 - - - Track ID2647 - - - Track ID2649 - - - Track ID2527 - - - Track ID2651 - - - Track ID2653 - - - Track ID2655 - - - Track ID2657 - - - Track ID2659 - - - Track ID2661 - - - Track ID2663 - - - Track ID2665 - - - Track ID2667 - - - Track ID2669 - - - Track ID2671 - - - Track ID2673 - - - Track ID2675 - - - Track ID2677 - - - Track ID2679 - - - Track ID2507 - - - Track ID2681 - - - Track ID2493 - - - Track ID2683 - - - Track ID2685 - - - Track ID2397 - - - Track ID2687 - - - Track ID2689 - - - Track ID2691 - - - Track ID2693 - - - Track ID2695 - - - Track ID2697 - - - Track ID2699 - - - Track ID2701 - - - Track ID2703 - - - Track ID2705 - - - Track ID2707 - - - Track ID2709 - - - Track ID2711 - - - Track ID2713 - - - Track ID2389 - - - Track ID3703 - - - Track ID3713 - - - Track ID3715 - - - 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 - - - Track ID3651 - - - Track ID3653 - - - Track ID3655 - - - Track ID3657 - - - Track ID3659 - - - Track ID3661 - - - Track ID3663 - - - Track ID3665 - - - Track ID3667 - - - Track ID3669 - - - Track ID3671 - - - Track ID3673 - - - Track ID3675 - - - Track ID3677 - - - Track ID3679 - - - Track ID3681 - - - Track ID3683 - - - Track ID3685 - - - Track ID3687 - - - Track ID3689 - - - Track ID3691 - - - Track ID3693 - - - Track ID3695 - - - Track ID3697 - - - Track ID3701 - - - Track ID3705 - - - Track ID3707 - - - Track ID3709 - - - Track ID3711 - - - Track ID3875 - - - Track ID3877 - - - Track ID3911 - - - Track ID3923 - - - Track ID3785 - - - Track ID3799 - - - Track ID3803 - - - Track ID3801 - - - Track ID3807 - - - Track ID3809 - - - Track ID3813 - - - Track ID3817 - - - Track ID3979 - - - Track ID3791 - - - Track ID3795 - - - Track ID4111 - - - Track ID4233 - - - Track ID4649 - - - Track ID4651 - - - Track ID4653 - - - Track ID4655 - - - Track ID4657 - - - Track ID4659 - - - Track ID4661 - - - Track ID4663 - - - Track ID4665 - - - Track ID4667 - - - Track ID4669 - - - Track ID4671 - - - Track ID4673 - - - Track ID4675 - - - Track ID4677 - - - Track ID4679 - - - Track ID4681 - - - Track ID4683 - - - Track ID4685 - - - Track ID4687 - - - Track ID4689 - - - Track ID4691 - - - Track ID4693 - - - Track ID4695 - - - Track ID4697 - - - Track ID4699 - - - Track ID4705 - - - Track ID4713 - - - Track ID4719 - - - Track ID4701 - - - Track ID4715 - - - Track ID4727 - - - Track ID4717 - - - Track ID4723 - - - Track ID4721 - - - Track ID4725 - - - Track ID4703 - - - Track ID4709 - - - Track ID4711 - - - Track ID4707 - - - Track ID4745 - - - Track ID4771 - - - Track ID4773 - - - Track ID4775 - - - Track ID4777 - - - Track ID4779 - - - Track ID4781 - - - Track ID4783 - - - Track ID5007 - - - Track ID6893 - - - Track ID6905 - - - Track ID6895 - - - Track ID6897 - - - Track ID6899 - - - Track ID6901 - - - Track ID6903 - - - Track ID6951 - - - Track ID7035 - - - Track ID6975 - - - Track ID7069 - - - Track ID6971 - - - Track ID6995 - - - - - NameClassical Music - Playlist ID15174 - Playlist Persistent IDD887E0A0256C01FE - All Items - Smart Info - - AQEAAwAAAAIAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAA== - - Smart Criteria - - U0xzdAABAAEAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAU0xzdAABAAEAAAACAAAAAQAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAADwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAABEAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAB - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAg - AAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnpTTHN0AAEAAQAAAAcAAAAB - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAACAEAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAABIAQwBsAGEAcwBzAGkAYwBhAGwAAAAIAQAAAQAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEABLAGwAYQBzAHMAaQBlAGsAAAAI - AQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgBD - AGwAYQBzAHMAaQBxAHUAZQAAAAgBAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAOAEsAbABhAHMAcwBpAGsAAAAIAQAAAQAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEABDAGwAYQBzAHMAaQBjAGEAAAAI - AQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACjCv - MOkwtzDDMK8AAAAIAQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAADgBDAGwA4QBzAGkAYwBh - - Playlist Items - - - Track ID6891 - - - - - NameMusic Videos - Playlist ID15178 - Playlist Persistent ID77E5ABBEBCAA7DFA - All Items - Smart Info - - AQEAAwAAAAIAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAA== - - Smart Criteria - - U0xzdAABAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAQAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAB - AAAAAAAAACAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAA= - - - - NameMy Top Rated - Playlist ID15181 - Playlist Persistent ID63E2F3EA5024D8CC - All Items - Smart Info - - AQEAAwAAAAIAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAA== - - Smart Criteria - - U0xzdAABAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAQAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAB - AAAAAAAAADwAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAA= - - - - NameRecently Added - Playlist ID15184 - Playlist Persistent IDEEBAAA7E7CF410C2 - All Items - Smart Info - - AQEAAwAAAAIAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAA== - - Smart Criteria - - U0xzdAABAAEAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAIAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABELa4tri2uLa7//////////gAAAAAACTqA - La4tri2uLa4AAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5AgAAAQAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAB - AAAAAAAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAA - AAAAAAAA - - - - NameRecently Played - Playlist ID16207 - Playlist Persistent IDDCFA62C8CFCFC459 - All Items - Smart Info - - AQEAAwAAAAIAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAA== - - Smart Criteria - - U0xzdAABAAEAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAIAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABELa4tri2uLa7//////////gAAAAAACTqA - La4tri2uLa4AAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5AgAAAQAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAB - AAAAAAAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAA - AAAAAAAA - - Playlist Items - - - Track ID6955 - - - - - NameTop 25 Most Played - Playlist ID16256 - Playlist Persistent ID5A8ED6AD39A03E23 - All Items - Smart Info - - AQEBAwAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAA== - - Smart Criteria - - U0xzdAABAAEAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADkCAAABAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAB - AAAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAEAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAA - AAAAAAAA - - Playlist Items - - - Track ID1179 - - - Track ID2963 - - - Track ID2961 - - - Track ID2957 - - - Track ID2773 - - - Track ID2435 - - - Track ID2775 - - - Track ID2777 - - - Track ID2779 - - - Track ID2781 - - - Track ID2783 - - - Track ID4025 - - - Track ID4027 - - - Track ID4299 - - - Track ID4301 - - - Track ID2137 - - - Track ID4923 - - - Track ID4925 - - - Track ID4927 - - - Track ID4931 - - - Track ID4921 - - - Track ID4929 - - - Track ID1779 - - - Track ID2643 - - - Track ID1801 - - - - - Name10 Hours of Music - Playlist ID16284 - Playlist Persistent ID759035A7BC055EEB - All Items - Playlist Items - - - Track ID2267 - - - Track ID2269 - - - Track ID2271 - - - Track ID2273 - - - Track ID2275 - - - Track ID2277 - - - Track ID2279 - - - Track ID2281 - - - Track ID2283 - - - Track ID2285 - - - Track ID2287 - - - Track ID1357 - - - Track ID1355 - - - Track ID2291 - - - Track ID2293 - - - Track ID2295 - - - Track ID2297 - - - Track ID2299 - - - Track ID2301 - - - Track ID2303 - - - Track ID2305 - - - Track ID2307 - - - Track ID2309 - - - Track ID2311 - - - Track ID2315 - - - Track ID2317 - - - Track ID2319 - - - Track ID2321 - - - Track ID2323 - - - Track ID2325 - - - Track ID2329 - - - Track ID2331 - - - Track ID2333 - - - Track ID2335 - - - Track ID2337 - - - Track ID2339 - - - Track ID2341 - - - Track ID1293 - - - Track ID2343 - - - Track ID2345 - - - Track ID2347 - - - Track ID2349 - - - Track ID1371 - - - Track ID2351 - - - Track ID2353 - - - Track ID2355 - - - Track ID2357 - - - Track ID2359 - - - Track ID2361 - - - Track ID2363 - - - Track ID2365 - - - Track ID2367 - - - Track ID2369 - - - Track ID2371 - - - Track ID2373 - - - Track ID2375 - - - Track ID2377 - - - Track ID2379 - - - Track ID2381 - - - Track ID2383 - - - Track ID1381 - - - Track ID1363 - - - Track ID2385 - - - Track ID1349 - - - Track ID2387 - - - Track ID1369 - - - Track ID1365 - - - Track ID1279 - - - Track ID2389 - - - Track ID2391 - - - Track ID2393 - - - Track ID2395 - - - Track ID2399 - - - Track ID2401 - - - Track ID2403 - - - Track ID2405 - - - Track ID2407 - - - Track ID2409 - - - Track ID2411 - - - Track ID2413 - - - Track ID2417 - - - Track ID2419 - - - Track ID2421 - - - Track ID2423 - - - Track ID2425 - - - Track ID2427 - - - Track ID2429 - - - Track ID2431 - - - Track ID2433 - - - Track ID2435 - - - Track ID2437 - - - Track ID2439 - - - Track ID2441 - - - Track ID2443 - - - Track ID2445 - - - Track ID2447 - - - Track ID2449 - - - Track ID2451 - - - Track ID2453 - - - Track ID2455 - - - Track ID2457 - - - Track ID2459 - - - Track ID2461 - - - Track ID2465 - - - Track ID2467 - - - Track ID2469 - - - Track ID2471 - - - Track ID2473 - - - Track ID2475 - - - Track ID2481 - - - Track ID2483 - - - Track ID2485 - - - Track ID2487 - - - Track ID2489 - - - Track ID2491 - - - Track ID2495 - - - Track ID2497 - - - Track ID2499 - - - Track ID2501 - - - Track ID2503 - - - Track ID2505 - - - Track ID1361 - - - Track ID2509 - - - Track ID2511 - - - Track ID2513 - - - Track ID2515 - - - Track ID2517 - - - Track ID2519 - - - Track ID2521 - - - Track ID2523 - - - Track ID2525 - - - Track ID1377 - - - Track ID2531 - - - Track ID2533 - - - Track ID2535 - - - Track ID2537 - - - Track ID2539 - - - Track ID2541 - - - Track ID2543 - - - Track ID2545 - - - Track ID2547 - - - Track ID2549 - - - Track ID2551 - - - Track ID2553 - - - Track ID2555 - - - Track ID2557 - - - Track ID2559 - - - Track ID2561 - - - Track ID2563 - - - Track ID2565 - - - Track ID2567 - - - Track ID2569 - - - Track ID2571 - - - Track ID2573 - - - Track ID2575 - - - Track ID2577 - - - Track ID2579 - - - Track ID2581 - - - Track ID2583 - - - Track ID2587 - - - Track ID2589 - - - Track ID2591 - - - Track ID2593 - - - Track ID2595 - - - Track ID2599 - - - Track ID2601 - - - Track ID2603 - - - Track ID2605 - - - Track ID2607 - - - Track ID2609 - - - Track ID2611 - - - Track ID2689 - - - Track ID1291 - - - Track ID3473 - - - Track ID1263 - - - Track ID1269 - - - Track ID1297 - - - Track ID1267 - - - Track ID1295 - - - Track ID2585 - - - Track ID1299 - - - Track ID3475 - - - Track ID1265 - - - Track ID1283 - - - Track ID1285 - - - Track ID1273 - - - Track ID1261 - - - Track ID1313 - - - Track ID1347 - - - Track ID1287 - - - Track ID1289 - - - Track ID4671 - - - - - Name311 - Evolver (2003) - Playlist ID16542 - Playlist Persistent IDC90768849526D1FB - All Items - Playlist Items - - - Track ID1811 - - - Track ID1813 - - - Track ID1815 - - - Track ID1817 - - - Track ID1819 - - - Track ID1821 - - - Track ID1823 - - - Track ID1825 - - - Track ID1827 - - - Track ID1829 - - - Track ID1831 - - - - - Name311 - Greatest Hits '93 - '03 - Playlist ID16556 - Playlist Persistent IDE48C68DA541C6C67 - All Items - Playlist Items - - - Track ID1833 - - - Track ID1835 - - - Track ID1837 - - - Track ID1839 - - - Track ID1841 - - - Track ID1843 - - - Track ID1845 - - - Track ID1847 - - - Track ID1849 - - - Track ID1851 - - - Track ID1853 - - - Track ID1855 - - - Track ID1857 - - - Track ID1859 - - - Track ID1863 - - - Track ID1865 - - - - - NameAceyalone and RJD2 - Magnificent City - Playlist ID19394 - Playlist Persistent ID8605987854525745 - All Items - Playlist Items - - - Track ID6811 - - - Track ID6813 - - - Track ID6815 - - - Track ID6817 - - - Track ID6819 - - - Track ID6821 - - - Track ID6823 - - - Track ID6825 - - - Track ID6827 - - - Track ID6829 - - - Track ID6831 - - - Track ID6833 - - - Track ID6835 - - - Track ID6837 - - - - - NameASOT 400 (2009) - Playlist ID16575 - Playlist Persistent IDA721337B50B976D1 - All Items - Playlist Items - - - Track ID3417 - - - Track ID3419 - - - Track ID3421 - - - Track ID3423 - - - Track ID3425 - - - Track ID3427 - - - Track ID3429 - - - Track ID3431 - - - Track ID3433 - - - Track ID3435 - - - Track ID3437 - - - Track ID3439 - - - Track ID3441 - - - Track ID3443 - - - Track ID3445 - - - Track ID3447 - - - Track ID3449 - - - Track ID3451 - - - Track ID3453 - - - Track ID3455 - - - Track ID3457 - - - Track ID3459 - - - Track ID3461 - - - Track ID3463 - - - Track ID3465 - - - Track ID3467 - - - Track ID3469 - - - Track ID3471 - - - Track ID3477 - - - Track ID3479 - - - Track ID3481 - - - Track ID3483 - - - Track ID3485 - - - Track ID3487 - - - Track ID3489 - - - Track ID3491 - - - Track ID3493 - - - Track ID3495 - - - Track ID3497 - - - Track ID3499 - - - Track ID3501 - - - Track ID3503 - - - Track ID3505 - - - Track ID3507 - - - Track ID3509 - - - Track ID3511 - - - Track ID3513 - - - Track ID3515 - - - Track ID3517 - - - Track ID3519 - - - Track ID3521 - - - Track ID3523 - - - Track ID3525 - - - Track ID3527 - - - Track ID3529 - - - Track ID3531 - - - Track ID3533 - - - Track ID3535 - - - Track ID3537 - - - Track ID3539 - - - - - NameDays of the New - Days Of The New 2 (1999) - Playlist ID16638 - Playlist Persistent ID2BDE02A63D8E2C94 - All Items - Playlist Items - - - Track ID4701 - - - Track ID4703 - - - Track ID4705 - - - Track ID4707 - - - Track ID4709 - - - Track ID4711 - - - Track ID4713 - - - Track ID4715 - - - Track ID4717 - - - Track ID4719 - - - Track ID4721 - - - Track ID4723 - - - Track ID4725 - - - Track ID4727 - - - - - NameDeadmau5 - 4x4 = 12 - Playlist ID18904 - Playlist Persistent ID2AFD3A7494FFA947 - All Items - Playlist Items - - - Track ID4937 - - - Track ID4939 - - - Track ID4941 - - - Track ID4943 - - - Track ID4945 - - - Track ID4947 - - - Track ID4949 - - - Track ID4951 - - - Track ID4953 - - - Track ID4955 - - - Track ID4957 - - - - - NameDeadmau5 - For Lack Of A Better Name - Playlist ID18891 - Playlist Persistent ID8C0977301D1BCD70 - All Items - Playlist Items - - - Track ID4959 - - - Track ID4961 - - - Track ID4963 - - - Track ID4965 - - - Track ID4967 - - - Track ID4969 - - - Track ID4971 - - - Track ID4973 - - - Track ID4975 - - - Track ID4977 - - - - - NameDeadmau5 - For Lack Of A Better Name (The Extended Mixes) - Playlist ID18918 - Playlist Persistent IDF122FD1D2F1925F6 - All Items - Playlist Items - - - Track ID4959 - - - Track ID4979 - - - Track ID4981 - - - Track ID4983 - - - Track ID4967 - - - Track ID4969 - - - Track ID4971 - - - Track ID4973 - - - Track ID4975 - - - Track ID4977 - - - - - NameDeadmau5 - Random Album Title - Playlist ID18931 - Playlist Persistent IDA393974882789EA6 - All Items - Playlist Items - - - Track ID4985 - - - Track ID4987 - - - Track ID4989 - - - Track ID4991 - - - Track ID4993 - - - Track ID4995 - - - Track ID4997 - - - Track ID4999 - - - Track ID5001 - - - Track ID5003 - - - Track ID4935 - - - Track ID5005 - - - - - NameDefqon 2006 - Playlist ID16655 - Playlist Persistent ID7C2CC17526D02535 - All Items - Playlist Items - - - Track ID4125 - - - Track ID4127 - - - Track ID4129 - - - Track ID4131 - - - Track ID4133 - - - Track ID4135 - - - Track ID4137 - - - Track ID4139 - - - Track ID4141 - - - Track ID4143 - - - Track ID4145 - - - Track ID4147 - - - Track ID4149 - - - Track ID4151 - - - Track ID4153 - - - Track ID4155 - - - Track ID4157 - - - Track ID4159 - - - - - NameDJ Hero Soundtrack - Playlist ID16676 - Playlist Persistent ID86A02846BB5195FE - All Items - Playlist Items - - - Track ID2095 - - - Track ID2097 - - - Track ID2099 - - - Track ID2101 - - - Track ID2103 - - - Track ID2105 - - - Track ID2107 - - - Track ID2109 - - - Track ID2111 - - - Track ID2113 - - - Track ID2115 - - - Track ID2091 - - - Track ID2117 - - - Track ID2119 - - - Track ID2121 - - - Track ID2123 - - - Track ID2125 - - - Track ID2127 - - - Track ID2129 - - - Track ID2131 - - - Track ID2133 - - - Track ID2135 - - - Track ID2137 - - - Track ID2139 - - - Track ID2141 - - - Track ID2143 - - - Track ID2145 - - - Track ID2147 - - - Track ID2149 - - - Track ID2151 - - - Track ID2153 - - - Track ID2155 - - - Track ID2157 - - - Track ID2159 - - - Track ID2161 - - - Track ID2163 - - - Track ID2165 - - - Track ID2167 - - - Track ID2169 - - - Track ID2171 - - - Track ID2173 - - - Track ID2175 - - - Track ID2177 - - - Track ID2179 - - - Track ID2181 - - - Track ID2183 - - - Track ID2185 - - - Track ID2187 - - - Track ID2189 - - - Track ID2191 - - - Track ID2193 - - - Track ID2195 - - - Track ID2197 - - - Track ID2199 - - - Track ID2201 - - - Track ID2203 - - - Track ID2205 - - - Track ID2207 - - - Track ID2209 - - - Track ID2211 - - - Track ID2213 - - - Track ID2215 - - - Track ID2093 - - - Track ID2217 - - - Track ID2219 - - - Track ID2221 - - - Track ID2223 - - - Track ID2225 - - - Track ID2227 - - - Track ID2229 - - - Track ID2231 - - - Track ID2233 - - - Track ID2235 - - - Track ID2237 - - - Track ID2239 - - - Track ID2241 - - - Track ID2243 - - - Track ID2245 - - - Track ID2247 - - - Track ID2249 - - - Track ID2251 - - - Track ID2253 - - - Track ID2255 - - - Track ID2257 - - - Track ID2259 - - - Track ID2261 - - - Track ID2263 - - - Track ID2265 - - - - - NameDJ Mastermind presents: Very Hardstyle Vol. 2 - 2010 Editions - Playlist ID16767 - Playlist Persistent IDA9657D1B6504D5FC - All Items - Playlist Items - - - Track ID4235 - - - Track ID4237 - - - Track ID4239 - - - Track ID4241 - - - Track ID4243 - - - Track ID4245 - - - Track ID4247 - - - Track ID4249 - - - Track ID4251 - - - Track ID4253 - - - Track ID4255 - - - Track ID4257 - - - Track ID4259 - - - Track ID4261 - - - Track ID4263 - - - Track ID4265 - - - Track ID4267 - - - Track ID4269 - - - Track ID4271 - - - Track ID4273 - - - Track ID4275 - - - Track ID4277 - - - Track ID4279 - - - Track ID4281 - - - Track ID4283 - - - - - NameDJ Networx Vol. 13 - CD1 (2002) - Playlist ID16795 - Playlist Persistent ID7319EBDF1A222110 - All Items - Playlist Items - - - Track ID4467 - - - Track ID4469 - - - Track ID4471 - - - Track ID4473 - - - Track ID4475 - - - Track ID4477 - - - Track ID4479 - - - Track ID4481 - - - Track ID4483 - - - Track ID4485 - - - Track ID4487 - - - Track ID4489 - - - Track ID4491 - - - Track ID4493 - - - Track ID4495 - - - Track ID4497 - - - Track ID4499 - - - Track ID4501 - - - Track ID4503 - - - Track ID4505 - - - - - NameDJ Networx Vol. 13 - CD2 (2002) - Playlist ID16818 - Playlist Persistent ID3DC28287A311037C - All Items - Playlist Items - - - Track ID4427 - - - Track ID4429 - - - Track ID4431 - - - Track ID4433 - - - Track ID4435 - - - Track ID4437 - - - Track ID4439 - - - Track ID4441 - - - Track ID4443 - - - Track ID4445 - - - Track ID4447 - - - Track ID4449 - - - Track ID4451 - - - Track ID4453 - - - Track ID4455 - - - Track ID4457 - - - Track ID4459 - - - Track ID4461 - - - Track ID4463 - - - Track ID4465 - - - - - NameDJ Networx Vol. 17 - CD1 (2003) - Playlist ID16841 - Playlist Persistent IDB64EBEFDC20FCAB5 - All Items - Playlist Items - - - Track ID4507 - - - Track ID4509 - - - Track ID4511 - - - Track ID4513 - - - Track ID4515 - - - Track ID4517 - - - Track ID4519 - - - Track ID4521 - - - Track ID4523 - - - Track ID4525 - - - Track ID4527 - - - Track ID4529 - - - Track ID4531 - - - Track ID4533 - - - Track ID4535 - - - Track ID4537 - - - Track ID4539 - - - Track ID4541 - - - Track ID4543 - - - Track ID4545 - - - - - NameDJ Networx Vol. 17 - CD2 (2003) - Playlist ID16864 - Playlist Persistent IDDF8C57F1B4DEC57B - All Items - Playlist Items - - - Track ID4547 - - - Track ID4549 - - - Track ID4551 - - - Track ID4553 - - - Track ID4555 - - - Track ID4557 - - - Track ID4559 - - - Track ID4561 - - - Track ID4563 - - - Track ID4565 - - - Track ID4567 - - - Track ID4569 - - - Track ID4571 - - - Track ID4573 - - - Track ID4575 - - - Track ID4577 - - - Track ID4579 - - - Track ID4581 - - - Track ID4583 - - - Track ID4585 - - - - - NameDJ Networx Vol. 19 - CD2 (2003) - Playlist ID16887 - Playlist Persistent ID1DCE1159066E7F52 - All Items - Playlist Items - - - Track ID3053 - - - Track ID3055 - - - Track ID3057 - - - Track ID3059 - - - Track ID3061 - - - Track ID3063 - - - Track ID3065 - - - Track ID3067 - - - Track ID3069 - - - Track ID3071 - - - Track ID3073 - - - Track ID3075 - - - Track ID3077 - - - Track ID3079 - - - Track ID3081 - - - Track ID3083 - - - Track ID3085 - - - Track ID3087 - - - Track ID3089 - - - Track ID3091 - - - Track ID3093 - - - - - NameDJ Networx Vol. 21 - CD1 (2004) - Playlist ID16911 - Playlist Persistent ID2F89EE11F3F321B6 - All Items - Playlist Items - - - Track ID3581 - - - Track ID3583 - - - Track ID3585 - - - Track ID3587 - - - Track ID3589 - - - Track ID3591 - - - Track ID3593 - - - Track ID3595 - - - Track ID3597 - - - Track ID3599 - - - Track ID3601 - - - Track ID3603 - - - Track ID3605 - - - Track ID3607 - - - Track ID3609 - - - Track ID3611 - - - Track ID3613 - - - Track ID3615 - - - Track ID3617 - - - Track ID3619 - - - - - NameDJ Networx Vol. 43 - CD1 (2010) - Playlist ID16934 - Playlist Persistent IDEA7D30EEE08E9802 - All Items - Playlist Items - - - Track ID2907 - - - Track ID2909 - - - Track ID2911 - - - Track ID2913 - - - Track ID2915 - - - Track ID2917 - - - Track ID2919 - - - Track ID2921 - - - Track ID2923 - - - Track ID2925 - - - Track ID2927 - - - Track ID2929 - - - Track ID2931 - - - Track ID2933 - - - Track ID2935 - - - Track ID2937 - - - Track ID2939 - - - Track ID2941 - - - Track ID2943 - - - Track ID2945 - - - Track ID2947 - - - Track ID2949 - - - Track ID2951 - - - Track ID2953 - - - Track ID2955 - - - - - NameDJ Networx Vol. 43 - CD2 (2010) - Playlist ID16962 - Playlist Persistent ID7A6161C4702FABD8 - All Items - Playlist Items - - - Track ID2957 - - - Track ID2959 - - - Track ID2961 - - - Track ID2963 - - - Track ID2965 - - - Track ID2967 - - - Track ID2969 - - - Track ID2971 - - - Track ID2973 - - - Track ID2975 - - - Track ID2977 - - - Track ID2979 - - - Track ID2981 - - - Track ID2983 - - - Track ID2985 - - - Track ID2987 - - - Track ID2989 - - - Track ID2991 - - - Track ID2993 - - - Track ID2995 - - - Track ID2997 - - - Track ID2999 - - - Track ID3001 - - - Track ID3003 - - - Track ID3005 - - - - - NameDJ Networx Vol. 44 - CD1 (2010) - Playlist ID16990 - Playlist Persistent IDE70CBD1F8891C740 - All Items - Playlist Items - - - Track ID5031 - - - Track ID5033 - - - Track ID5035 - - - Track ID5037 - - - Track ID5039 - - - Track ID5041 - - - Track ID5043 - - - Track ID5045 - - - Track ID5047 - - - Track ID5049 - - - Track ID5051 - - - Track ID5053 - - - Track ID5055 - - - Track ID5057 - - - Track ID5059 - - - Track ID5061 - - - Track ID5063 - - - Track ID5065 - - - Track ID5067 - - - Track ID5069 - - - Track ID5071 - - - Track ID5073 - - - Track ID5075 - - - - - NameDJ Networx Vol. 44 - CD2 (2010) - Playlist ID17016 - Playlist Persistent IDC4AFBA0C11239498 - All Items - Playlist Items - - - Track ID5077 - - - Track ID5079 - - - Track ID5081 - - - Track ID5083 - - - Track ID5085 - - - Track ID5087 - - - Track ID5089 - - - Track ID5091 - - - Track ID5093 - - - Track ID5095 - - - Track ID5097 - - - Track ID5099 - - - Track ID5101 - - - Track ID5103 - - - Track ID5105 - - - Track ID5107 - - - Track ID5109 - - - Track ID5111 - - - Track ID5113 - - - Track ID5115 - - - Track ID5117 - - - Track ID5119 - - - Track ID5121 - - - - - NameDJ Networx Vol. 45 - CD1 (2010) - Playlist ID17042 - Playlist Persistent ID73A2E5178085339A - All Items - Playlist Items - - - Track ID5123 - - - Track ID5125 - - - Track ID5127 - - - Track ID5129 - - - Track ID5131 - - - Track ID5133 - - - Track ID5135 - - - Track ID5137 - - - Track ID5139 - - - Track ID5141 - - - Track ID5143 - - - Track ID5145 - - - Track ID5147 - - - Track ID5149 - - - Track ID5151 - - - Track ID5153 - - - Track ID5155 - - - Track ID5157 - - - Track ID5159 - - - Track ID5161 - - - Track ID5163 - - - Track ID5165 - - - Track ID5167 - - - Track ID5169 - - - Track ID5171 - - - - - NameDJ Networx Vol. 45 - CD2 (2010) - Playlist ID17070 - Playlist Persistent IDE3CBCD496D05A2A8 - All Items - Playlist Items - - - Track ID5173 - - - Track ID5175 - - - Track ID5177 - - - Track ID5179 - - - Track ID5181 - - - Track ID5183 - - - Track ID5185 - - - Track ID5187 - - - Track ID5189 - - - Track ID5191 - - - Track ID5193 - - - Track ID5195 - - - Track ID5197 - - - Track ID5199 - - - Track ID5201 - - - Track ID5203 - - - Track ID5205 - - - Track ID5207 - - - Track ID5209 - - - Track ID5211 - - - Track ID5213 - - - Track ID5215 - - - Track ID5217 - - - Track ID5219 - - - Track ID5221 - - - - - NameDJ Networx Vol. 46 - CD1 (2010) - Playlist ID18946 - Playlist Persistent ID735188E97E6D2F2E - All Items - Playlist Items - - - Track ID5223 - - - Track ID5225 - - - Track ID5227 - - - Track ID5229 - - - Track ID5231 - - - Track ID5233 - - - Track ID5235 - - - Track ID5237 - - - Track ID5239 - - - Track ID5241 - - - Track ID5243 - - - Track ID5245 - - - Track ID5247 - - - Track ID5249 - - - Track ID5251 - - - Track ID5253 - - - Track ID5255 - - - Track ID5257 - - - Track ID5259 - - - Track ID5261 - - - Track ID5263 - - - Track ID5265 - - - Track ID5267 - - - Track ID5269 - - - Track ID5271 - - - - - NameDJ Networx Vol. 46 - CD2 (2010) - Playlist ID18974 - Playlist Persistent ID337679EB8BD441BD - All Items - Playlist Items - - - Track ID5273 - - - Track ID5275 - - - Track ID5277 - - - Track ID5279 - - - Track ID5281 - - - Track ID5283 - - - Track ID5285 - - - Track ID5287 - - - Track ID5289 - - - Track ID5291 - - - Track ID5293 - - - Track ID5295 - - - Track ID5297 - - - Track ID5299 - - - Track ID5301 - - - Track ID5303 - - - Track ID5305 - - - Track ID5307 - - - Track ID5309 - - - Track ID5311 - - - Track ID5313 - - - Track ID5315 - - - Track ID5317 - - - Track ID5319 - - - Track ID5321 - - - - - NameDJ Networx Vol. 47 - CD1 (2011) - Playlist ID19002 - Playlist Persistent ID5C3A3C20448FCFA8 - All Items - Playlist Items - - - Track ID5323 - - - Track ID5325 - - - Track ID5327 - - - Track ID5329 - - - Track ID5331 - - - Track ID5333 - - - Track ID5335 - - - Track ID5337 - - - Track ID5339 - - - Track ID5341 - - - Track ID5343 - - - Track ID5345 - - - Track ID5347 - - - Track ID5349 - - - Track ID5351 - - - Track ID5353 - - - Track ID5355 - - - Track ID5357 - - - Track ID5359 - - - Track ID5361 - - - Track ID5363 - - - Track ID5365 - - - Track ID5367 - - - Track ID5369 - - - Track ID5371 - - - - - NameDJ Networx Vol. 47 - CD2 (2011) - Playlist ID19030 - Playlist Persistent ID1B8CDBD4C65DA624 - All Items - Playlist Items - - - Track ID5373 - - - Track ID5375 - - - Track ID5377 - - - Track ID5379 - - - Track ID5381 - - - Track ID5383 - - - Track ID5385 - - - Track ID5387 - - - Track ID5389 - - - Track ID5391 - - - Track ID5393 - - - Track ID5395 - - - Track ID5397 - - - Track ID5399 - - - Track ID5401 - - - Track ID5403 - - - Track ID5405 - - - Track ID5407 - - - Track ID5409 - - - Track ID5411 - - - Track ID5413 - - - Track ID5415 - - - Track ID5417 - - - Track ID5419 - - - Track ID5421 - - - - - NameDJ Networx Vol. 48 - CD1 (2011) - Playlist ID19058 - Playlist Persistent ID02931AC682462158 - All Items - Playlist Items - - - Track ID5423 - - - Track ID5425 - - - Track ID5427 - - - Track ID5429 - - - Track ID5431 - - - Track ID5433 - - - Track ID5435 - - - Track ID5437 - - - Track ID5439 - - - Track ID5441 - - - Track ID5443 - - - Track ID5445 - - - Track ID5447 - - - Track ID5449 - - - Track ID5451 - - - Track ID5453 - - - Track ID5455 - - - Track ID5457 - - - Track ID5459 - - - Track ID5461 - - - Track ID5463 - - - Track ID5465 - - - Track ID5467 - - - Track ID5469 - - - Track ID5471 - - - - - NameDJ Networx Vol. 48 - CD2 (2011) - Playlist ID19086 - Playlist Persistent IDBF8472F40E6335AA - All Items - Playlist Items - - - Track ID5473 - - - Track ID5475 - - - Track ID5477 - - - Track ID5479 - - - Track ID5481 - - - Track ID5483 - - - Track ID5485 - - - Track ID5487 - - - Track ID5489 - - - Track ID5491 - - - Track ID5493 - - - Track ID5495 - - - Track ID5497 - - - Track ID5499 - - - Track ID5501 - - - Track ID5503 - - - Track ID5505 - - - Track ID5507 - - - Track ID5509 - - - Track ID5511 - - - Track ID5513 - - - Track ID5515 - - - Track ID5517 - - - Track ID5519 - - - Track ID5521 - - - - - NameDJ Networx Vol. 49 - CD1 (2011) - Playlist ID19114 - Playlist Persistent ID6C14E8BA00E050B2 - All Items - Playlist Items - - - Track ID5523 - - - Track ID5525 - - - Track ID5527 - - - Track ID5529 - - - Track ID5531 - - - Track ID5533 - - - Track ID5535 - - - Track ID5537 - - - Track ID5539 - - - Track ID5541 - - - Track ID5543 - - - Track ID5545 - - - Track ID5547 - - - Track ID5549 - - - Track ID5551 - - - Track ID5553 - - - Track ID5555 - - - Track ID5557 - - - Track ID5559 - - - Track ID5561 - - - Track ID5563 - - - Track ID5565 - - - Track ID5567 - - - Track ID5569 - - - Track ID5571 - - - - - NameDJ Networx Vol. 49 - CD2 (2011) - Playlist ID19142 - Playlist Persistent ID46C4B51CDCCAA3B4 - All Items - Playlist Items - - - Track ID5573 - - - Track ID5575 - - - Track ID5577 - - - Track ID5579 - - - Track ID5581 - - - Track ID5583 - - - Track ID5585 - - - Track ID5587 - - - Track ID5589 - - - Track ID5591 - - - Track ID5593 - - - Track ID5595 - - - Track ID5597 - - - Track ID5599 - - - Track ID5601 - - - Track ID5603 - - - Track ID5605 - - - Track ID5607 - - - Track ID5609 - - - Track ID5611 - - - Track ID5613 - - - Track ID5615 - - - Track ID5617 - - - Track ID5619 - - - Track ID5621 - - - - - NameDJ Networx Vol. 50 - CD1 (2011) - Playlist ID19170 - Playlist Persistent IDA348F5E09B20FAB0 - All Items - Playlist Items - - - Track ID5623 - - - Track ID5625 - - - Track ID5627 - - - Track ID5629 - - - Track ID5631 - - - Track ID5633 - - - Track ID5635 - - - Track ID5637 - - - Track ID5639 - - - Track ID5641 - - - Track ID5643 - - - Track ID5645 - - - Track ID5647 - - - Track ID5649 - - - Track ID5651 - - - Track ID5653 - - - Track ID5655 - - - Track ID5657 - - - Track ID5659 - - - Track ID5661 - - - Track ID5663 - - - Track ID5665 - - - Track ID5667 - - - Track ID5669 - - - Track ID5671 - - - - - NameDJ Networx Vol. 50 - CD2 (2011) - Playlist ID19198 - Playlist Persistent ID331E40DAA3AE88F4 - All Items - Playlist Items - - - Track ID5673 - - - Track ID5675 - - - Track ID5677 - - - Track ID5679 - - - Track ID5681 - - - Track ID5683 - - - Track ID5685 - - - Track ID5687 - - - Track ID5689 - - - Track ID5691 - - - Track ID5693 - - - Track ID5695 - - - Track ID5697 - - - Track ID5699 - - - Track ID5701 - - - Track ID5703 - - - Track ID5705 - - - Track ID5707 - - - Track ID5709 - - - Track ID5711 - - - Track ID5713 - - - Track ID5715 - - - Track ID5717 - - - Track ID5719 - - - Track ID5721 - - - - - NameDJ Networx Vol. 51 - CD1 (2012) - Playlist ID19254 - Playlist Persistent ID5A0369E914A0D6A4 - All Items - Playlist Items - - - Track ID5773 - - - Track ID5775 - - - Track ID5777 - - - Track ID5779 - - - Track ID5781 - - - Track ID5783 - - - Track ID5785 - - - Track ID5787 - - - Track ID5789 - - - Track ID6183 - - - Track ID5791 - - - Track ID5793 - - - Track ID5795 - - - Track ID5797 - - - Track ID6185 - - - Track ID5799 - - - Track ID6187 - - - Track ID6189 - - - Track ID6191 - - - Track ID6193 - - - Track ID5801 - - - Track ID5803 - - - Track ID5805 - - - Track ID5807 - - - Track ID5809 - - - - - NameDJ Networx Vol. 51 - CD2 (2012) - Playlist ID19226 - Playlist Persistent ID9DB3B86805C9A3E4 - All Items - Playlist Items - - - 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 ID5755 - - - Track ID5757 - - - Track ID5759 - - - Track ID5761 - - - Track ID5763 - - - Track ID5765 - - - Track ID5767 - - - Track ID5769 - - - Track ID5771 - - - - - NameDJ Networx Vol. 52 - CD1 (2012) - Playlist ID19282 - Playlist Persistent ID8C9385C594D14F3A - All Items - Playlist Items - - - Track ID5861 - - - Track ID5863 - - - Track ID5865 - - - Track ID5867 - - - Track ID5869 - - - Track ID5871 - - - Track ID5873 - - - Track ID5875 - - - Track ID5877 - - - Track ID5879 - - - Track ID5881 - - - Track ID5883 - - - Track ID5885 - - - Track ID5887 - - - Track ID5889 - - - Track ID5891 - - - Track ID5893 - - - Track ID5895 - - - Track ID5897 - - - Track ID5899 - - - Track ID5901 - - - Track ID5903 - - - Track ID5905 - - - Track ID5907 - - - Track ID5909 - - - - - NameDJ Networx Vol. 52 - CD2 (2012) - Playlist ID19310 - Playlist Persistent ID3979D81EB44211A1 - All Items - Playlist Items - - - Track ID5811 - - - Track ID5813 - - - Track ID5815 - - - Track ID5817 - - - Track ID5819 - - - Track ID5821 - - - Track ID5823 - - - Track ID5825 - - - Track ID5827 - - - Track ID5829 - - - Track ID5831 - - - Track ID5833 - - - Track ID5835 - - - Track ID5837 - - - Track ID5839 - - - Track ID5841 - - - Track ID5843 - - - Track ID5845 - - - Track ID5847 - - - Track ID5849 - - - Track ID5851 - - - Track ID5853 - - - Track ID5855 - - - Track ID5857 - - - Track ID5859 - - - - - NameDJ Networx Vol. 53 - CD1 (2012) - Playlist ID19338 - Playlist Persistent ID33B577939279482D - All Items - Playlist Items - - - Track ID5961 - - - Track ID5963 - - - Track ID5965 - - - Track ID5967 - - - Track ID5969 - - - Track ID5971 - - - Track ID5973 - - - Track ID5975 - - - Track ID5977 - - - Track ID5979 - - - Track ID5981 - - - Track ID5983 - - - Track ID5985 - - - Track ID5987 - - - Track ID5989 - - - Track ID5991 - - - Track ID5993 - - - Track ID5995 - - - Track ID5997 - - - Track ID5999 - - - Track ID6001 - - - Track ID6003 - - - Track ID6005 - - - Track ID6007 - - - Track ID6009 - - - - - NameDJ Networx Vol. 53 - CD2 (2012) - Playlist ID19366 - Playlist Persistent ID298D5BB395793AB5 - All Items - Playlist Items - - - Track ID5911 - - - Track ID5913 - - - Track ID5915 - - - Track ID5917 - - - Track ID5919 - - - Track ID5921 - - - Track ID5923 - - - Track ID5925 - - - Track ID5927 - - - Track ID5929 - - - Track ID5931 - - - Track ID5933 - - - Track ID5935 - - - Track ID5937 - - - Track ID5939 - - - Track ID5941 - - - Track ID5943 - - - Track ID5945 - - - Track ID5947 - - - Track ID5949 - - - Track ID5951 - - - Track ID5953 - - - Track ID5955 - - - Track ID5957 - - - Track ID5959 - - - - - NameDJ Rectangle - 1200s Never Die (2003) - Playlist ID17098 - Playlist Persistent IDCEF413DE52F091E2 - All Items - Playlist Items - - - Track ID1423 - - - Track ID1425 - - - Track ID1427 - - - Track ID1429 - - - Track ID1431 - - - Track ID1433 - - - Track ID1435 - - - Track ID1437 - - - Track ID1439 - - - Track ID1441 - - - Track ID1443 - - - Track ID1445 - - - Track ID1447 - - - Track ID1449 - - - Track ID1451 - - - Track ID1453 - - - Track ID1455 - - - Track ID1457 - - - Track ID1459 - - - Track ID1461 - - - Track ID1463 - - - Track ID1465 - - - Track ID1467 - - - Track ID1469 - - - Track ID1471 - - - Track ID1473 - - - Track ID1475 - - - Track ID1477 - - - Track ID1479 - - - Track ID1481 - - - Track ID1483 - - - Track ID1485 - - - Track ID1487 - - - Track ID1489 - - - Track ID1491 - - - Track ID1493 - - - Track ID1495 - - - Track ID1497 - - - Track ID1499 - - - Track ID1501 - - - Track ID1503 - - - Track ID1505 - - - Track ID1507 - - - Track ID1509 - - - Track ID1511 - - - Track ID1513 - - - Track ID1515 - - - Track ID1517 - - - Track ID1519 - - - Track ID1521 - - - - - NameDJ Rectangle - Turntable Tortures (2002) - Playlist ID17151 - Playlist Persistent ID91504E64C716061D - All Items - Playlist Items - - - Track ID1605 - - - Track ID1607 - - - Track ID1609 - - - Track ID1611 - - - Track ID1613 - - - Track ID1615 - - - Track ID1617 - - - Track ID1619 - - - Track ID1621 - - - Track ID1623 - - - Track ID1625 - - - Track ID1627 - - - Track ID1629 - - - Track ID1631 - - - Track ID1633 - - - Track ID1635 - - - Track ID1637 - - - Track ID1639 - - - Track ID1641 - - - Track ID1643 - - - Track ID1645 - - - Track ID1647 - - - Track ID1649 - - - Track ID1651 - - - Track ID1653 - - - Track ID1655 - - - Track ID1657 - - - Track ID1659 - - - Track ID1661 - - - Track ID1663 - - - Track ID1665 - - - Track ID1667 - - - Track ID1669 - - - Track ID1671 - - - Track ID1673 - - - Track ID1675 - - - Track ID1677 - - - Track ID1679 - - - Track ID1681 - - - Track ID1683 - - - Track ID1685 - - - Track ID1687 - - - Track ID1689 - - - Track ID1691 - - - Track ID1693 - - - Track ID1695 - - - Track ID1697 - - - Track ID1699 - - - - - NameDJ Rectangle - Wax On Wax Off (2004) - Playlist ID17202 - Playlist Persistent ID2E25688AD96A6EF8 - All Items - Playlist Items - - - Track ID1523 - - - Track ID1525 - - - Track ID1527 - - - Track ID1529 - - - Track ID1531 - - - Track ID1533 - - - Track ID1535 - - - Track ID1537 - - - Track ID1539 - - - Track ID1541 - - - Track ID1543 - - - Track ID1545 - - - Track ID1547 - - - Track ID1549 - - - Track ID1551 - - - Track ID1553 - - - Track ID1555 - - - Track ID1557 - - - Track ID1559 - - - Track ID1561 - - - Track ID1563 - - - Track ID1565 - - - Track ID1567 - - - Track ID1569 - - - Track ID1571 - - - Track ID1573 - - - Track ID1575 - - - Track ID1577 - - - Track ID1579 - - - Track ID1581 - - - Track ID1583 - - - Track ID1585 - - - Track ID1587 - - - Track ID1589 - - - Track ID1591 - - - Track ID1593 - - - Track ID1595 - - - Track ID1597 - - - Track ID1599 - - - Track ID1601 - - - Track ID1603 - - - - - NameElectric Daisy Carnival 2010 - Playlist ID17246 - Playlist Persistent ID42EEFB17BF20A245 - All Items - Playlist Items - - - Track ID6771 - - - Track ID6773 - - - Track ID6775 - - - Track ID6777 - - - Track ID6779 - - - Track ID6781 - - - Track ID6783 - - - Track ID6785 - - - Track ID6787 - - - Track ID6789 - - - Track ID6791 - - - Track ID6793 - - - Track ID6795 - - - Track ID6797 - - - Track ID6799 - - - Track ID6801 - - - - - NameElectric Zoo Festival 2009 - Playlist ID17265 - Playlist Persistent ID419557B0E246831C - All Items - Playlist Items - - - Track ID3027 - - - Track ID3021 - - - Track ID3037 - - - Track ID3025 - - - Track ID3029 - - - Track ID3041 - - - Track ID3043 - - - Track ID3033 - - - Track ID3039 - - - Track ID3031 - - - Track ID3023 - - - Track ID3035 - - - Track ID3045 - - - Track ID3047 - - - - - NameElectric Zoo Festival 2010 - Playlist ID17282 - Playlist Persistent ID07C81A6B3086BD94 - All Items - Playlist Items - - - Track ID6723 - - - Track ID6725 - - - Track ID6727 - - - Track ID6729 - - - Track ID6731 - - - Track ID6733 - - - Track ID6735 - - - Track ID6737 - - - Track ID6739 - - - Track ID6741 - - - Track ID6743 - - - Track ID6745 - - - Track ID6747 - - - Track ID6749 - - - Track ID6751 - - - Track ID6753 - - - Track ID6755 - - - Track ID6757 - - - Track ID6759 - - - Track ID6761 - - - Track ID6763 - - - Track ID6765 - - - Track ID6767 - - - Track ID6769 - - - - - NameGenius - Playlist ID14870 - Playlist Persistent ID90EB208B7B02C5FA - All Items - - - NameGirl Talk - All Day (2010) - Playlist ID18841 - Playlist Persistent IDA24284919F1195DF - All Items - Playlist Items - - - Track ID4859 - - - Track ID4861 - - - Track ID4863 - - - Track ID4865 - - - Track ID4867 - - - Track ID4869 - - - Track ID4871 - - - Track ID4873 - - - Track ID4875 - - - Track ID4877 - - - Track ID4879 - - - Track ID4881 - - - - - NameGreen Day - Playlist ID17309 - Playlist Persistent IDD5D2BFF46C9ECCE6 - All Items - Playlist Items - - - Track ID2613 - - - Track ID2615 - - - Track ID2617 - - - Track ID2529 - - - Track ID2289 - - - Track ID2619 - - - Track ID2479 - - - Track ID2621 - - - Track ID2623 - - - Track ID2625 - - - Track ID2627 - - - Track ID2629 - - - Track ID2631 - - - Track ID2633 - - - Track ID2635 - - - Track ID2637 - - - Track ID2639 - - - Track ID2477 - - - Track ID2641 - - - Track ID2643 - - - Track ID2645 - - - Track ID2647 - - - Track ID2649 - - - Track ID2527 - - - Track ID2651 - - - Track ID2653 - - - Track ID2655 - - - Track ID2657 - - - Track ID2659 - - - Track ID2661 - - - Track ID2663 - - - Track ID2665 - - - Track ID2667 - - - Track ID2669 - - - Track ID2671 - - - Track ID2673 - - - Track ID2675 - - - Track ID2677 - - - Track ID2679 - - - Track ID2507 - - - Track ID2681 - - - Track ID2493 - - - Track ID2683 - - - Track ID2685 - - - Track ID2397 - - - Track ID2687 - - - Track ID3393 - - - Track ID3395 - - - Track ID3397 - - - Track ID3399 - - - Track ID3401 - - - Track ID3403 - - - Track ID3405 - - - Track ID3407 - - - Track ID3409 - - - Track ID3411 - - - Track ID3413 - - - Track ID3415 - - - Track ID3195 - - - Track ID3197 - - - Track ID3199 - - - Track ID3201 - - - Track ID3203 - - - Track ID3205 - - - Track ID3207 - - - Track ID3209 - - - Track ID3211 - - - Track ID3213 - - - Track ID3215 - - - Track ID3217 - - - Track ID3219 - - - Track ID3221 - - - Track ID3223 - - - Track ID3225 - - - Track ID3227 - - - Track ID3229 - - - Track ID3231 - - - Track ID3233 - - - Track ID3235 - - - Track ID3237 - - - Track ID3239 - - - Track ID3241 - - - Track ID3243 - - - Track ID3245 - - - Track ID3247 - - - Track ID3249 - - - Track ID3251 - - - Track ID3253 - - - Track ID3255 - - - - - NameHardstyle - Playlist ID17401 - Playlist Persistent IDC1ACA98421A078A8 - All Items - Playlist Items - - - Track ID4113 - - - Track ID4117 - - - Track ID4285 - - - Track ID4287 - - - Track ID4607 - - - - - NameHardstyle Mix Masterz Vol. 1 (2009) - Playlist ID17409 - Playlist Persistent IDE96543E7841F89D6 - All Items - Playlist Items - - - Track ID4609 - - - Track ID4611 - - - Track ID4613 - - - Track ID4615 - - - Track ID4617 - - - Track ID4619 - - - Track ID4621 - - - Track ID4623 - - - Track ID4625 - - - Track ID4627 - - - Track ID4629 - - - Track ID4631 - - - Track ID4633 - - - Track ID4635 - - - Track ID4637 - - - Track ID4639 - - - Track ID4641 - - - Track ID4643 - - - Track ID4645 - - - Track ID4647 - - - - - NameHead Automatica - Decadence (2004) - Playlist ID17432 - Playlist Persistent ID0EF9770642EA5270 - All Items - Playlist Items - - - Track ID4749 - - - Track ID4751 - - - Track ID4753 - - - Track ID4755 - - - Track ID4757 - - - Track ID4759 - - - Track ID4761 - - - Track ID4763 - - - Track ID4765 - - - Track ID4767 - - - Track ID4769 - - - - - NameHip Hop - Playlist ID17446 - Playlist Persistent ID7ABF91B0F9FF5E1B - All Items - Playlist Items - - - Track ID1257 - - - Track ID1259 - - - Track ID1261 - - - Track ID1263 - - - Track ID1265 - - - Track ID1267 - - - Track ID1269 - - - Track ID1271 - - - Track ID1273 - - - Track ID1275 - - - Track ID1277 - - - Track ID1279 - - - Track ID1281 - - - Track ID1283 - - - Track ID1285 - - - Track ID1287 - - - Track ID1289 - - - Track ID1291 - - - Track ID1293 - - - Track ID1295 - - - Track ID1389 - - - Track ID1391 - - - Track ID1387 - - - Track ID1779 - - - Track ID1297 - - - Track ID1729 - - - Track ID1731 - - - Track ID1299 - - - Track ID1311 - - - Track ID1313 - - - Track ID1315 - - - Track ID1317 - - - Track ID1383 - - - Track ID1385 - - - Track ID1781 - - - Track ID2087 - - - Track ID4111 - - - Track ID5021 - - - Track ID6809 - - - - - NameiTunes DJ - Playlist ID14873 - Playlist Persistent IDE096B0602FE3484E - All Items - - - NameJ-Force - Hardstyle Summer Mix 2010 - Playlist ID17488 - Playlist Persistent IDCDF51E63ECA18B8F - All Items - Playlist Items - - - Track ID4289 - - - Track ID4291 - - - Track ID4293 - - - Track ID4295 - - - Track ID4297 - - - Track ID4299 - - - Track ID4301 - - - Track ID4303 - - - Track ID4305 - - - Track ID4307 - - - Track ID4309 - - - Track ID4311 - - - Track ID4313 - - - Track ID4315 - - - Track ID4317 - - - Track ID4319 - - - Track ID4321 - - - Track ID4323 - - - Track ID4325 - - - Track ID4327 - - - Track ID4329 - - - Track ID4331 - - - Track ID4333 - - - Track ID4335 - - - Track ID4337 - - - Track ID4339 - - - Track ID4341 - - - Track ID4343 - - - Track ID4345 - - - Track ID4347 - - - Track ID4349 - - - Track ID4351 - - - Track ID4353 - - - - - NameJapanese Cartoon - In the Jaws of the Lords of Death - Playlist ID17524 - Playlist Persistent ID2AB85F04BC583DCA - All Items - Playlist Items - - - Track ID4587 - - - Track ID4589 - - - Track ID4591 - - - Track ID4593 - - - Track ID4595 - - - Track ID4597 - - - Track ID4599 - - - Track ID4601 - - - Track ID4603 - - - - - NameJohn Digweed: Transitions - Playlist ID17536 - Playlist Persistent IDF94B8B9B6447AB9F - All Items - Playlist Items - - - Track ID3051 - - - Track ID3981 - - - Track ID3983 - - - Track ID3985 - - - - - NameKaskade - Strobelight (2009) - Playlist ID17543 - Playlist Persistent ID966E8663D93770A8 - All Items - Playlist Items - - - Track ID2007 - - - Track ID2009 - - - Track ID2011 - - - Track ID2013 - - - Track ID2015 - - - Track ID2017 - - - Track ID2019 - - - Track ID2021 - - - Track ID2023 - - - Track ID2025 - - - - - NameLess Than Jake - Anthology - Playlist ID17556 - Playlist Persistent IDA1A627E5636EB583 - All Items - Playlist Items - - - Track ID1157 - - - Track ID1159 - - - Track ID1161 - - - Track ID1237 - - - Track ID1163 - - - Track ID1165 - - - Track ID1167 - - - Track ID1169 - - - Track ID2313 - - - Track ID1171 - - - Track ID1173 - - - Track ID1175 - - - Track ID1177 - - - Track ID1179 - - - Track ID1181 - - - Track ID1183 - - - Track ID1185 - - - Track ID1187 - - - Track ID1189 - - - Track ID1191 - - - Track ID1193 - - - Track ID1195 - - - Track ID1197 - - - Track ID1199 - - - Track ID1201 - - - Track ID1203 - - - Track ID1205 - - - Track ID1207 - - - Track ID1209 - - - Track ID1211 - - - Track ID1213 - - - Track ID1215 - - - Track ID1217 - - - Track ID1219 - - - Track ID1221 - - - Track ID1223 - - - Track ID1225 - - - Track ID1227 - - - Track ID1229 - - - Track ID1783 - - - Track ID1787 - - - Track ID1789 - - - Track ID1791 - - - Track ID1795 - - - Track ID1797 - - - Track ID1799 - - - Track ID1801 - - - Track ID1803 - - - Track ID1807 - - - Track ID1809 - - - - - NameMonthly Hardstyle Mix 03 - March 2009 - CD1 - Playlist ID17609 - Playlist Persistent ID4A8C760EF93D6236 - All Items - Playlist Items - - - Track ID4069 - - - Track ID4071 - - - Track ID4073 - - - Track ID4075 - - - Track ID4077 - - - Track ID4079 - - - Track ID4081 - - - Track ID4083 - - - Track ID4085 - - - Track ID4087 - - - Track ID4089 - - - Track ID4091 - - - Track ID4093 - - - Track ID4095 - - - Track ID4097 - - - Track ID4099 - - - Track ID4101 - - - Track ID4103 - - - Track ID4105 - - - - - NameMonthly Hardstyle Mix 03 - March 2009 - CD2 - Playlist ID17631 - Playlist Persistent IDE21614FE471C7A72 - All Items - Playlist Items - - - Track ID4031 - - - Track ID4033 - - - Track ID4035 - - - Track ID4037 - - - Track ID4039 - - - Track ID4041 - - - Track ID4043 - - - Track ID4045 - - - Track ID4047 - - - Track ID4049 - - - Track ID4051 - - - Track ID4053 - - - Track ID4055 - - - Track ID4057 - - - Track ID4059 - - - Track ID4061 - - - Track ID4063 - - - Track ID4065 - - - Track ID4067 - - - - - NameMonthly Hardstyle Mix 03 - March 2009 - CD3 - Playlist ID17653 - Playlist Persistent IDB42DD8B5F10D3668 - All Items - Playlist Items - - - Track ID3993 - - - Track ID3995 - - - Track ID3997 - - - Track ID3999 - - - Track ID4001 - - - Track ID4003 - - - Track ID4005 - - - Track ID4007 - - - Track ID4009 - - - Track ID4011 - - - Track ID4013 - - - Track ID4015 - - - Track ID4017 - - - Track ID4019 - - - Track ID4021 - - - Track ID4023 - - - Track ID4025 - - - Track ID4027 - - - Track ID4029 - - - - - NameMovies - Playlist ID14855 - Playlist Persistent ID54F574CB4AF1A52D - All Items - - - NameMusic - Playlist ID13038 - Playlist Persistent IDADD03BCE5915EE54 - All Items - Playlist Items - - - Track ID2413 - - - Track ID2353 - - - Track ID2433 - - - Track ID1883 - - - Track ID3195 - - - Track ID3197 - - - Track ID3199 - - - Track ID3201 - - - Track ID3203 - - - Track ID3205 - - - Track ID3207 - - - Track ID3209 - - - Track ID3211 - - - Track ID3213 - - - Track ID3215 - - - Track ID3217 - - - Track ID3219 - - - Track ID1371 - - - Track ID1283 - - - Track ID1245 - - - Track ID1215 - - - Track ID1207 - - - Track ID1209 - - - Track ID1211 - - - Track ID1213 - - - Track ID1217 - - - Track ID3713 - - - Track ID4745 - - - Track ID3715 - - - Track ID2487 - - - Track ID2003 - - - Track ID3875 - - - Track ID3877 - - - Track ID4227 - - - Track ID4229 - - - Track ID3787 - - - Track ID3789 - - - Track ID3797 - - - Track ID3805 - - - Track ID3811 - - - Track ID3749 - - - Track ID3743 - - - Track ID3747 - - - Track ID3751 - - - Track ID3745 - - - Track ID3755 - - - Track ID1343 - - - Track ID1889 - - - Track ID1355 - - - Track ID1259 - - - Track ID3865 - - - Track ID2061 - - - Track ID1261 - - - Track ID1327 - - - Track ID1257 - - - Track ID1203 - - - Track ID1205 - - - Track ID1331 - - - Track ID1329 - - - Track ID2301 - - - Track ID1367 - - - Track ID2037 - - - Track ID4737 - - - Track ID1277 - - - Track ID1263 - - - Track ID1323 - - - Track ID2083 - - - Track ID1701 - - - Track ID1703 - - - Track ID1705 - - - Track ID1707 - - - Track ID1709 - - - Track ID1711 - - - Track ID1713 - - - Track ID1715 - - - Track ID1717 - - - Track ID1719 - - - Track ID1721 - - - Track ID1723 - - - Track ID1725 - - - Track ID1727 - - - Track ID2691 - - - Track ID2693 - - - Track ID2695 - - - Track ID2697 - - - Track ID2699 - - - Track ID2701 - - - Track ID2703 - - - Track ID2705 - - - Track ID2707 - - - Track ID2709 - - - Track ID2711 - - - Track ID2713 - - - Track ID1989 - - - Track ID2365 - - - Track ID2535 - - - Track ID2319 - - - Track ID3419 - - - Track ID3421 - - - Track ID3425 - - - Track ID3417 - - - Track ID3423 - - - Track ID3433 - - - Track ID3427 - - - Track ID3431 - - - Track ID3429 - - - Track ID3459 - - - Track ID3469 - - - Track ID3463 - - - Track ID3467 - - - Track ID3461 - - - Track ID3471 - - - Track ID3465 - - - Track ID3453 - - - Track ID3455 - - - Track ID3449 - - - Track ID3447 - - - Track ID3437 - - - Track ID3445 - - - Track ID3439 - - - Track ID3457 - - - Track ID3435 - - - Track ID3451 - - - Track ID3441 - - - Track ID3443 - - - Track ID3513 - - - Track ID3509 - - - Track ID3511 - - - Track ID3507 - - - Track ID3477 - - - Track ID3479 - - - Track ID3481 - - - Track ID3483 - - - Track ID3485 - - - Track ID3487 - - - Track ID3489 - - - Track ID3491 - - - Track ID3493 - - - Track ID3495 - - - Track ID3497 - - - Track ID3499 - - - Track ID3503 - - - Track ID3505 - - - Track ID3501 - - - Track ID3515 - - - Track ID3517 - - - Track ID3519 - - - Track ID3521 - - - Track ID3523 - - - Track ID3525 - - - Track ID3527 - - - Track ID3529 - - - Track ID3531 - - - Track ID3533 - - - Track ID3535 - - - Track ID3537 - - - Track ID3539 - - - Track ID2345 - - - Track ID2349 - - - Track ID2405 - - - Track ID4713 - - - Track ID4719 - - - Track ID4705 - - - Track ID4701 - - - Track ID4715 - - - Track ID4727 - - - Track ID4717 - - - Track ID4723 - - - Track ID4721 - - - Track ID4725 - - - Track ID4703 - - - Track ID4709 - - - Track ID4711 - - - Track ID4707 - - - Track ID1317 - - - Track ID1315 - - - Track ID4749 - - - Track ID4751 - - - Track ID4753 - - - Track ID4755 - - - Track ID4757 - - - Track ID4759 - - - Track ID4761 - - - Track ID4763 - - - Track ID4765 - - - Track ID4767 - - - Track ID4769 - - - Track ID4125 - - - Track ID4127 - - - Track ID4129 - - - Track ID4131 - - - Track ID4133 - - - Track ID4135 - - - Track ID4137 - - - Track ID4139 - - - Track ID4141 - - - Track ID4143 - - - Track ID4145 - - - Track ID4147 - - - Track ID4149 - - - Track ID4151 - - - Track ID4153 - - - Track ID4155 - - - Track ID4157 - - - Track ID4159 - - - Track ID1239 - - - Track ID2285 - - - Track ID1247 - - - Track ID1875 - - - Track ID1905 - - - Track ID2067 - - - Track ID2069 - - - Track ID2071 - - - Track ID2073 - - - Track ID2607 - - - Track ID2101 - - - Track ID2251 - - - Track ID2103 - - - Track ID2105 - - - Track ID2107 - - - Track ID2109 - - - Track ID2111 - - - Track ID2113 - - - Track ID2115 - - - Track ID2091 - - - Track ID2117 - - - Track ID2119 - - - Track ID2121 - - - Track ID2123 - - - Track ID2125 - - - Track ID2127 - - - Track ID2129 - - - Track ID2131 - - - Track ID2133 - - - Track ID2135 - - - Track ID2137 - - - Track ID2139 - - - Track ID2141 - - - Track ID2143 - - - Track ID2145 - - - Track ID2147 - - - Track ID2149 - - - Track ID2151 - - - Track ID2153 - - - Track ID2155 - - - Track ID2157 - - - Track ID2159 - - - Track ID2161 - - - Track ID2163 - - - Track ID2165 - - - Track ID2167 - - - Track ID2169 - - - Track ID2171 - - - Track ID2173 - - - Track ID2175 - - - Track ID2177 - - - Track ID2179 - - - Track ID2181 - - - Track ID2183 - - - Track ID2185 - - - Track ID2187 - - - Track ID2189 - - - Track ID2191 - - - Track ID2193 - - - Track ID2195 - - - Track ID2197 - - - Track ID2199 - - - Track ID2201 - - - Track ID2203 - - - Track ID2205 - - - Track ID2253 - - - Track ID2207 - - - Track ID2209 - - - Track ID2211 - - - Track ID2213 - - - Track ID2215 - - - Track ID2093 - - - Track ID2217 - - - Track ID2219 - - - Track ID2221 - - - Track ID2223 - - - Track ID2225 - - - Track ID2227 - - - Track ID2229 - - - Track ID2231 - - - Track ID2233 - - - Track ID2235 - - - Track ID2237 - - - Track ID2239 - - - Track ID2255 - - - Track ID2241 - - - Track ID2243 - - - Track ID2245 - - - Track ID2247 - - - Track ID2249 - - - Track ID2257 - - - Track ID2259 - - - Track ID2261 - - - Track ID2263 - - - Track ID2265 - - - Track ID2095 - - - Track ID2097 - - - Track ID2099 - - - Track ID1925 - - - Track ID4467 - - - Track ID4469 - - - Track ID4471 - - - Track ID4473 - - - Track ID4475 - - - Track ID4477 - - - Track ID4479 - - - Track ID4481 - - - Track ID4483 - - - Track ID4485 - - - Track ID4487 - - - Track ID4489 - - - Track ID4491 - - - Track ID4493 - - - Track ID4495 - - - Track ID4497 - - - Track ID4499 - - - Track ID4501 - - - Track ID4503 - - - Track ID4505 - - - Track ID4427 - - - Track ID4429 - - - Track ID4431 - - - Track ID4433 - - - Track ID4435 - - - Track ID4437 - - - Track ID4439 - - - Track ID4441 - - - Track ID4443 - - - Track ID4445 - - - Track ID4447 - - - Track ID4449 - - - Track ID4451 - - - Track ID4453 - - - Track ID4455 - - - Track ID4457 - - - Track ID4459 - - - Track ID4461 - - - Track ID4463 - - - Track ID4465 - - - Track ID4507 - - - Track ID4509 - - - Track ID4511 - - - Track ID4513 - - - Track ID4515 - - - Track ID4517 - - - Track ID4519 - - - Track ID4521 - - - Track ID4523 - - - Track ID4525 - - - Track ID4527 - - - Track ID4529 - - - Track ID4531 - - - Track ID4533 - - - Track ID4535 - - - Track ID4537 - - - Track ID4539 - - - Track ID4541 - - - Track ID4543 - - - Track ID4545 - - - Track ID4547 - - - Track ID4549 - - - Track ID4551 - - - Track ID4553 - - - Track ID4555 - - - Track ID4557 - - - Track ID4559 - - - Track ID4561 - - - Track ID4563 - - - Track ID4565 - - - Track ID4567 - - - Track ID4569 - - - Track ID4571 - - - Track ID4573 - - - Track ID4575 - - - Track ID4577 - - - Track ID4579 - - - Track ID4581 - - - Track ID4583 - - - Track ID4585 - - - Track ID3053 - - - Track ID3055 - - - Track ID3057 - - - Track ID3059 - - - Track ID3061 - - - Track ID3063 - - - Track ID3065 - - - Track ID3067 - - - Track ID3069 - - - Track ID3071 - - - Track ID3073 - - - Track ID3075 - - - Track ID3077 - - - Track ID3079 - - - Track ID3081 - - - Track ID3083 - - - Track ID3085 - - - Track ID3087 - - - Track ID3089 - - - Track ID3091 - - - Track ID3093 - - - Track ID3581 - - - Track ID3583 - - - Track ID3585 - - - Track ID3587 - - - Track ID3589 - - - Track ID3591 - - - Track ID3593 - - - Track ID3595 - - - Track ID3597 - - - Track ID3599 - - - Track ID3601 - - - Track ID3603 - - - Track ID3605 - - - Track ID3607 - - - Track ID3609 - - - Track ID3611 - - - Track ID3613 - - - Track ID3615 - - - Track ID3617 - - - Track ID3619 - - - Track ID2907 - - - Track ID2909 - - - Track ID2911 - - - Track ID2913 - - - Track ID2915 - - - Track ID2917 - - - Track ID2919 - - - Track ID2921 - - - Track ID2923 - - - Track ID2925 - - - Track ID2927 - - - Track ID2929 - - - Track ID2931 - - - Track ID2933 - - - Track ID2935 - - - Track ID2937 - - - Track ID2939 - - - Track ID2941 - - - Track ID2943 - - - Track ID2945 - - - Track ID2947 - - - Track ID2949 - - - Track ID2951 - - - Track ID2953 - - - Track ID2955 - - - Track ID2957 - - - Track ID2959 - - - Track ID2961 - - - Track ID2963 - - - Track ID2965 - - - Track ID2967 - - - Track ID2969 - - - Track ID2971 - - - Track ID2973 - - - Track ID2975 - - - Track ID2977 - - - Track ID2979 - - - Track ID2981 - - - Track ID2983 - - - Track ID2985 - - - Track ID2987 - - - Track ID2989 - - - Track ID2991 - - - Track ID2993 - - - Track ID2995 - - - Track ID2997 - - - Track ID2999 - - - Track ID3001 - - - Track ID3003 - - - Track ID3005 - - - Track ID1953 - - - Track ID2613 - - - Track ID2615 - - - Track ID2617 - - - Track ID2529 - - - Track ID2289 - - - Track ID2619 - - - Track ID2479 - - - Track ID2621 - - - Track ID2623 - - - Track ID2625 - - - Track ID2627 - - - Track ID2629 - - - Track ID2631 - - - Track ID2633 - - - Track ID4687 - - - Track ID4689 - - - Track ID4691 - - - Track ID4693 - - - Track ID4695 - - - Track ID4697 - - - Track ID4699 - - - Track ID2267 - - - Track ID1351 - - - Track ID3021 - - - Track ID3023 - - - Track ID3025 - - - Track ID3027 - - - Track ID3029 - - - Track ID3033 - - - Track ID3039 - - - Track ID3043 - - - Track ID3045 - - - Track ID3047 - - - Track ID3031 - - - Track ID3035 - - - Track ID3037 - - - Track ID3041 - - - Track ID1241 - - - Track ID2361 - - - Track ID2581 - - - Track ID2367 - - - Track ID2359 - - - Track ID1321 - - - Track ID1811 - - - Track ID1813 - - - Track ID1815 - - - Track ID1817 - - - Track ID1819 - - - Track ID1821 - - - Track ID1823 - - - Track ID1825 - - - Track ID1827 - - - Track ID1829 - - - Track ID1831 - - - Track ID1907 - - - Track ID2517 - - - Track ID2573 - - - Track ID2087 - - - Track ID1381 - - - Track ID1377 - - - Track ID1967 - - - Track ID1305 - - - Track ID1303 - - - Track ID1309 - - - Track ID1747 - - - Track ID1733 - - - Track ID1301 - - - Track ID1735 - - - Track ID1307 - - - Track ID1741 - - - Track ID1743 - - - Track ID1745 - - - Track ID1749 - - - Track ID1737 - - - Track ID1739 - - - Track ID1753 - - - Track ID1751 - - - Track ID1999 - - - Track ID2043 - - - Track ID1783 - - - Track ID1785 - - - Track ID1787 - - - Track ID1789 - - - Track ID1791 - - - Track ID1793 - - - Track ID1795 - - - Track ID1797 - - - Track ID1799 - - - Track ID1801 - - - Track ID1803 - - - Track ID1805 - - - Track ID1807 - - - Track ID1809 - - - Track ID2439 - - - Track ID2443 - - - Track ID1173 - - - Track ID1385 - - - Track ID1231 - - - Track ID1833 - - - Track ID1835 - - - Track ID1837 - - - Track ID1839 - - - Track ID1841 - - - Track ID1843 - - - Track ID1845 - - - Track ID1847 - - - Track ID1849 - - - Track ID1851 - - - Track ID1853 - - - Track ID1855 - - - Track ID1857 - - - Track ID1859 - - - Track ID1861 - - - Track ID1863 - - - Track ID1865 - - - Track ID1897 - - - Track ID1935 - - - Track ID3741 - - - Track ID4285 - - - Track ID4287 - - - Track ID4609 - - - Track ID4611 - - - Track ID4613 - - - Track ID4615 - - - Track ID4617 - - - Track ID4619 - - - Track ID4621 - - - Track ID4623 - - - Track ID4625 - - - Track ID4627 - - - Track ID4629 - - - Track ID4631 - - - Track ID4633 - - - Track ID4635 - - - Track ID4637 - - - Track ID4639 - - - Track ID4641 - - - Track ID4643 - - - Track ID4645 - - - Track ID4647 - - - Track ID4161 - - - Track ID4163 - - - Track ID4165 - - - Track ID4167 - - - Track ID4169 - - - Track ID4171 - - - Track ID4173 - - - Track ID4175 - - - Track ID4177 - - - Track ID4179 - - - Track ID4181 - - - Track ID4183 - - - Track ID4185 - - - Track ID4187 - - - Track ID4189 - - - Track ID4191 - - - Track ID4193 - - - Track ID4195 - - - Track ID4197 - - - Track ID4199 - - - Track ID4201 - - - Track ID4203 - - - Track ID4205 - - - Track ID4207 - - - Track ID4209 - - - Track ID4211 - - - Track ID4213 - - - Track ID4215 - - - Track ID4217 - - - Track ID4219 - - - Track ID4221 - - - Track ID4223 - - - Track ID4225 - - - Track ID4289 - - - Track ID4291 - - - Track ID4293 - - - Track ID4295 - - - Track ID4297 - - - Track ID4299 - - - Track ID4301 - - - Track ID4303 - - - Track ID4305 - - - Track ID4307 - - - Track ID4309 - - - Track ID4311 - - - Track ID4313 - - - Track ID4315 - - - Track ID4317 - - - Track ID4319 - - - Track ID4321 - - - Track ID4323 - - - Track ID4325 - - - Track ID4327 - - - Track ID4329 - - - Track ID4331 - - - Track ID4333 - - - Track ID4335 - - - Track ID4337 - - - Track ID4339 - - - Track ID4341 - - - Track ID4343 - - - Track ID4345 - - - Track ID4347 - - - Track ID4349 - - - Track ID4351 - - - Track ID4353 - - - Track ID1293 - - - Track ID2389 - - - Track ID2505 - - - Track ID1189 - - - Track ID1191 - - - Track ID1193 - - - Track ID1195 - - - Track ID1197 - - - Track ID1199 - - - Track ID1201 - - - Track ID1313 - - - Track ID1349 - - - Track ID1299 - - - Track ID2399 - - - Track ID3861 - - - Track ID1369 - - - Track ID1899 - - - Track ID2575 - - - Track ID2483 - - - Track ID1365 - - - Track ID1333 - - - Track ID2027 - - - Track ID1279 - - - Track ID1961 - - - Track ID2033 - - - Track ID2063 - - - Track ID4587 - - - Track ID4589 - - - Track ID4591 - - - Track ID4593 - - - Track ID4595 - - - Track ID4597 - - - Track ID4599 - - - Track ID4601 - - - Track ID4603 - - - Track ID2411 - - - Track ID2503 - - - Track ID1219 - - - Track ID1221 - - - Track ID1223 - - - Track ID1225 - - - Track ID1227 - - - Track ID1229 - - - Track ID2635 - - - Track ID2637 - - - Track ID2639 - - - Track ID2477 - - - Track ID2641 - - - Track ID2643 - - - Track ID2645 - - - Track ID2647 - - - Track ID2649 - - - Track ID2527 - - - Track ID2651 - - - Track ID2653 - - - Track ID2655 - - - Track ID2657 - - - Track ID1421 - - - Track ID1419 - - - Track ID1407 - - - Track ID1399 - - - Track ID1401 - - - Track ID1403 - - - Track ID1409 - - - Track ID1393 - - - Track ID1397 - - - Track ID1395 - - - Track ID1411 - - - Track ID1405 - - - Track ID1413 - - - Track ID1417 - - - Track ID1415 - - - Track ID2381 - - - Track ID2309 - - - Track ID1373 - - - Track ID2277 - - - Track ID2407 - - - Track ID2495 - - - Track ID1233 - - - Track ID3911 - - - Track ID1869 - - - Track ID4607 - - - Track ID2541 - - - Track ID2589 - - - Track ID1965 - - - Track ID2343 - - - Track ID2373 - - - Track ID2579 - - - Track ID1291 - - - Track ID1243 - - - Track ID1161 - - - Track ID1159 - - - Track ID1157 - - - Track ID1175 - - - Track ID1177 - - - Track ID1179 - - - Track ID1181 - - - Track ID1183 - - - Track ID2463 - - - Track ID1185 - - - Track ID1187 - - - Track ID1867 - - - Track ID1957 - - - Track ID1295 - - - Track ID1389 - - - Track ID1383 - - - Track ID2603 - - - Track ID1297 - - - Track ID2543 - - - Track ID1289 - - - Track ID1939 - - - Track ID3473 - - - Track ID2311 - - - Track ID1255 - - - Track ID2053 - - - Track ID2341 - - - Track ID2317 - - - Track ID1879 - - - Track ID4123 - - - Track ID4031 - - - Track ID4033 - - - Track ID4035 - - - Track ID4037 - - - Track ID4039 - - - Track ID4041 - - - Track ID4043 - - - Track ID4045 - - - Track ID4047 - - - Track ID4049 - - - Track ID4051 - - - Track ID4053 - - - Track ID4055 - - - Track ID4057 - - - Track ID4059 - - - Track ID4061 - - - Track ID4063 - - - Track ID4065 - - - Track ID4067 - - - Track ID4069 - - - Track ID4071 - - - Track ID4073 - - - Track ID4075 - - - Track ID4077 - - - Track ID4079 - - - Track ID4081 - - - Track ID4083 - - - Track ID4085 - - - Track ID4087 - - - Track ID4089 - - - Track ID4091 - - - Track ID4093 - - - Track ID4095 - - - Track ID4097 - - - Track ID4099 - - - Track ID4101 - - - Track ID4103 - - - Track ID4105 - - - Track ID3993 - - - Track ID3995 - - - Track ID3997 - - - Track ID3999 - - - Track ID4001 - - - Track ID4003 - - - Track ID4005 - - - Track ID4007 - - - Track ID4009 - - - Track ID4011 - - - Track ID4013 - - - Track ID4015 - - - Track ID4017 - - - Track ID4019 - - - Track ID4021 - - - Track ID4023 - - - Track ID4025 - - - Track ID4027 - - - Track ID4029 - - - Track ID1335 - - - Track ID1873 - - - Track ID1235 - - - Track ID4739 - - - Track ID4117 - - - Track ID2377 - - - Track ID2537 - - - Track ID4741 - - - Track ID2465 - - - Track ID2355 - - - Track ID2659 - - - Track ID2661 - - - Track ID2663 - - - Track ID2665 - - - Track ID2667 - - - Track ID2669 - - - Track ID2671 - - - Track ID2673 - - - Track ID2675 - - - Track ID2677 - - - Track ID2679 - - - Track ID2507 - - - Track ID2681 - - - Track ID2493 - - - Track ID2683 - - - Track ID2685 - - - Track ID2397 - - - Track ID2687 - - - Track ID1353 - - - Track ID1379 - - - Track ID1251 - - - Track ID1341 - - - Track ID1237 - - - Track ID1163 - - - Track ID1165 - - - Track ID1167 - - - Track ID1169 - - - Track ID2597 - - - Track ID2313 - - - Track ID1171 - - - Track ID3721 - - - Track ID3719 - - - Track ID3723 - - - Track ID2059 - - - Track ID1921 - - - Track ID2279 - - - Track ID2057 - - - Track ID2049 - - - Track ID2065 - - - Track ID2689 - - - Track ID2287 - - - Track ID4649 - - - Track ID4651 - - - Track ID4653 - - - Track ID4655 - - - Track ID4657 - - - Track ID4659 - - - Track ID4661 - - - Track ID4663 - - - Track ID4665 - - - Track ID4667 - - - Track ID4669 - - - Track ID1267 - - - Track ID2283 - - - Track ID3563 - - - Track ID3573 - - - Track ID3571 - - - Track ID3567 - - - Track ID3569 - - - Track ID3579 - - - Track ID3575 - - - Track ID3577 - - - Track ID3555 - - - Track ID3557 - - - Track ID3551 - - - Track ID3553 - - - Track ID3559 - - - Track ID3547 - - - Track ID3543 - - - Track ID3545 - - - Track ID3549 - - - Track ID3541 - - - Track ID2773 - - - Track ID2775 - - - Track ID2777 - - - Track ID2779 - - - Track ID2781 - - - Track ID2783 - - - Track ID2785 - - - Track ID2787 - - - Track ID2789 - - - Track ID2791 - - - Track ID2793 - - - Track ID2795 - - - Track ID2797 - - - Track ID2799 - - - Track ID2801 - - - Track ID2803 - - - Track ID2805 - - - Track ID2807 - - - Track ID2809 - - - Track ID2811 - - - Track ID1311 - - - Track ID1275 - - - Track ID3051 - - - Track ID2079 - - - Track ID2539 - - - Track ID4111 - - - Track ID2437 - - - Track ID2001 - - - Track ID2421 - - - Track ID2511 - - - Track ID2485 - - - Track ID2337 - - - Track ID2451 - - - Track ID1325 - - - Track ID3957 - - - Track ID3959 - - - Track ID3961 - - - Track ID3963 - - - Track ID3965 - - - Track ID3967 - - - Track ID3971 - - - Track ID1955 - - - Track ID2315 - - - Track ID1339 - - - Track ID3951 - - - Track ID3947 - - - Track ID3949 - - - Track ID3953 - - - Track ID3955 - - - Track ID4747 - - - Track ID2545 - - - Track ID1387 - - - Track ID1391 - - - Track ID3973 - - - Track ID3975 - - - Track ID3977 - - - Track ID2747 - - - Track ID2749 - - - Track ID2751 - - - Track ID2753 - - - Track ID2755 - - - Track ID2757 - - - Track ID2759 - - - Track ID2761 - - - Track ID2763 - - - Track ID2765 - - - Track ID2767 - - - Track ID2769 - - - Track ID2771 - - - Track ID2569 - - - Track ID1319 - - - Track ID1363 - - - Track ID2583 - - - Track ID2481 - - - Track ID1337 - - - Track ID3825 - - - Track ID2293 - - - Track ID2461 - - - Track ID2521 - - - Track ID2379 - - - Track ID2417 - - - Track ID4119 - - - Track ID2035 - - - Track ID3943 - - - Track ID2561 - - - Track ID2005 - - - Track ID1273 - - - Track ID2007 - - - Track ID2009 - - - Track ID2011 - - - Track ID2013 - - - Track ID2015 - - - Track ID2017 - - - Track ID2019 - - - Track ID2021 - - - Track ID2023 - - - Track ID2025 - - - Track ID1357 - - - Track ID3923 - - - Track ID4673 - - - Track ID4675 - - - Track ID4677 - - - Track ID4679 - - - Track ID4681 - - - Track ID4683 - - - Track ID4685 - - - Track ID2551 - - - Track ID2047 - - - Track ID1249 - - - Track ID1779 - - - Track ID3835 - - - Track ID4107 - - - Track ID4109 - - - Track ID2375 - - - Track ID2045 - - - Track ID1931 - - - Track ID1755 - - - Track ID1757 - - - Track ID1759 - - - Track ID1761 - - - Track ID1763 - - - Track ID1765 - - - Track ID1767 - - - Track ID1769 - - - Track ID1771 - - - Track ID1773 - - - Track ID1775 - - - Track ID1777 - - - Track ID2271 - - - Track ID1347 - - - Track ID1345 - - - Track ID2601 - - - Track ID3013 - - - Track ID3011 - - - Track ID3009 - - - Track ID3007 - - - Track ID3017 - - - Track ID3015 - - - Track ID3019 - - - Track ID1991 - - - Track ID1993 - - - Track ID1909 - - - Track ID4355 - - - Track ID4357 - - - Track ID4359 - - - Track ID4361 - - - Track ID4363 - - - Track ID4365 - - - Track ID4367 - - - Track ID4369 - - - Track ID4371 - - - Track ID4373 - - - Track ID4375 - - - Track ID4377 - - - Track ID4379 - - - Track ID4381 - - - Track ID4383 - - - Track ID4385 - - - Track ID4387 - - - Track ID4389 - - - Track ID4391 - - - Track ID4393 - - - Track ID4395 - - - Track ID4397 - - - Track ID4399 - - - Track ID4401 - - - Track ID4403 - - - Track ID4405 - - - Track ID4407 - - - Track ID4409 - - - Track ID4411 - - - Track ID4413 - - - Track ID4415 - - - Track ID4417 - - - Track ID4419 - - - Track ID4421 - - - Track ID4423 - - - Track ID4425 - - - Track ID3357 - - - Track ID3359 - - - Track ID3361 - - - Track ID3363 - - - Track ID3365 - - - Track ID3367 - - - Track ID3369 - - - Track ID3371 - - - Track ID3373 - - - Track ID3375 - - - Track ID3377 - - - Track ID3379 - - - Track ID3381 - - - Track ID3383 - - - Track ID3385 - - - Track ID3387 - - - Track ID3389 - - - Track ID3391 - - - Track ID2813 - - - Track ID2815 - - - Track ID2817 - - - Track ID2819 - - - Track ID2821 - - - Track ID2823 - - - Track ID2825 - - - Track ID2827 - - - Track ID2829 - - - Track ID2831 - - - Track ID2833 - - - Track ID2835 - - - Track ID2837 - - - Track ID2839 - - - Track ID2841 - - - Track ID2843 - - - Track ID2845 - - - Track ID2847 - - - Track ID2849 - - - Track ID2851 - - - Track ID2853 - - - Track ID2855 - - - Track ID2857 - - - Track ID2859 - - - Track ID2861 - - - Track ID2863 - - - Track ID2865 - - - Track ID2867 - - - Track ID2869 - - - Track ID2871 - - - Track ID2873 - - - Track ID2875 - - - Track ID2877 - - - Track ID2879 - - - Track ID2881 - - - Track ID2883 - - - Track ID2885 - - - Track ID2887 - - - Track ID2889 - - - Track ID2891 - - - Track ID2893 - - - Track ID2895 - - - Track ID2897 - - - Track ID2899 - - - Track ID2901 - - - Track ID2903 - - - Track ID2905 - - - Track ID3095 - - - Track ID3097 - - - Track ID3099 - - - Track ID3101 - - - Track ID3103 - - - Track ID3105 - - - Track ID3107 - - - Track ID3109 - - - Track ID3111 - - - Track ID3113 - - - Track ID3115 - - - Track ID3117 - - - Track ID3119 - - - Track ID3121 - - - Track ID3123 - - - Track ID3125 - - - Track ID3127 - - - Track ID3129 - - - Track ID3131 - - - Track ID3133 - - - Track ID3135 - - - Track ID3137 - - - Track ID3139 - - - Track ID3141 - - - Track ID3143 - - - Track ID3145 - - - Track ID3147 - - - Track ID3149 - - - Track ID3151 - - - Track ID3153 - - - Track ID3155 - - - Track ID3157 - - - Track ID3159 - - - Track ID3161 - - - Track ID3163 - - - Track ID3165 - - - Track ID3167 - - - Track ID3169 - - - Track ID3171 - - - Track ID3173 - - - Track ID3175 - - - Track ID3177 - - - Track ID3179 - - - Track ID3181 - - - Track ID3183 - - - Track ID3185 - - - Track ID3187 - - - Track ID3189 - - - Track ID3191 - - - Track ID3193 - - - Track ID3257 - - - Track ID3259 - - - 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 ID3287 - - - Track ID3289 - - - Track ID3291 - - - Track ID3293 - - - Track ID3295 - - - Track ID3297 - - - Track ID3299 - - - Track ID3301 - - - Track ID3303 - - - Track ID3305 - - - Track ID3307 - - - Track ID3309 - - - Track ID3311 - - - Track ID3313 - - - Track ID3315 - - - Track ID3317 - - - Track ID3319 - - - Track ID3321 - - - Track ID3323 - - - Track ID3325 - - - Track ID3327 - - - Track ID3329 - - - Track ID3331 - - - Track ID3333 - - - Track ID3335 - - - Track ID3337 - - - Track ID3339 - - - Track ID3341 - - - Track ID3343 - - - Track ID3345 - - - Track ID3347 - - - Track ID3349 - - - Track ID3351 - - - Track ID3353 - - - Track ID3355 - - - Track ID1605 - - - Track ID1607 - - - Track ID1609 - - - Track ID1611 - - - Track ID1613 - - - Track ID1615 - - - Track ID1617 - - - Track ID1619 - - - Track ID1621 - - - Track ID1623 - - - Track ID1625 - - - Track ID1627 - - - Track ID1629 - - - Track ID1631 - - - Track ID1633 - - - Track ID1635 - - - Track ID1637 - - - Track ID1639 - - - Track ID1641 - - - Track ID1643 - - - Track ID1645 - - - Track ID1647 - - - Track ID1649 - - - Track ID1651 - - - Track ID1653 - - - Track ID1655 - - - Track ID1657 - - - Track ID1659 - - - Track ID1661 - - - Track ID1663 - - - Track ID1665 - - - Track ID1667 - - - Track ID1669 - - - Track ID1671 - - - Track ID1673 - - - Track ID1675 - - - Track ID1677 - - - Track ID1679 - - - Track ID1681 - - - Track ID1683 - - - Track ID1685 - - - Track ID1687 - - - Track ID1689 - - - Track ID1691 - - - Track ID1693 - - - Track ID1695 - - - Track ID1697 - - - Track ID1699 - - - Track ID2515 - - - Track ID2475 - - - Track ID2031 - - - Track ID2327 - - - Track ID3827 - - - Track ID3879 - - - Track ID3887 - - - Track ID2715 - - - Track ID2717 - - - Track ID2719 - - - Track ID2721 - - - Track ID2723 - - - Track ID2725 - - - Track ID2727 - - - Track ID2729 - - - Track ID2731 - - - Track ID2733 - - - Track ID2735 - - - Track ID2737 - - - Track ID2739 - - - Track ID2741 - - - Track ID2743 - - - Track ID2745 - - - Track ID1997 - - - Track ID2431 - - - Track ID4771 - - - Track ID4773 - - - Track ID4775 - - - Track ID4777 - - - Track ID4779 - - - Track ID4781 - - - Track ID4783 - - - Track ID4235 - - - Track ID4237 - - - Track ID4239 - - - Track ID4241 - - - Track ID4243 - - - Track ID4245 - - - Track ID4247 - - - Track ID4249 - - - Track ID4251 - - - Track ID4253 - - - Track ID4255 - - - Track ID4257 - - - Track ID4259 - - - Track ID4261 - - - Track ID4263 - - - Track ID4265 - - - Track ID4267 - - - Track ID4269 - - - Track ID4271 - - - Track ID4273 - - - Track ID4275 - - - Track ID4277 - - - Track ID4279 - - - Track ID4281 - - - Track ID4283 - - - Track ID1271 - - - Track ID2041 - - - Track ID3395 - - - Track ID3401 - - - Track ID3397 - - - Track ID3405 - - - Track ID3399 - - - Track ID3407 - - - Track ID3409 - - - Track ID3415 - - - Track ID3413 - - - Track ID3403 - - - Track ID3411 - - - Track ID3393 - - - Track ID1523 - - - Track ID1525 - - - Track ID1527 - - - Track ID1529 - - - Track ID1531 - - - Track ID1533 - - - Track ID1535 - - - Track ID1537 - - - Track ID1539 - - - Track ID1541 - - - Track ID1543 - - - Track ID1545 - - - Track ID1547 - - - Track ID1549 - - - Track ID1551 - - - Track ID1553 - - - Track ID1555 - - - Track ID1557 - - - Track ID1559 - - - Track ID1561 - - - Track ID1563 - - - Track ID1565 - - - Track ID1567 - - - Track ID1569 - - - Track ID1571 - - - Track ID1573 - - - Track ID1575 - - - Track ID1577 - - - Track ID1579 - - - Track ID1581 - - - Track ID1583 - - - Track ID1585 - - - Track ID1587 - - - Track ID1589 - - - Track ID1591 - - - Track ID1593 - - - Track ID1595 - - - Track ID1597 - - - Track ID1599 - - - Track ID1601 - - - Track ID1603 - - - Track ID1995 - - - Track ID2385 - - - Track ID1253 - - - Track ID2307 - - - Track ID1359 - - - Track ID3979 - - - Track ID3791 - - - Track ID3795 - - - Track ID4115 - - - Track ID1361 - - - Track ID2347 - - - Track ID2351 - - - Track ID2533 - - - Track ID2429 - - - Track ID3733 - - - Track ID3731 - - - Track ID3737 - - - Track ID3735 - - - Track ID3727 - - - Track ID3729 - - - Track ID3725 - - - Track ID2321 - - - Track ID2089 - - - Track ID3981 - - - Track ID3739 - - - Track ID2609 - - - Track ID1513 - - - Track ID1485 - - - Track ID1463 - - - Track ID1477 - - - Track ID1497 - - - Track ID1451 - - - Track ID1447 - - - Track ID1505 - - - Track ID1443 - - - Track ID1471 - - - Track ID1439 - - - Track ID1435 - - - Track ID1445 - - - Track ID1521 - - - Track ID1509 - - - Track ID1459 - - - Track ID1515 - - - Track ID1501 - - - Track ID1455 - - - Track ID1517 - - - Track ID1489 - - - Track ID1475 - - - Track ID1495 - - - Track ID1465 - - - Track ID1433 - - - Track ID1479 - - - Track ID1519 - - - Track ID1437 - - - Track ID1429 - - - Track ID1469 - - - Track ID1487 - - - Track ID1473 - - - Track ID1507 - - - Track ID1461 - - - Track ID1457 - - - Track ID1425 - - - Track ID1449 - - - Track ID1499 - - - Track ID1483 - - - Track ID1441 - - - Track ID1511 - - - Track ID1453 - - - Track ID1491 - - - Track ID1423 - - - Track ID1427 - - - Track ID1431 - - - Track ID1493 - - - Track ID1503 - - - Track ID1481 - - - Track ID1467 - - - Track ID3623 - - - Track ID3625 - - - Track ID3627 - - - Track ID3629 - - - Track ID3631 - - - Track ID3621 - - - Track ID3633 - - - Track ID3635 - - - Track ID3637 - - - Track ID3639 - - - Track ID3641 - - - Track ID3643 - - - Track ID3645 - - - Track ID3647 - - - Track ID3649 - - - Track ID3651 - - - Track ID3653 - - - Track ID3655 - - - Track ID3657 - - - Track ID3659 - - - Track ID3661 - - - Track ID3663 - - - Track ID3665 - - - Track ID3667 - - - Track ID3669 - - - Track ID3671 - - - Track ID3675 - - - Track ID3673 - - - Track ID3695 - - - Track ID3677 - - - Track ID3699 - - - Track ID3679 - - - Track ID3681 - - - Track ID3683 - - - Track ID3685 - - - Track ID3687 - - - Track ID3689 - - - Track ID3691 - - - Track ID3693 - - - Track ID3697 - - - Track ID3701 - - - Track ID3703 - - - Track ID3705 - - - Track ID3707 - - - Track ID3709 - - - Track ID3711 - - - Track ID4671 - - - Track ID1375 - - - Track ID3221 - - - Track ID3223 - - - Track ID3225 - - - Track ID3227 - - - Track ID3229 - - - Track ID3231 - - - Track ID3233 - - - Track ID3235 - - - Track ID3237 - - - Track ID3239 - - - Track ID3241 - - - Track ID3243 - - - Track ID3245 - - - Track ID3247 - - - Track ID3249 - - - Track ID3251 - - - Track ID3253 - - - Track ID3255 - - - Track ID2457 - - - Track ID2567 - - - Track ID3757 - - - Track ID2081 - - - Track ID2275 - - - Track ID2565 - - - Track ID3761 - - - Track ID1781 - - - Track ID1969 - - - Track ID2357 - - - Track ID3771 - - - Track ID3717 - - - Track ID2599 - - - Track ID2591 - - - Track ID3829 - - - Track ID1729 - - - Track ID2593 - - - Track ID3831 - - - Track ID2611 - - - Track ID1941 - - - Track ID4731 - - - Track ID1265 - - - Track ID1927 - - - Track ID1987 - - - Track ID2605 - - - Track ID4231 - - - Track ID4233 - - - Track ID2029 - - - Track ID3859 - - - Track ID1933 - - - Track ID2467 - - - Track ID3869 - - - Track ID1903 - - - Track ID4733 - - - Track ID2577 - - - Track ID2403 - - - Track ID2441 - - - Track ID2303 - - - Track ID2531 - - - Track ID2445 - - - Track ID2509 - - - Track ID3893 - - - Track ID1985 - - - Track ID1877 - - - Track ID2409 - - - Track ID2339 - - - Track ID2587 - - - Track ID1871 - - - Track ID2323 - - - Track ID2519 - - - Track ID1975 - - - Track ID3903 - - - Track ID3991 - - - Track ID2055 - - - Track ID2331 - - - Track ID2571 - - - Track ID2369 - - - Track ID2427 - - - Track ID2447 - - - Track ID2391 - - - Track ID2453 - - - Track ID3907 - - - Track ID2335 - - - Track ID2075 - - - Track ID2425 - - - Track ID2557 - - - Track ID1915 - - - Track ID4121 - - - Track ID2371 - - - Track ID2423 - - - Track ID2383 - - - Track ID2559 - - - Track ID2325 - - - Track ID2595 - - - Track ID2525 - - - Track ID3915 - - - Track ID3917 - - - Track ID3919 - - - Track ID2419 - - - Track ID1281 - - - Track ID3921 - - - Track ID1285 - - - Track ID4743 - - - Track ID2299 - - - Track ID2401 - - - Track ID2469 - - - Track ID2393 - - - Track ID2547 - - - Track ID1287 - - - Track ID2523 - - - Track ID3927 - - - Track ID2585 - - - Track ID4735 - - - Track ID1881 - - - Track ID3937 - - - Track ID2387 - - - Track ID2085 - - - Track ID3941 - - - Track ID2563 - - - Track ID2449 - - - Track ID2395 - - - Track ID2553 - - - Track ID2549 - - - Track ID2297 - - - Track ID3759 - - - Track ID3763 - - - Track ID1947 - - - Track ID1959 - - - Track ID1901 - - - Track ID3765 - - - Track ID3785 - - - Track ID3767 - - - Track ID1973 - - - Track ID3769 - - - Track ID3775 - - - Track ID3777 - - - Track ID3779 - - - Track ID3781 - - - Track ID3783 - - - Track ID3815 - - - Track ID2501 - - - Track ID1949 - - - Track ID3819 - - - Track ID3821 - - - Track ID3823 - - - Track ID3833 - - - Track ID3837 - - - Track ID3839 - - - Track ID3841 - - - Track ID3843 - - - Track ID2039 - - - Track ID3813 - - - Track ID3845 - - - Track ID1911 - - - Track ID3847 - - - Track ID3849 - - - Track ID3851 - - - Track ID3853 - - - Track ID3855 - - - Track ID3857 - - - Track ID1963 - - - Track ID3565 - - - Track ID3561 - - - Track ID1983 - - - Track ID1945 - - - Track ID1887 - - - Track ID1917 - - - Track ID3929 - - - Track ID3863 - - - Track ID1929 - - - Track ID3867 - - - Track ID3871 - - - Track ID3873 - - - Track ID2489 - - - Track ID3799 - - - Track ID3881 - - - Track ID4605 - - - Track ID3803 - - - Track ID3801 - - - Track ID1977 - - - Track ID1923 - - - Track ID3889 - - - Track ID3891 - - - Track ID3049 - - - Track ID2051 - - - Track ID3895 - - - Track ID3897 - - - Track ID1979 - - - Track ID2291 - - - Track ID2415 - - - Track ID3899 - - - Track ID1891 - - - Track ID3901 - - - Track ID3905 - - - Track ID3807 - - - Track ID2471 - - - Track ID3989 - - - Track ID2281 - - - Track ID2473 - - - Track ID1885 - - - Track ID1895 - - - Track ID3475 - - - Track ID2499 - - - Track ID3809 - - - Track ID3909 - - - Track ID2273 - - - Track ID2269 - - - Track ID2497 - - - Track ID1893 - - - Track ID1981 - - - Track ID2459 - - - Track ID2305 - - - Track ID2295 - - - Track ID2329 - - - Track ID1951 - - - Track ID1937 - - - Track ID1943 - - - Track ID3935 - - - Track ID3793 - - - Track ID2491 - - - Track ID3817 - - - Track ID3931 - - - Track ID3933 - - - Track ID3753 - - - Track ID2077 - - - Track ID3969 - - - Track ID1913 - - - Track ID1919 - - - Track ID1269 - - - Track ID3913 - - - Track ID1971 - - - Track ID2455 - - - Track ID4113 - - - Track ID3939 - - - Track ID3925 - - - Track ID3987 - - - Track ID2363 - - - Track ID3773 - - - Track ID1731 - - - Track ID3885 - - - Track ID2333 - - - Track ID3945 - - - Track ID3883 - - - Track ID4729 - - - Track ID2513 - - - Track ID2555 - - - Track ID3983 - - - Track ID3985 - - - Track ID2435 - - - - - NameNon Phixion - The Future is Now - Playlist ID17675 - Playlist Persistent ID5ACE5435E362BB8A - All Items - Playlist Items - - - Track ID1301 - - - Track ID1303 - - - Track ID1735 - - - Track ID1737 - - - Track ID1739 - - - Track ID1741 - - - Track ID1743 - - - Track ID1305 - - - Track ID1745 - - - Track ID1747 - - - Track ID1307 - - - Track ID1749 - - - Track ID1751 - - - Track ID1753 - - - Track ID1309 - - - - - NameOldies - Playlist ID17693 - Playlist Persistent IDB35925B8B2E2181D - All Items - Playlist Items - - - Track ID3757 - - - Track ID3759 - - - Track ID3761 - - - Track ID3763 - - - Track ID3765 - - - Track ID3767 - - - Track ID3769 - - - Track ID3771 - - - Track ID3773 - - - Track ID3775 - - - Track ID3777 - - - Track ID3779 - - - Track ID3781 - - - Track ID3783 - - - Track ID3819 - - - Track ID3821 - - - Track ID3823 - - - Track ID3825 - - - Track ID3827 - - - Track ID3829 - - - Track ID3831 - - - Track ID3833 - - - Track ID3835 - - - Track ID3837 - - - Track ID3839 - - - Track ID3841 - - - Track ID3843 - - - Track ID3845 - - - Track ID3847 - - - Track ID3849 - - - Track ID3851 - - - Track ID3853 - - - Track ID3855 - - - Track ID3857 - - - Track ID3859 - - - Track ID3861 - - - Track ID3863 - - - Track ID3865 - - - Track ID3867 - - - Track ID3869 - - - Track ID3871 - - - Track ID3873 - - - Track ID3875 - - - Track ID3877 - - - Track ID3879 - - - Track ID3881 - - - Track ID3883 - - - Track ID3885 - - - Track ID3887 - - - Track ID3889 - - - Track ID3891 - - - Track ID3893 - - - Track ID3895 - - - Track ID3897 - - - Track ID3899 - - - Track ID3901 - - - Track ID3903 - - - Track ID3905 - - - Track ID3907 - - - Track ID3909 - - - Track ID3911 - - - Track ID3913 - - - Track ID3915 - - - Track ID3917 - - - Track ID3919 - - - Track ID2419 - - - Track ID3921 - - - Track ID3923 - - - Track ID3925 - - - Track ID3927 - - - Track ID3929 - - - Track ID2323 - - - Track ID2549 - - - Track ID2297 - - - Track ID3931 - - - Track ID3933 - - - Track ID3935 - - - Track ID3937 - - - Track ID3939 - - - Track ID3941 - - - Track ID2449 - - - Track ID3943 - - - Track ID3945 - - - Track ID4605 - - - Track ID4745 - - - Track ID4747 - - - Track ID4771 - - - Track ID4773 - - - Track ID4775 - - - Track ID4777 - - - Track ID4779 - - - Track ID4781 - - - Track ID4783 - - - - - NamePaul Wall and Chamillionaire - Controversy Sells Chopped & Skrewed - Playlist ID17789 - Playlist Persistent ID1AD2D7EC23FF9A1F - All Items - Playlist Items - - - Track ID1701 - - - Track ID1703 - - - Track ID1705 - - - Track ID1707 - - - Track ID1709 - - - Track ID1711 - - - Track ID1713 - - - Track ID1715 - - - Track ID1717 - - - Track ID1719 - - - Track ID1721 - - - Track ID1723 - - - Track ID1725 - - - Track ID1727 - - - - - NamePigeon John - Is Dating Your Sister - Playlist ID17806 - Playlist Persistent ID858B34E0D0435C92 - All Items - Playlist Items - - - Track ID1393 - - - Track ID1395 - - - Track ID1397 - - - Track ID1399 - - - Track ID1401 - - - Track ID1403 - - - Track ID1405 - - - Track ID1407 - - - Track ID1409 - - - Track ID1411 - - - Track ID1413 - - - Track ID1415 - - - Track ID1417 - - - Track ID1419 - - - Track ID1421 - - - - - NamePodcasts - Playlist ID14861 - Playlist Persistent ID111D918F99198D4C - All Items - - - NameQlimax 2009: The Nature of Our Mind - Playlist ID17824 - Playlist Persistent ID9AFBC2B23DB1051B - All Items - Playlist Items - - - Track ID2773 - - - Track ID2775 - - - Track ID2777 - - - Track ID2779 - - - Track ID2781 - - - Track ID2783 - - - Track ID2785 - - - Track ID2787 - - - Track ID2789 - - - Track ID2791 - - - Track ID2793 - - - Track ID2795 - - - Track ID2797 - - - Track ID2799 - - - Track ID2801 - - - Track ID2803 - - - Track ID2805 - - - Track ID2807 - - - Track ID2809 - - - Track ID2811 - - - - - NameQlimax Live Sets - Playlist ID17847 - Playlist Persistent ID7869AA611B9D5BE5 - All Items - Playlist Items - - - Track ID3541 - - - Track ID3543 - - - Track ID3545 - - - Track ID3547 - - - Track ID3549 - - - Track ID3551 - - - Track ID3553 - - - Track ID3555 - - - Track ID3557 - - - Track ID3559 - - - Track ID3563 - - - Track ID3567 - - - Track ID3569 - - - Track ID3571 - - - Track ID3573 - - - Track ID3579 - - - - - NameRandom Live Sets - Playlist ID17866 - Playlist Persistent IDBBB216DECAF82B10 - All Items - Playlist Items - - - Track ID1985 - - - Track ID3049 - - - Track ID1987 - - - Track ID1989 - - - Track ID1991 - - - Track ID1993 - - - Track ID3987 - - - Track ID3989 - - - Track ID3991 - - - Track ID4227 - - - Track ID4229 - - - Track ID4231 - - - Track ID4233 - - - - - NameRandom Singles - Playlist ID17882 - Playlist Persistent IDE3FCC8BA052ED1C3 - All Items - Playlist Items - - - Track ID1239 - - - Track ID1241 - - - Track ID1245 - - - Track ID1247 - - - Track ID1249 - - - Track ID1251 - - - Track ID1253 - - - Track ID1255 - - - Track ID2027 - - - Track ID2029 - - - Track ID2031 - - - Track ID2033 - - - Track ID2035 - - - Track ID2037 - - - Track ID2039 - - - Track ID2041 - - - Track ID2043 - - - Track ID2045 - - - Track ID2047 - - - Track ID2049 - - - Track ID2051 - - - Track ID2053 - - - Track ID2055 - - - Track ID2057 - - - Track ID2059 - - - Track ID2061 - - - Track ID2063 - - - Track ID2065 - - - Track ID1995 - - - Track ID1997 - - - Track ID1999 - - - Track ID2001 - - - Track ID2003 - - - Track ID2005 - - - Track ID2075 - - - Track ID2079 - - - Track ID2081 - - - Track ID2083 - - - Track ID2085 - - - Track ID2089 - - - Track ID4729 - - - Track ID4731 - - - Track ID4733 - - - Track ID4735 - - - Track ID4737 - - - Track ID4739 - - - Track ID4741 - - - Track ID4743 - - - Track ID4785 - - - Track ID4787 - - - Track ID4789 - - - Track ID4791 - - - Track ID5027 - - - Track ID5023 - - - Track ID5025 - - - Track ID5029 - - - Track ID6803 - - - Track ID6805 - - - - - NameRock - Playlist ID16479 - Playlist Persistent ID52FC97263C35D7D1 - All Items - Playlist Items - - - Track ID1319 - - - Track ID1321 - - - Track ID1323 - - - Track ID6907 - - - Track ID6909 - - - Track ID1325 - - - Track ID1327 - - - Track ID1329 - - - Track ID1331 - - - Track ID1335 - - - Track ID1337 - - - Track ID1339 - - - Track ID1341 - - - Track ID1343 - - - Track ID1345 - - - Track ID6839 - - - Track ID6841 - - - Track ID6843 - - - Track ID6845 - - - Track ID6847 - - - Track ID6849 - - - Track ID6851 - - - Track ID6853 - - - Track ID6855 - - - Track ID6857 - - - Track ID6859 - - - Track ID6861 - - - Track ID6863 - - - Track ID6865 - - - Track ID6867 - - - Track ID6869 - - - Track ID6871 - - - Track ID6873 - - - Track ID6875 - - - Track ID6877 - - - Track ID6879 - - - Track ID6881 - - - Track ID6883 - - - Track ID6885 - - - Track ID6887 - - - Track ID6889 - - - Track ID6891 - - - Track ID6893 - - - Track ID6895 - - - Track ID6897 - - - Track ID6899 - - - Track ID6901 - - - Track ID6903 - - - Track ID6905 - - - Track ID6937 - - - Track ID6939 - - - Track ID6941 - - - Track ID6943 - - - Track ID6945 - - - Track ID6957 - - - Track ID6947 - - - Track ID6949 - - - Track ID6951 - - - Track ID6953 - - - Track ID6955 - - - - - NameRockstar Grand Theft Auto IV Sampler - Playlist ID17943 - Playlist Persistent ID7BA2F1C37ED773CD - All Items - Playlist Items - - - Track ID1231 - - - Track ID1233 - - - Track ID1235 - - - - - NameRonald Jenkees - Disorganized Fun - Playlist ID17949 - Playlist Persistent ID18C7AD729DF9A7E4 - All Items - Playlist Items - - - Track ID2067 - - - Track ID2069 - - - Track ID2071 - - - Track ID2073 - - - - - NameSkrillex - Bangarang EP (2012) - Playlist ID18881 - Playlist Persistent ID668F0AE74F56AD7D - All Items - Playlist Items - - - Track ID4921 - - - Track ID4923 - - - Track ID4925 - - - Track ID4927 - - - Track ID4929 - - - Track ID4931 - - - Track ID4933 - - - - - NameSkrillex - More Monsters And Sprites (2011) - Playlist ID18871 - Playlist Persistent ID1249843B4443035E - All Items - Playlist Items - - - Track ID4907 - - - Track ID4909 - - - Track ID4911 - - - Track ID4913 - - - Track ID4915 - - - Track ID4917 - - - Track ID4919 - - - - - NameSoundgarden - Playlist ID17956 - Playlist Persistent IDF6339FF10A3D6663 - All Items - Playlist Items - - - Track ID4673 - - - Track ID4675 - - - Track ID4677 - - - Track ID4679 - - - Track ID4681 - - - Track ID4683 - - - Track ID4685 - - - Track ID4687 - - - Track ID4689 - - - Track ID4691 - - - Track ID4693 - - - Track ID4695 - - - Track ID4697 - - - Track ID4699 - - - - - NameStone Temple Pilots - Playlist ID17973 - Playlist Persistent IDD1AC235A7E6DC03B - All Items - Playlist Items - - - Track ID2691 - - - Track ID2693 - - - Track ID2695 - - - Track ID2697 - - - Track ID2699 - - - Track ID2701 - - - Track ID2703 - - - Track ID2705 - - - Track ID2707 - - - Track ID2709 - - - Track ID2711 - - - Track ID2713 - - - Track ID4649 - - - Track ID4651 - - - Track ID4653 - - - Track ID4655 - - - Track ID4657 - - - Track ID4659 - - - Track ID4661 - - - Track ID4663 - - - Track ID4665 - - - Track ID4667 - - - Track ID4669 - - - Track ID1755 - - - Track ID1757 - - - Track ID1759 - - - Track ID1761 - - - Track ID1763 - - - Track ID1765 - - - Track ID1767 - - - Track ID1769 - - - Track ID1771 - - - Track ID1773 - - - Track ID1775 - - - Track ID1777 - - - Track ID2747 - - - Track ID2749 - - - Track ID2751 - - - Track ID2753 - - - Track ID2755 - - - Track ID2757 - - - Track ID2759 - - - Track ID2761 - - - Track ID2763 - - - Track ID2765 - - - Track ID2767 - - - Track ID2769 - - - Track ID2771 - - - Track ID2715 - - - Track ID2717 - - - Track ID2719 - - - Track ID2721 - - - Track ID2723 - - - Track ID2725 - - - Track ID2727 - - - Track ID2729 - - - Track ID2731 - - - Track ID2733 - - - Track ID2735 - - - Track ID2737 - - - Track ID2739 - - - Track ID2741 - - - Track ID2743 - - - Track ID2745 - - - - - NameSuper Mash Bros - All About The Scrillions - Playlist ID18825 - Playlist Persistent ID1BE5358C47280EB8 - All Items - Playlist Items - - - Track ID4833 - - - Track ID4835 - - - Track ID4837 - - - Track ID4839 - - - Track ID4841 - - - Track ID4843 - - - Track ID4845 - - - Track ID4847 - - - Track ID4849 - - - Track ID4851 - - - Track ID4853 - - - Track ID4855 - - - Track ID4857 - - - - - NameSuper Mash Bros - Fuck Bitches, Get Euros - Playlist ID18856 - Playlist Persistent ID02F311F3DF8327A0 - All Items - Playlist Items - - - Track ID4883 - - - Track ID4885 - - - Track ID4887 - - - Track ID4889 - - - Track ID4891 - - - Track ID4893 - - - Track ID4895 - - - Track ID4897 - - - Track ID4899 - - - Track ID4901 - - - Track ID4903 - - - Track ID4905 - - - - - NameTechnoBase.FM - We aRe oNe Vol. 1 (2010) (2 CD) - Playlist ID18040 - Playlist Persistent IDB3DC935E32050794 - All Items - Playlist Items - - - Track ID4107 - - - Track ID4109 - - - - - NameThe Beatles - Playlist ID18045 - Playlist Persistent IDC6CCC55ECABC9BC7 - All Items - Playlist Items - - - Track ID3719 - - - Track ID3721 - - - Track ID3723 - - - Track ID3703 - - - Track ID3725 - - - Track ID3727 - - - Track ID3729 - - - Track ID3731 - - - Track ID3733 - - - Track ID3735 - - - Track ID3737 - - - Track ID3741 - - - Track ID3745 - - - Track ID3747 - - - Track ID3749 - - - Track ID3751 - - - Track ID3755 - - - Track ID3947 - - - Track ID3949 - - - Track ID3951 - - - Track ID3953 - - - Track ID3955 - - - Track ID3957 - - - Track ID3959 - - - Track ID3961 - - - Track ID3963 - - - Track ID3965 - - - Track ID3967 - - - Track ID3971 - - - Track ID3973 - - - Track ID3975 - - - Track ID3977 - - - Track ID3979 - - - Track ID3791 - - - Track ID3795 - - - - - NameTrance Energy 2009 - Playlist ID18083 - Playlist Persistent ID30515292BFF3F7B5 - All Items - Playlist Items - - - Track ID3007 - - - Track ID3009 - - - Track ID3011 - - - Track ID3013 - - - Track ID3015 - - - Track ID3017 - - - Track ID3019 - - - - - NameTrip to Vermont (Winter Break 2000) - Playlist ID18093 - Playlist Persistent ID2D38640B298DB786 - All Items - Playlist Items - - - Track ID1347 - - - Track ID1349 - - - Track ID1351 - - - Track ID1353 - - - Track ID1355 - - - Track ID1357 - - - Track ID1359 - - - Track ID1361 - - - Track ID1363 - - - Track ID1365 - - - Track ID1367 - - - Track ID1369 - - - Track ID1371 - - - Track ID1373 - - - Track ID1375 - - - Track ID1377 - - - Track ID1379 - - - Track ID1381 - - - - - NameTTF Vol. 20 - CD1 (2002) - Playlist ID18114 - Playlist Persistent ID597BB017AA453780 - All Items - Playlist Items - - - Track ID4355 - - - Track ID4357 - - - Track ID4359 - - - Track ID4361 - - - Track ID4363 - - - Track ID4365 - - - Track ID4367 - - - Track ID4369 - - - Track ID4371 - - - Track ID4373 - - - Track ID4375 - - - Track ID4377 - - - Track ID4379 - - - Track ID4381 - - - Track ID4383 - - - Track ID4385 - - - Track ID4387 - - - - - NameTTF Vol. 20 - CD2 (2002) - Playlist ID18134 - Playlist Persistent IDD96C2BDF39C40EF5 - All Items - Playlist Items - - - Track ID4389 - - - Track ID4391 - - - Track ID4393 - - - Track ID4395 - - - Track ID4397 - - - Track ID4399 - - - Track ID4401 - - - Track ID4403 - - - Track ID4405 - - - Track ID4407 - - - Track ID4409 - - - Track ID4411 - - - Track ID4413 - - - Track ID4415 - - - Track ID4417 - - - Track ID4419 - - - Track ID4421 - - - Track ID4423 - - - Track ID4425 - - - - - NameTTF Vol. 21 - CD1 (2002) - Playlist ID18156 - Playlist Persistent IDB90EEFE75307DFC1 - All Items - Playlist Items - - - Track ID3357 - - - Track ID3359 - - - Track ID3361 - - - Track ID3363 - - - Track ID3365 - - - Track ID3367 - - - Track ID3369 - - - Track ID3371 - - - Track ID3373 - - - Track ID3375 - - - Track ID3377 - - - Track ID3379 - - - Track ID3381 - - - Track ID3383 - - - Track ID3385 - - - Track ID3387 - - - Track ID3389 - - - Track ID3391 - - - - - NameTTF Vol. 50 - CD1 (2009) - Playlist ID18177 - Playlist Persistent IDB469A18E0F9D6AFE - All Items - Playlist Items - - - Track ID2813 - - - Track ID2815 - - - Track ID2817 - - - Track ID2819 - - - Track ID2821 - - - Track ID2823 - - - Track ID2825 - - - Track ID2827 - - - Track ID2829 - - - Track ID2831 - - - Track ID2833 - - - Track ID2835 - - - Track ID2837 - - - Track ID2839 - - - Track ID2841 - - - Track ID2843 - - - Track ID2845 - - - Track ID2847 - - - Track ID2849 - - - Track ID2851 - - - Track ID2853 - - - Track ID2855 - - - Track ID2857 - - - Track ID2859 - - - Track ID2861 - - - - - NameTTF Vol. 50 - CD2 (2009) - Playlist ID18205 - Playlist Persistent IDBA97C2997C5E203A - All Items - Playlist Items - - - Track ID2863 - - - Track ID2865 - - - Track ID2867 - - - Track ID2869 - - - Track ID2871 - - - Track ID2873 - - - Track ID2875 - - - Track ID2877 - - - Track ID2879 - - - Track ID2881 - - - Track ID2883 - - - Track ID2885 - - - Track ID2887 - - - Track ID2889 - - - Track ID2891 - - - Track ID2893 - - - Track ID2895 - - - Track ID2897 - - - Track ID2899 - - - Track ID2901 - - - Track ID2903 - - - Track ID2905 - - - - - NameTTF Vol. 51 - CD1 (2009) - Playlist ID18230 - Playlist Persistent ID9982A1C48C830071 - All Items - Playlist Items - - - Track ID3095 - - - Track ID3097 - - - Track ID3099 - - - Track ID3101 - - - Track ID3103 - - - Track ID3105 - - - Track ID3107 - - - Track ID3109 - - - Track ID3111 - - - Track ID3113 - - - Track ID3115 - - - Track ID3117 - - - Track ID3119 - - - Track ID3121 - - - Track ID3123 - - - Track ID3125 - - - Track ID3127 - - - Track ID3129 - - - Track ID3131 - - - Track ID3133 - - - Track ID3135 - - - Track ID3137 - - - Track ID3139 - - - Track ID3141 - - - Track ID3143 - - - - - NameTTF Vol. 51 - CD2 (2009) - Playlist ID18258 - Playlist Persistent ID236D0A60AE2265E7 - All Items - Playlist Items - - - Track ID3145 - - - Track ID3147 - - - Track ID3149 - - - Track ID3151 - - - Track ID3153 - - - Track ID3155 - - - Track ID3157 - - - Track ID3159 - - - Track ID3161 - - - Track ID3163 - - - Track ID3165 - - - Track ID3167 - - - Track ID3169 - - - Track ID3171 - - - Track ID3173 - - - Track ID3175 - - - Track ID3177 - - - Track ID3179 - - - Track ID3181 - - - Track ID3183 - - - Track ID3185 - - - Track ID3187 - - - Track ID3189 - - - Track ID3191 - - - Track ID3193 - - - - - NameTTF Vol. 52 - CD1 (2010) - Playlist ID18286 - Playlist Persistent IDCAFF667C7CF25359 - All Items - Playlist Items - - - Track ID3257 - - - Track ID3259 - - - 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 ID3287 - - - Track ID3289 - - - Track ID3291 - - - Track ID3293 - - - Track ID3295 - - - Track ID3297 - - - Track ID3299 - - - Track ID3301 - - - Track ID3303 - - - Track ID3305 - - - - - NameTTF Vol. 52 - CD2 (2010) - Playlist ID18314 - Playlist Persistent ID45651469D4A50A2E - All Items - Playlist Items - - - Track ID3307 - - - Track ID3309 - - - Track ID3311 - - - Track ID3313 - - - Track ID3315 - - - Track ID3317 - - - Track ID3319 - - - Track ID3321 - - - Track ID3323 - - - Track ID3325 - - - Track ID3327 - - - Track ID3329 - - - Track ID3331 - - - Track ID3333 - - - Track ID3335 - - - Track ID3337 - - - Track ID3339 - - - Track ID3341 - - - Track ID3343 - - - Track ID3345 - - - Track ID3347 - - - Track ID3349 - - - Track ID3351 - - - Track ID3353 - - - Track ID3355 - - - - - NameTTF Vol. 53 - CD1 (2010) - Playlist ID18342 - Playlist Persistent ID72FF783C30175E51 - All Items - Playlist Items - - - Track ID6011 - - - Track ID6013 - - - Track ID6015 - - - Track ID6017 - - - Track ID6019 - - - Track ID6021 - - - Track ID6023 - - - Track ID6025 - - - Track ID6027 - - - Track ID6029 - - - Track ID6031 - - - Track ID6033 - - - Track ID6035 - - - Track ID6037 - - - Track ID6039 - - - Track ID6041 - - - Track ID6043 - - - Track ID6045 - - - Track ID6047 - - - Track ID6049 - - - Track ID6051 - - - Track ID6053 - - - Track ID6055 - - - Track ID6057 - - - Track ID6059 - - - - - NameTTF Vol. 53 - CD2 (2010) - Playlist ID18370 - Playlist Persistent ID0CF07C70AD48FDA9 - All Items - Playlist Items - - - Track ID6161 - - - Track ID6195 - - - Track ID6197 - - - Track ID6163 - - - Track ID6165 - - - Track ID6199 - - - Track ID6201 - - - Track ID6203 - - - Track ID6205 - - - Track ID6167 - - - Track ID6207 - - - Track ID6169 - - - Track ID6171 - - - Track ID6209 - - - Track ID6211 - - - Track ID6213 - - - Track ID6173 - - - Track ID6215 - - - Track ID6175 - - - Track ID6177 - - - Track ID6217 - - - Track ID6219 - - - Track ID6179 - - - Track ID6221 - - - Track ID6181 - - - - - NameTTF Vol. 54 - CD1 (2010) - Playlist ID18398 - Playlist Persistent ID1B09F4BB4EC32D40 - All Items - Playlist Items - - - Track ID6061 - - - Track ID6063 - - - Track ID6065 - - - Track ID6067 - - - Track ID6069 - - - Track ID6071 - - - Track ID6073 - - - Track ID6075 - - - Track ID6077 - - - Track ID6079 - - - Track ID6081 - - - Track ID6083 - - - Track ID6085 - - - Track ID6087 - - - Track ID6089 - - - Track ID6091 - - - Track ID6093 - - - Track ID6095 - - - Track ID6097 - - - Track ID6099 - - - Track ID6101 - - - Track ID6103 - - - Track ID6105 - - - Track ID6107 - - - Track ID6109 - - - - - NameTTF Vol. 54 - CD2 (2010) - Playlist ID18426 - Playlist Persistent IDA1068B112CCAF543 - All Items - Playlist Items - - - Track ID6111 - - - Track ID6113 - - - Track ID6115 - - - Track ID6117 - - - Track ID6119 - - - Track ID6121 - - - Track ID6123 - - - Track ID6125 - - - Track ID6127 - - - Track ID6129 - - - Track ID6131 - - - Track ID6133 - - - Track ID6135 - - - Track ID6137 - - - Track ID6139 - - - Track ID6141 - - - Track ID6143 - - - Track ID6145 - - - Track ID6147 - - - Track ID6149 - - - Track ID6151 - - - Track ID6153 - - - Track ID6155 - - - Track ID6157 - - - Track ID6159 - - - - - NameTTF Vol. 55 - CD1 (2010) - Playlist ID18454 - Playlist Persistent ID7985C1970D4C725E - All Items - Playlist Items - - - Track ID6223 - - - Track ID6225 - - - Track ID6227 - - - Track ID6229 - - - Track ID6231 - - - Track ID6233 - - - Track ID6235 - - - Track ID6237 - - - Track ID6239 - - - Track ID6241 - - - Track ID6243 - - - Track ID6245 - - - Track ID6247 - - - Track ID6249 - - - Track ID6251 - - - Track ID6253 - - - Track ID6255 - - - Track ID6257 - - - Track ID6259 - - - Track ID6261 - - - Track ID6263 - - - Track ID6265 - - - Track ID6267 - - - Track ID6269 - - - Track ID6271 - - - - - NameTTF Vol. 55 - CD2 (2010) - Playlist ID18482 - Playlist Persistent ID61A47FC691141C51 - All Items - Playlist Items - - - Track ID6273 - - - Track ID6275 - - - Track ID6277 - - - Track ID6279 - - - Track ID6281 - - - Track ID6283 - - - Track ID6285 - - - Track ID6287 - - - Track ID6289 - - - Track ID6291 - - - Track ID6293 - - - Track ID6295 - - - Track ID6297 - - - Track ID6299 - - - Track ID6301 - - - Track ID6303 - - - Track ID6305 - - - Track ID6307 - - - Track ID6309 - - - Track ID6311 - - - Track ID6313 - - - Track ID6315 - - - Track ID6317 - - - Track ID6319 - - - Track ID6321 - - - - - NameTTF Vol. 56 - CD1 (2010) - Playlist ID18510 - Playlist Persistent ID66C137646E80DC51 - All Items - Playlist Items - - - Track ID6323 - - - Track ID6325 - - - Track ID6327 - - - Track ID6329 - - - Track ID6331 - - - Track ID6333 - - - Track ID6335 - - - Track ID6337 - - - Track ID6339 - - - Track ID6341 - - - Track ID6343 - - - Track ID6345 - - - Track ID6347 - - - Track ID6349 - - - Track ID6351 - - - Track ID6353 - - - Track ID6355 - - - Track ID6357 - - - Track ID6359 - - - Track ID6361 - - - Track ID6363 - - - Track ID6365 - - - Track ID6367 - - - Track ID6369 - - - Track ID6371 - - - - - NameTTF Vol. 56 - CD2 (2010) - Playlist ID18538 - Playlist Persistent IDF45A5FBBDEC25B4D - All Items - Playlist Items - - - Track ID6373 - - - Track ID6375 - - - Track ID6377 - - - Track ID6379 - - - Track ID6381 - - - Track ID6383 - - - Track ID6385 - - - Track ID6387 - - - Track ID6389 - - - Track ID6391 - - - Track ID6393 - - - Track ID6395 - - - Track ID6397 - - - Track ID6399 - - - Track ID6401 - - - Track ID6403 - - - Track ID6405 - - - Track ID6407 - - - Track ID6409 - - - Track ID6411 - - - Track ID6413 - - - Track ID6415 - - - Track ID6417 - - - Track ID6419 - - - Track ID6421 - - - - - NameTTF Vol. 57 - CD1 (2011) - Playlist ID18566 - Playlist Persistent ID2DB0C4D361A327A8 - All Items - Playlist Items - - - Track ID6523 - - - Track ID6525 - - - Track ID6527 - - - Track ID6529 - - - Track ID6531 - - - Track ID6533 - - - Track ID6535 - - - Track ID6537 - - - Track ID6539 - - - Track ID6541 - - - Track ID6543 - - - Track ID6545 - - - Track ID6547 - - - Track ID6549 - - - Track ID6551 - - - Track ID6553 - - - Track ID6555 - - - Track ID6557 - - - Track ID6559 - - - Track ID6561 - - - Track ID6563 - - - Track ID6565 - - - Track ID6567 - - - Track ID6569 - - - Track ID6571 - - - - - NameTTF Vol. 57 - CD2 (2011) - Playlist ID18594 - Playlist Persistent ID06504098622672D7 - All Items - Playlist Items - - - Track ID6573 - - - Track ID6575 - - - Track ID6577 - - - Track ID6579 - - - Track ID6581 - - - Track ID6583 - - - Track ID6585 - - - Track ID6587 - - - Track ID6589 - - - Track ID6591 - - - Track ID6593 - - - Track ID6595 - - - Track ID6597 - - - Track ID6599 - - - Track ID6601 - - - Track ID6603 - - - Track ID6605 - - - Track ID6607 - - - Track ID6609 - - - Track ID6611 - - - Track ID6613 - - - Track ID6615 - - - Track ID6617 - - - Track ID6619 - - - Track ID6621 - - - - - NameTTF Vol. 58 - CD 1 (2011) - Playlist ID18690 - Playlist Persistent ID1F1E3B589B2453B0 - All Items - Playlist Items - - - Track ID6423 - - - Track ID6425 - - - Track ID6427 - - - Track ID6429 - - - Track ID6431 - - - Track ID6433 - - - Track ID6435 - - - Track ID6437 - - - Track ID6439 - - - Track ID6441 - - - Track ID6443 - - - Track ID6445 - - - Track ID6447 - - - Track ID6449 - - - Track ID6451 - - - Track ID6453 - - - Track ID6455 - - - Track ID6457 - - - Track ID6459 - - - Track ID6461 - - - Track ID6463 - - - Track ID6465 - - - Track ID6467 - - - Track ID6469 - - - Track ID6471 - - - - - NameTTF Vol. 58 - CD 2 (2011) - Playlist ID18718 - Playlist Persistent ID27A6A44E5B200873 - All Items - Playlist Items - - - Track ID6473 - - - Track ID6475 - - - Track ID6477 - - - Track ID6479 - - - Track ID6481 - - - Track ID6483 - - - Track ID6485 - - - Track ID6487 - - - Track ID6489 - - - Track ID6491 - - - Track ID6493 - - - Track ID6495 - - - Track ID6497 - - - Track ID6499 - - - Track ID6501 - - - Track ID6503 - - - Track ID6505 - - - Track ID6507 - - - Track ID6509 - - - Track ID6511 - - - Track ID6513 - - - Track ID6515 - - - Track ID6517 - - - Track ID6519 - - - Track ID6521 - - - - - NameTTF Vol. 59 - CD 1 (2011) - Playlist ID18769 - Playlist Persistent ID45B46D7C4DE19FED - All Items - Playlist Items - - - Track ID6623 - - - Track ID6625 - - - Track ID6627 - - - Track ID6629 - - - Track ID6631 - - - Track ID6633 - - - Track ID6635 - - - Track ID6637 - - - Track ID6639 - - - Track ID6641 - - - Track ID6643 - - - Track ID6645 - - - Track ID6647 - - - Track ID6649 - - - Track ID6651 - - - Track ID6653 - - - Track ID6655 - - - Track ID6657 - - - Track ID6659 - - - Track ID6661 - - - Track ID6663 - - - Track ID6665 - - - Track ID6667 - - - Track ID6669 - - - Track ID6671 - - - - - NameTTF Vol. 59 - CD 2 (2011) - Playlist ID18797 - Playlist Persistent IDC93C2B73494571F9 - All Items - Playlist Items - - - Track ID6673 - - - Track ID6675 - - - Track ID6677 - - - Track ID6679 - - - Track ID6681 - - - Track ID6683 - - - Track ID6685 - - - Track ID6687 - - - Track ID6689 - - - Track ID6691 - - - Track ID6693 - - - Track ID6695 - - - Track ID6697 - - - Track ID6699 - - - Track ID6701 - - - Track ID6703 - - - Track ID6705 - - - Track ID6707 - - - Track ID6709 - - - Track ID6711 - - - Track ID6713 - - - Track ID6715 - - - Track ID6717 - - - Track ID6719 - - - Track ID6721 - - - - - NameTV Shows - Playlist ID14858 - Playlist Persistent ID0285B852AE995B94 - All Items - - - NameUltimate Hardstyle Vol. 1 (2011) - Playlist ID18746 - Playlist Persistent ID6730C6FBDE30328B - All Items - Playlist Items - - - Track ID4793 - - - Track ID4795 - - - Track ID4797 - - - Track ID4799 - - - Track ID4801 - - - Track ID4803 - - - Track ID4805 - - - Track ID4807 - - - Track ID4809 - - - Track ID4811 - - - Track ID4813 - - - Track ID4815 - - - Track ID4817 - - - Track ID4819 - - - Track ID4821 - - - Track ID4823 - - - Track ID4825 - - - Track ID4827 - - - Track ID4829 - - - Track ID4831 - - - - - NameVarious Techno - Playlist ID18622 - Playlist Persistent ID0B17DFB9CEFFA141 - All Items - Playlist Items - - - Track ID1867 - - - Track ID1869 - - - Track ID1871 - - - Track ID1873 - - - Track ID1875 - - - Track ID1877 - - - Track ID1879 - - - Track ID1881 - - - Track ID1883 - - - Track ID1885 - - - Track ID1887 - - - Track ID1889 - - - Track ID1891 - - - Track ID1893 - - - Track ID1895 - - - Track ID1897 - - - Track ID1899 - - - Track ID1901 - - - Track ID1903 - - - Track ID1905 - - - Track ID1907 - - - Track ID1909 - - - Track ID1911 - - - Track ID1913 - - - Track ID1915 - - - Track ID1917 - - - Track ID1919 - - - Track ID1921 - - - Track ID1923 - - - Track ID1925 - - - Track ID1927 - - - Track ID1929 - - - Track ID1931 - - - Track ID1933 - - - Track ID1935 - - - Track ID1937 - - - Track ID1939 - - - Track ID1941 - - - Track ID1943 - - - Track ID1945 - - - Track ID1947 - - - Track ID1949 - - - Track ID1951 - - - Track ID1953 - - - Track ID1955 - - - Track ID1957 - - - Track ID1959 - - - Track ID1961 - - - Track ID1963 - - - Track ID1965 - - - Track ID1967 - - - Track ID1969 - - - Track ID1971 - - - Track ID1973 - - - Track ID1975 - - - Track ID1977 - - - Track ID1979 - - - Track ID1981 - - - Track ID1983 - - - Track ID2077 - - - Track ID4115 - - - Track ID4119 - - - Track ID4121 - - - Track ID4123 - - - Track ID6807 - - - - - NameWedding - Playlist ID19427 - Playlist Persistent IDE0ED59ECE61D94E1 - All Items - Playlist Items - - - Track ID6959 - - - Track ID6961 - - - Track ID6963 - - - Track ID6965 - - - Track ID6967 - - - Track ID6969 - - - Track ID6971 - - - Track ID6973 - - - Track ID6975 - - - Track ID6977 - - - Track ID6979 - - - Track ID6981 - - - Track ID6983 - - - Track ID6985 - - - Track ID6987 - - - Track ID6989 - - - Track ID6991 - - - Track ID6993 - - - Track ID6995 - - - Track ID6997 - - - Track ID6999 - - - Track ID7001 - - - Track ID7003 - - - Track ID7005 - - - Track ID7007 - - - Track ID7009 - - - Track ID7011 - - - Track ID7013 - - - Track ID7015 - - - Track ID7017 - - - Track ID7019 - - - Track ID7021 - - - Track ID7023 - - - Track ID7025 - - - Track ID7027 - - - Track ID7029 - - - Track ID7031 - - - Track ID7033 - - - Track ID7035 - - - Track ID7037 - - - Track ID7039 - - - Track ID7041 - - - Track ID7043 - - - Track ID7045 - - - Track ID7047 - - - Track ID7049 - - - Track ID7051 - - - Track ID7053 - - - Track ID7055 - - - Track ID7057 - - - Track ID7059 - - - Track ID7061 - - - Track ID7063 - - - Track ID7065 - - - Track ID7067 - - - Track ID7069 - - - - - NameWolfmother - Wolfmother - Playlist ID19411 - Playlist Persistent IDBC558287D9E07434 - All Items - Playlist Items - - - Track ID6911 - - - Track ID6913 - - - Track ID6915 - - - Track ID6917 - - - Track ID6919 - - - Track ID6921 - - - Track ID6923 - - - Track ID6925 - - - Track ID6927 - - - Track ID6929 - - - Track ID6931 - - - Track ID6933 - - - Track ID6935 - - - - - - diff --git a/src/test/resources/playlists/m3u/aight.m3u8 b/src/test/resources/playlists/m3u/aight.m3u8 deleted file mode 100644 index c40a62cf..00000000 --- a/src/test/resources/playlists/m3u/aight.m3u8 +++ /dev/null @@ -1,267 +0,0 @@ -#EXTM3U -# -..\Aight\Eagles - 1972 - Eagles [FLAC] {253 009}\02 - Witchy Woman.flac -..\Aight\Eagles - 1972 - Eagles [FLAC] {253 009}\07 - Take the Devil.flac -..\Aight\Eagles - 1972 - Eagles [FLAC] {253 009}\01 - Take It Easy.flac -..\Aight\Eagles - 1973 - Desperado {1987 Elektra Records E2 5068 CD}[FLAC]\01 - Doolin-Dalton.flac -..\Aight\Eagles - 1973 - Desperado {1987 Elektra Records E2 5068 CD}[FLAC]\05 - Desperado.flac -..\Aight\Eagles - 1973 - Desperado {1987 Elektra Records E2 5068 CD}[FLAC]\04 - Tequila Sunrise.flac -..\Aight\Eagles - 1973 - Desperado {1987 Elektra Records E2 5068 CD}[FLAC]\08 - Outlaw Man.flac -..\Aight\Eagles - 1975 - One of These Nights [FLAC] {1984 Asylum 7E-1039-2 Europe 253 014 West German Target}\01 - One Of These Nights.flac -..\Aight\Eagles - 1975 - One of These Nights [FLAC] {1984 Asylum 7E-1039-2 Europe 253 014 West German Target}\02 - Too Many Hands.flac -..\Aight\Eagles - 1975 - One of These Nights [FLAC] {1984 Asylum 7E-1039-2 Europe 253 014 West German Target}\04 - Journey Of The Sorcerer.flac -..\Aight\Eagles - 1975 - One of These Nights [FLAC] {1984 Asylum 7E-1039-2 Europe 253 014 West German Target}\05 - Lyin' Eyes.flac -..\Aight\Eagles - 1975 - One of These Nights [FLAC] {1984 Asylum 7E-1039-2 Europe 253 014 West German Target}\06 - Take It To The Limit.flac -..\Aight\Led Zeppelin - 1971 - Led Zeppelin IV (2014 Deluxe Edition) [FLAC] {8122796446}\CD1\04 - Stairway to Heaven.flac -..\Aight\Neil Diamond - The Bang Years 1966-1968 (2011) [FLAC]\01 - Solitary Man.flac -..\Aight\Jim Croce - 1973 - I Got a Name {S21-57662} [CD-FLAC]\01 - I Got a Name.flac -..\Aight\Chris Stapleton - Traveller [FLAC]\04 - Parachute.flac -..\Aight\Chris Stapleton - Traveller [FLAC]\01 - Traveller.flac -..\Aight\Chris Stapleton - Traveller [FLAC]\03 - Tennessee Whiskey.flac -..\Aight\Eagles - 1980 - Eagles Live {WPCR-11938-9 Japan 2004 CD} [FLAC]\1.04. The Long Run.flac -..\Aight\J.J. Cale - 1974 - Okie [FLAC]\12. Cale, J.J. - I got the same old blues.flac -..\Aight\J.J. Cale - 1992 - Number 10 {74321 10858 2} [CD-FLAC]\07 - Jailer.flac -..\Aight\J.J. Cale - Travel-Log\03 - No Time.flac -..\Aight\The Notting Hillbillies - Missing... Presumed Having a Good Time (1990) [FLAC]\07 - Will You Miss Me.flac -..\Aight\J.J. Cale - 1979 - 5 [FLAC]\03 - I'll Make Love To You Anytime.flac -..\Aight\J.J. Cale - 1981 - Shades {800 105-2, CD} [FLAC]\01 - J.J. Cale - Carry On.flac -..\Aight\J.J. Cale - 1981 - Shades {800 105-2, CD} [FLAC]\06 - J.J. Cale - Mama Don't.flac -..\Aight\J.J. Cale - 1982 - Grasshopper (FLAC) [800 038-2]\05 - Downtown L.A..flac -..\Aight\Lynyrd Skynyrd- 1973 - (pronounced 'lĕh-'nérd 'skin-'nérd)\08 - Free Bird.flac -..\Aight\Stealers Wheel - 1972 - Stealers Wheel [Reissue 2004] [FLAC]\[02] Stuck In The Middle With You.flac -..\Aight\The Rolling Stones - 1986 - Let It Bleed - FLAC\01. Gimme Shelter.flac -..\Aight\Mungo Jerry - 1995 - The Hits And Some More - {Satelite Music}\01. In The Summertime.flac -..\Aight\ZOO - 2014 - Go Back to the Zoo [MP3]\07. Julia.mp3 -..\Aight\Garland Jeffreys - Ghost Writer, One-Eyed Jack, American Boy & Girl\2.10. Matador.flac -..\Aight\Eric Clapton - Slowhand {Polydor - P2-31825}\03 Lay Down Sally.flac -..\Aight\Rodríguez - 1970 - Cold Fact [LITA036 RM 2008 CD]\05. Hate Street Dialogue.flac -..\Aight\Bryan Adams - Reckless (1984) [FLAC] {UDCD 544}\03 - Run to You.flac -..\Aight\Marvin Gaye - Anthology (1995) [FLAC]\2.16. Got to Give It Up, Part I.flac -..\Aight\Hero Fisher - 2015 - Delivery\02. Break My Heart And Mend It.flac -..\Aight\Jacinthe - Hugo EP\05. Hugo (piano version).flac -..\Aight\Don Henley - 1984 - Building the Perfect Beast {9 24026-2} [FLAC]\01 The Boys of Summer.flac -..\Aight\Jim Croce - 1972 - You Don't Mess Around With Jim\06 - Walkin' Back to Georgia.flac -..\Aight\Kyteman - The Hermit Sessions (2009) [JAMMM 20092302-3] {8712488984933} [CDFLAC]\07 - Sorry (live @ Tivoli , Utrecht).flac -..\Aight\Michael Jackson - 1987 - Bad [24bit-48Khz]\01 - Bad.flac -..\Aight\Rodriguez - 2012 - Searching For Sugar Man - Original Motion Picture Soundtrack\04 - I Wonder.flac -..\Aight\Rodriguez - 2012 - Searching For Sugar Man - Original Motion Picture Soundtrack\02 - Crucify Your Mind.flac -..\Aight\Rodriguez - 2012 - Searching For Sugar Man - Original Motion Picture Soundtrack\05 - Like Janis.flac -..\Aight\Rodriguez - 2012 - Searching For Sugar Man - Original Motion Picture Soundtrack\07 - Can't Get Away.flac -..\Aight\Rodriguez - 2012 - Searching For Sugar Man - Original Motion Picture Soundtrack\09 - Inner City Blues.flac -..\Aight\Rodriguez - 2012 - Searching For Sugar Man - Original Motion Picture Soundtrack\12 - A Most Disgusting Song.flac -..\Aight\Rodriguez - 1971 - Coming From Reality [FLAC]\04 - Heikki_s Suburbia Bus Tour.flac -..\Aight\Rodríguez - 1970 - Cold Fact [LITA036 RM 2008 CD]\02. Only Good for Conversation.flac -..\Aight\Rodríguez - 1970 - Cold Fact [LITA036 RM 2008 CD]\11. Rich Folks Hoax.flac -..\Aight\Fleetwood Mac - 1975 - Fleetwood Mac (2004 Remaster) [FLAC] {8122-73881-2}\04 - Rhiannon.flac -..\Aight\Billy Joel - 1973 - Piano Man [FLAC]\Disc 1\02 - Piano Man.flac -..\Aight\Lynyrd Skynyrd- 1973 - (pronounced 'lĕh-'nérd 'skin-'nérd)\03 - Gimme Three Steps.flac -..\Aight\The Hollies - 1999 - Distant Light [FLAC]\07 - Long Cool Woman (In a Black Dress).flac -..\Aight\Joe Cocker - With a Little Help from My Friends [1990 A&M Records]\09 - With a Little Help from My Friends.flac -..\Aight\Santana - 1999 - Supernatural - Arista {07822-19080-2} - FLAC\05 - Smooth (Ft. Rob Thomas).flac -..\Aight\Paul Weller - 1993 - Wild Wood (Deluxe Edition)\1.03. Wild Wood.flac -..\Aight\Paul Weller - 1995 - Stanley Road (Go! Discs - 828 619-2) [FLAC]\04 You Do Something To Me.flac -..\Aight\Paul Weller - 1995 - Stanley Road (Go! Discs - 828 619-2) [FLAC]\08 Broken Stones.flac -..\Aight\Paul Weller - 1995 - Stanley Road (Go! Discs - 828 619-2) [FLAC]\01 The Changingman.flac -..\Aight\Various Artists - 2000 - O Brother, Where Art Thou [CD FLAC]\05 - Soggy Bottom Boys - I Am a Man of Constant Sorrow (Radio Station Version) (feat. Tim Tyminski).flac -..\Aight\Cat Stevens - Teaser and the Firecat (2000) [CD - FLAC - Lossless] {314 546 885-2}\10 - Peace Train.flac -..\Aight\Cat Stevens - Teaser and the Firecat (2000) [CD - FLAC - Lossless] {314 546 885-2}\04 - Changes IV.flac -..\Aight\Cat Stevens - Teaser and the Firecat (2000) [CD - FLAC - Lossless] {314 546 885-2}\08 - Bitterblue.flac -..\Aight\Neil Young - 1972 - Harvest {7599-27239-2}\06 - Old Man.flac -..\Aight\Neil Young - 1972 - Harvest {7599-27239-2}\04 - Heart of Gold.flac -..\Aight\Led Zeppelin - 1971 - Led Zeppelin IV (2014 Deluxe Edition) [FLAC] {8122796446}\CD1\02 - Rock and Roll.flac -..\Aight\Bob Dylan - 2001 - The Essential Bob Dylan [C2K 85168]\1.13. All Along the Watchtower.flac -..\Aight\DIDA - 2015 - Modern Love Songs\02 - Jack Nice.flac -..\Aight\Ween - The Friends EP [Chocodog Records]\03 - King Billy.flac -..\Aight\Van Morrison - 1970 - Moondance [2013 Expanded FLAC]\disc 1\01 - And It Stoned Me.flac -..\Aight\Chef'Special - Amigo [FLAC]\03 - Chef'Special - Money.flac -..\Aight\J.J. Cale - 1979 - 5 [FLAC]\04 - Don't Cry Sister.flac -..\Aight\Bon Jovi - Slippery When Wet (1986) - FLAC\03 - Livin' On A Prayer.flac -..\Aight\Biel Ballester Trio - 2010 - Gypsy Jazz Live in London {web}\03 - When I Was A Boy.flac -..\Aight\One Self - 2005 - Children of Possibility\06. Bluebird.flac -..\Aight\Supertramp - 1974 - Crime Of The Century [FLAC] {2002 A&M 493 346-2}\01 - School.flac -..\Aight\Paul Simon - 2012 - Graceland (25th Anniversary Edition) [Web 24-96]\02. Graceland.flac -..\Aight\David Bowie - Tonight (1999 Remaster) {7243 521897 0 0} - 1984\04 - Tonight.flac -..\Aight\Now That's What I Call Music! 13 - 1988 - FLAC\Disc Two\11 - Proclaimers - I'm Gonna Be (500 Miles).flac -..\Aight\Tony Joe White - 2013 - Hoodoo {YEP 2348} [FLAC]\03 - Who You Gonna Hoodoo Now-.flac -..\Aight\Madness - Absolutely - (1989-11)[CDOVD 134][CD][FLAC]\01 - Madness - Baggy Trousers.flac -..\Aight\John Lee Hooker - 1991 - The Ultimate Collection 1948-1990 [FLAC]\disc 2\01 Boom Boom.flac -..\Aight\Steppenwolf - 1968 - Steppenwolf [FLAC] {2013 AP}\08 - The Pusher.flac -..\Aight\Norah Jones - 2012 - Come Away With Me\Wray, Link - (1971) Link Wray (FLAC)\09 - Crowbar.flac -..\Aight\Johnny Cash - 2002 - American IV - The Man Comes Around\01. The Man Comes Around.flac -..\Aight\J.J. Cale - Travel-Log\09 - Tijuana.flac -..\Aight\Tash Sultana - 2016 - Notion (EP)\04. Jungle.flac -..\Aight\Fleetwood Mac - 1992 - The Chain 25 Years (4CD Box)\2.10. The Chain.flac -..\Aight\Norah Jones - 2012 - Come Away With Me\01. Don't Know Why - Norah Jones.flac -..\Aight\Norah Jones - 2016 - Day Breaks (Deluxe) [FLAC]CD\11. Carry On.flac -..\Aight\Fleetwood Mac - 1992 - The Chain 25 Years (4CD Box)\2.12. Dreams.flac -..\Aight\Neil Diamond - In My Lifetime (1996) {Columbia C3K 65013 3xCD} [FLAC]\CD2\18 - Beautiful Noise [Album Master].flac -..\Aight\Neil Diamond - In My Lifetime (1996) {Columbia C3K 65013 3xCD} [FLAC]\CD1\26 - Holly Holy.flac -..\Aight\Kenny Rogers - 1978 - The Gambler\06 - She Believes In Me.flac -..\Aight\Steely Dan - 1987 - Can't Buy A Thrill {MCA Records MCLD 19017} [FLAC]\01 Do It Again.flac -..\Aight\Buffalo Springfield - Buffalo Springfield [1997 ATCO Records Remaster]\01 - For What It's Worth.flac -..\Aight\J.J. Cale - 1974 - Okie [FLAC]\07. Cale, J.J. - Cajun moon.flac -..\Aight\The Notting Hillbillies - Missing... Presumed Having a Good Time (1990) [FLAC]\03 - Your Own Sweet Way.flac -..\Aight\Ed Sheeran - 2017 - ÷ (Deluxe Edition) [CD-FLAC]\05 Perfect.flac -..\Aight\Will Smith - 1999 - Willennium {CK 69985}{CA}[FLAC]\14 - Wild Wild West.flac -..\Aight\Peter Green - 1991 - In the Skies {CHC 7015} [FLAC]\02. Slabo Day.flac -..\Aight\Van Morrison - 1970 - Moondance [2013 Expanded FLAC]\disc 1\05 - Into The Mystic.flac -..\Aight\Van Morrison - 1970 - Moondance [2013 Expanded FLAC]\disc 1\02 - Moondance.flac -..\Aight\Ed Sheeran - 2014 - X\16. I See Fire.flac -..\Aight\Ed Sheeran - 2017 - ÷ (Deluxe Edition) [CD-FLAC]\04 Shape of You.flac -..\Aight\Doobie Brothers - 1973 - The Captain and Me\02 - Long Train Runnin'.flac -..\Aight\Crosby, Stills, Nash and Young - So Far (1994) FLAC\05. Ohio.flac -..\Aight\Steppenwolf - 1968 - The Second [2015 FLAC 24-96]\07 - Magic Carpet Ride.flac -..\Aight\Aerosmith - Aerosmith (1973, 474962 2) - [FLAC]\03 - Dream On.flac -..\Aight\Santana - Abraxas (1970) [CD FLAC] {1990 CBS CK 30130}\03 - Oye Como Va.flac -..\Aight\Santana - 1999 - Supernatural - Arista {07822-19080-2} - FLAC\03 - Put Your Lights On (Ft. Everlast).flac -..\Aight\Santana - Moonflower {Remastered} (2003) [FLAC]\Disc 2\09 - She's Not There (Single Version).flac -..\Aight\Dire Straits - 1993 - On the Night [Flac]\04 - Romeo And Juliet.flac -..\Aight\Dire Straits - 1991 - On Every Street {510 160-2}\03 - When It Comes to You.flac -..\Aight\Dire Straits - 1991 - On Every Street {510 160-2}\05 - The Bug.flac -..\Aight\Dire Straits - 1991 - On Every Street {510 160-2}\10 - My Parties.flac -..\Aight\Dire Straits - 1991 - On Every Street {510 160-2}\11 - Planet of New Orleans.flac -..\Aight\Dire Straits - 1985 - Brothers in Arms (Remastered) [Flac]\01 - So Far Away.flac -..\Aight\Dire Straits - 1993 - On the Night [Flac]\02 - Walk Of Life.flac -..\Aight\Dire Straits - 1984 - Alchemy 1984 (Japan SHM-CD)\1.01. Once Upon a Time in the West.flac -..\Aight\Dire Straits - 1984 - Alchemy 1984 (Japan SHM-CD)\1.06. Sultans of Swing.flac -..\Aight\Dire Straits - 1984 - Alchemy 1984 (Japan SHM-CD)\2.02. Tunnel of Love.flac -..\Aight\Dire Straits - 1984 - Alchemy 1984 (Japan SHM-CD)\2.03. Telegraph Road.flac -..\Aight\Dire Straits - 1979 - Communiqué {Vertigo 800 052-2}\01 - Once Upon a Time in the West.flac -..\Aight\Dire Straits - 1979 - Communiqué {Vertigo 800 052-2}\03 - Where Do You Think You're Going_.flac -..\Aight\Dire Straits - 1979 - Communiqué {Vertigo 800 052-2}\04 - Communiqué.flac -..\Aight\Dire Straits - 1979 - Communiqué {Vertigo 800 052-2}\05 - Lady Writer.flac -..\Aight\Dire Straits - 1979 - Communiqué {Vertigo 800 052-2}\08 - Single-Handed Sailor.flac -..\Aight\Dire Straits - 1978 - Dire Straits {Vertigo 800 051-2}\01 - Down to the Waterline.flac -..\Aight\Dire Straits - 1978 - Dire Straits {Vertigo 800 051-2}\02 - Water of Love.flac -..\Aight\Dire Straits - 1978 - Dire Straits {Vertigo 800 051-2}\03 - Setting Me Up.flac -..\Aight\Dire Straits - 1978 - Dire Straits {Vertigo 800 051-2}\04 - Six Blade Knife.flac -..\Aight\Dire Straits - 1978 - Dire Straits {Vertigo 800 051-2}\05 - Southbound Again.flac -..\Aight\Dire Straits - 1978 - Dire Straits {Vertigo 800 051-2}\07 - In the Gallery.flac -..\Aight\Dire Straits - 1978 - Dire Straits {Vertigo 800 051-2}\08 - Wild West End.flac -..\Aight\Dire Straits - 1979 - Communiqué {Vertigo 800 052-2}\02 - News.flac -..\Aight\Dire Straits - 1993 - On the Night [Flac]\10 - Brothers In Arms.flac -..\Aight\Pink Floyd - 1975 - Wish You Were Here {PFR9}\04 - Wish You Were Here.flac -..\Aight\The Jimi Hendrix Experience - 1967 - Axis Bold as Love {Reprise 6281-2 first edition DADC without Noise Reduction}\06. Little Wing.flac -..\Aight\The Jimi Hendrix Experience - 1967 - Are You Experienced {Reprise original release}\03. Hey Joe.flac -..\Aight\Pink Floyd - 1973 - The Dark Side Of The Moon {PFR8}\04 - Time.flac -..\Aight\Cream - Wheels Of Fire (1968) [FLAC] (DCC Gold GZS (2) 1020)\Disc 1\01 - White Room.flac -..\Aight\Pink Floyd - 1988 - Delicate Sound Of Thunder {PFR16}\2.01. One of These Days.flac -..\Aight\Pink Floyd - 1988 - Delicate Sound Of Thunder {PFR16}\2.02. Time.flac -..\Aight\Pink Floyd - 1988 - Delicate Sound Of Thunder {PFR16}\2.04. Us and Them.flac -..\Aight\Pink Floyd - 1988 - Delicate Sound Of Thunder {PFR16}\2.08. Run Like Hell.flac -..\Aight\Pink Floyd - 1975 - Wish You Were Here {PFR9}\01 - Shine On You Crazy Diamond (Parts 1-5).flac -..\Aight\Piers Faccini - 2016 - I Dreamed An Island [web]\03. Bring Down the Wall.flac -..\Aight\Piers Faccini - 2011 - My Wilderness\02 The Beggar & The Chief.flac -..\Aight\Dawn Landes & Piers Faccini - 2016 - Desert Songs (EP)\02. We Come And Go.flac -..\Aight\Yom - 2016 - Songs for the Old Man\02 - Everywhere Home.flac -..\Aight\Cameo - Word Up! - 1986 - FLAC - CD\01. Word Up.flac -..\Aight\The Band - 1978 - The Last Waltz [FLAC] {2016 40th Anniversary Edition}\2.03. Ophelia.flac -..\Aight\John Watts - 2011 - Fischer-Z [Flac]\02 The Worker.flac -..\Aight\John Watts - 2011 - Fischer-Z [Flac]\05 Room Service.flac -..\Aight\The Rolling Stones - 1978 - Some Girls [1994 Remaster] [7243-8-39526-2] [FLAC]\09 - Beast of Burden.flac -..\Aight\The Band - 1978 - The Last Waltz [FLAC] {2016 40th Anniversary Edition}\2.15. The Last Waltz Suite- The Weight.flac -..\Aight\Bob Dylan - 2016 - Dylan Revisited - All Time Best\1.13. Like A Rolling Stone.flac -..\Aight\Bob Dylan - 2001 - The Essential Bob Dylan [C2K 85168]\2.05. Knockin’ on Heaven’s Door.flac -..\Aight\Tom Petty And The Heartbreakers - 1993 - Greatest Hits {Geffen Records Remastered} [FLAC]\17 - Mary Jane's Last Dance.flac -..\Aight\Amadou & Mariam - 2004 - Dimanche à Bamako\05 - Sénégal Fast Food.flac -..\Aight\Guns N' Roses - 1991 Use Your Illusion II (MFSL)\04 Knockin' On Heaven's Door.flac -..\Aight\J.J. Cale - 1971 - Naturally [FLAC] {2013 SHM-CD}\09 - After Midnight.flac -..\Aight\Eric Clapton - Unplugged Deluxe (2013) [FLAC]\CD 1\06 - Nobody Knows You When You're Down & Out.flac -..\Aight\Tom Petty And The Heartbreakers - 1993 - Greatest Hits {Geffen Records Remastered} [FLAC]\13 - Runnin' Down A Dream.flac -..\Aight\Tom Petty - Tom Petty and the Heartbreakers [2002 Gone Gator Records Remaster]\05 - Anything That's Rock 'n' Roll.flac -..\Aight\The Heavy - 2009 - The House That Dirt Built {BRC-426} [FLAC]\05 - Short Change Hero.flac -..\Aight\The Heavy 2007 Great Vengeance And Furious Fire (COUNTCD007)\02 Coleen.flac -..\Aight\John Anderson - Seminole Wind (1992) {BNA 07863 61029-2, CD} [FLAC]\09 - When It Comes to You.flac -..\Aight\Tony Joe White - The Best Of\01 - Polk Salad Annie (from ''Black And White'' -- 1968).flac -..\Aight\The Rolling Stones - 2002 - Metamorphosis {1975 882366-2 RM CD} [FLAC]\12 - Jiving Sister Fanny.flac -..\Aight\Neil Young - 1979 - Rust Never Sleeps {1993, 7599-27249-2} [FLAC]\01 - My My, Hey Hey (Out of the Blue).flac -..\Aight\Jerry Reed - The Essential Jerry Reed (RCA 07863 66592-2)\03 - Amos Moses.flac -..\Aight\Jerry Reed - The Essential Jerry Reed (RCA 07863 66592-2)\01 - Guitar Man.flac -..\Aight\J.J. Cale - 1992 - Number 10 {74321 10858 2} [CD-FLAC]\10 - She's In Love.flac -..\Aight\Eric Clapton - The Breeze [WEB FLAC]\03 - Someday (feat. Mark Knopfler).flac -..\Aight\Biel Ballester Trio - 2010 - Gypsy Jazz Live in London {web}\02 - You d Be So Nice To Come Home To.flac -..\Aight\Various Artists - 2003 - Groovy Vol. 6 [FLAC]\09-Patti Drew - Fever.flac -..\Aight\Michael Bublé - 2005 - Caught in the Act [CD FLAC]\01 - Feeling Good.flac -..\Aight\Bob Dylan - 2001 - The Essential Bob Dylan [C2K 85168]\2.09. Hurricane.flac -..\Aight\Mamas & Papas - 1994 - California Dreamin' [FLAC]\01 - California Dreamin'.flac -..\Aight\J.J. Cale - 1971 - Naturally [FLAC] {2013 SHM-CD}\03 - Don't Go To Strangers.flac -..\Aight\J.J. Cale - 1974 - Okie [FLAC]\11. Cale, J.J. - Okie.flac -..\Aight\J.J. Cale - 1979 - 5 [FLAC]\06 - Sensitive Kind.flac -..\Aight\J.J. Cale - 1982 - Grasshopper (FLAC) [800 038-2]\09 - Don't Wait.flac -..\Aight\J.J. Cale - 1982 - Grasshopper (FLAC) [800 038-2]\07 - Grasshopper.flac -..\Aight\J.J. Cale - 1983 - #8 [FLAC 2013 SHM-CD]\03 - Hard Times.flac -..\Aight\J.J. Cale - 1996 - Guitar Man (7243 8 41480 2 7)\04 Low Down.flac -..\Aight\J.J. Cale - 2004 - To Tulsa and Back {CopyProtected Capitol 724357978620} [FLAC]\06 - The Problem.flac -..\Aight\J.J. Cale - 2006 - Collected (3CD) FLAC\3.18. After Midnight (2 Meter Sessie).flac -..\Aight\J.J. Cale - 1971 - Naturally [FLAC] {2013 SHM-CD}\11 - Bringing It Back.flac -..\Aight\J.J. Cale - 1971 - Naturally [FLAC] {2013 SHM-CD}\08 - Nowhere To Run.flac -..\Aight\J.J. Cale - 1972 - Really {1990 Mercury 810314-2} [FLAC]\06 - If You're Ever In Oklahoma.flac -..\Aight\Supertramp - 1979 - Breakfast In America [FLAC] {UICY-40026}\06 - Take The Long Way Home.flac -..\Aight\Supertramp - 1974 - Crime Of The Century [FLAC] {2002 A&M 493 346-2}\08 - Crime Of The Century.flac -..\Aight\Amadou & Mariam - 2004 - Dimanche à Bamako\04 - La Réalité.flac -..\Aight\Amadou Et Mariam - Sou Ni Tilé (1998) [FLAC] {EmArcy 557 118-2}\01 - Je Pense A Toi.flac -..\Aight\Amadou & Mariam - 2004 - Dimanche à Bamako\03 - Coulibaly.flac -..\Aight\Jack White - Acoustic Recordings 1998-2016 (2016) - FLAC\CD2\03 - Carolina Drama (Acoustic Mix).flac -..\Aight\Grant Green - 1970 - Alive! [FLAC][Bonus Tracks]\04 - Sookie Sookie .flac -..\Aight\Mark Knopfler - The Ragpicker's Dream (2002, 2 CD, Mercury 063293) [FLAC]\CD 1\01 - Why Aye Man.flac -..\Aight\Mark Knopfler - Sailing to Philadelphia (2000, CD, Mercury 542981) [FLAC]\02 - Sailing to Philadelphia.flac -..\Aight\Mark Knopfler - Shangri-La (2004, CD, Mercury 9867259) [FLAC]\02 - Boom, Like That.flac -..\Aight\Mark Knopfler - Sailing to Philadelphia (2000, CD, Mercury 542981) [FLAC]\04 - Baloney Again.flac -..\Aight\Mark Knopfler - Sailing to Philadelphia (2000, CD, Mercury 542981) [FLAC]\05 - The Last Laugh.flac -..\Aight\Mark Knopfler - Sailing to Philadelphia (2000, CD, Mercury 542981) [FLAC]\07 - Silvertown Blues.flac -..\Aight\Mark Knopfler - Sailing to Philadelphia (2000, CD, Mercury 542981) [FLAC]\08 - El Macho.flac -..\Aight\Mark Knopfler - Sailing to Philadelphia (2000, CD, Mercury 542981) [FLAC]\09 - Prairie Wedding.flac -..\Aight\Mark Knopfler - Sailing to Philadelphia (2000, CD, Mercury 542981) [FLAC]\10 - Wanderlust.flac -..\Aight\Mark Knopfler - Sailing to Philadelphia (2000, CD, Mercury 542981) [FLAC]\12 - Junkie Doll.flac -..\Aight\Neil Young - 1972 - Harvest {7599-27239-2}\01 - Out on the Weekend.flac -..\Aight\Bruce Springsteen -2014- High Hopes (FLAC)\01 - Bruce Springsteen - 2014 - High Hopes.flac -..\Aight\Jacinthe - Hugo EP\03. Addiction.flac -..\Aight\J.J. Cale - 1974 - Okie [FLAC]\04. Cale, J.J. - Rock and roll records.flac -..\Aight\Jeff Beck - Emotion & Commotion (2010 Japanese Edition WPCR-13816) [FLAC]\05 - I Put a Spell on You (feat. Joss Stone).flac -..\Aight\Manu Chao - 1998 - Clandestino {Virgin 7243 845812 9}\03. Bongo Bong.flac -..\Aight\Monsters of Folk - 2009 - Monsters of Folk [FLAC] {RTRAD CD545}\07 - Man Named Truth.flac -..\Aight\Randy Rogers Band - Like It Used to Be (2002) [FLAC]\08 like it used to be.flac -..\Aight\Jim Keaveny - 2009 - Music Man {web} [FLAC]\14 - Happy Man.flac -..\Aight\Joe Victor - 2015 - Blue Call Pink Riot [MP3-VBR-V0]\02. Love Me.mp3 -..\Tina Dico\2014 - Whispers\03. Someone You Love.flac -..\Amy MacDonald\2009 - Run\03 Dancing In The Dark (Live From SWR3 New Pop Festival 2008).flac -..\Aight\Outlaws - 1975 - Outlaws [FLAC] (2001 Buddha)\10 - Green Grass & High Tides.flac -..\Aight\Bob Dylan - 2016 - Dylan Revisited - All Time Best\3.13. Everything Is Broken.flac -..\Aight\Bob Dylan - 2001 - The Essential Bob Dylan [C2K 85168]\2.15. Things Have Changed.flac -..\Aight\Bob Dylan - 2016 - Dylan Revisited - All Time Best\3.03. Changing Of The Guards.flac -..\Aight\Bob Dylan - 2016 - Dylan Revisited - All Time Best\3.02. One More Cup Of Coffee.flac -..\Paolo Nutini\2009 - Sunny Side Up\1.04 - Candy.flac -..\Passenger\2017 - Sunday Night Sessions {web}\09 - Losing My Religion (Cover).flac -..\Passenger\2017 - Sunday Night Sessions {web}\09 - Losing My Religion (Cover).flac -..\_FR\Zaz\2010 - Zaz\02. Je Veux.flac -..\Paolo Nutini\2014 - Caustic Love\08. Iron Sky.flac -..\The Be Good Tanyas\2003 - Chinatown\02. Waiting Around To Die.flac -..\Aight\Hank Williams, Jr. - 1995 - The Pressure Is On\01 A Country Boy Can Survive.flac -..\Ben Harper\2009 - White Lies for Dark Times\01 Number with No Name.flac -..\Beef\2005 - Last Rudy Standing\05. Cashin' the money.flac -..\Billy Bragg & Wilco\2012 - Mermaid Avenue - The Complete Sessions\3.02. When the Roses Bloom Again.flac -..\Jon and Roy\2014 - By My Side\01 - By My Side.flac -..\Aight\Joe Cocker - With a Little Help from My Friends [1990 A&M Records]\08 - Don't Let Me be Misunderstood.flac -..\_World Music\Buena Vista social Club\1997 - Buena Vista Social Club {Nonesuch.1997 - 24-96 hdtracks}\01. Chan Chan.flac -..\Cuby And The Blizzards\1967 - Groeten Uit Grollo {Mercury - 277 332-3}\03. Somebody Will Know Someday.flac -..\Bob Dylan\1995 - MTV Unplugged\03 - All Along the Watchtower.flac -..\Aight\Neil Diamond - In My Lifetime (1996) {Columbia C3K 65013 3xCD} [FLAC]\CD2\23 - Forever in Blue Jeans.flac -..\Aight\Deer Tick - 2007 - War Elephant\07 - Baltimore Blues No. 1 .flac -..\Aight\Mark Knopfler - The Ragpicker's Dream (2002, 2 CD, Mercury 063293) [FLAC]\CD 2\03 - Sailing to Philadelphia (Live).flac -..\Aight\Jonathan Wilson - 2011 - Gentle Spirit - FLAC\03 - Desert Raven.flac -..\#Wiebe - kroket\Frazey Ford - 2014 - Indian Ocean {0 6700 31034 2 8}\01. September Fields.flac -..\#Wiebe - kroket\Frazey Ford - 2014 - Indian Ocean {0 6700 31034 2 8}\11. September Fields (acoustic).flac -..\_World Music\_Africa\Ali Farka Touré with Ry Cooder\1994 - Talking Timbuktu\09. Ai Du.flac -..\_Various Artists\The Greatest Singer-Songwriter Classics\Deel 2 (2015)\3.07. Lou Reed - Walk On The Wild Side.flac -..\_World Music\Rodrigo y Gabriela\2006 - Rodrigo Y Gabriela\01 - Tamacun.flac -..\Aight\Red Hot Chili Peppers - 1999 - Californication - {CD} [FLAC]\06 - Californication.flac -..\Aight\Mark Knopfler - Sailing to Philadelphia (2000, CD, Mercury 542981) [FLAC]\01 - What It Is.flac -..\Aight\Amos Lee - Mission Bell (2011) - [FLAC]\02 Windows Are Rolled Down.flac -..\John Mayer\2018 - New Light (single) {web}\01 New Light.flac -..\Aight\The Lumineers - 2016 - Cleopatra (Target Exclusive) [FLAC]\02 Ophelia.flac -..\Manu Chao\2004 - Siberie m'etait contee\23. Siberie.flac -..\Aight\Waylon Jennings (2006) Nashville Rebel (2006 - US 4CD Box Set) [FLAC] {82876 89640 2}\Waylon Jennings - Nashville Rebel - Disc 4 (1980-1995) (2006) [FLAC]\14 Highwayman (with Highwaymen).flac -..\Aight\LTJ Xperience - Beggar Groove (2017) WEB\08 Beggar Groove.flac -..\Aight\Jim Croce - 1972 - You Don't Mess Around With Jim\12 - Hey Tomorrow.flac -..\Diana Krall\2006 - From This Moment On\02 - Isn't This A Lovely Day.flac -..\Sun Kil Moon\2012 - Among the Leaves\12. Not Much Rhymes with Everything's Awesome at All Times.flac diff --git a/src/test/resources/playlists/m3u/playlist-utf16be-bom.m3u b/src/test/resources/playlists/m3u/playlist-utf16be-bom.m3u deleted file mode 100644 index 6cbba121..00000000 Binary files a/src/test/resources/playlists/m3u/playlist-utf16be-bom.m3u and /dev/null differ diff --git a/src/test/resources/playlists/m3u/playlist-utf16le-bom.m3u b/src/test/resources/playlists/m3u/playlist-utf16le-bom.m3u deleted file mode 100644 index a45c2944..00000000 Binary files a/src/test/resources/playlists/m3u/playlist-utf16le-bom.m3u and /dev/null differ diff --git a/src/test/resources/playlists/m3u/playlist-utf8-bom.m3u b/src/test/resources/playlists/m3u/playlist-utf8-bom.m3u deleted file mode 100644 index b651ef62..00000000 --- a/src/test/resources/playlists/m3u/playlist-utf8-bom.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U - -#EXTINF:111, Sample artist name - Sample track title -C:\Music\SampleMusic.mp3 - -#EXTINF:222,Example Artist name - Example track title -C:\Music\ExampleMusic.mp3 \ No newline at end of file diff --git a/src/test/resources/playlists/m3u/playlist-utf8.m3u b/src/test/resources/playlists/m3u/playlist-utf8.m3u deleted file mode 100644 index 78dcf832..00000000 --- a/src/test/resources/playlists/m3u/playlist-utf8.m3u +++ /dev/null @@ -1,7 +0,0 @@ -#EXTM3U - -#EXTINF:111, Sample artist name - Sample track title -C:\Music\SampleMusic.mp3 - -#EXTINF:222,Example Artist name - Example track title -C:\Music\ExampleMusic.mp3 \ No newline at end of file diff --git a/src/test/resources/playlists/pls/playlist.pls b/src/test/resources/playlists/pls/playlist.pls deleted file mode 100644 index a0dba1d4..00000000 --- a/src/test/resources/playlists/pls/playlist.pls +++ /dev/null @@ -1,18 +0,0 @@ -[playlist] -File1=Alternative\everclear - SMFTA.mp3 -Title1=Everclear - So Much For The Afterglow -Length1=233 -File2=Comedy\Weird Al - Everything You Know Is Wrong.mp3 -Title2=Weird Al - Everything You Know Is Wrong -Length2=227 -File3=Weird Al - This Is The Life.mp3 -Title3=Weird Al Yankovic - This is the Life -Length3=187 -File4=http://www.site.com/~user/gump.mp3 -Title4=Weird Al: Bad Hair Day - Gump -Length4=129 -File5=http://www.site.com:8000/listen.pls -Title5=My Cool Stream -Length5=-1 -NumberOfEntries=5 -Version=2 \ No newline at end of file diff --git a/src/test/resources/playlists/wpl/2seq.wpl b/src/test/resources/playlists/wpl/2seq.wpl deleted file mode 100644 index ed02a726..00000000 --- a/src/test/resources/playlists/wpl/2seq.wpl +++ /dev/null @@ -1,33 +0,0 @@ - - - - - {80034981-91E5-45A6-9895-5447D7463CDE} - - - - Eurowizja do nagrania - - - - - - - - - - - - Is Before - Last month - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/playlists/wpl/playlist.wpl b/src/test/resources/playlists/wpl/playlist.wpl deleted file mode 100644 index 93583aa9..00000000 --- a/src/test/resources/playlists/wpl/playlist.wpl +++ /dev/null @@ -1,16 +0,0 @@ - - - - {DAFEF239-50AF-4527-8B24-F67E8DB1E15E} - - - - Eurowizja - - - - - - - - \ No newline at end of file