This commit is contained in:
lars 2022-10-21 21:28:18 +02:00
commit dd0ddbe0f2
17 changed files with 240 additions and 507 deletions

Binary file not shown.

Binary file not shown.

View File

@ -2,10 +2,13 @@ import requests
import os.path import os.path
import pandas as pd import pandas as pd
from mutagen.easyid3 import EasyID3 from mutagen.easyid3 import EasyID3
from pydub import AudioSegment
import json import json
import os
import logging import logging
import musify
import youtube_music
""" """
https://en.wikipedia.org/wiki/ID3 https://en.wikipedia.org/wiki/ID3
https://mutagen.readthedocs.io/en/latest/user/id3.html https://mutagen.readthedocs.io/en/latest/user/id3.html
@ -75,13 +78,12 @@ dict_keys(
class Download: class Download:
def __init__(self, session: requests.Session = requests.Session(), file: str = ".cache3.csv", temp: str = "temp", base_path: str = os.path.expanduser('~/Music')): def __init__(self, session: requests.Session = requests.Session(), file: str = ".cache3.csv", temp: str = "temp"):
self.session = session self.session = session
self.session.headers = { self.session.headers = {
"Connection": "keep-alive", "Connection": "keep-alive",
"Referer": "https://musify.club/" "Referer": "https://musify.club/"
} }
self.base_path = base_path
self.temp = temp self.temp = temp
self.file = file self.file = file
@ -89,59 +91,45 @@ class Download:
for idx, row in self.dataframe.iterrows(): for idx, row in self.dataframe.iterrows():
row['artist'] = json.loads(row['artist'].replace("'", '"')) row['artist'] = json.loads(row['artist'].replace("'", '"'))
row['path'] = os.path.join(self.base_path, row['path']) if self.path_stuff(row['path'], row['file']):
row['file'] = os.path.join(self.base_path, row['file']) self.write_metadata(row, row['file'])
self.download(row['path'], row['file'], row['url']) continue
src = row['src']
if src == 'musify':
musify.download(row)
elif src == 'youtube':
youtube_music.download(row)
self.write_metadata(row, row['file']) self.write_metadata(row, row['file'])
def download(self, path, file, url): def path_stuff(self, path: str, file_: str):
if os.path.exists(file): # returns true if it shouldn't be downloaded
logging.info(f"'{file}' does already exist, thus not downloading.") if os.path.exists(file_):
return logging.info(f"'{file_}' does already exist, thus not downloading.")
return True
os.makedirs(path, exist_ok=True) os.makedirs(path, exist_ok=True)
return False
logging.info(f"downloading: '{url}'") def write_metadata(self, row, filePath):
r = self.session.get(url) AudioSegment.from_file(filePath).export(filePath, format="mp3")
if r.status_code != 200:
if r.status_code == 404:
logging.warning(f"{url} was not found")
return -1
raise ConnectionError(f"\"{url}\" returned {r.status_code}: {r.text}")
with open(file, "wb") as mp3_file:
mp3_file.write(r.content)
logging.info("finished")
def write_metadata(self, row, file): audiofile = EasyID3(filePath)
audiofile = EasyID3(file)
valid_keys = list(EasyID3.valid_keys.keys()) valid_keys = list(EasyID3.valid_keys.keys())
for key in list(row.keys()): for key in list(row.keys()):
if key in valid_keys and row[key] is not None and not pd.isna(row[key]): if key in valid_keys and row[key] is not None and not pd.isna(row[key]):
# print(key)
if type(row[key]) == int or type(row[key]) == float: if type(row[key]) == int or type(row[key]) == float:
row[key] = str(row[key]) row[key] = str(row[key])
audiofile[key] = row[key] audiofile[key] = row[key]
""" print("saving")
audiofile["artist"] = row['artist'] audiofile.save(filePath, v1=2)
audiofile["albumartist"] = row['album_artist']
audiofile["date"] = str(row['year'])
audiofile["genre"] = row['genre']
audiofile["title"] = row['title']
audiofile["album"] = row['album']
audiofile["tracknumber"] = str(row['track'])
"""
audiofile.save()
if __name__ == "__main__": if __name__ == "__main__":
logging.basicConfig(level=logging.DEBUG) logging.basicConfig(level=logging.DEBUG)
s = requests.Session() s = requests.Session()
if False:
proxies = {
'http': 'socks5h://127.0.0.1:9150',
'https': 'socks5h://127.0.0.1:9150'
}
s.proxies = proxies
Download(session=s) Download(session=s)

View File

@ -1,69 +1,47 @@
import json import json
import os.path import os.path
import pandas as pd import pandas as pd
import requests import requests
import logging import logging
import musify
import youtube_music
class Download: class Download:
def __init__(self, metadata_csv: str = ".cache1.csv", session: requests.Session = requests.Session(), def __init__(self, metadata_csv: str = ".cache1.csv", session: requests.Session = requests.Session(),
file: str = ".cache2.csv", temp: str = "temp") -> None: file: str = ".cache2.csv", temp: str = "temp") -> None:
self.temp = temp self.temp = temp
self.session = session
self.session.headers = {
"Connection": "keep-alive",
"Referer": "https://musify.club/"
}
self.metadata = pd.read_csv(os.path.join(self.temp, metadata_csv), index_col=0) self.metadata = pd.read_csv(os.path.join(self.temp, metadata_csv), index_col=0)
self.urls = [] self.urls = []
missing_urls, self.urls = self.check_musify()
for idx, row in self.metadata.iterrows():
row['artist'] = json.loads(row['artist'].replace("'", '"'))
# check musify
musify_url = musify.get_musify_url(row)
if musify_url is not None:
self.add_url(musify_url, 'musify', dict(row))
continue
# check youtube
youtube_url = youtube_music.get_youtube_url(row)
if youtube_url is not None:
self.add_url(youtube_url, 'youtube', dict(row))
continue
logging.warning(f"Didn't find any sources for {row['title']}")
self.dump_urls(file) self.dump_urls(file)
def check_musify_track(self, row):
artist = json.loads(row['artist'].replace("'", '"'))
track = row['title']
url = f"https://musify.club/search/suggestions?term={track}" def add_url(self, url: str, src: str, row: dict):
row['url'] = url
row['src'] = src
r = self.session.get(url=url) self.urls.append(row)
if r.status_code == 200:
autocomplete = r.json()
for row in autocomplete:
if any(a in row['label'] for a in artist) and "/track" in row['url']:
return row
return None
def check_musify(self, urls: list = []):
missing_urls = []
def get_download_link(default_url):
# https://musify.club/track/dl/18567672/rauw-alejandro-te-felicito-feat-shakira.mp3
# /track/sundenklang-wenn-mein-herz-schreit-3883217'
file_ = default_url.split("/")[-1]
musify_id = file_.split("-")[-1]
musify_name = "-".join(file_.split("-")[:-1])
logging.info(f"https://musify.club/track/dl/{musify_id}/{musify_name}.mp3")
return f"https://musify.club/track/dl/{musify_id}/{musify_name}.mp3"
for idx, row in self.metadata.iterrows():
url = self.check_musify_track(row)
if url is None:
missing_urls.append(row['id'])
continue
data = dict(row)
data['url'] = get_download_link(url['url'])
urls.append(data)
return missing_urls, urls
def dump_urls(self, file: str = ".cache2.csv"): def dump_urls(self, file: str = ".cache2.csv"):
df = pd.DataFrame(self.urls) df = pd.DataFrame(self.urls)

View File

@ -1,12 +1,18 @@
import os.path import os.path
import logging
import musicbrainzngs import musicbrainzngs
import pandas as pd import pandas as pd
mb_log = logging.getLogger("musicbrainzngs")
mb_log.setLevel(logging.WARNING)
musicbrainzngs.set_useragent("metadata receiver", "0.1", "https://github.com/HeIIow2/music-downloader") musicbrainzngs.set_useragent("metadata receiver", "0.1", "https://github.com/HeIIow2/music-downloader")
KNOWN_KIND_OF_OPTIONS = ["artist", "release", "track"] KNOWN_KIND_OF_OPTIONS = ["artist", "release", "track"]
def output(msg: str):
print(msg)
def get_elem_from_obj(current_object, keys: list, after_process=lambda x: x): def get_elem_from_obj(current_object, keys: list, after_process=lambda x: x):
current_object = current_object current_object = current_object
for key in keys: for key in keys:
@ -61,6 +67,7 @@ class Search:
""" """
metadata_list = [] metadata_list = []
result = musicbrainzngs.get_artist_by_id(mb_id, includes=["releases"]) result = musicbrainzngs.get_artist_by_id(mb_id, includes=["releases"])
for i, release in enumerate(result["artist"]["release-list"]): for i, release in enumerate(result["artist"]["release-list"]):
metadata_list.extend(self.download_release(release["id"], i)) metadata_list.extend(self.download_release(release["id"], i))
@ -161,8 +168,17 @@ class Search:
title = recording_data['title'] title = recording_data['title']
artist = [get_elem_from_obj(artist_, ['artist', 'name']) for artist_ in recording_data['artist-credit']]
mb_artist_ids = [get_elem_from_obj(artist_, ['artist', 'id']) for artist_ in recording_data['artist-credit']] artist = []
mb_artist_ids = []
for artist_ in recording_data['artist-credit']:
name_ = get_elem_from_obj(artist_, ['artist', 'name'])
if name_ is None:
continue
artist.append(name_)
mb_artist_ids.append(get_elem_from_obj(artist_, ['artist', 'id']))
# artist = [get_elem_from_obj(artist_, ['artist', 'name']) for artist_ in recording_data['artist-credit']]
# mb_artist_ids = [get_elem_from_obj(artist_, ['artist', 'id']) for artist_ in recording_data['artist-credit']]
def get_additional_artist_info(mb_id_): def get_additional_artist_info(mb_id_):
r = musicbrainzngs.get_artist_by_id(mb_id_, includes=["releases"]) r = musicbrainzngs.get_artist_by_id(mb_id_, includes=["releases"])

52
src/musify.py Normal file
View File

@ -0,0 +1,52 @@
import logging
import requests
session = requests.Session()
session.headers = {
"Connection": "keep-alive",
"Referer": "https://musify.club/"
}
def get_musify_url(row):
title = row['title']
artists = row['artist']
url = f"https://musify.club/search/suggestions?term={title}"
r = session.get(url=url)
if r.status_code == 200:
autocomplete = r.json()
for row in autocomplete:
if any(a in row['label'] for a in artists) and "/track" in row['url']:
return get_download_link(row['url'])
return None
def get_download_link(default_url):
# https://musify.club/track/dl/18567672/rauw-alejandro-te-felicito-feat-shakira.mp3
# /track/sundenklang-wenn-mein-herz-schreit-3883217'
file_ = default_url.split("/")[-1]
musify_id = file_.split("-")[-1]
musify_name = "-".join(file_.split("-")[:-1])
logging.info(f"https://musify.club/track/dl/{musify_id}/{musify_name}.mp3")
return f"https://musify.club/track/dl/{musify_id}/{musify_name}.mp3"
def download_from_musify(path, file, url):
logging.info(f"downloading: '{url}'")
r = session.get(url)
if r.status_code != 200:
if r.status_code == 404:
logging.warning(f"{url} was not found")
return -1
raise ConnectionError(f"\"{url}\" returned {r.status_code}: {r.text}")
with open(file, "wb") as mp3_file:
mp3_file.write(r.content)
logging.info("finished")
def download(row):
url = row['url']
file_ = row['file']
return download_from_musify(file_, url)

View File

@ -1,156 +1,14 @@
,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode ,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode
0,691d2ac1-c64a-40f4-8bdc-01d8525c6a19,Obscura Arcana Mortis,Nightfrost,['Forgotten Tomb'],Forgotten Tomb,1,0,1,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT, 0,adae3514-9f16-4164-849b-a64f9d49770a,Hurra die Welt geht unter,Wir,['K.I.Z'],K.I.Z,1,0,1,DEUM71500709,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
1,c5736e99-48da-456f-8da9-ba36376d1d30,Obscura Arcana Mortis,Nefarious Nights,['Forgotten Tomb'],Forgotten Tomb,2,0,2,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT, 1,9c566dc6-d7d6-42eb-9e4f-471824ea3d8f,Hurra die Welt geht unter,Geld,['K.I.Z'],K.I.Z,2,0,2,DEUM71500710,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
2,09544c56-de2d-474c-8944-fcb61108ed02,Obscura Arcana Mortis,Forgotten Tomb,['Forgotten Tomb'],Forgotten Tomb,3,0,3,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT, 2,23d60d4c-f2b3-401e-94e0-0a3e6353d4bf,Hurra die Welt geht unter,Glücklich und satt,['K.I.Z'],K.I.Z,3,0,3,DEUM71500711,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
3,8c81bd2b-2fb1-44fe-a348-143ec6862caf,Obscura Arcana Mortis,Obscura Arcana Mortis,['Forgotten Tomb'],Forgotten Tomb,4,0,4,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT, 3,7177e7dc-813a-4e1e-8d36-1d4e38eeb796,Hurra die Welt geht unter,Boom Boom Boom,['K.I.Z'],K.I.Z,4,0,4,DEUM71500712,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
4,20b26fc7-1921-4b56-ab30-406e64042b25,Obscura Arcana Mortis,XXX (Outro),['Forgotten Tomb'],Forgotten Tomb,5,0,5,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT, 4,00192a27-f412-4eb0-a111-5cc1faa9b2d7,Hurra die Welt geht unter,AMG Mercedes,['K.I.Z'],K.I.Z,5,0,5,DEUM71500713,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
5,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,1,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661 5,960e130a-53e7-4b0e-b720-c23347d2d728,Hurra die Welt geht unter,Freier Fall,['K.I.Z'],K.I.Z,6,0,6,DEUM71500714,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
6,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,1,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661 6,24fbd3e5-28f5-42d3-9aff-b5356ad08470,Hurra die Welt geht unter,Ariane,['K.I.Z'],K.I.Z,7,0,7,DEUM71500715,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
7,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,1,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661 7,bd087625-4cc8-4b34-8837-31d0690b7aca,Hurra die Welt geht unter,Käfigbett,['K.I.Z'],K.I.Z,8,0,8,DEUM71500716,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
8,f788f7af-8e7e-465b-b64a-08bf956c048a,Songs to Leave,No Way Out,['Forgotten Tomb'],Forgotten Tomb,4,1,4,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661 8,032a80d1-f211-4dd4-ac68-f125a09a4be8,Hurra die Welt geht unter,Verrückt nach dir,['K.I.Z'],K.I.Z,9,0,9,DEUM71500717,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
9,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,1,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661 9,a9d08fbc-d275-4427-a1d9-adc1c79e083a,Hurra die Welt geht unter,Ehrenlos,['K.I.Z'],K.I.Z,10,0,10,DEUM71500718,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
10,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,2,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661 10,80f2b1b0-9a95-4fd0-a886-546e9dd8ceff,Hurra die Welt geht unter,Superstars,"['K.I.Z', 'Sefo']",K.I.Z,11,0,11,DEUM71500719,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
11,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,2,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661 11,4db0ff20-321f-49f3-b20b-a17fc6f3709b,Hurra die Welt geht unter,Was würde Manny Marc tun?,"['K.I.Z', 'Audio88', 'Yassin', 'Manny Marc']",K.I.Z,12,0,12,DEUM71500720,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
12,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,2,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661 12,05404ed1-4f8b-43ba-833f-54e6c2918ff6,Hurra die Welt geht unter,Hurra die Welt geht unter,"['K.I.Z', 'Henning May']",K.I.Z,13,0,13,DEUM71500721,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,f538d982-71fd-4d19-8ef5-8664b4cbe0ac,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326362
13,f788f7af-8e7e-465b-b64a-08bf956c048a,Songs to Leave,No Way Out,['Forgotten Tomb'],Forgotten Tomb,4,2,4,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
14,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,2,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
15,c5783c79-7c9b-4a18-aa02-26817c44e66d,Springtime Depression,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,1,3,1,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723
16,a45dc7ea-2514-45af-aa58-28fd2c368b1d,Springtime Depression,Scars,['Forgotten Tomb'],Forgotten Tomb,2,3,2,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723
17,3fd10f2d-c0a3-4796-8bde-ca896dc2d209,Springtime Depression,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,3,3,3,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723
18,add38b27-d759-4c34-b7a2-3fde97beff7b,Springtime Depression,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,4,3,4,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723
19,18046de2-c73c-463e-ac8b-5c085c11af18,Springtime Depression,Colourless Despondency,['Forgotten Tomb'],Forgotten Tomb,5,3,5,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723
20,c32a5fc8-542e-4efe-b4bb-cbbcf954e9b9,Springtime Depression,Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,3,6,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723
21,4040ef17-d9de-465c-b98e-aba6636ff5ba,Love's Burial Ground,"Malus Vivendi, Part I (intro)",['Henrik Nordvargr Björkk'],Henrik Nordvargr Björkk,1,4,1,,2004-09-11,2004,5ab93447-6cda-4d78-b21b-0a8abd2940ad,023a4c15-1f1f-484e-b05d-556a534c8e84,5ab93447-6cda-4d78-b21b-0a8abd2940ad,Official,9,eng,Album,,FR,3700132600891
22,696fde7b-2899-4f10-9a96-24e82d7f8928,Love's Burial Ground,Kill Life,['Forgotten Tomb'],Forgotten Tomb,2,4,2,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891
23,40be2684-ff02-4a65-a616-b7a6d7cf8c0d,Love's Burial Ground,Alone,['Forgotten Tomb'],Forgotten Tomb,3,4,3,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891
24,2ac034d2-97d2-4372-9de7-12313e11a7f5,Love's Burial Ground,House of Nostalgia,['Forgotten Tomb'],Forgotten Tomb,4,4,4,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891
25,b4963d00-bdaf-40c6-ac18-0786313efa26,Love's Burial Ground,"Malus Vivendi, Part II (intermezzo)",['Henrik Nordvargr Björkk'],Henrik Nordvargr Björkk,5,4,5,,2004-09-11,2004,5ab93447-6cda-4d78-b21b-0a8abd2940ad,023a4c15-1f1f-484e-b05d-556a534c8e84,5ab93447-6cda-4d78-b21b-0a8abd2940ad,Official,9,eng,Album,,FR,3700132600891
26,f8c3ac89-8502-41ae-bdb3-c8487164560f,Love's Burial Ground,Love's Burial Ground,['Forgotten Tomb'],Forgotten Tomb,6,4,6,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891
27,d8fd7421-e2ce-4686-8749-326eaec89ea2,Love's Burial Ground,Slave to Negativity,['Forgotten Tomb'],Forgotten Tomb,7,4,7,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891
28,008a122f-0a59-4004-99db-8d90386392b7,Love's Burial Ground,Forgotten Tomb MMIII,['Forgotten Tomb'],Forgotten Tomb,8,4,8,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891
29,0faa06f2-d29e-4c28-997a-66a0b01388e6,Love's Burial Ground,"Malus Vivendi, Part III (outro)",['Henrik Nordvargr Björkk'],Henrik Nordvargr Björkk,9,4,9,,2004-09-11,2004,5ab93447-6cda-4d78-b21b-0a8abd2940ad,023a4c15-1f1f-484e-b05d-556a534c8e84,5ab93447-6cda-4d78-b21b-0a8abd2940ad,Official,9,eng,Album,,FR,3700132600891
30,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,5,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661
31,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,5,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661
32,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,5,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661
33,f788f7af-8e7e-465b-b64a-08bf956c048a,Songs to Leave,No Way Out,['Forgotten Tomb'],Forgotten Tomb,4,5,4,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661
34,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,5,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661
35,0a7739c7-b5cf-4441-91c7-e82913027d36,Songs to Leave,Desolated Funeral,['Forgotten Tomb'],Forgotten Tomb,6,5,6,,2005,2005,6cdda84f-1703-4618-aecf-decc6218497f,80ddad38-720b-40ed-b4f3-f969af04d314,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600938
36,2d7e3130-5dff-4fcb-8767-4f08b1b08964,Negative Megalomania,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,1,6,1,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
37,62c544d0-9fea-424a-ab3d-b255e0404036,Negative Megalomania,No Rehab (Final Exit),['Forgotten Tomb'],Forgotten Tomb,2,6,2,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
38,fd1e91a8-d816-4f18-816b-5dff6ef9bfc8,Negative Megalomania,Negative Megalomania,['Forgotten Tomb'],Forgotten Tomb,3,6,3,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
39,0e52aea8-2f72-4224-b687-b95d3069174e,Negative Megalomania,The Scapegoat,['Forgotten Tomb'],Forgotten Tomb,4,6,4,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
40,7a371c04-9fef-41ba-b6b5-515f5eb66297,Negative Megalomania,Blood and Concrete,['Forgotten Tomb'],Forgotten Tomb,5,6,5,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
41,2d7e3130-5dff-4fcb-8767-4f08b1b08964,Negative Megalomania,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,1,7,1,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
42,62c544d0-9fea-424a-ab3d-b255e0404036,Negative Megalomania,No Rehab (Final Exit),['Forgotten Tomb'],Forgotten Tomb,2,7,2,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
43,fd1e91a8-d816-4f18-816b-5dff6ef9bfc8,Negative Megalomania,Negative Megalomania,['Forgotten Tomb'],Forgotten Tomb,3,7,3,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
44,0e52aea8-2f72-4224-b687-b95d3069174e,Negative Megalomania,The Scapegoat,['Forgotten Tomb'],Forgotten Tomb,4,7,4,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
45,7a371c04-9fef-41ba-b6b5-515f5eb66297,Negative Megalomania,Blood and Concrete,['Forgotten Tomb'],Forgotten Tomb,5,7,5,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
46,691d2ac1-c64a-40f4-8bdc-01d8525c6a19,Obscura Arcana Mortis,Nightfrost,['Forgotten Tomb'],Forgotten Tomb,1,8,1,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,
47,c5736e99-48da-456f-8da9-ba36376d1d30,Obscura Arcana Mortis,Nefarious Nights,['Forgotten Tomb'],Forgotten Tomb,2,8,2,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,
48,09544c56-de2d-474c-8944-fcb61108ed02,Obscura Arcana Mortis,Forgotten Tomb,['Forgotten Tomb'],Forgotten Tomb,3,8,3,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,
49,8c81bd2b-2fb1-44fe-a348-143ec6862caf,Obscura Arcana Mortis,Obscura Arcana Mortis,['Forgotten Tomb'],Forgotten Tomb,4,8,4,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,
50,20b26fc7-1921-4b56-ab30-406e64042b25,Obscura Arcana Mortis,XXX (Outro),['Forgotten Tomb'],Forgotten Tomb,5,8,5,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,
51,53c43172-ab10-42bd-adaa-7672fc1495d7,Obscura Arcana Mortis: The Demo Years,The Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,8,6,,2007,2007,6cdda84f-1703-4618-aecf-decc6218497f,9e2f6d52-a53a-49b5-bb76-12f24dfbea31,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,
52,a717f6aa-bb67-43ea-83a3-5d6626f15f33,Obscura Arcana Mortis: The Demo Years,Entombed by Winter (Ultra Doom version),['Forgotten Tomb'],Forgotten Tomb,7,8,7,,2007,2007,6cdda84f-1703-4618-aecf-decc6218497f,9e2f6d52-a53a-49b5-bb76-12f24dfbea31,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,
53,01261c12-8b27-42fa-b63d-82297a6f90e3,Vol 5: 1999-2009,Black Sabbath / Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,1,9,1,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1,IT,
54,9ee3bc6d-437d-4b14-9447-d49b473e2ed6,Vol 5: 1999-2009,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,9,2,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1,IT,
55,62a31375-27bc-4599-a809-188516dd3081,Vol 5: 1999-2009,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,3,9,3,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1,IT,
56,04eedce1-74a8-434c-94d5-0466038d93f0,Vol 5: 1999-2009,Disheartenment / Alone / Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,4,9,4,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1,IT,
57,ca063619-ab8b-4720-9449-abd06a5b40c7,Vol 5: 1999-2009,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,5,9,5,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1,IT,
58,91c1f58c-7e74-4f74-aaae-42d1e08e62c7,Vol 5: 1999-2009,Papercuts,['Forgotten Tomb'],Forgotten Tomb,6,9,6,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1,IT,
59,7694a2d4-c6a2-4e47-8a45-3db8cb344a46,Under Saturn Retrograde,Reject Existence,['Forgotten Tomb'],Forgotten Tomb,1,10,1,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055
60,0123d374-fa2a-4e99-85c0-db764355cf4e,Under Saturn Retrograde,Shutter,['Forgotten Tomb'],Forgotten Tomb,2,10,2,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055
61,402d02c9-bf5e-49f0-8674-ebca88d1885f,Under Saturn Retrograde,Downlift,['Forgotten Tomb'],Forgotten Tomb,3,10,3,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055
62,0f1a5b3d-c1d1-4bd0-a25a-4f1aa15dc68a,Under Saturn Retrograde,I Wanna Be Your Dog,['Forgotten Tomb'],Forgotten Tomb,4,10,4,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055
63,bef8cab2-5984-4d6f-8808-c87f54729eb1,Under Saturn Retrograde,Joyless,['Forgotten Tomb'],Forgotten Tomb,5,10,5,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055
64,49e38253-4b8c-4506-bddf-2f8a231981d8,Under Saturn Retrograde,"Under Saturn Retrograde, Part I",['Forgotten Tomb'],Forgotten Tomb,6,10,6,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055
65,0b943a47-dd88-4676-9293-139d212403e4,Under Saturn Retrograde,"Under Saturn Retrograde, Part II",['Forgotten Tomb'],Forgotten Tomb,7,10,7,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055
66,2f4562e5-dfb0-4ef8-bc2c-29f8e153ab28,Under Saturn Retrograde,You Can't Kill Who's Already Dead,['Forgotten Tomb'],Forgotten Tomb,8,10,8,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055
67,5c3c8e47-2b21-42bd-98a3-d20fc4a74238,Under Saturn Retrograde,Spectres Over Venice,['Forgotten Tomb'],Forgotten Tomb,9,10,9,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055
68,2d7e3130-5dff-4fcb-8767-4f08b1b08964,Negative Megalomania,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,1,11,1,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
69,62c544d0-9fea-424a-ab3d-b255e0404036,Negative Megalomania,No Rehab (Final Exit),['Forgotten Tomb'],Forgotten Tomb,2,11,2,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
70,fd1e91a8-d816-4f18-816b-5dff6ef9bfc8,Negative Megalomania,Negative Megalomania,['Forgotten Tomb'],Forgotten Tomb,3,11,3,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
71,0e52aea8-2f72-4224-b687-b95d3069174e,Negative Megalomania,The Scapegoat,['Forgotten Tomb'],Forgotten Tomb,4,11,4,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
72,7a371c04-9fef-41ba-b6b5-515f5eb66297,Negative Megalomania,Blood and Concrete,['Forgotten Tomb'],Forgotten Tomb,5,11,5,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943
73,ca007fe0-7e0a-4b59-8264-bea73d1d1314,A Tribute to GG Allin,Expose Yourself to Kids,['Forgotten Tomb'],Various Artists,1,12,1,,2011-12-24,2011,6cdda84f-1703-4618-aecf-decc6218497f,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,
74,e46f9baa-4c8a-4e4d-8010-a81fb206f5de,A Tribute to GG Allin,I Kill Everything I Fuck,['Forgotten Tomb'],Various Artists,2,12,2,,2011-12-24,2011,6cdda84f-1703-4618-aecf-decc6218497f,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,
75,1435a1e2-c53a-4ddb-96f8-f9987d6323e6,A Tribute to GG Allin,Die When You Die,['Whiskey Ritual'],Various Artists,3,12,3,,2011-12-24,2011,b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,
76,31f31c47-2198-449a-a945-88a8779ec4e9,A Tribute to GG Allin,Bite It You Scum,['Whiskey Ritual'],Various Artists,4,12,4,,2011-12-24,2011,b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,
77,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,13,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
78,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,13,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
79,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,13,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
80,f788f7af-8e7e-465b-b64a-08bf956c048a,Songs to Leave,No Way Out,['Forgotten Tomb'],Forgotten Tomb,4,13,4,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
81,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,13,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
82,ba56e565-23b2-457e-87c6-105f2840719a,Springtime Depression,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,1,14,1,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
83,4c32f61e-a4c3-4b15-82c9-6b289c2e54d1,Springtime Depression,Scars,['Forgotten Tomb'],Forgotten Tomb,2,14,2,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
84,6d24644b-5b77-48b0-86d4-37dd656476ae,Springtime Depression,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,3,14,3,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
85,02a56baa-b5d5-420e-b863-d4b055b9eed8,Springtime Depression,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,4,14,4,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
86,8a963423-0d8c-4c2c-840b-fec50f67e87a,Springtime Depression,Colourless Despondency,['Forgotten Tomb'],Forgotten Tomb,5,14,5,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
87,e703154f-5acf-4236-9428-89007907c36b,Springtime Depression,Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,14,6,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
88,4fa25bfa-27d1-44af-bc14-33d4c590ea93,Springtime Depression,Desolated Funeral,['Forgotten Tomb'],Forgotten Tomb,7,14,7,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
89,691d2ac1-c64a-40f4-8bdc-01d8525c6a19,Obscura Arcana Mortis,Nightfrost,['Forgotten Tomb'],Forgotten Tomb,1,15,1,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,
90,c5736e99-48da-456f-8da9-ba36376d1d30,Obscura Arcana Mortis,Nefarious Nights,['Forgotten Tomb'],Forgotten Tomb,2,15,2,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,
91,09544c56-de2d-474c-8944-fcb61108ed02,Obscura Arcana Mortis,Forgotten Tomb,['Forgotten Tomb'],Forgotten Tomb,3,15,3,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,
92,8c81bd2b-2fb1-44fe-a348-143ec6862caf,Obscura Arcana Mortis,Obscura Arcana Mortis,['Forgotten Tomb'],Forgotten Tomb,4,15,4,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,
93,20b26fc7-1921-4b56-ab30-406e64042b25,Obscura Arcana Mortis,XXX (Outro),['Forgotten Tomb'],Forgotten Tomb,5,15,5,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,
94,977ea701-0a35-4327-960d-e6367fd2dcd3,... And Don't Deliver Us From Evil,Deprived,['Forgotten Tomb'],Forgotten Tomb,1,16,1,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
95,de859b2c-80e3-4639-ac59-e4ba829024ab,... And Don't Deliver Us From Evil,...and Don't Deliver Us From Evil,['Forgotten Tomb'],Forgotten Tomb,2,16,2,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
96,b82b5483-726b-4a2a-82dc-6d8a637bd4ea,... And Don't Deliver Us From Evil,Cold Summer,['Forgotten Tomb'],Forgotten Tomb,3,16,3,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
97,8ff8711a-c66e-42d3-830d-288d05dcaff1,... And Don't Deliver Us From Evil,Let's Torture Each Other,['Forgotten Tomb'],Forgotten Tomb,4,16,4,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
98,dd8d8774-87df-4b86-985d-36af394417cd,... And Don't Deliver Us From Evil,Love Me Like You'd Love the Death,['Forgotten Tomb'],Forgotten Tomb,5,16,5,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
99,3650245c-3535-41c7-92ba-d0de94467696,... And Don't Deliver Us From Evil,Adrift,['Forgotten Tomb'],Forgotten Tomb,6,16,6,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
100,b1de9669-8ffc-461d-b3d5-da6a4f37abf5,... And Don't Deliver Us From Evil,Nullifying Tomorrow,['Forgotten Tomb'],Forgotten Tomb,7,16,7,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
101,977ea701-0a35-4327-960d-e6367fd2dcd3,... And Don't Deliver Us From Evil,Deprived,['Forgotten Tomb'],Forgotten Tomb,1,17,1,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
102,de859b2c-80e3-4639-ac59-e4ba829024ab,... And Don't Deliver Us From Evil,...and Don't Deliver Us From Evil,['Forgotten Tomb'],Forgotten Tomb,2,17,2,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
103,b82b5483-726b-4a2a-82dc-6d8a637bd4ea,... And Don't Deliver Us From Evil,Cold Summer,['Forgotten Tomb'],Forgotten Tomb,3,17,3,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
104,8ff8711a-c66e-42d3-830d-288d05dcaff1,... And Don't Deliver Us From Evil,Let's Torture Each Other,['Forgotten Tomb'],Forgotten Tomb,4,17,4,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
105,dd8d8774-87df-4b86-985d-36af394417cd,... And Don't Deliver Us From Evil,Love Me Like You'd Love the Death,['Forgotten Tomb'],Forgotten Tomb,5,17,5,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
106,3650245c-3535-41c7-92ba-d0de94467696,... And Don't Deliver Us From Evil,Adrift,['Forgotten Tomb'],Forgotten Tomb,6,17,6,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
107,b1de9669-8ffc-461d-b3d5-da6a4f37abf5,... And Don't Deliver Us From Evil,Nullifying Tomorrow,['Forgotten Tomb'],Forgotten Tomb,7,17,7,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
108,977ea701-0a35-4327-960d-e6367fd2dcd3,... And Don't Deliver Us From Evil,Deprived,['Forgotten Tomb'],Forgotten Tomb,1,18,1,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,
109,de859b2c-80e3-4639-ac59-e4ba829024ab,... And Don't Deliver Us From Evil,...and Don't Deliver Us From Evil,['Forgotten Tomb'],Forgotten Tomb,2,18,2,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,
110,b82b5483-726b-4a2a-82dc-6d8a637bd4ea,... And Don't Deliver Us From Evil,Cold Summer,['Forgotten Tomb'],Forgotten Tomb,3,18,3,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,
111,8ff8711a-c66e-42d3-830d-288d05dcaff1,... And Don't Deliver Us From Evil,Let's Torture Each Other,['Forgotten Tomb'],Forgotten Tomb,4,18,4,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,
112,dd8d8774-87df-4b86-985d-36af394417cd,... And Don't Deliver Us From Evil,Love Me Like You'd Love the Death,['Forgotten Tomb'],Forgotten Tomb,5,18,5,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,
113,3650245c-3535-41c7-92ba-d0de94467696,... And Don't Deliver Us From Evil,Adrift,['Forgotten Tomb'],Forgotten Tomb,6,18,6,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,
114,b1de9669-8ffc-461d-b3d5-da6a4f37abf5,... And Don't Deliver Us From Evil,Nullifying Tomorrow,['Forgotten Tomb'],Forgotten Tomb,7,18,7,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,
115,6e3116f1-0c61-445c-a698-0c20e9c538ca,...And Don't Deliver Us From Evil,Transmission,['Forgotten Tomb'],Forgotten Tomb,8,18,8,,2012-10-30,2012,6cdda84f-1703-4618-aecf-decc6218497f,3e9becab-ad9f-4129-82f6-f35bafd113cc,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,PL,5902020284369
116,a7723ddd-3c39-41f9-b1b7-1d33eb20a6f5,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,1,19,1,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,
117,12738217-75dd-4af4-8e1f-42a909918360,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Reject Existence,['Forgotten Tomb'],Forgotten Tomb,2,19,2,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,
118,c046e71c-ddd8-449d-9a36-cd8400359c46,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Shutter,['Forgotten Tomb'],Forgotten Tomb,3,19,3,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,
119,2be04ff6-e7c4-468e-8e9e-d158fecdd55b,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,4,19,4,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,
120,d0881ddf-1f34-4669-8c84-528817938c55,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,5,19,5,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,
121,7fd0308a-0a36-415d-a5b0-bf37ec3c4779,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Spectres Over Venice,['Forgotten Tomb'],Forgotten Tomb,6,19,6,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,
122,664a6f97-8268-4af3-9287-f33d284e2489,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Disheartenment / Alone / Steal My Corpse (medley),['Forgotten Tomb'],Forgotten Tomb,7,19,7,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,
123,ebe2c4fa-7465-4668-beb4-c6dbc92d14e6,Hurt Yourself and the Ones You Love,Soulless Upheaval,['Forgotten Tomb'],Forgotten Tomb,1,20,1,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,
124,b2263c64-4de3-49b1-9979-92ebf745105d,Hurt Yourself and the Ones You Love,King of the Undesirables,['Forgotten Tomb'],Forgotten Tomb,2,20,2,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,
125,e5ebc04d-6d12-419c-b06a-657428f009a1,Hurt Yourself and the Ones You Love,Bad Dreams Come True,['Forgotten Tomb'],Forgotten Tomb,3,20,3,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,
126,a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc,Hurt Yourself and the Ones You Love,Hurt Yourself and the Ones You Love,['Forgotten Tomb'],Forgotten Tomb,4,20,4,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,
127,e6dd8920-f274-4e5e-9f0f-8999919bfefd,Hurt Yourself and the Ones You Love,Mislead the Snakes,['Forgotten Tomb'],Forgotten Tomb,5,20,5,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,
128,653c8bd6-9b64-4ba8-83dd-d80e36fb3701,Hurt Yourself and the Ones You Love,Dread the Sundown,['Forgotten Tomb'],Forgotten Tomb,6,20,6,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,
129,ebe2c4fa-7465-4668-beb4-c6dbc92d14e6,Hurt Yourself and the Ones You Love,Soulless Upheaval,['Forgotten Tomb'],Forgotten Tomb,1,21,1,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
130,b2263c64-4de3-49b1-9979-92ebf745105d,Hurt Yourself and the Ones You Love,King of the Undesirables,['Forgotten Tomb'],Forgotten Tomb,2,21,2,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
131,e5ebc04d-6d12-419c-b06a-657428f009a1,Hurt Yourself and the Ones You Love,Bad Dreams Come True,['Forgotten Tomb'],Forgotten Tomb,3,21,3,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
132,a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc,Hurt Yourself and the Ones You Love,Hurt Yourself and the Ones You Love,['Forgotten Tomb'],Forgotten Tomb,4,21,4,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
133,e6dd8920-f274-4e5e-9f0f-8999919bfefd,Hurt Yourself and the Ones You Love,Mislead the Snakes,['Forgotten Tomb'],Forgotten Tomb,5,21,5,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
134,653c8bd6-9b64-4ba8-83dd-d80e36fb3701,Hurt Yourself and the Ones You Love,Dread the Sundown,['Forgotten Tomb'],Forgotten Tomb,6,21,6,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
135,6fc6a78b-b74c-4dfa-b66a-9079574cc300,Hurt Yourself and the Ones You Love,Swallow the Void,['Forgotten Tomb'],Forgotten Tomb,7,21,7,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
136,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,22,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
137,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,22,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
138,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,22,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
139,f788f7af-8e7e-465b-b64a-08bf956c048a,Songs to Leave,No Way Out,['Forgotten Tomb'],Forgotten Tomb,4,22,4,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
140,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,22,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661
141,ba56e565-23b2-457e-87c6-105f2840719a,Springtime Depression,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,1,23,1,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
142,4c32f61e-a4c3-4b15-82c9-6b289c2e54d1,Springtime Depression,Scars,['Forgotten Tomb'],Forgotten Tomb,2,23,2,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
143,6d24644b-5b77-48b0-86d4-37dd656476ae,Springtime Depression,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,3,23,3,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
144,02a56baa-b5d5-420e-b863-d4b055b9eed8,Springtime Depression,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,4,23,4,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
145,8a963423-0d8c-4c2c-840b-fec50f67e87a,Springtime Depression,Colourless Despondency,['Forgotten Tomb'],Forgotten Tomb,5,23,5,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
146,e703154f-5acf-4236-9428-89007907c36b,Springtime Depression,Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,23,6,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
147,4fa25bfa-27d1-44af-bc14-33d4c590ea93,Springtime Depression,Desolated Funeral,['Forgotten Tomb'],Forgotten Tomb,7,23,7,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192
148,ebe2c4fa-7465-4668-beb4-c6dbc92d14e6,Hurt Yourself and the Ones You Love,Soulless Upheaval,['Forgotten Tomb'],Forgotten Tomb,1,24,1,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
149,b2263c64-4de3-49b1-9979-92ebf745105d,Hurt Yourself and the Ones You Love,King of the Undesirables,['Forgotten Tomb'],Forgotten Tomb,2,24,2,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
150,e5ebc04d-6d12-419c-b06a-657428f009a1,Hurt Yourself and the Ones You Love,Bad Dreams Come True,['Forgotten Tomb'],Forgotten Tomb,3,24,3,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
151,a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc,Hurt Yourself and the Ones You Love,Hurt Yourself and the Ones You Love,['Forgotten Tomb'],Forgotten Tomb,4,24,4,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
152,e6dd8920-f274-4e5e-9f0f-8999919bfefd,Hurt Yourself and the Ones You Love,Mislead the Snakes,['Forgotten Tomb'],Forgotten Tomb,5,24,5,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
153,653c8bd6-9b64-4ba8-83dd-d80e36fb3701,Hurt Yourself and the Ones You Love,Dread the Sundown,['Forgotten Tomb'],Forgotten Tomb,6,24,6,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,
154,6fc6a78b-b74c-4dfa-b66a-9079574cc300,Hurt Yourself and the Ones You Love,Swallow the Void,['Forgotten Tomb'],Forgotten Tomb,7,24,7,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,

1 id album title artist album_artist tracknumber albumsort titlesort isrc date year musicbrainz_artistid musicbrainz_albumid musicbrainz_albumartistid musicbrainz_albumstatus total_tracks language musicbrainz_albumtype compilation releasecountry barcode
2 0 691d2ac1-c64a-40f4-8bdc-01d8525c6a19 adae3514-9f16-4164-849b-a64f9d49770a Obscura Arcana Mortis Hurra die Welt geht unter Nightfrost Wir ['Forgotten Tomb'] ['K.I.Z'] Forgotten Tomb K.I.Z 1 0 1 DEUM71500709 2000-06 2015-07-10 2000 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 560b31e4-713d-464f-b4ea-8fbd41417eb3 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu EP Album IT DE 0602547326324
3 1 c5736e99-48da-456f-8da9-ba36376d1d30 9c566dc6-d7d6-42eb-9e4f-471824ea3d8f Obscura Arcana Mortis Hurra die Welt geht unter Nefarious Nights Geld ['Forgotten Tomb'] ['K.I.Z'] Forgotten Tomb K.I.Z 2 0 2 DEUM71500710 2000-06 2015-07-10 2000 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 560b31e4-713d-464f-b4ea-8fbd41417eb3 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu EP Album IT DE 0602547326324
4 2 09544c56-de2d-474c-8944-fcb61108ed02 23d60d4c-f2b3-401e-94e0-0a3e6353d4bf Obscura Arcana Mortis Hurra die Welt geht unter Forgotten Tomb Glücklich und satt ['Forgotten Tomb'] ['K.I.Z'] Forgotten Tomb K.I.Z 3 0 3 DEUM71500711 2000-06 2015-07-10 2000 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 560b31e4-713d-464f-b4ea-8fbd41417eb3 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu EP Album IT DE 0602547326324
5 3 8c81bd2b-2fb1-44fe-a348-143ec6862caf 7177e7dc-813a-4e1e-8d36-1d4e38eeb796 Obscura Arcana Mortis Hurra die Welt geht unter Obscura Arcana Mortis Boom Boom Boom ['Forgotten Tomb'] ['K.I.Z'] Forgotten Tomb K.I.Z 4 0 4 DEUM71500712 2000-06 2015-07-10 2000 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 560b31e4-713d-464f-b4ea-8fbd41417eb3 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu EP Album IT DE 0602547326324
6 4 20b26fc7-1921-4b56-ab30-406e64042b25 00192a27-f412-4eb0-a111-5cc1faa9b2d7 Obscura Arcana Mortis Hurra die Welt geht unter XXX (Outro) AMG Mercedes ['Forgotten Tomb'] ['K.I.Z'] Forgotten Tomb K.I.Z 5 0 5 DEUM71500713 2000-06 2015-07-10 2000 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 560b31e4-713d-464f-b4ea-8fbd41417eb3 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu EP Album IT DE 0602547326324
7 5 5b3af1f2-72f1-4aad-870d-9bdb7c005442 960e130a-53e7-4b0e-b720-c23347d2d728 Songs to Leave Hurra die Welt geht unter Entombed by Winter Freier Fall ['Forgotten Tomb'] ['K.I.Z'] Forgotten Tomb K.I.Z 1 6 1 0 1 6 DEUM71500714 2002-08-04 2015-07-10 2002 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 bc646805-8992-3172-a705-5ff99c35f6f8 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu Album SE DE 3700132610661 0602547326324
8 6 12b73205-7efe-4b6a-ae22-d7276aff7637 24fbd3e5-28f5-42d3-9aff-b5356ad08470 Songs to Leave Hurra die Welt geht unter Solitude Ways Ariane ['Forgotten Tomb'] ['K.I.Z'] Forgotten Tomb K.I.Z 2 7 1 0 2 7 DEUM71500715 2002-08-04 2015-07-10 2002 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 bc646805-8992-3172-a705-5ff99c35f6f8 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu Album SE DE 3700132610661 0602547326324
9 7 62c5201b-fdaf-449d-979e-b13c8ea45515 bd087625-4cc8-4b34-8837-31d0690b7aca Songs to Leave Hurra die Welt geht unter Steal My Corpse Käfigbett ['Forgotten Tomb'] ['K.I.Z'] Forgotten Tomb K.I.Z 3 8 1 0 3 8 DEUM71500716 2002-08-04 2015-07-10 2002 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 bc646805-8992-3172-a705-5ff99c35f6f8 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu Album SE DE 3700132610661 0602547326324
10 8 f788f7af-8e7e-465b-b64a-08bf956c048a 032a80d1-f211-4dd4-ac68-f125a09a4be8 Songs to Leave Hurra die Welt geht unter No Way Out Verrückt nach dir ['Forgotten Tomb'] ['K.I.Z'] Forgotten Tomb K.I.Z 4 9 1 0 4 9 DEUM71500717 2002-08-04 2015-07-10 2002 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 bc646805-8992-3172-a705-5ff99c35f6f8 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu Album SE DE 3700132610661 0602547326324
11 9 34f170a4-e563-4727-a4eb-cb470d58c5eb a9d08fbc-d275-4427-a1d9-adc1c79e083a Songs to Leave Hurra die Welt geht unter Disheartenment Ehrenlos ['Forgotten Tomb'] ['K.I.Z'] Forgotten Tomb K.I.Z 5 10 1 0 5 10 DEUM71500718 2002-08-04 2015-07-10 2002 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 bc646805-8992-3172-a705-5ff99c35f6f8 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu Album SE DE 3700132610661 0602547326324
12 10 5b3af1f2-72f1-4aad-870d-9bdb7c005442 80f2b1b0-9a95-4fd0-a886-546e9dd8ceff Songs to Leave Hurra die Welt geht unter Entombed by Winter Superstars ['Forgotten Tomb'] ['K.I.Z', 'Sefo'] Forgotten Tomb K.I.Z 1 11 2 0 1 11 DEUM71500719 2002-08-04 2015-07-10 2002 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 bc646805-8992-3172-a705-5ff99c35f6f8 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu Album SE DE 3700132610661 0602547326324
13 11 12b73205-7efe-4b6a-ae22-d7276aff7637 4db0ff20-321f-49f3-b20b-a17fc6f3709b Songs to Leave Hurra die Welt geht unter Solitude Ways Was würde Manny Marc tun? ['Forgotten Tomb'] ['K.I.Z', 'Audio88', 'Yassin', 'Manny Marc'] Forgotten Tomb K.I.Z 2 12 2 0 2 12 DEUM71500720 2002-08-04 2015-07-10 2002 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 bc646805-8992-3172-a705-5ff99c35f6f8 27d0fac9-c7d2-48ef-8739-6b839ed7c461 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu Album SE DE 3700132610661 0602547326324
14 12 62c5201b-fdaf-449d-979e-b13c8ea45515 05404ed1-4f8b-43ba-833f-54e6c2918ff6 Songs to Leave Hurra die Welt geht unter Steal My Corpse Hurra die Welt geht unter ['Forgotten Tomb'] ['K.I.Z', 'Henning May'] Forgotten Tomb K.I.Z 3 13 2 0 3 13 DEUM71500721 2002-08-04 2015-07-10 2002 2015 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 bc646805-8992-3172-a705-5ff99c35f6f8 f538d982-71fd-4d19-8ef5-8664b4cbe0ac 6cdda84f-1703-4618-aecf-decc6218497f 13c9c494-09aa-4518-8572-9f41dbdff461 Official 5 13 eng deu Album SE DE 3700132610661 0602547326362
13 f788f7af-8e7e-465b-b64a-08bf956c048a Songs to Leave No Way Out ['Forgotten Tomb'] Forgotten Tomb 4 2 4 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
14 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 2 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
15 c5783c79-7c9b-4a18-aa02-26817c44e66d Springtime Depression Todestrieb ['Forgotten Tomb'] Forgotten Tomb 1 3 1 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723
16 a45dc7ea-2514-45af-aa58-28fd2c368b1d Springtime Depression Scars ['Forgotten Tomb'] Forgotten Tomb 2 3 2 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723
17 3fd10f2d-c0a3-4796-8bde-ca896dc2d209 Springtime Depression Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 3 3 3 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723
18 add38b27-d759-4c34-b7a2-3fde97beff7b Springtime Depression Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 4 3 4 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723
19 18046de2-c73c-463e-ac8b-5c085c11af18 Springtime Depression Colourless Despondency ['Forgotten Tomb'] Forgotten Tomb 5 3 5 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723
20 c32a5fc8-542e-4efe-b4bb-cbbcf954e9b9 Springtime Depression Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 3 6 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723
21 4040ef17-d9de-465c-b98e-aba6636ff5ba Love's Burial Ground Malus Vivendi, Part I (intro) ['Henrik Nordvargr Björkk'] Henrik Nordvargr Björkk 1 4 1 2004-09-11 2004 5ab93447-6cda-4d78-b21b-0a8abd2940ad 023a4c15-1f1f-484e-b05d-556a534c8e84 5ab93447-6cda-4d78-b21b-0a8abd2940ad Official 9 eng Album FR 3700132600891
22 696fde7b-2899-4f10-9a96-24e82d7f8928 Love's Burial Ground Kill Life ['Forgotten Tomb'] Forgotten Tomb 2 4 2 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891
23 40be2684-ff02-4a65-a616-b7a6d7cf8c0d Love's Burial Ground Alone ['Forgotten Tomb'] Forgotten Tomb 3 4 3 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891
24 2ac034d2-97d2-4372-9de7-12313e11a7f5 Love's Burial Ground House of Nostalgia ['Forgotten Tomb'] Forgotten Tomb 4 4 4 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891
25 b4963d00-bdaf-40c6-ac18-0786313efa26 Love's Burial Ground Malus Vivendi, Part II (intermezzo) ['Henrik Nordvargr Björkk'] Henrik Nordvargr Björkk 5 4 5 2004-09-11 2004 5ab93447-6cda-4d78-b21b-0a8abd2940ad 023a4c15-1f1f-484e-b05d-556a534c8e84 5ab93447-6cda-4d78-b21b-0a8abd2940ad Official 9 eng Album FR 3700132600891
26 f8c3ac89-8502-41ae-bdb3-c8487164560f Love's Burial Ground Love's Burial Ground ['Forgotten Tomb'] Forgotten Tomb 6 4 6 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891
27 d8fd7421-e2ce-4686-8749-326eaec89ea2 Love's Burial Ground Slave to Negativity ['Forgotten Tomb'] Forgotten Tomb 7 4 7 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891
28 008a122f-0a59-4004-99db-8d90386392b7 Love's Burial Ground Forgotten Tomb MMIII ['Forgotten Tomb'] Forgotten Tomb 8 4 8 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891
29 0faa06f2-d29e-4c28-997a-66a0b01388e6 Love's Burial Ground Malus Vivendi, Part III (outro) ['Henrik Nordvargr Björkk'] Henrik Nordvargr Björkk 9 4 9 2004-09-11 2004 5ab93447-6cda-4d78-b21b-0a8abd2940ad 023a4c15-1f1f-484e-b05d-556a534c8e84 5ab93447-6cda-4d78-b21b-0a8abd2940ad Official 9 eng Album FR 3700132600891
30 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 5 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661
31 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 5 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661
32 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 5 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661
33 f788f7af-8e7e-465b-b64a-08bf956c048a Songs to Leave No Way Out ['Forgotten Tomb'] Forgotten Tomb 4 5 4 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661
34 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 5 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661
35 0a7739c7-b5cf-4441-91c7-e82913027d36 Songs to Leave Desolated Funeral ['Forgotten Tomb'] Forgotten Tomb 6 5 6 2005 2005 6cdda84f-1703-4618-aecf-decc6218497f 80ddad38-720b-40ed-b4f3-f969af04d314 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600938
36 2d7e3130-5dff-4fcb-8767-4f08b1b08964 Negative Megalomania A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 1 6 1 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
37 62c544d0-9fea-424a-ab3d-b255e0404036 Negative Megalomania No Rehab (Final Exit) ['Forgotten Tomb'] Forgotten Tomb 2 6 2 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
38 fd1e91a8-d816-4f18-816b-5dff6ef9bfc8 Negative Megalomania Negative Megalomania ['Forgotten Tomb'] Forgotten Tomb 3 6 3 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
39 0e52aea8-2f72-4224-b687-b95d3069174e Negative Megalomania The Scapegoat ['Forgotten Tomb'] Forgotten Tomb 4 6 4 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
40 7a371c04-9fef-41ba-b6b5-515f5eb66297 Negative Megalomania Blood and Concrete ['Forgotten Tomb'] Forgotten Tomb 5 6 5 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
41 2d7e3130-5dff-4fcb-8767-4f08b1b08964 Negative Megalomania A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 1 7 1 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
42 62c544d0-9fea-424a-ab3d-b255e0404036 Negative Megalomania No Rehab (Final Exit) ['Forgotten Tomb'] Forgotten Tomb 2 7 2 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
43 fd1e91a8-d816-4f18-816b-5dff6ef9bfc8 Negative Megalomania Negative Megalomania ['Forgotten Tomb'] Forgotten Tomb 3 7 3 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
44 0e52aea8-2f72-4224-b687-b95d3069174e Negative Megalomania The Scapegoat ['Forgotten Tomb'] Forgotten Tomb 4 7 4 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
45 7a371c04-9fef-41ba-b6b5-515f5eb66297 Negative Megalomania Blood and Concrete ['Forgotten Tomb'] Forgotten Tomb 5 7 5 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
46 691d2ac1-c64a-40f4-8bdc-01d8525c6a19 Obscura Arcana Mortis Nightfrost ['Forgotten Tomb'] Forgotten Tomb 1 8 1 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT
47 c5736e99-48da-456f-8da9-ba36376d1d30 Obscura Arcana Mortis Nefarious Nights ['Forgotten Tomb'] Forgotten Tomb 2 8 2 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT
48 09544c56-de2d-474c-8944-fcb61108ed02 Obscura Arcana Mortis Forgotten Tomb ['Forgotten Tomb'] Forgotten Tomb 3 8 3 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT
49 8c81bd2b-2fb1-44fe-a348-143ec6862caf Obscura Arcana Mortis Obscura Arcana Mortis ['Forgotten Tomb'] Forgotten Tomb 4 8 4 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT
50 20b26fc7-1921-4b56-ab30-406e64042b25 Obscura Arcana Mortis XXX (Outro) ['Forgotten Tomb'] Forgotten Tomb 5 8 5 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT
51 53c43172-ab10-42bd-adaa-7672fc1495d7 Obscura Arcana Mortis: The Demo Years The Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 8 6 2007 2007 6cdda84f-1703-4618-aecf-decc6218497f 9e2f6d52-a53a-49b5-bb76-12f24dfbea31 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT
52 a717f6aa-bb67-43ea-83a3-5d6626f15f33 Obscura Arcana Mortis: The Demo Years Entombed by Winter (Ultra Doom version) ['Forgotten Tomb'] Forgotten Tomb 7 8 7 2007 2007 6cdda84f-1703-4618-aecf-decc6218497f 9e2f6d52-a53a-49b5-bb76-12f24dfbea31 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT
53 01261c12-8b27-42fa-b63d-82297a6f90e3 Vol 5: 1999-2009 Black Sabbath / Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 1 9 1 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1 IT
54 9ee3bc6d-437d-4b14-9447-d49b473e2ed6 Vol 5: 1999-2009 Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 9 2 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1 IT
55 62a31375-27bc-4599-a809-188516dd3081 Vol 5: 1999-2009 A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 3 9 3 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1 IT
56 04eedce1-74a8-434c-94d5-0466038d93f0 Vol 5: 1999-2009 Disheartenment / Alone / Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 4 9 4 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1 IT
57 ca063619-ab8b-4720-9449-abd06a5b40c7 Vol 5: 1999-2009 Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 5 9 5 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1 IT
58 91c1f58c-7e74-4f74-aaae-42d1e08e62c7 Vol 5: 1999-2009 Papercuts ['Forgotten Tomb'] Forgotten Tomb 6 9 6 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1 IT
59 7694a2d4-c6a2-4e47-8a45-3db8cb344a46 Under Saturn Retrograde Reject Existence ['Forgotten Tomb'] Forgotten Tomb 1 10 1 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055
60 0123d374-fa2a-4e99-85c0-db764355cf4e Under Saturn Retrograde Shutter ['Forgotten Tomb'] Forgotten Tomb 2 10 2 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055
61 402d02c9-bf5e-49f0-8674-ebca88d1885f Under Saturn Retrograde Downlift ['Forgotten Tomb'] Forgotten Tomb 3 10 3 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055
62 0f1a5b3d-c1d1-4bd0-a25a-4f1aa15dc68a Under Saturn Retrograde I Wanna Be Your Dog ['Forgotten Tomb'] Forgotten Tomb 4 10 4 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055
63 bef8cab2-5984-4d6f-8808-c87f54729eb1 Under Saturn Retrograde Joyless ['Forgotten Tomb'] Forgotten Tomb 5 10 5 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055
64 49e38253-4b8c-4506-bddf-2f8a231981d8 Under Saturn Retrograde Under Saturn Retrograde, Part I ['Forgotten Tomb'] Forgotten Tomb 6 10 6 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055
65 0b943a47-dd88-4676-9293-139d212403e4 Under Saturn Retrograde Under Saturn Retrograde, Part II ['Forgotten Tomb'] Forgotten Tomb 7 10 7 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055
66 2f4562e5-dfb0-4ef8-bc2c-29f8e153ab28 Under Saturn Retrograde You Can't Kill Who's Already Dead ['Forgotten Tomb'] Forgotten Tomb 8 10 8 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055
67 5c3c8e47-2b21-42bd-98a3-d20fc4a74238 Under Saturn Retrograde Spectres Over Venice ['Forgotten Tomb'] Forgotten Tomb 9 10 9 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055
68 2d7e3130-5dff-4fcb-8767-4f08b1b08964 Negative Megalomania A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 1 11 1 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
69 62c544d0-9fea-424a-ab3d-b255e0404036 Negative Megalomania No Rehab (Final Exit) ['Forgotten Tomb'] Forgotten Tomb 2 11 2 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
70 fd1e91a8-d816-4f18-816b-5dff6ef9bfc8 Negative Megalomania Negative Megalomania ['Forgotten Tomb'] Forgotten Tomb 3 11 3 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
71 0e52aea8-2f72-4224-b687-b95d3069174e Negative Megalomania The Scapegoat ['Forgotten Tomb'] Forgotten Tomb 4 11 4 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
72 7a371c04-9fef-41ba-b6b5-515f5eb66297 Negative Megalomania Blood and Concrete ['Forgotten Tomb'] Forgotten Tomb 5 11 5 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943
73 ca007fe0-7e0a-4b59-8264-bea73d1d1314 A Tribute to GG Allin Expose Yourself to Kids ['Forgotten Tomb'] Various Artists 1 12 1 2011-12-24 2011 6cdda84f-1703-4618-aecf-decc6218497f 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT
74 e46f9baa-4c8a-4e4d-8010-a81fb206f5de A Tribute to GG Allin I Kill Everything I Fuck ['Forgotten Tomb'] Various Artists 2 12 2 2011-12-24 2011 6cdda84f-1703-4618-aecf-decc6218497f 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT
75 1435a1e2-c53a-4ddb-96f8-f9987d6323e6 A Tribute to GG Allin Die When You Die ['Whiskey Ritual'] Various Artists 3 12 3 2011-12-24 2011 b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT
76 31f31c47-2198-449a-a945-88a8779ec4e9 A Tribute to GG Allin Bite It You Scum ['Whiskey Ritual'] Various Artists 4 12 4 2011-12-24 2011 b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT
77 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 13 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
78 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 13 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
79 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 13 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
80 f788f7af-8e7e-465b-b64a-08bf956c048a Songs to Leave No Way Out ['Forgotten Tomb'] Forgotten Tomb 4 13 4 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
81 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 13 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
82 ba56e565-23b2-457e-87c6-105f2840719a Springtime Depression Todestrieb ['Forgotten Tomb'] Forgotten Tomb 1 14 1 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
83 4c32f61e-a4c3-4b15-82c9-6b289c2e54d1 Springtime Depression Scars ['Forgotten Tomb'] Forgotten Tomb 2 14 2 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
84 6d24644b-5b77-48b0-86d4-37dd656476ae Springtime Depression Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 3 14 3 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
85 02a56baa-b5d5-420e-b863-d4b055b9eed8 Springtime Depression Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 4 14 4 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
86 8a963423-0d8c-4c2c-840b-fec50f67e87a Springtime Depression Colourless Despondency ['Forgotten Tomb'] Forgotten Tomb 5 14 5 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
87 e703154f-5acf-4236-9428-89007907c36b Springtime Depression Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 14 6 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
88 4fa25bfa-27d1-44af-bc14-33d4c590ea93 Springtime Depression Desolated Funeral ['Forgotten Tomb'] Forgotten Tomb 7 14 7 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
89 691d2ac1-c64a-40f4-8bdc-01d8525c6a19 Obscura Arcana Mortis Nightfrost ['Forgotten Tomb'] Forgotten Tomb 1 15 1 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT
90 c5736e99-48da-456f-8da9-ba36376d1d30 Obscura Arcana Mortis Nefarious Nights ['Forgotten Tomb'] Forgotten Tomb 2 15 2 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT
91 09544c56-de2d-474c-8944-fcb61108ed02 Obscura Arcana Mortis Forgotten Tomb ['Forgotten Tomb'] Forgotten Tomb 3 15 3 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT
92 8c81bd2b-2fb1-44fe-a348-143ec6862caf Obscura Arcana Mortis Obscura Arcana Mortis ['Forgotten Tomb'] Forgotten Tomb 4 15 4 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT
93 20b26fc7-1921-4b56-ab30-406e64042b25 Obscura Arcana Mortis XXX (Outro) ['Forgotten Tomb'] Forgotten Tomb 5 15 5 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT
94 977ea701-0a35-4327-960d-e6367fd2dcd3 ... And Don't Deliver Us From Evil Deprived ['Forgotten Tomb'] Forgotten Tomb 1 16 1 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
95 de859b2c-80e3-4639-ac59-e4ba829024ab ... And Don't Deliver Us From Evil ...and Don't Deliver Us From Evil ['Forgotten Tomb'] Forgotten Tomb 2 16 2 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
96 b82b5483-726b-4a2a-82dc-6d8a637bd4ea ... And Don't Deliver Us From Evil Cold Summer ['Forgotten Tomb'] Forgotten Tomb 3 16 3 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
97 8ff8711a-c66e-42d3-830d-288d05dcaff1 ... And Don't Deliver Us From Evil Let's Torture Each Other ['Forgotten Tomb'] Forgotten Tomb 4 16 4 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
98 dd8d8774-87df-4b86-985d-36af394417cd ... And Don't Deliver Us From Evil Love Me Like You'd Love the Death ['Forgotten Tomb'] Forgotten Tomb 5 16 5 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
99 3650245c-3535-41c7-92ba-d0de94467696 ... And Don't Deliver Us From Evil Adrift ['Forgotten Tomb'] Forgotten Tomb 6 16 6 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
100 b1de9669-8ffc-461d-b3d5-da6a4f37abf5 ... And Don't Deliver Us From Evil Nullifying Tomorrow ['Forgotten Tomb'] Forgotten Tomb 7 16 7 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
101 977ea701-0a35-4327-960d-e6367fd2dcd3 ... And Don't Deliver Us From Evil Deprived ['Forgotten Tomb'] Forgotten Tomb 1 17 1 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
102 de859b2c-80e3-4639-ac59-e4ba829024ab ... And Don't Deliver Us From Evil ...and Don't Deliver Us From Evil ['Forgotten Tomb'] Forgotten Tomb 2 17 2 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
103 b82b5483-726b-4a2a-82dc-6d8a637bd4ea ... And Don't Deliver Us From Evil Cold Summer ['Forgotten Tomb'] Forgotten Tomb 3 17 3 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
104 8ff8711a-c66e-42d3-830d-288d05dcaff1 ... And Don't Deliver Us From Evil Let's Torture Each Other ['Forgotten Tomb'] Forgotten Tomb 4 17 4 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
105 dd8d8774-87df-4b86-985d-36af394417cd ... And Don't Deliver Us From Evil Love Me Like You'd Love the Death ['Forgotten Tomb'] Forgotten Tomb 5 17 5 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
106 3650245c-3535-41c7-92ba-d0de94467696 ... And Don't Deliver Us From Evil Adrift ['Forgotten Tomb'] Forgotten Tomb 6 17 6 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
107 b1de9669-8ffc-461d-b3d5-da6a4f37abf5 ... And Don't Deliver Us From Evil Nullifying Tomorrow ['Forgotten Tomb'] Forgotten Tomb 7 17 7 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
108 977ea701-0a35-4327-960d-e6367fd2dcd3 ... And Don't Deliver Us From Evil Deprived ['Forgotten Tomb'] Forgotten Tomb 1 18 1 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW
109 de859b2c-80e3-4639-ac59-e4ba829024ab ... And Don't Deliver Us From Evil ...and Don't Deliver Us From Evil ['Forgotten Tomb'] Forgotten Tomb 2 18 2 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW
110 b82b5483-726b-4a2a-82dc-6d8a637bd4ea ... And Don't Deliver Us From Evil Cold Summer ['Forgotten Tomb'] Forgotten Tomb 3 18 3 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW
111 8ff8711a-c66e-42d3-830d-288d05dcaff1 ... And Don't Deliver Us From Evil Let's Torture Each Other ['Forgotten Tomb'] Forgotten Tomb 4 18 4 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW
112 dd8d8774-87df-4b86-985d-36af394417cd ... And Don't Deliver Us From Evil Love Me Like You'd Love the Death ['Forgotten Tomb'] Forgotten Tomb 5 18 5 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW
113 3650245c-3535-41c7-92ba-d0de94467696 ... And Don't Deliver Us From Evil Adrift ['Forgotten Tomb'] Forgotten Tomb 6 18 6 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW
114 b1de9669-8ffc-461d-b3d5-da6a4f37abf5 ... And Don't Deliver Us From Evil Nullifying Tomorrow ['Forgotten Tomb'] Forgotten Tomb 7 18 7 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW
115 6e3116f1-0c61-445c-a698-0c20e9c538ca ...And Don't Deliver Us From Evil Transmission ['Forgotten Tomb'] Forgotten Tomb 8 18 8 2012-10-30 2012 6cdda84f-1703-4618-aecf-decc6218497f 3e9becab-ad9f-4129-82f6-f35bafd113cc 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album PL 5902020284369
116 a7723ddd-3c39-41f9-b1b7-1d33eb20a6f5 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 1 19 1 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW
117 12738217-75dd-4af4-8e1f-42a909918360 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Reject Existence ['Forgotten Tomb'] Forgotten Tomb 2 19 2 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW
118 c046e71c-ddd8-449d-9a36-cd8400359c46 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Shutter ['Forgotten Tomb'] Forgotten Tomb 3 19 3 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW
119 2be04ff6-e7c4-468e-8e9e-d158fecdd55b Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 4 19 4 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW
120 d0881ddf-1f34-4669-8c84-528817938c55 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Todestrieb ['Forgotten Tomb'] Forgotten Tomb 5 19 5 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW
121 7fd0308a-0a36-415d-a5b0-bf37ec3c4779 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Spectres Over Venice ['Forgotten Tomb'] Forgotten Tomb 6 19 6 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW
122 664a6f97-8268-4af3-9287-f33d284e2489 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Disheartenment / Alone / Steal My Corpse (medley) ['Forgotten Tomb'] Forgotten Tomb 7 19 7 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW
123 ebe2c4fa-7465-4668-beb4-c6dbc92d14e6 Hurt Yourself and the Ones You Love Soulless Upheaval ['Forgotten Tomb'] Forgotten Tomb 1 20 1 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW
124 b2263c64-4de3-49b1-9979-92ebf745105d Hurt Yourself and the Ones You Love King of the Undesirables ['Forgotten Tomb'] Forgotten Tomb 2 20 2 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW
125 e5ebc04d-6d12-419c-b06a-657428f009a1 Hurt Yourself and the Ones You Love Bad Dreams Come True ['Forgotten Tomb'] Forgotten Tomb 3 20 3 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW
126 a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc Hurt Yourself and the Ones You Love Hurt Yourself and the Ones You Love ['Forgotten Tomb'] Forgotten Tomb 4 20 4 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW
127 e6dd8920-f274-4e5e-9f0f-8999919bfefd Hurt Yourself and the Ones You Love Mislead the Snakes ['Forgotten Tomb'] Forgotten Tomb 5 20 5 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW
128 653c8bd6-9b64-4ba8-83dd-d80e36fb3701 Hurt Yourself and the Ones You Love Dread the Sundown ['Forgotten Tomb'] Forgotten Tomb 6 20 6 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW
129 ebe2c4fa-7465-4668-beb4-c6dbc92d14e6 Hurt Yourself and the Ones You Love Soulless Upheaval ['Forgotten Tomb'] Forgotten Tomb 1 21 1 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
130 b2263c64-4de3-49b1-9979-92ebf745105d Hurt Yourself and the Ones You Love King of the Undesirables ['Forgotten Tomb'] Forgotten Tomb 2 21 2 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
131 e5ebc04d-6d12-419c-b06a-657428f009a1 Hurt Yourself and the Ones You Love Bad Dreams Come True ['Forgotten Tomb'] Forgotten Tomb 3 21 3 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
132 a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc Hurt Yourself and the Ones You Love Hurt Yourself and the Ones You Love ['Forgotten Tomb'] Forgotten Tomb 4 21 4 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
133 e6dd8920-f274-4e5e-9f0f-8999919bfefd Hurt Yourself and the Ones You Love Mislead the Snakes ['Forgotten Tomb'] Forgotten Tomb 5 21 5 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
134 653c8bd6-9b64-4ba8-83dd-d80e36fb3701 Hurt Yourself and the Ones You Love Dread the Sundown ['Forgotten Tomb'] Forgotten Tomb 6 21 6 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
135 6fc6a78b-b74c-4dfa-b66a-9079574cc300 Hurt Yourself and the Ones You Love Swallow the Void ['Forgotten Tomb'] Forgotten Tomb 7 21 7 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
136 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 22 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
137 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 22 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
138 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 22 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
139 f788f7af-8e7e-465b-b64a-08bf956c048a Songs to Leave No Way Out ['Forgotten Tomb'] Forgotten Tomb 4 22 4 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
140 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 22 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661
141 ba56e565-23b2-457e-87c6-105f2840719a Springtime Depression Todestrieb ['Forgotten Tomb'] Forgotten Tomb 1 23 1 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
142 4c32f61e-a4c3-4b15-82c9-6b289c2e54d1 Springtime Depression Scars ['Forgotten Tomb'] Forgotten Tomb 2 23 2 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
143 6d24644b-5b77-48b0-86d4-37dd656476ae Springtime Depression Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 3 23 3 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
144 02a56baa-b5d5-420e-b863-d4b055b9eed8 Springtime Depression Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 4 23 4 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
145 8a963423-0d8c-4c2c-840b-fec50f67e87a Springtime Depression Colourless Despondency ['Forgotten Tomb'] Forgotten Tomb 5 23 5 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
146 e703154f-5acf-4236-9428-89007907c36b Springtime Depression Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 23 6 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
147 4fa25bfa-27d1-44af-bc14-33d4c590ea93 Springtime Depression Desolated Funeral ['Forgotten Tomb'] Forgotten Tomb 7 23 7 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192
148 ebe2c4fa-7465-4668-beb4-c6dbc92d14e6 Hurt Yourself and the Ones You Love Soulless Upheaval ['Forgotten Tomb'] Forgotten Tomb 1 24 1 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
149 b2263c64-4de3-49b1-9979-92ebf745105d Hurt Yourself and the Ones You Love King of the Undesirables ['Forgotten Tomb'] Forgotten Tomb 2 24 2 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
150 e5ebc04d-6d12-419c-b06a-657428f009a1 Hurt Yourself and the Ones You Love Bad Dreams Come True ['Forgotten Tomb'] Forgotten Tomb 3 24 3 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
151 a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc Hurt Yourself and the Ones You Love Hurt Yourself and the Ones You Love ['Forgotten Tomb'] Forgotten Tomb 4 24 4 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
152 e6dd8920-f274-4e5e-9f0f-8999919bfefd Hurt Yourself and the Ones You Love Mislead the Snakes ['Forgotten Tomb'] Forgotten Tomb 5 24 5 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
153 653c8bd6-9b64-4ba8-83dd-d80e36fb3701 Hurt Yourself and the Ones You Love Dread the Sundown ['Forgotten Tomb'] Forgotten Tomb 6 24 6 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW
154 6fc6a78b-b74c-4dfa-b66a-9079574cc300 Hurt Yourself and the Ones You Love Swallow the Void ['Forgotten Tomb'] Forgotten Tomb 7 24 7 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW

View File

@ -1,129 +1 @@
,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode,url ""
0,691d2ac1-c64a-40f4-8bdc-01d8525c6a19,Obscura Arcana Mortis,Nightfrost,['Forgotten Tomb'],Forgotten Tomb,1,0,1,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3
1,c5736e99-48da-456f-8da9-ba36376d1d30,Obscura Arcana Mortis,Nefarious Nights,['Forgotten Tomb'],Forgotten Tomb,2,0,2,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3
2,09544c56-de2d-474c-8944-fcb61108ed02,Obscura Arcana Mortis,Forgotten Tomb,['Forgotten Tomb'],Forgotten Tomb,3,0,3,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3
3,8c81bd2b-2fb1-44fe-a348-143ec6862caf,Obscura Arcana Mortis,Obscura Arcana Mortis,['Forgotten Tomb'],Forgotten Tomb,4,0,4,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3
4,20b26fc7-1921-4b56-ab30-406e64042b25,Obscura Arcana Mortis,XXX (Outro),['Forgotten Tomb'],Forgotten Tomb,5,0,5,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3
5,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,1,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3
6,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,1,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
7,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,1,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3
8,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,1,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3
9,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,2,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3
10,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,2,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
11,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,2,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3
12,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,2,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3
13,c5783c79-7c9b-4a18-aa02-26817c44e66d,Springtime Depression,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,1,3,1,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723.0,https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3
14,3fd10f2d-c0a3-4796-8bde-ca896dc2d209,Springtime Depression,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,3,3,3,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723.0,https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3
15,add38b27-d759-4c34-b7a2-3fde97beff7b,Springtime Depression,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,4,3,4,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723.0,https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3
16,18046de2-c73c-463e-ac8b-5c085c11af18,Springtime Depression,Colourless Despondency,['Forgotten Tomb'],Forgotten Tomb,5,3,5,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723.0,https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3
17,c32a5fc8-542e-4efe-b4bb-cbbcf954e9b9,Springtime Depression,Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,3,6,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723.0,https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3
18,696fde7b-2899-4f10-9a96-24e82d7f8928,Love's Burial Ground,Kill Life,['Forgotten Tomb'],Forgotten Tomb,2,4,2,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891.0,https://musify.club/track/dl/636957/forgotten-tomb-kill-life.mp3
19,2ac034d2-97d2-4372-9de7-12313e11a7f5,Love's Burial Ground,House of Nostalgia,['Forgotten Tomb'],Forgotten Tomb,4,4,4,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891.0,https://musify.club/track/dl/636959/forgotten-tomb-house-of-nostalgia.mp3
20,f8c3ac89-8502-41ae-bdb3-c8487164560f,Love's Burial Ground,Love's Burial Ground,['Forgotten Tomb'],Forgotten Tomb,6,4,6,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891.0,https://musify.club/track/dl/636961/forgotten-tomb-loves-burial-ground.mp3
21,d8fd7421-e2ce-4686-8749-326eaec89ea2,Love's Burial Ground,Slave to Negativity,['Forgotten Tomb'],Forgotten Tomb,7,4,7,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891.0,https://musify.club/track/dl/636962/forgotten-tomb-slave-to-negativity.mp3
22,008a122f-0a59-4004-99db-8d90386392b7,Love's Burial Ground,Forgotten Tomb MMIII,['Forgotten Tomb'],Forgotten Tomb,8,4,8,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891.0,https://musify.club/track/dl/636963/forgotten-tomb-forgotten-tomb-mmiii.mp3
23,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,5,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3
24,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,5,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
25,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,5,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3
26,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,5,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3
27,0a7739c7-b5cf-4441-91c7-e82913027d36,Songs to Leave,Desolated Funeral,['Forgotten Tomb'],Forgotten Tomb,6,5,6,,2005,2005,6cdda84f-1703-4618-aecf-decc6218497f,80ddad38-720b-40ed-b4f3-f969af04d314,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600938.0,https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3
28,2d7e3130-5dff-4fcb-8767-4f08b1b08964,Negative Megalomania,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,1,6,1,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3
29,62c544d0-9fea-424a-ab3d-b255e0404036,Negative Megalomania,No Rehab (Final Exit),['Forgotten Tomb'],Forgotten Tomb,2,6,2,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3
30,fd1e91a8-d816-4f18-816b-5dff6ef9bfc8,Negative Megalomania,Negative Megalomania,['Forgotten Tomb'],Forgotten Tomb,3,6,3,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3
31,7a371c04-9fef-41ba-b6b5-515f5eb66297,Negative Megalomania,Blood and Concrete,['Forgotten Tomb'],Forgotten Tomb,5,6,5,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3
32,2d7e3130-5dff-4fcb-8767-4f08b1b08964,Negative Megalomania,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,1,7,1,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3
33,62c544d0-9fea-424a-ab3d-b255e0404036,Negative Megalomania,No Rehab (Final Exit),['Forgotten Tomb'],Forgotten Tomb,2,7,2,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3
34,fd1e91a8-d816-4f18-816b-5dff6ef9bfc8,Negative Megalomania,Negative Megalomania,['Forgotten Tomb'],Forgotten Tomb,3,7,3,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3
35,7a371c04-9fef-41ba-b6b5-515f5eb66297,Negative Megalomania,Blood and Concrete,['Forgotten Tomb'],Forgotten Tomb,5,7,5,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3
36,691d2ac1-c64a-40f4-8bdc-01d8525c6a19,Obscura Arcana Mortis,Nightfrost,['Forgotten Tomb'],Forgotten Tomb,1,8,1,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3
37,c5736e99-48da-456f-8da9-ba36376d1d30,Obscura Arcana Mortis,Nefarious Nights,['Forgotten Tomb'],Forgotten Tomb,2,8,2,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3
38,09544c56-de2d-474c-8944-fcb61108ed02,Obscura Arcana Mortis,Forgotten Tomb,['Forgotten Tomb'],Forgotten Tomb,3,8,3,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3
39,8c81bd2b-2fb1-44fe-a348-143ec6862caf,Obscura Arcana Mortis,Obscura Arcana Mortis,['Forgotten Tomb'],Forgotten Tomb,4,8,4,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3
40,20b26fc7-1921-4b56-ab30-406e64042b25,Obscura Arcana Mortis,XXX (Outro),['Forgotten Tomb'],Forgotten Tomb,5,8,5,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3
41,53c43172-ab10-42bd-adaa-7672fc1495d7,Obscura Arcana Mortis: The Demo Years,The Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,8,6,,2007,2007,6cdda84f-1703-4618-aecf-decc6218497f,9e2f6d52-a53a-49b5-bb76-12f24dfbea31,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3
42,a717f6aa-bb67-43ea-83a3-5d6626f15f33,Obscura Arcana Mortis: The Demo Years,Entombed by Winter (Ultra Doom version),['Forgotten Tomb'],Forgotten Tomb,7,8,7,,2007,2007,6cdda84f-1703-4618-aecf-decc6218497f,9e2f6d52-a53a-49b5-bb76-12f24dfbea31,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/750587/forgotten-tomb-entmbed-by-winter-ultra-doom-version-live-2004.mp3
43,01261c12-8b27-42fa-b63d-82297a6f90e3,Vol 5: 1999-2009,Black Sabbath / Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,1,9,1,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1.0,IT,,https://musify.club/track/dl/1057077/forgotten-tomb-black-sabbath-black-sabbath-cover-subway-apathy.mp3
44,9ee3bc6d-437d-4b14-9447-d49b473e2ed6,Vol 5: 1999-2009,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,9,2,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1.0,IT,,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
45,62a31375-27bc-4599-a809-188516dd3081,Vol 5: 1999-2009,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,3,9,3,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1.0,IT,,https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3
46,04eedce1-74a8-434c-94d5-0466038d93f0,Vol 5: 1999-2009,Disheartenment / Alone / Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,4,9,4,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1.0,IT,,https://musify.club/track/dl/1057080/forgotten-tomb-disheartenment-alone-steal-my-corpse.mp3
47,ca063619-ab8b-4720-9449-abd06a5b40c7,Vol 5: 1999-2009,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,5,9,5,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1.0,IT,,https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3
48,7694a2d4-c6a2-4e47-8a45-3db8cb344a46,Under Saturn Retrograde,Reject Existence,['Forgotten Tomb'],Forgotten Tomb,1,10,1,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425790/forgotten-tomb-reject-existence.mp3
49,0123d374-fa2a-4e99-85c0-db764355cf4e,Under Saturn Retrograde,Shutter,['Forgotten Tomb'],Forgotten Tomb,2,10,2,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425791/forgotten-tomb-shutter.mp3
50,402d02c9-bf5e-49f0-8674-ebca88d1885f,Under Saturn Retrograde,Downlift,['Forgotten Tomb'],Forgotten Tomb,3,10,3,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425792/forgotten-tomb-downlift.mp3
51,bef8cab2-5984-4d6f-8808-c87f54729eb1,Under Saturn Retrograde,Joyless,['Forgotten Tomb'],Forgotten Tomb,5,10,5,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425794/forgotten-tomb-joyless.mp3
52,49e38253-4b8c-4506-bddf-2f8a231981d8,Under Saturn Retrograde,"Under Saturn Retrograde, Part I",['Forgotten Tomb'],Forgotten Tomb,6,10,6,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425795/forgotten-tomb-under-saturn-retrograde-part-i.mp3
53,0b943a47-dd88-4676-9293-139d212403e4,Under Saturn Retrograde,"Under Saturn Retrograde, Part II",['Forgotten Tomb'],Forgotten Tomb,7,10,7,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425796/forgotten-tomb-under-saturn-retrograde-part-ii.mp3
54,2f4562e5-dfb0-4ef8-bc2c-29f8e153ab28,Under Saturn Retrograde,You Can't Kill Who's Already Dead,['Forgotten Tomb'],Forgotten Tomb,8,10,8,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425797/forgotten-tomb-you-cant-kill-whos-already-dead.mp3
55,5c3c8e47-2b21-42bd-98a3-d20fc4a74238,Under Saturn Retrograde,Spectres Over Venice,['Forgotten Tomb'],Forgotten Tomb,9,10,9,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425798/forgotten-tomb-spectres-over-venice.mp3
56,2d7e3130-5dff-4fcb-8767-4f08b1b08964,Negative Megalomania,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,1,11,1,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3
57,62c544d0-9fea-424a-ab3d-b255e0404036,Negative Megalomania,No Rehab (Final Exit),['Forgotten Tomb'],Forgotten Tomb,2,11,2,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3
58,fd1e91a8-d816-4f18-816b-5dff6ef9bfc8,Negative Megalomania,Negative Megalomania,['Forgotten Tomb'],Forgotten Tomb,3,11,3,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3
59,7a371c04-9fef-41ba-b6b5-515f5eb66297,Negative Megalomania,Blood and Concrete,['Forgotten Tomb'],Forgotten Tomb,5,11,5,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3
60,ca007fe0-7e0a-4b59-8264-bea73d1d1314,A Tribute to GG Allin,Expose Yourself to Kids,['Forgotten Tomb'],Various Artists,1,12,1,,2011-12-24,2011,6cdda84f-1703-4618-aecf-decc6218497f,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,,https://musify.club/track/dl/3180336/forgotten-tomb-expose-yourself-to-kids.mp3
61,e46f9baa-4c8a-4e4d-8010-a81fb206f5de,A Tribute to GG Allin,I Kill Everything I Fuck,['Forgotten Tomb'],Various Artists,2,12,2,,2011-12-24,2011,6cdda84f-1703-4618-aecf-decc6218497f,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,,https://musify.club/track/dl/3180338/forgotten-tomb-i-kill-everything-i-fuck.mp3
62,1435a1e2-c53a-4ddb-96f8-f9987d6323e6,A Tribute to GG Allin,Die When You Die,['Whiskey Ritual'],Various Artists,3,12,3,,2011-12-24,2011,b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,,https://musify.club/track/dl/3180333/whiskey-ritual-die-when-you-die.mp3
63,31f31c47-2198-449a-a945-88a8779ec4e9,A Tribute to GG Allin,Bite It You Scum,['Whiskey Ritual'],Various Artists,4,12,4,,2011-12-24,2011,b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,,https://musify.club/track/dl/3180334/whiskey-ritual-bite-it-you-scum.mp3
64,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,13,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3
65,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,13,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
66,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,13,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3
67,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,13,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3
68,ba56e565-23b2-457e-87c6-105f2840719a,Springtime Depression,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,1,14,1,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3
69,6d24644b-5b77-48b0-86d4-37dd656476ae,Springtime Depression,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,3,14,3,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3
70,02a56baa-b5d5-420e-b863-d4b055b9eed8,Springtime Depression,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,4,14,4,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3
71,8a963423-0d8c-4c2c-840b-fec50f67e87a,Springtime Depression,Colourless Despondency,['Forgotten Tomb'],Forgotten Tomb,5,14,5,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3
72,e703154f-5acf-4236-9428-89007907c36b,Springtime Depression,Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,14,6,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3
73,4fa25bfa-27d1-44af-bc14-33d4c590ea93,Springtime Depression,Desolated Funeral,['Forgotten Tomb'],Forgotten Tomb,7,14,7,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3
74,691d2ac1-c64a-40f4-8bdc-01d8525c6a19,Obscura Arcana Mortis,Nightfrost,['Forgotten Tomb'],Forgotten Tomb,1,15,1,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3
75,c5736e99-48da-456f-8da9-ba36376d1d30,Obscura Arcana Mortis,Nefarious Nights,['Forgotten Tomb'],Forgotten Tomb,2,15,2,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3
76,09544c56-de2d-474c-8944-fcb61108ed02,Obscura Arcana Mortis,Forgotten Tomb,['Forgotten Tomb'],Forgotten Tomb,3,15,3,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3
77,8c81bd2b-2fb1-44fe-a348-143ec6862caf,Obscura Arcana Mortis,Obscura Arcana Mortis,['Forgotten Tomb'],Forgotten Tomb,4,15,4,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3
78,20b26fc7-1921-4b56-ab30-406e64042b25,Obscura Arcana Mortis,XXX (Outro),['Forgotten Tomb'],Forgotten Tomb,5,15,5,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3
79,977ea701-0a35-4327-960d-e6367fd2dcd3,... And Don't Deliver Us From Evil,Deprived,['Forgotten Tomb'],Forgotten Tomb,1,16,1,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3
80,de859b2c-80e3-4639-ac59-e4ba829024ab,... And Don't Deliver Us From Evil,...and Don't Deliver Us From Evil,['Forgotten Tomb'],Forgotten Tomb,2,16,2,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3
81,8ff8711a-c66e-42d3-830d-288d05dcaff1,... And Don't Deliver Us From Evil,Let's Torture Each Other,['Forgotten Tomb'],Forgotten Tomb,4,16,4,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3
82,dd8d8774-87df-4b86-985d-36af394417cd,... And Don't Deliver Us From Evil,Love Me Like You'd Love the Death,['Forgotten Tomb'],Forgotten Tomb,5,16,5,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3
83,977ea701-0a35-4327-960d-e6367fd2dcd3,... And Don't Deliver Us From Evil,Deprived,['Forgotten Tomb'],Forgotten Tomb,1,17,1,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3
84,de859b2c-80e3-4639-ac59-e4ba829024ab,... And Don't Deliver Us From Evil,...and Don't Deliver Us From Evil,['Forgotten Tomb'],Forgotten Tomb,2,17,2,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3
85,8ff8711a-c66e-42d3-830d-288d05dcaff1,... And Don't Deliver Us From Evil,Let's Torture Each Other,['Forgotten Tomb'],Forgotten Tomb,4,17,4,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3
86,dd8d8774-87df-4b86-985d-36af394417cd,... And Don't Deliver Us From Evil,Love Me Like You'd Love the Death,['Forgotten Tomb'],Forgotten Tomb,5,17,5,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3
87,977ea701-0a35-4327-960d-e6367fd2dcd3,... And Don't Deliver Us From Evil,Deprived,['Forgotten Tomb'],Forgotten Tomb,1,18,1,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,,https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3
88,de859b2c-80e3-4639-ac59-e4ba829024ab,... And Don't Deliver Us From Evil,...and Don't Deliver Us From Evil,['Forgotten Tomb'],Forgotten Tomb,2,18,2,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,,https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3
89,8ff8711a-c66e-42d3-830d-288d05dcaff1,... And Don't Deliver Us From Evil,Let's Torture Each Other,['Forgotten Tomb'],Forgotten Tomb,4,18,4,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,,https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3
90,dd8d8774-87df-4b86-985d-36af394417cd,... And Don't Deliver Us From Evil,Love Me Like You'd Love the Death,['Forgotten Tomb'],Forgotten Tomb,5,18,5,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,,https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3
91,a7723ddd-3c39-41f9-b1b7-1d33eb20a6f5,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,1,19,1,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3
92,12738217-75dd-4af4-8e1f-42a909918360,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Reject Existence,['Forgotten Tomb'],Forgotten Tomb,2,19,2,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/1425790/forgotten-tomb-reject-existence.mp3
93,c046e71c-ddd8-449d-9a36-cd8400359c46,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Shutter,['Forgotten Tomb'],Forgotten Tomb,3,19,3,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/1425791/forgotten-tomb-shutter.mp3
94,2be04ff6-e7c4-468e-8e9e-d158fecdd55b,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,4,19,4,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
95,d0881ddf-1f34-4669-8c84-528817938c55,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,5,19,5,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3
96,7fd0308a-0a36-415d-a5b0-bf37ec3c4779,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Spectres Over Venice,['Forgotten Tomb'],Forgotten Tomb,6,19,6,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/1425798/forgotten-tomb-spectres-over-venice.mp3
97,664a6f97-8268-4af3-9287-f33d284e2489,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Disheartenment / Alone / Steal My Corpse (medley),['Forgotten Tomb'],Forgotten Tomb,7,19,7,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/1057080/forgotten-tomb-disheartenment-alone-steal-my-corpse.mp3
98,ebe2c4fa-7465-4668-beb4-c6dbc92d14e6,Hurt Yourself and the Ones You Love,Soulless Upheaval,['Forgotten Tomb'],Forgotten Tomb,1,20,1,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3
99,b2263c64-4de3-49b1-9979-92ebf745105d,Hurt Yourself and the Ones You Love,King of the Undesirables,['Forgotten Tomb'],Forgotten Tomb,2,20,2,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3
100,e5ebc04d-6d12-419c-b06a-657428f009a1,Hurt Yourself and the Ones You Love,Bad Dreams Come True,['Forgotten Tomb'],Forgotten Tomb,3,20,3,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3
101,a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc,Hurt Yourself and the Ones You Love,Hurt Yourself and the Ones You Love,['Forgotten Tomb'],Forgotten Tomb,4,20,4,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3
102,e6dd8920-f274-4e5e-9f0f-8999919bfefd,Hurt Yourself and the Ones You Love,Mislead the Snakes,['Forgotten Tomb'],Forgotten Tomb,5,20,5,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3
103,653c8bd6-9b64-4ba8-83dd-d80e36fb3701,Hurt Yourself and the Ones You Love,Dread the Sundown,['Forgotten Tomb'],Forgotten Tomb,6,20,6,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3
104,ebe2c4fa-7465-4668-beb4-c6dbc92d14e6,Hurt Yourself and the Ones You Love,Soulless Upheaval,['Forgotten Tomb'],Forgotten Tomb,1,21,1,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3
105,b2263c64-4de3-49b1-9979-92ebf745105d,Hurt Yourself and the Ones You Love,King of the Undesirables,['Forgotten Tomb'],Forgotten Tomb,2,21,2,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3
106,e5ebc04d-6d12-419c-b06a-657428f009a1,Hurt Yourself and the Ones You Love,Bad Dreams Come True,['Forgotten Tomb'],Forgotten Tomb,3,21,3,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3
107,a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc,Hurt Yourself and the Ones You Love,Hurt Yourself and the Ones You Love,['Forgotten Tomb'],Forgotten Tomb,4,21,4,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3
108,e6dd8920-f274-4e5e-9f0f-8999919bfefd,Hurt Yourself and the Ones You Love,Mislead the Snakes,['Forgotten Tomb'],Forgotten Tomb,5,21,5,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3
109,653c8bd6-9b64-4ba8-83dd-d80e36fb3701,Hurt Yourself and the Ones You Love,Dread the Sundown,['Forgotten Tomb'],Forgotten Tomb,6,21,6,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3
110,6fc6a78b-b74c-4dfa-b66a-9079574cc300,Hurt Yourself and the Ones You Love,Swallow the Void,['Forgotten Tomb'],Forgotten Tomb,7,21,7,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258827/forgotten-tomb-swallow-the-void.mp3
111,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,22,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3
112,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,22,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
113,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,22,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3
114,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,22,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3
115,ba56e565-23b2-457e-87c6-105f2840719a,Springtime Depression,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,1,23,1,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3
116,6d24644b-5b77-48b0-86d4-37dd656476ae,Springtime Depression,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,3,23,3,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3
117,02a56baa-b5d5-420e-b863-d4b055b9eed8,Springtime Depression,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,4,23,4,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3
118,8a963423-0d8c-4c2c-840b-fec50f67e87a,Springtime Depression,Colourless Despondency,['Forgotten Tomb'],Forgotten Tomb,5,23,5,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3
119,e703154f-5acf-4236-9428-89007907c36b,Springtime Depression,Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,23,6,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3
120,4fa25bfa-27d1-44af-bc14-33d4c590ea93,Springtime Depression,Desolated Funeral,['Forgotten Tomb'],Forgotten Tomb,7,23,7,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3
121,ebe2c4fa-7465-4668-beb4-c6dbc92d14e6,Hurt Yourself and the Ones You Love,Soulless Upheaval,['Forgotten Tomb'],Forgotten Tomb,1,24,1,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3
122,b2263c64-4de3-49b1-9979-92ebf745105d,Hurt Yourself and the Ones You Love,King of the Undesirables,['Forgotten Tomb'],Forgotten Tomb,2,24,2,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3
123,e5ebc04d-6d12-419c-b06a-657428f009a1,Hurt Yourself and the Ones You Love,Bad Dreams Come True,['Forgotten Tomb'],Forgotten Tomb,3,24,3,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3
124,a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc,Hurt Yourself and the Ones You Love,Hurt Yourself and the Ones You Love,['Forgotten Tomb'],Forgotten Tomb,4,24,4,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3
125,e6dd8920-f274-4e5e-9f0f-8999919bfefd,Hurt Yourself and the Ones You Love,Mislead the Snakes,['Forgotten Tomb'],Forgotten Tomb,5,24,5,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3
126,653c8bd6-9b64-4ba8-83dd-d80e36fb3701,Hurt Yourself and the Ones You Love,Dread the Sundown,['Forgotten Tomb'],Forgotten Tomb,6,24,6,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3
127,6fc6a78b-b74c-4dfa-b66a-9079574cc300,Hurt Yourself and the Ones You Love,Swallow the Void,['Forgotten Tomb'],Forgotten Tomb,7,24,7,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258827/forgotten-tomb-swallow-the-void.mp3

1 id album title artist album_artist tracknumber albumsort titlesort isrc date year musicbrainz_artistid musicbrainz_albumid musicbrainz_albumartistid musicbrainz_albumstatus total_tracks language musicbrainz_albumtype compilation releasecountry barcode url
0 691d2ac1-c64a-40f4-8bdc-01d8525c6a19 Obscura Arcana Mortis Nightfrost ['Forgotten Tomb'] Forgotten Tomb 1 0 1 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3
1 c5736e99-48da-456f-8da9-ba36376d1d30 Obscura Arcana Mortis Nefarious Nights ['Forgotten Tomb'] Forgotten Tomb 2 0 2 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3
2 09544c56-de2d-474c-8944-fcb61108ed02 Obscura Arcana Mortis Forgotten Tomb ['Forgotten Tomb'] Forgotten Tomb 3 0 3 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3
3 8c81bd2b-2fb1-44fe-a348-143ec6862caf Obscura Arcana Mortis Obscura Arcana Mortis ['Forgotten Tomb'] Forgotten Tomb 4 0 4 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3
4 20b26fc7-1921-4b56-ab30-406e64042b25 Obscura Arcana Mortis XXX (Outro) ['Forgotten Tomb'] Forgotten Tomb 5 0 5 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3
5 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 1 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3
6 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 1 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
7 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 1 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3
8 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 1 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3
9 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 2 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3
10 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 2 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
11 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 2 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3
12 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 2 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3
13 c5783c79-7c9b-4a18-aa02-26817c44e66d Springtime Depression Todestrieb ['Forgotten Tomb'] Forgotten Tomb 1 3 1 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723.0 https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3
14 3fd10f2d-c0a3-4796-8bde-ca896dc2d209 Springtime Depression Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 3 3 3 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723.0 https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3
15 add38b27-d759-4c34-b7a2-3fde97beff7b Springtime Depression Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 4 3 4 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723.0 https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3
16 18046de2-c73c-463e-ac8b-5c085c11af18 Springtime Depression Colourless Despondency ['Forgotten Tomb'] Forgotten Tomb 5 3 5 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723.0 https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3
17 c32a5fc8-542e-4efe-b4bb-cbbcf954e9b9 Springtime Depression Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 3 6 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723.0 https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3
18 696fde7b-2899-4f10-9a96-24e82d7f8928 Love's Burial Ground Kill Life ['Forgotten Tomb'] Forgotten Tomb 2 4 2 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891.0 https://musify.club/track/dl/636957/forgotten-tomb-kill-life.mp3
19 2ac034d2-97d2-4372-9de7-12313e11a7f5 Love's Burial Ground House of Nostalgia ['Forgotten Tomb'] Forgotten Tomb 4 4 4 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891.0 https://musify.club/track/dl/636959/forgotten-tomb-house-of-nostalgia.mp3
20 f8c3ac89-8502-41ae-bdb3-c8487164560f Love's Burial Ground Love's Burial Ground ['Forgotten Tomb'] Forgotten Tomb 6 4 6 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891.0 https://musify.club/track/dl/636961/forgotten-tomb-loves-burial-ground.mp3
21 d8fd7421-e2ce-4686-8749-326eaec89ea2 Love's Burial Ground Slave to Negativity ['Forgotten Tomb'] Forgotten Tomb 7 4 7 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891.0 https://musify.club/track/dl/636962/forgotten-tomb-slave-to-negativity.mp3
22 008a122f-0a59-4004-99db-8d90386392b7 Love's Burial Ground Forgotten Tomb MMIII ['Forgotten Tomb'] Forgotten Tomb 8 4 8 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891.0 https://musify.club/track/dl/636963/forgotten-tomb-forgotten-tomb-mmiii.mp3
23 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 5 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661.0 https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3
24 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 5 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661.0 https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
25 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 5 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661.0 https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3
26 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 5 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661.0 https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3
27 0a7739c7-b5cf-4441-91c7-e82913027d36 Songs to Leave Desolated Funeral ['Forgotten Tomb'] Forgotten Tomb 6 5 6 2005 2005 6cdda84f-1703-4618-aecf-decc6218497f 80ddad38-720b-40ed-b4f3-f969af04d314 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600938.0 https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3
28 2d7e3130-5dff-4fcb-8767-4f08b1b08964 Negative Megalomania A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 1 6 1 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3
29 62c544d0-9fea-424a-ab3d-b255e0404036 Negative Megalomania No Rehab (Final Exit) ['Forgotten Tomb'] Forgotten Tomb 2 6 2 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3
30 fd1e91a8-d816-4f18-816b-5dff6ef9bfc8 Negative Megalomania Negative Megalomania ['Forgotten Tomb'] Forgotten Tomb 3 6 3 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3
31 7a371c04-9fef-41ba-b6b5-515f5eb66297 Negative Megalomania Blood and Concrete ['Forgotten Tomb'] Forgotten Tomb 5 6 5 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3
32 2d7e3130-5dff-4fcb-8767-4f08b1b08964 Negative Megalomania A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 1 7 1 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3
33 62c544d0-9fea-424a-ab3d-b255e0404036 Negative Megalomania No Rehab (Final Exit) ['Forgotten Tomb'] Forgotten Tomb 2 7 2 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3
34 fd1e91a8-d816-4f18-816b-5dff6ef9bfc8 Negative Megalomania Negative Megalomania ['Forgotten Tomb'] Forgotten Tomb 3 7 3 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3
35 7a371c04-9fef-41ba-b6b5-515f5eb66297 Negative Megalomania Blood and Concrete ['Forgotten Tomb'] Forgotten Tomb 5 7 5 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3
36 691d2ac1-c64a-40f4-8bdc-01d8525c6a19 Obscura Arcana Mortis Nightfrost ['Forgotten Tomb'] Forgotten Tomb 1 8 1 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3
37 c5736e99-48da-456f-8da9-ba36376d1d30 Obscura Arcana Mortis Nefarious Nights ['Forgotten Tomb'] Forgotten Tomb 2 8 2 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3
38 09544c56-de2d-474c-8944-fcb61108ed02 Obscura Arcana Mortis Forgotten Tomb ['Forgotten Tomb'] Forgotten Tomb 3 8 3 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3
39 8c81bd2b-2fb1-44fe-a348-143ec6862caf Obscura Arcana Mortis Obscura Arcana Mortis ['Forgotten Tomb'] Forgotten Tomb 4 8 4 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3
40 20b26fc7-1921-4b56-ab30-406e64042b25 Obscura Arcana Mortis XXX (Outro) ['Forgotten Tomb'] Forgotten Tomb 5 8 5 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3
41 53c43172-ab10-42bd-adaa-7672fc1495d7 Obscura Arcana Mortis: The Demo Years The Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 8 6 2007 2007 6cdda84f-1703-4618-aecf-decc6218497f 9e2f6d52-a53a-49b5-bb76-12f24dfbea31 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3
42 a717f6aa-bb67-43ea-83a3-5d6626f15f33 Obscura Arcana Mortis: The Demo Years Entombed by Winter (Ultra Doom version) ['Forgotten Tomb'] Forgotten Tomb 7 8 7 2007 2007 6cdda84f-1703-4618-aecf-decc6218497f 9e2f6d52-a53a-49b5-bb76-12f24dfbea31 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/750587/forgotten-tomb-entmbed-by-winter-ultra-doom-version-live-2004.mp3
43 01261c12-8b27-42fa-b63d-82297a6f90e3 Vol 5: 1999-2009 Black Sabbath / Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 1 9 1 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1.0 IT https://musify.club/track/dl/1057077/forgotten-tomb-black-sabbath-black-sabbath-cover-subway-apathy.mp3
44 9ee3bc6d-437d-4b14-9447-d49b473e2ed6 Vol 5: 1999-2009 Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 9 2 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1.0 IT https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
45 62a31375-27bc-4599-a809-188516dd3081 Vol 5: 1999-2009 A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 3 9 3 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1.0 IT https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3
46 04eedce1-74a8-434c-94d5-0466038d93f0 Vol 5: 1999-2009 Disheartenment / Alone / Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 4 9 4 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1.0 IT https://musify.club/track/dl/1057080/forgotten-tomb-disheartenment-alone-steal-my-corpse.mp3
47 ca063619-ab8b-4720-9449-abd06a5b40c7 Vol 5: 1999-2009 Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 5 9 5 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1.0 IT https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3
48 7694a2d4-c6a2-4e47-8a45-3db8cb344a46 Under Saturn Retrograde Reject Existence ['Forgotten Tomb'] Forgotten Tomb 1 10 1 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425790/forgotten-tomb-reject-existence.mp3
49 0123d374-fa2a-4e99-85c0-db764355cf4e Under Saturn Retrograde Shutter ['Forgotten Tomb'] Forgotten Tomb 2 10 2 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425791/forgotten-tomb-shutter.mp3
50 402d02c9-bf5e-49f0-8674-ebca88d1885f Under Saturn Retrograde Downlift ['Forgotten Tomb'] Forgotten Tomb 3 10 3 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425792/forgotten-tomb-downlift.mp3
51 bef8cab2-5984-4d6f-8808-c87f54729eb1 Under Saturn Retrograde Joyless ['Forgotten Tomb'] Forgotten Tomb 5 10 5 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425794/forgotten-tomb-joyless.mp3
52 49e38253-4b8c-4506-bddf-2f8a231981d8 Under Saturn Retrograde Under Saturn Retrograde, Part I ['Forgotten Tomb'] Forgotten Tomb 6 10 6 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425795/forgotten-tomb-under-saturn-retrograde-part-i.mp3
53 0b943a47-dd88-4676-9293-139d212403e4 Under Saturn Retrograde Under Saturn Retrograde, Part II ['Forgotten Tomb'] Forgotten Tomb 7 10 7 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425796/forgotten-tomb-under-saturn-retrograde-part-ii.mp3
54 2f4562e5-dfb0-4ef8-bc2c-29f8e153ab28 Under Saturn Retrograde You Can't Kill Who's Already Dead ['Forgotten Tomb'] Forgotten Tomb 8 10 8 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425797/forgotten-tomb-you-cant-kill-whos-already-dead.mp3
55 5c3c8e47-2b21-42bd-98a3-d20fc4a74238 Under Saturn Retrograde Spectres Over Venice ['Forgotten Tomb'] Forgotten Tomb 9 10 9 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425798/forgotten-tomb-spectres-over-venice.mp3
56 2d7e3130-5dff-4fcb-8767-4f08b1b08964 Negative Megalomania A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 1 11 1 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3
57 62c544d0-9fea-424a-ab3d-b255e0404036 Negative Megalomania No Rehab (Final Exit) ['Forgotten Tomb'] Forgotten Tomb 2 11 2 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3
58 fd1e91a8-d816-4f18-816b-5dff6ef9bfc8 Negative Megalomania Negative Megalomania ['Forgotten Tomb'] Forgotten Tomb 3 11 3 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3
59 7a371c04-9fef-41ba-b6b5-515f5eb66297 Negative Megalomania Blood and Concrete ['Forgotten Tomb'] Forgotten Tomb 5 11 5 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3
60 ca007fe0-7e0a-4b59-8264-bea73d1d1314 A Tribute to GG Allin Expose Yourself to Kids ['Forgotten Tomb'] Various Artists 1 12 1 2011-12-24 2011 6cdda84f-1703-4618-aecf-decc6218497f 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT https://musify.club/track/dl/3180336/forgotten-tomb-expose-yourself-to-kids.mp3
61 e46f9baa-4c8a-4e4d-8010-a81fb206f5de A Tribute to GG Allin I Kill Everything I Fuck ['Forgotten Tomb'] Various Artists 2 12 2 2011-12-24 2011 6cdda84f-1703-4618-aecf-decc6218497f 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT https://musify.club/track/dl/3180338/forgotten-tomb-i-kill-everything-i-fuck.mp3
62 1435a1e2-c53a-4ddb-96f8-f9987d6323e6 A Tribute to GG Allin Die When You Die ['Whiskey Ritual'] Various Artists 3 12 3 2011-12-24 2011 b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT https://musify.club/track/dl/3180333/whiskey-ritual-die-when-you-die.mp3
63 31f31c47-2198-449a-a945-88a8779ec4e9 A Tribute to GG Allin Bite It You Scum ['Whiskey Ritual'] Various Artists 4 12 4 2011-12-24 2011 b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT https://musify.club/track/dl/3180334/whiskey-ritual-bite-it-you-scum.mp3
64 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 13 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3
65 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 13 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
66 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 13 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3
67 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 13 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3
68 ba56e565-23b2-457e-87c6-105f2840719a Springtime Depression Todestrieb ['Forgotten Tomb'] Forgotten Tomb 1 14 1 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3
69 6d24644b-5b77-48b0-86d4-37dd656476ae Springtime Depression Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 3 14 3 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3
70 02a56baa-b5d5-420e-b863-d4b055b9eed8 Springtime Depression Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 4 14 4 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3
71 8a963423-0d8c-4c2c-840b-fec50f67e87a Springtime Depression Colourless Despondency ['Forgotten Tomb'] Forgotten Tomb 5 14 5 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3
72 e703154f-5acf-4236-9428-89007907c36b Springtime Depression Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 14 6 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3
73 4fa25bfa-27d1-44af-bc14-33d4c590ea93 Springtime Depression Desolated Funeral ['Forgotten Tomb'] Forgotten Tomb 7 14 7 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3
74 691d2ac1-c64a-40f4-8bdc-01d8525c6a19 Obscura Arcana Mortis Nightfrost ['Forgotten Tomb'] Forgotten Tomb 1 15 1 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3
75 c5736e99-48da-456f-8da9-ba36376d1d30 Obscura Arcana Mortis Nefarious Nights ['Forgotten Tomb'] Forgotten Tomb 2 15 2 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3
76 09544c56-de2d-474c-8944-fcb61108ed02 Obscura Arcana Mortis Forgotten Tomb ['Forgotten Tomb'] Forgotten Tomb 3 15 3 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3
77 8c81bd2b-2fb1-44fe-a348-143ec6862caf Obscura Arcana Mortis Obscura Arcana Mortis ['Forgotten Tomb'] Forgotten Tomb 4 15 4 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3
78 20b26fc7-1921-4b56-ab30-406e64042b25 Obscura Arcana Mortis XXX (Outro) ['Forgotten Tomb'] Forgotten Tomb 5 15 5 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3
79 977ea701-0a35-4327-960d-e6367fd2dcd3 ... And Don't Deliver Us From Evil Deprived ['Forgotten Tomb'] Forgotten Tomb 1 16 1 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3
80 de859b2c-80e3-4639-ac59-e4ba829024ab ... And Don't Deliver Us From Evil ...and Don't Deliver Us From Evil ['Forgotten Tomb'] Forgotten Tomb 2 16 2 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3
81 8ff8711a-c66e-42d3-830d-288d05dcaff1 ... And Don't Deliver Us From Evil Let's Torture Each Other ['Forgotten Tomb'] Forgotten Tomb 4 16 4 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3
82 dd8d8774-87df-4b86-985d-36af394417cd ... And Don't Deliver Us From Evil Love Me Like You'd Love the Death ['Forgotten Tomb'] Forgotten Tomb 5 16 5 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3
83 977ea701-0a35-4327-960d-e6367fd2dcd3 ... And Don't Deliver Us From Evil Deprived ['Forgotten Tomb'] Forgotten Tomb 1 17 1 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3
84 de859b2c-80e3-4639-ac59-e4ba829024ab ... And Don't Deliver Us From Evil ...and Don't Deliver Us From Evil ['Forgotten Tomb'] Forgotten Tomb 2 17 2 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3
85 8ff8711a-c66e-42d3-830d-288d05dcaff1 ... And Don't Deliver Us From Evil Let's Torture Each Other ['Forgotten Tomb'] Forgotten Tomb 4 17 4 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3
86 dd8d8774-87df-4b86-985d-36af394417cd ... And Don't Deliver Us From Evil Love Me Like You'd Love the Death ['Forgotten Tomb'] Forgotten Tomb 5 17 5 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3
87 977ea701-0a35-4327-960d-e6367fd2dcd3 ... And Don't Deliver Us From Evil Deprived ['Forgotten Tomb'] Forgotten Tomb 1 18 1 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3
88 de859b2c-80e3-4639-ac59-e4ba829024ab ... And Don't Deliver Us From Evil ...and Don't Deliver Us From Evil ['Forgotten Tomb'] Forgotten Tomb 2 18 2 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3
89 8ff8711a-c66e-42d3-830d-288d05dcaff1 ... And Don't Deliver Us From Evil Let's Torture Each Other ['Forgotten Tomb'] Forgotten Tomb 4 18 4 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3
90 dd8d8774-87df-4b86-985d-36af394417cd ... And Don't Deliver Us From Evil Love Me Like You'd Love the Death ['Forgotten Tomb'] Forgotten Tomb 5 18 5 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3
91 a7723ddd-3c39-41f9-b1b7-1d33eb20a6f5 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 1 19 1 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3
92 12738217-75dd-4af4-8e1f-42a909918360 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Reject Existence ['Forgotten Tomb'] Forgotten Tomb 2 19 2 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/1425790/forgotten-tomb-reject-existence.mp3
93 c046e71c-ddd8-449d-9a36-cd8400359c46 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Shutter ['Forgotten Tomb'] Forgotten Tomb 3 19 3 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/1425791/forgotten-tomb-shutter.mp3
94 2be04ff6-e7c4-468e-8e9e-d158fecdd55b Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 4 19 4 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
95 d0881ddf-1f34-4669-8c84-528817938c55 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Todestrieb ['Forgotten Tomb'] Forgotten Tomb 5 19 5 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3
96 7fd0308a-0a36-415d-a5b0-bf37ec3c4779 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Spectres Over Venice ['Forgotten Tomb'] Forgotten Tomb 6 19 6 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/1425798/forgotten-tomb-spectres-over-venice.mp3
97 664a6f97-8268-4af3-9287-f33d284e2489 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Disheartenment / Alone / Steal My Corpse (medley) ['Forgotten Tomb'] Forgotten Tomb 7 19 7 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/1057080/forgotten-tomb-disheartenment-alone-steal-my-corpse.mp3
98 ebe2c4fa-7465-4668-beb4-c6dbc92d14e6 Hurt Yourself and the Ones You Love Soulless Upheaval ['Forgotten Tomb'] Forgotten Tomb 1 20 1 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3
99 b2263c64-4de3-49b1-9979-92ebf745105d Hurt Yourself and the Ones You Love King of the Undesirables ['Forgotten Tomb'] Forgotten Tomb 2 20 2 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3
100 e5ebc04d-6d12-419c-b06a-657428f009a1 Hurt Yourself and the Ones You Love Bad Dreams Come True ['Forgotten Tomb'] Forgotten Tomb 3 20 3 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3
101 a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc Hurt Yourself and the Ones You Love Hurt Yourself and the Ones You Love ['Forgotten Tomb'] Forgotten Tomb 4 20 4 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3
102 e6dd8920-f274-4e5e-9f0f-8999919bfefd Hurt Yourself and the Ones You Love Mislead the Snakes ['Forgotten Tomb'] Forgotten Tomb 5 20 5 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3
103 653c8bd6-9b64-4ba8-83dd-d80e36fb3701 Hurt Yourself and the Ones You Love Dread the Sundown ['Forgotten Tomb'] Forgotten Tomb 6 20 6 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3
104 ebe2c4fa-7465-4668-beb4-c6dbc92d14e6 Hurt Yourself and the Ones You Love Soulless Upheaval ['Forgotten Tomb'] Forgotten Tomb 1 21 1 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3
105 b2263c64-4de3-49b1-9979-92ebf745105d Hurt Yourself and the Ones You Love King of the Undesirables ['Forgotten Tomb'] Forgotten Tomb 2 21 2 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3
106 e5ebc04d-6d12-419c-b06a-657428f009a1 Hurt Yourself and the Ones You Love Bad Dreams Come True ['Forgotten Tomb'] Forgotten Tomb 3 21 3 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3
107 a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc Hurt Yourself and the Ones You Love Hurt Yourself and the Ones You Love ['Forgotten Tomb'] Forgotten Tomb 4 21 4 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3
108 e6dd8920-f274-4e5e-9f0f-8999919bfefd Hurt Yourself and the Ones You Love Mislead the Snakes ['Forgotten Tomb'] Forgotten Tomb 5 21 5 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3
109 653c8bd6-9b64-4ba8-83dd-d80e36fb3701 Hurt Yourself and the Ones You Love Dread the Sundown ['Forgotten Tomb'] Forgotten Tomb 6 21 6 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3
110 6fc6a78b-b74c-4dfa-b66a-9079574cc300 Hurt Yourself and the Ones You Love Swallow the Void ['Forgotten Tomb'] Forgotten Tomb 7 21 7 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258827/forgotten-tomb-swallow-the-void.mp3
111 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 22 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3
112 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 22 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3
113 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 22 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3
114 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 22 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3
115 ba56e565-23b2-457e-87c6-105f2840719a Springtime Depression Todestrieb ['Forgotten Tomb'] Forgotten Tomb 1 23 1 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3
116 6d24644b-5b77-48b0-86d4-37dd656476ae Springtime Depression Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 3 23 3 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3
117 02a56baa-b5d5-420e-b863-d4b055b9eed8 Springtime Depression Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 4 23 4 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3
118 8a963423-0d8c-4c2c-840b-fec50f67e87a Springtime Depression Colourless Despondency ['Forgotten Tomb'] Forgotten Tomb 5 23 5 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3
119 e703154f-5acf-4236-9428-89007907c36b Springtime Depression Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 23 6 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3
120 4fa25bfa-27d1-44af-bc14-33d4c590ea93 Springtime Depression Desolated Funeral ['Forgotten Tomb'] Forgotten Tomb 7 23 7 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3
121 ebe2c4fa-7465-4668-beb4-c6dbc92d14e6 Hurt Yourself and the Ones You Love Soulless Upheaval ['Forgotten Tomb'] Forgotten Tomb 1 24 1 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3
122 b2263c64-4de3-49b1-9979-92ebf745105d Hurt Yourself and the Ones You Love King of the Undesirables ['Forgotten Tomb'] Forgotten Tomb 2 24 2 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3
123 e5ebc04d-6d12-419c-b06a-657428f009a1 Hurt Yourself and the Ones You Love Bad Dreams Come True ['Forgotten Tomb'] Forgotten Tomb 3 24 3 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3
124 a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc Hurt Yourself and the Ones You Love Hurt Yourself and the Ones You Love ['Forgotten Tomb'] Forgotten Tomb 4 24 4 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3
125 e6dd8920-f274-4e5e-9f0f-8999919bfefd Hurt Yourself and the Ones You Love Mislead the Snakes ['Forgotten Tomb'] Forgotten Tomb 5 24 5 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3
126 653c8bd6-9b64-4ba8-83dd-d80e36fb3701 Hurt Yourself and the Ones You Love Dread the Sundown ['Forgotten Tomb'] Forgotten Tomb 6 24 6 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3
127 6fc6a78b-b74c-4dfa-b66a-9079574cc300 Hurt Yourself and the Ones You Love Swallow the Void ['Forgotten Tomb'] Forgotten Tomb 7 24 7 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258827/forgotten-tomb-swallow-the-void.mp3

View File

@ -1,129 +1 @@
,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode,url,path,file,genre ""
0,691d2ac1-c64a-40f4-8bdc-01d8525c6a19,Obscura Arcana Mortis,Nightfrost,['Forgotten Tomb'],Forgotten Tomb,1,0,1,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nightfrost.mp3,dsbm
1,c5736e99-48da-456f-8da9-ba36376d1d30,Obscura Arcana Mortis,Nefarious Nights,['Forgotten Tomb'],Forgotten Tomb,2,0,2,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nefarious Nights.mp3,dsbm
2,09544c56-de2d-474c-8944-fcb61108ed02,Obscura Arcana Mortis,Forgotten Tomb,['Forgotten Tomb'],Forgotten Tomb,3,0,3,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Forgotten Tomb.mp3,dsbm
3,8c81bd2b-2fb1-44fe-a348-143ec6862caf,Obscura Arcana Mortis,Obscura Arcana Mortis,['Forgotten Tomb'],Forgotten Tomb,4,0,4,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Obscura Arcana Mortis.mp3,dsbm
4,20b26fc7-1921-4b56-ab30-406e64042b25,Obscura Arcana Mortis,XXX (Outro),['Forgotten Tomb'],Forgotten Tomb,5,0,5,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/XXX (Outro).mp3,dsbm
5,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,1,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Entombed by Winter.mp3,dsbm
6,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,1,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Solitude Ways.mp3,dsbm
7,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,1,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Steal My Corpse.mp3,dsbm
8,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,1,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Disheartenment.mp3,dsbm
9,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,2,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Entombed by Winter.mp3,dsbm
10,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,2,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Solitude Ways.mp3,dsbm
11,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,2,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Steal My Corpse.mp3,dsbm
12,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,2,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Disheartenment.mp3,dsbm
13,c5783c79-7c9b-4a18-aa02-26817c44e66d,Springtime Depression,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,1,3,1,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723.0,https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Todestrieb.mp3,dsbm
14,3fd10f2d-c0a3-4796-8bde-ca896dc2d209,Springtime Depression,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,3,3,3,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723.0,https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Daylight Obsession.mp3,dsbm
15,add38b27-d759-4c34-b7a2-3fde97beff7b,Springtime Depression,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,4,3,4,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723.0,https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Springtime Depression.mp3,dsbm
16,18046de2-c73c-463e-ac8b-5c085c11af18,Springtime Depression,Colourless Despondency,['Forgotten Tomb'],Forgotten Tomb,5,3,5,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723.0,https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Colourless Despondency.mp3,dsbm
17,c32a5fc8-542e-4efe-b4bb-cbbcf954e9b9,Springtime Depression,Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,3,6,,2003-08-04,2003,6cdda84f-1703-4618-aecf-decc6218497f,a4c39d80-de33-4f8c-b474-ba6749654f66,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600723.0,https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Subway Apathy.mp3,dsbm
18,696fde7b-2899-4f10-9a96-24e82d7f8928,Love's Burial Ground,Kill Life,['Forgotten Tomb'],Forgotten Tomb,2,4,2,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891.0,https://musify.club/track/dl/636957/forgotten-tomb-kill-life.mp3,dsbm/Forgotten Tomb/Love's Burial Ground,dsbm/Forgotten Tomb/Love's Burial Ground/Kill Life.mp3,dsbm
19,2ac034d2-97d2-4372-9de7-12313e11a7f5,Love's Burial Ground,House of Nostalgia,['Forgotten Tomb'],Forgotten Tomb,4,4,4,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891.0,https://musify.club/track/dl/636959/forgotten-tomb-house-of-nostalgia.mp3,dsbm/Forgotten Tomb/Love's Burial Ground,dsbm/Forgotten Tomb/Love's Burial Ground/House of Nostalgia.mp3,dsbm
20,f8c3ac89-8502-41ae-bdb3-c8487164560f,Love's Burial Ground,Love's Burial Ground,['Forgotten Tomb'],Forgotten Tomb,6,4,6,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891.0,https://musify.club/track/dl/636961/forgotten-tomb-loves-burial-ground.mp3,dsbm/Forgotten Tomb/Love's Burial Ground,dsbm/Forgotten Tomb/Love's Burial Ground/Love's Burial Ground.mp3,dsbm
21,d8fd7421-e2ce-4686-8749-326eaec89ea2,Love's Burial Ground,Slave to Negativity,['Forgotten Tomb'],Forgotten Tomb,7,4,7,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891.0,https://musify.club/track/dl/636962/forgotten-tomb-slave-to-negativity.mp3,dsbm/Forgotten Tomb/Love's Burial Ground,dsbm/Forgotten Tomb/Love's Burial Ground/Slave to Negativity.mp3,dsbm
22,008a122f-0a59-4004-99db-8d90386392b7,Love's Burial Ground,Forgotten Tomb MMIII,['Forgotten Tomb'],Forgotten Tomb,8,4,8,,2004-09-11,2004,6cdda84f-1703-4618-aecf-decc6218497f,023a4c15-1f1f-484e-b05d-556a534c8e84,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,FR,3700132600891.0,https://musify.club/track/dl/636963/forgotten-tomb-forgotten-tomb-mmiii.mp3,dsbm/Forgotten Tomb/Love's Burial Ground,dsbm/Forgotten Tomb/Love's Burial Ground/Forgotten Tomb MMIII.mp3,dsbm
23,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,5,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Entombed by Winter.mp3,dsbm
24,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,5,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Solitude Ways.mp3,dsbm
25,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,5,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Steal My Corpse.mp3,dsbm
26,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,5,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Disheartenment.mp3,dsbm
27,0a7739c7-b5cf-4441-91c7-e82913027d36,Songs to Leave,Desolated Funeral,['Forgotten Tomb'],Forgotten Tomb,6,5,6,,2005,2005,6cdda84f-1703-4618-aecf-decc6218497f,80ddad38-720b-40ed-b4f3-f969af04d314,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,FR,3700132600938.0,https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Desolated Funeral.mp3,dsbm
28,2d7e3130-5dff-4fcb-8767-4f08b1b08964,Negative Megalomania,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,1,6,1,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/A Dish Best Served Cold.mp3,dsbm
29,62c544d0-9fea-424a-ab3d-b255e0404036,Negative Megalomania,No Rehab (Final Exit),['Forgotten Tomb'],Forgotten Tomb,2,6,2,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/No Rehab (Final Exit).mp3,dsbm
30,fd1e91a8-d816-4f18-816b-5dff6ef9bfc8,Negative Megalomania,Negative Megalomania,['Forgotten Tomb'],Forgotten Tomb,3,6,3,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/Negative Megalomania.mp3,dsbm
31,7a371c04-9fef-41ba-b6b5-515f5eb66297,Negative Megalomania,Blood and Concrete,['Forgotten Tomb'],Forgotten Tomb,5,6,5,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/Blood and Concrete.mp3,dsbm
32,2d7e3130-5dff-4fcb-8767-4f08b1b08964,Negative Megalomania,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,1,7,1,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/A Dish Best Served Cold.mp3,dsbm
33,62c544d0-9fea-424a-ab3d-b255e0404036,Negative Megalomania,No Rehab (Final Exit),['Forgotten Tomb'],Forgotten Tomb,2,7,2,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/No Rehab (Final Exit).mp3,dsbm
34,fd1e91a8-d816-4f18-816b-5dff6ef9bfc8,Negative Megalomania,Negative Megalomania,['Forgotten Tomb'],Forgotten Tomb,3,7,3,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/Negative Megalomania.mp3,dsbm
35,7a371c04-9fef-41ba-b6b5-515f5eb66297,Negative Megalomania,Blood and Concrete,['Forgotten Tomb'],Forgotten Tomb,5,7,5,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/Blood and Concrete.mp3,dsbm
36,691d2ac1-c64a-40f4-8bdc-01d8525c6a19,Obscura Arcana Mortis,Nightfrost,['Forgotten Tomb'],Forgotten Tomb,1,8,1,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nightfrost.mp3,dsbm
37,c5736e99-48da-456f-8da9-ba36376d1d30,Obscura Arcana Mortis,Nefarious Nights,['Forgotten Tomb'],Forgotten Tomb,2,8,2,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nefarious Nights.mp3,dsbm
38,09544c56-de2d-474c-8944-fcb61108ed02,Obscura Arcana Mortis,Forgotten Tomb,['Forgotten Tomb'],Forgotten Tomb,3,8,3,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Forgotten Tomb.mp3,dsbm
39,8c81bd2b-2fb1-44fe-a348-143ec6862caf,Obscura Arcana Mortis,Obscura Arcana Mortis,['Forgotten Tomb'],Forgotten Tomb,4,8,4,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Obscura Arcana Mortis.mp3,dsbm
40,20b26fc7-1921-4b56-ab30-406e64042b25,Obscura Arcana Mortis,XXX (Outro),['Forgotten Tomb'],Forgotten Tomb,5,8,5,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/XXX (Outro).mp3,dsbm
41,53c43172-ab10-42bd-adaa-7672fc1495d7,Obscura Arcana Mortis: The Demo Years,The Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,8,6,,2007,2007,6cdda84f-1703-4618-aecf-decc6218497f,9e2f6d52-a53a-49b5-bb76-12f24dfbea31,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis: The Demo Years,dsbm/Forgotten Tomb/Obscura Arcana Mortis: The Demo Years/The Subway Apathy.mp3,dsbm
42,a717f6aa-bb67-43ea-83a3-5d6626f15f33,Obscura Arcana Mortis: The Demo Years,Entombed by Winter (Ultra Doom version),['Forgotten Tomb'],Forgotten Tomb,7,8,7,,2007,2007,6cdda84f-1703-4618-aecf-decc6218497f,9e2f6d52-a53a-49b5-bb76-12f24dfbea31,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,EP,,IT,,https://musify.club/track/dl/750587/forgotten-tomb-entmbed-by-winter-ultra-doom-version-live-2004.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis: The Demo Years,dsbm/Forgotten Tomb/Obscura Arcana Mortis: The Demo Years/Entombed by Winter (Ultra Doom version).mp3,dsbm
43,01261c12-8b27-42fa-b63d-82297a6f90e3,Vol 5: 1999-2009,Black Sabbath / Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,1,9,1,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1.0,IT,,https://musify.club/track/dl/1057077/forgotten-tomb-black-sabbath-black-sabbath-cover-subway-apathy.mp3,dsbm/Forgotten Tomb/Vol 5: 1999-2009,dsbm/Forgotten Tomb/Vol 5: 1999-2009/Black Sabbath Subway Apathy.mp3,dsbm
44,9ee3bc6d-437d-4b14-9447-d49b473e2ed6,Vol 5: 1999-2009,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,9,2,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1.0,IT,,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3,dsbm/Forgotten Tomb/Vol 5: 1999-2009,dsbm/Forgotten Tomb/Vol 5: 1999-2009/Solitude Ways.mp3,dsbm
45,62a31375-27bc-4599-a809-188516dd3081,Vol 5: 1999-2009,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,3,9,3,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1.0,IT,,https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3,dsbm/Forgotten Tomb/Vol 5: 1999-2009,dsbm/Forgotten Tomb/Vol 5: 1999-2009/A Dish Best Served Cold.mp3,dsbm
46,04eedce1-74a8-434c-94d5-0466038d93f0,Vol 5: 1999-2009,Disheartenment / Alone / Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,4,9,4,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1.0,IT,,https://musify.club/track/dl/1057080/forgotten-tomb-disheartenment-alone-steal-my-corpse.mp3,dsbm/Forgotten Tomb/Vol 5: 1999-2009,dsbm/Forgotten Tomb/Vol 5: 1999-2009/Disheartenment Alone Steal My Corpse.mp3,dsbm
47,ca063619-ab8b-4720-9449-abd06a5b40c7,Vol 5: 1999-2009,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,5,9,5,,2010-08-16,2010,6cdda84f-1703-4618-aecf-decc6218497f,8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Compilation,1.0,IT,,https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3,dsbm/Forgotten Tomb/Vol 5: 1999-2009,dsbm/Forgotten Tomb/Vol 5: 1999-2009/Daylight Obsession.mp3,dsbm
48,7694a2d4-c6a2-4e47-8a45-3db8cb344a46,Under Saturn Retrograde,Reject Existence,['Forgotten Tomb'],Forgotten Tomb,1,10,1,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425790/forgotten-tomb-reject-existence.mp3,dsbm/Forgotten Tomb/Under Saturn Retrograde,dsbm/Forgotten Tomb/Under Saturn Retrograde/Reject Existence.mp3,dsbm
49,0123d374-fa2a-4e99-85c0-db764355cf4e,Under Saturn Retrograde,Shutter,['Forgotten Tomb'],Forgotten Tomb,2,10,2,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425791/forgotten-tomb-shutter.mp3,dsbm/Forgotten Tomb/Under Saturn Retrograde,dsbm/Forgotten Tomb/Under Saturn Retrograde/Shutter.mp3,dsbm
50,402d02c9-bf5e-49f0-8674-ebca88d1885f,Under Saturn Retrograde,Downlift,['Forgotten Tomb'],Forgotten Tomb,3,10,3,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425792/forgotten-tomb-downlift.mp3,dsbm/Forgotten Tomb/Under Saturn Retrograde,dsbm/Forgotten Tomb/Under Saturn Retrograde/Downlift.mp3,dsbm
51,bef8cab2-5984-4d6f-8808-c87f54729eb1,Under Saturn Retrograde,Joyless,['Forgotten Tomb'],Forgotten Tomb,5,10,5,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425794/forgotten-tomb-joyless.mp3,dsbm/Forgotten Tomb/Under Saturn Retrograde,dsbm/Forgotten Tomb/Under Saturn Retrograde/Joyless.mp3,dsbm
52,49e38253-4b8c-4506-bddf-2f8a231981d8,Under Saturn Retrograde,"Under Saturn Retrograde, Part I",['Forgotten Tomb'],Forgotten Tomb,6,10,6,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425795/forgotten-tomb-under-saturn-retrograde-part-i.mp3,dsbm/Forgotten Tomb/Under Saturn Retrograde,"dsbm/Forgotten Tomb/Under Saturn Retrograde/Under Saturn Retrograde, Part I.mp3",dsbm
53,0b943a47-dd88-4676-9293-139d212403e4,Under Saturn Retrograde,"Under Saturn Retrograde, Part II",['Forgotten Tomb'],Forgotten Tomb,7,10,7,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425796/forgotten-tomb-under-saturn-retrograde-part-ii.mp3,dsbm/Forgotten Tomb/Under Saturn Retrograde,"dsbm/Forgotten Tomb/Under Saturn Retrograde/Under Saturn Retrograde, Part II.mp3",dsbm
54,2f4562e5-dfb0-4ef8-bc2c-29f8e153ab28,Under Saturn Retrograde,You Can't Kill Who's Already Dead,['Forgotten Tomb'],Forgotten Tomb,8,10,8,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425797/forgotten-tomb-you-cant-kill-whos-already-dead.mp3,dsbm/Forgotten Tomb/Under Saturn Retrograde,dsbm/Forgotten Tomb/Under Saturn Retrograde/You Can't Kill Who's Already Dead.mp3,dsbm
55,5c3c8e47-2b21-42bd-98a3-d20fc4a74238,Under Saturn Retrograde,Spectres Over Venice,['Forgotten Tomb'],Forgotten Tomb,9,10,9,,2011-04-22,2011,6cdda84f-1703-4618-aecf-decc6218497f,0e92bb6a-1d6e-4f89-97e5-d538de980488,6cdda84f-1703-4618-aecf-decc6218497f,Official,9,eng,Album,,PL,5902020284055.0,https://musify.club/track/dl/1425798/forgotten-tomb-spectres-over-venice.mp3,dsbm/Forgotten Tomb/Under Saturn Retrograde,dsbm/Forgotten Tomb/Under Saturn Retrograde/Spectres Over Venice.mp3,dsbm
56,2d7e3130-5dff-4fcb-8767-4f08b1b08964,Negative Megalomania,A Dish Best Served Cold,['Forgotten Tomb'],Forgotten Tomb,1,11,1,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/A Dish Best Served Cold.mp3,dsbm
57,62c544d0-9fea-424a-ab3d-b255e0404036,Negative Megalomania,No Rehab (Final Exit),['Forgotten Tomb'],Forgotten Tomb,2,11,2,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/No Rehab (Final Exit).mp3,dsbm
58,fd1e91a8-d816-4f18-816b-5dff6ef9bfc8,Negative Megalomania,Negative Megalomania,['Forgotten Tomb'],Forgotten Tomb,3,11,3,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/Negative Megalomania.mp3,dsbm
59,7a371c04-9fef-41ba-b6b5-515f5eb66297,Negative Megalomania,Blood and Concrete,['Forgotten Tomb'],Forgotten Tomb,5,11,5,,2007-01-24,2007,6cdda84f-1703-4618-aecf-decc6218497f,ef48b78f-13f8-4aa0-b368-19fa23cc08c6,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,IT,8033224110943.0,https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3,dsbm/Forgotten Tomb/Negative Megalomania,dsbm/Forgotten Tomb/Negative Megalomania/Blood and Concrete.mp3,dsbm
60,ca007fe0-7e0a-4b59-8264-bea73d1d1314,A Tribute to GG Allin,Expose Yourself to Kids,['Forgotten Tomb'],Various Artists,1,12,1,,2011-12-24,2011,6cdda84f-1703-4618-aecf-decc6218497f,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,,https://musify.club/track/dl/3180336/forgotten-tomb-expose-yourself-to-kids.mp3,dsbm/Forgotten Tomb/A Tribute to GG Allin,dsbm/Forgotten Tomb/A Tribute to GG Allin/Expose Yourself to Kids.mp3,dsbm
61,e46f9baa-4c8a-4e4d-8010-a81fb206f5de,A Tribute to GG Allin,I Kill Everything I Fuck,['Forgotten Tomb'],Various Artists,2,12,2,,2011-12-24,2011,6cdda84f-1703-4618-aecf-decc6218497f,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,,https://musify.club/track/dl/3180338/forgotten-tomb-i-kill-everything-i-fuck.mp3,dsbm/Forgotten Tomb/A Tribute to GG Allin,dsbm/Forgotten Tomb/A Tribute to GG Allin/I Kill Everything I Fuck.mp3,dsbm
62,1435a1e2-c53a-4ddb-96f8-f9987d6323e6,A Tribute to GG Allin,Die When You Die,['Whiskey Ritual'],Various Artists,3,12,3,,2011-12-24,2011,b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,,https://musify.club/track/dl/3180333/whiskey-ritual-die-when-you-die.mp3,dsbm/Whiskey Ritual/A Tribute to GG Allin,dsbm/Whiskey Ritual/A Tribute to GG Allin/Die When You Die.mp3,dsbm
63,31f31c47-2198-449a-a945-88a8779ec4e9,A Tribute to GG Allin,Bite It You Scum,['Whiskey Ritual'],Various Artists,4,12,4,,2011-12-24,2011,b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8,32c84239-6dd7-4056-b68c-1bba67369fab,,Official,4,eng,EP,,IT,,https://musify.club/track/dl/3180334/whiskey-ritual-bite-it-you-scum.mp3,dsbm/Whiskey Ritual/A Tribute to GG Allin,dsbm/Whiskey Ritual/A Tribute to GG Allin/Bite It You Scum.mp3,dsbm
64,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,13,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Entombed by Winter.mp3,dsbm
65,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,13,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Solitude Ways.mp3,dsbm
66,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,13,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Steal My Corpse.mp3,dsbm
67,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,13,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Disheartenment.mp3,dsbm
68,ba56e565-23b2-457e-87c6-105f2840719a,Springtime Depression,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,1,14,1,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Todestrieb.mp3,dsbm
69,6d24644b-5b77-48b0-86d4-37dd656476ae,Springtime Depression,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,3,14,3,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Daylight Obsession.mp3,dsbm
70,02a56baa-b5d5-420e-b863-d4b055b9eed8,Springtime Depression,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,4,14,4,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Springtime Depression.mp3,dsbm
71,8a963423-0d8c-4c2c-840b-fec50f67e87a,Springtime Depression,Colourless Despondency,['Forgotten Tomb'],Forgotten Tomb,5,14,5,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Colourless Despondency.mp3,dsbm
72,e703154f-5acf-4236-9428-89007907c36b,Springtime Depression,Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,14,6,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Subway Apathy.mp3,dsbm
73,4fa25bfa-27d1-44af-bc14-33d4c590ea93,Springtime Depression,Desolated Funeral,['Forgotten Tomb'],Forgotten Tomb,7,14,7,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Desolated Funeral.mp3,dsbm
74,691d2ac1-c64a-40f4-8bdc-01d8525c6a19,Obscura Arcana Mortis,Nightfrost,['Forgotten Tomb'],Forgotten Tomb,1,15,1,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nightfrost.mp3,dsbm
75,c5736e99-48da-456f-8da9-ba36376d1d30,Obscura Arcana Mortis,Nefarious Nights,['Forgotten Tomb'],Forgotten Tomb,2,15,2,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nefarious Nights.mp3,dsbm
76,09544c56-de2d-474c-8944-fcb61108ed02,Obscura Arcana Mortis,Forgotten Tomb,['Forgotten Tomb'],Forgotten Tomb,3,15,3,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Forgotten Tomb.mp3,dsbm
77,8c81bd2b-2fb1-44fe-a348-143ec6862caf,Obscura Arcana Mortis,Obscura Arcana Mortis,['Forgotten Tomb'],Forgotten Tomb,4,15,4,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/Obscura Arcana Mortis.mp3,dsbm
78,20b26fc7-1921-4b56-ab30-406e64042b25,Obscura Arcana Mortis,XXX (Outro),['Forgotten Tomb'],Forgotten Tomb,5,15,5,,2000-06,2000,6cdda84f-1703-4618-aecf-decc6218497f,560b31e4-713d-464f-b4ea-8fbd41417eb3,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,EP,,IT,,https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3,dsbm/Forgotten Tomb/Obscura Arcana Mortis,dsbm/Forgotten Tomb/Obscura Arcana Mortis/XXX (Outro).mp3,dsbm
79,977ea701-0a35-4327-960d-e6367fd2dcd3,... And Don't Deliver Us From Evil,Deprived,['Forgotten Tomb'],Forgotten Tomb,1,16,1,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Deprived.mp3,dsbm
80,de859b2c-80e3-4639-ac59-e4ba829024ab,... And Don't Deliver Us From Evil,...and Don't Deliver Us From Evil,['Forgotten Tomb'],Forgotten Tomb,2,16,2,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/...and Don't Deliver Us From Evil.mp3,dsbm
81,8ff8711a-c66e-42d3-830d-288d05dcaff1,... And Don't Deliver Us From Evil,Let's Torture Each Other,['Forgotten Tomb'],Forgotten Tomb,4,16,4,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Let's Torture Each Other.mp3,dsbm
82,dd8d8774-87df-4b86-985d-36af394417cd,... And Don't Deliver Us From Evil,Love Me Like You'd Love the Death,['Forgotten Tomb'],Forgotten Tomb,5,16,5,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Love Me Like You'd Love the Death.mp3,dsbm
83,977ea701-0a35-4327-960d-e6367fd2dcd3,... And Don't Deliver Us From Evil,Deprived,['Forgotten Tomb'],Forgotten Tomb,1,17,1,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Deprived.mp3,dsbm
84,de859b2c-80e3-4639-ac59-e4ba829024ab,... And Don't Deliver Us From Evil,...and Don't Deliver Us From Evil,['Forgotten Tomb'],Forgotten Tomb,2,17,2,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/...and Don't Deliver Us From Evil.mp3,dsbm
85,8ff8711a-c66e-42d3-830d-288d05dcaff1,... And Don't Deliver Us From Evil,Let's Torture Each Other,['Forgotten Tomb'],Forgotten Tomb,4,17,4,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Let's Torture Each Other.mp3,dsbm
86,dd8d8774-87df-4b86-985d-36af394417cd,... And Don't Deliver Us From Evil,Love Me Like You'd Love the Death,['Forgotten Tomb'],Forgotten Tomb,5,17,5,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Love Me Like You'd Love the Death.mp3,dsbm
87,977ea701-0a35-4327-960d-e6367fd2dcd3,... And Don't Deliver Us From Evil,Deprived,['Forgotten Tomb'],Forgotten Tomb,1,18,1,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,,https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Deprived.mp3,dsbm
88,de859b2c-80e3-4639-ac59-e4ba829024ab,... And Don't Deliver Us From Evil,...and Don't Deliver Us From Evil,['Forgotten Tomb'],Forgotten Tomb,2,18,2,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,,https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/...and Don't Deliver Us From Evil.mp3,dsbm
89,8ff8711a-c66e-42d3-830d-288d05dcaff1,... And Don't Deliver Us From Evil,Let's Torture Each Other,['Forgotten Tomb'],Forgotten Tomb,4,18,4,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,,https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Let's Torture Each Other.mp3,dsbm
90,dd8d8774-87df-4b86-985d-36af394417cd,... And Don't Deliver Us From Evil,Love Me Like You'd Love the Death,['Forgotten Tomb'],Forgotten Tomb,5,18,5,,2012-10-29,2012,6cdda84f-1703-4618-aecf-decc6218497f,20508625-9db4-4a03-b34f-663ed5e85007,6cdda84f-1703-4618-aecf-decc6218497f,Official,8,eng,Album,,XW,,https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil,dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Love Me Like You'd Love the Death.mp3,dsbm
91,a7723ddd-3c39-41f9-b1b7-1d33eb20a6f5,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,1,19,1,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Springtime Depression.mp3,dsbm
92,12738217-75dd-4af4-8e1f-42a909918360,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Reject Existence,['Forgotten Tomb'],Forgotten Tomb,2,19,2,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/1425790/forgotten-tomb-reject-existence.mp3,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Reject Existence.mp3,dsbm
93,c046e71c-ddd8-449d-9a36-cd8400359c46,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Shutter,['Forgotten Tomb'],Forgotten Tomb,3,19,3,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/1425791/forgotten-tomb-shutter.mp3,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Shutter.mp3,dsbm
94,2be04ff6-e7c4-468e-8e9e-d158fecdd55b,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,4,19,4,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Solitude Ways.mp3,dsbm
95,d0881ddf-1f34-4669-8c84-528817938c55,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,5,19,5,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Todestrieb.mp3,dsbm
96,7fd0308a-0a36-415d-a5b0-bf37ec3c4779,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Spectres Over Venice,['Forgotten Tomb'],Forgotten Tomb,6,19,6,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/1425798/forgotten-tomb-spectres-over-venice.mp3,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Spectres Over Venice.mp3,dsbm
97,664a6f97-8268-4af3-9287-f33d284e2489,Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,Disheartenment / Alone / Steal My Corpse (medley),['Forgotten Tomb'],Forgotten Tomb,7,19,7,,2014-04-19,2014,6cdda84f-1703-4618-aecf-decc6218497f,e2c45ef6-647c-4cf4-90cb-53147440a766,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Live,,XW,,https://musify.club/track/dl/1057080/forgotten-tomb-disheartenment-alone-steal-my-corpse.mp3,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany,dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Disheartenment Alone Steal My Corpse (medley).mp3,dsbm
98,ebe2c4fa-7465-4668-beb4-c6dbc92d14e6,Hurt Yourself and the Ones You Love,Soulless Upheaval,['Forgotten Tomb'],Forgotten Tomb,1,20,1,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Soulless Upheaval.mp3,dsbm
99,b2263c64-4de3-49b1-9979-92ebf745105d,Hurt Yourself and the Ones You Love,King of the Undesirables,['Forgotten Tomb'],Forgotten Tomb,2,20,2,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/King of the Undesirables.mp3,dsbm
100,e5ebc04d-6d12-419c-b06a-657428f009a1,Hurt Yourself and the Ones You Love,Bad Dreams Come True,['Forgotten Tomb'],Forgotten Tomb,3,20,3,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Bad Dreams Come True.mp3,dsbm
101,a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc,Hurt Yourself and the Ones You Love,Hurt Yourself and the Ones You Love,['Forgotten Tomb'],Forgotten Tomb,4,20,4,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Hurt Yourself and the Ones You Love.mp3,dsbm
102,e6dd8920-f274-4e5e-9f0f-8999919bfefd,Hurt Yourself and the Ones You Love,Mislead the Snakes,['Forgotten Tomb'],Forgotten Tomb,5,20,5,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Mislead the Snakes.mp3,dsbm
103,653c8bd6-9b64-4ba8-83dd-d80e36fb3701,Hurt Yourself and the Ones You Love,Dread the Sundown,['Forgotten Tomb'],Forgotten Tomb,6,20,6,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,6,eng,Album,,XW,,https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Dread the Sundown.mp3,dsbm
104,ebe2c4fa-7465-4668-beb4-c6dbc92d14e6,Hurt Yourself and the Ones You Love,Soulless Upheaval,['Forgotten Tomb'],Forgotten Tomb,1,21,1,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Soulless Upheaval.mp3,dsbm
105,b2263c64-4de3-49b1-9979-92ebf745105d,Hurt Yourself and the Ones You Love,King of the Undesirables,['Forgotten Tomb'],Forgotten Tomb,2,21,2,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/King of the Undesirables.mp3,dsbm
106,e5ebc04d-6d12-419c-b06a-657428f009a1,Hurt Yourself and the Ones You Love,Bad Dreams Come True,['Forgotten Tomb'],Forgotten Tomb,3,21,3,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Bad Dreams Come True.mp3,dsbm
107,a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc,Hurt Yourself and the Ones You Love,Hurt Yourself and the Ones You Love,['Forgotten Tomb'],Forgotten Tomb,4,21,4,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Hurt Yourself and the Ones You Love.mp3,dsbm
108,e6dd8920-f274-4e5e-9f0f-8999919bfefd,Hurt Yourself and the Ones You Love,Mislead the Snakes,['Forgotten Tomb'],Forgotten Tomb,5,21,5,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Mislead the Snakes.mp3,dsbm
109,653c8bd6-9b64-4ba8-83dd-d80e36fb3701,Hurt Yourself and the Ones You Love,Dread the Sundown,['Forgotten Tomb'],Forgotten Tomb,6,21,6,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Dread the Sundown.mp3,dsbm
110,6fc6a78b-b74c-4dfa-b66a-9079574cc300,Hurt Yourself and the Ones You Love,Swallow the Void,['Forgotten Tomb'],Forgotten Tomb,7,21,7,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258827/forgotten-tomb-swallow-the-void.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Swallow the Void.mp3,dsbm
111,5b3af1f2-72f1-4aad-870d-9bdb7c005442,Songs to Leave,Entombed by Winter,['Forgotten Tomb'],Forgotten Tomb,1,22,1,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Entombed by Winter.mp3,dsbm
112,12b73205-7efe-4b6a-ae22-d7276aff7637,Songs to Leave,Solitude Ways,['Forgotten Tomb'],Forgotten Tomb,2,22,2,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Solitude Ways.mp3,dsbm
113,62c5201b-fdaf-449d-979e-b13c8ea45515,Songs to Leave,Steal My Corpse,['Forgotten Tomb'],Forgotten Tomb,3,22,3,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Steal My Corpse.mp3,dsbm
114,34f170a4-e563-4727-a4eb-cb470d58c5eb,Songs to Leave,Disheartenment,['Forgotten Tomb'],Forgotten Tomb,5,22,5,,2002-08-04,2002,6cdda84f-1703-4618-aecf-decc6218497f,bc646805-8992-3172-a705-5ff99c35f6f8,6cdda84f-1703-4618-aecf-decc6218497f,Official,5,eng,Album,,SE,3700132610661.0,https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3,dsbm/Forgotten Tomb/Songs to Leave,dsbm/Forgotten Tomb/Songs to Leave/Disheartenment.mp3,dsbm
115,ba56e565-23b2-457e-87c6-105f2840719a,Springtime Depression,Todestrieb,['Forgotten Tomb'],Forgotten Tomb,1,23,1,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Todestrieb.mp3,dsbm
116,6d24644b-5b77-48b0-86d4-37dd656476ae,Springtime Depression,Daylight Obsession,['Forgotten Tomb'],Forgotten Tomb,3,23,3,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Daylight Obsession.mp3,dsbm
117,02a56baa-b5d5-420e-b863-d4b055b9eed8,Springtime Depression,Springtime Depression,['Forgotten Tomb'],Forgotten Tomb,4,23,4,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Springtime Depression.mp3,dsbm
118,8a963423-0d8c-4c2c-840b-fec50f67e87a,Springtime Depression,Colourless Despondency,['Forgotten Tomb'],Forgotten Tomb,5,23,5,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Colourless Despondency.mp3,dsbm
119,e703154f-5acf-4236-9428-89007907c36b,Springtime Depression,Subway Apathy,['Forgotten Tomb'],Forgotten Tomb,6,23,6,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Subway Apathy.mp3,dsbm
120,4fa25bfa-27d1-44af-bc14-33d4c590ea93,Springtime Depression,Desolated Funeral,['Forgotten Tomb'],Forgotten Tomb,7,23,7,,2012-01-24,2012,6cdda84f-1703-4618-aecf-decc6218497f,5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,PL,5902020284192.0,https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3,dsbm/Forgotten Tomb/Springtime Depression,dsbm/Forgotten Tomb/Springtime Depression/Desolated Funeral.mp3,dsbm
121,ebe2c4fa-7465-4668-beb4-c6dbc92d14e6,Hurt Yourself and the Ones You Love,Soulless Upheaval,['Forgotten Tomb'],Forgotten Tomb,1,24,1,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Soulless Upheaval.mp3,dsbm
122,b2263c64-4de3-49b1-9979-92ebf745105d,Hurt Yourself and the Ones You Love,King of the Undesirables,['Forgotten Tomb'],Forgotten Tomb,2,24,2,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/King of the Undesirables.mp3,dsbm
123,e5ebc04d-6d12-419c-b06a-657428f009a1,Hurt Yourself and the Ones You Love,Bad Dreams Come True,['Forgotten Tomb'],Forgotten Tomb,3,24,3,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Bad Dreams Come True.mp3,dsbm
124,a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc,Hurt Yourself and the Ones You Love,Hurt Yourself and the Ones You Love,['Forgotten Tomb'],Forgotten Tomb,4,24,4,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Hurt Yourself and the Ones You Love.mp3,dsbm
125,e6dd8920-f274-4e5e-9f0f-8999919bfefd,Hurt Yourself and the Ones You Love,Mislead the Snakes,['Forgotten Tomb'],Forgotten Tomb,5,24,5,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Mislead the Snakes.mp3,dsbm
126,653c8bd6-9b64-4ba8-83dd-d80e36fb3701,Hurt Yourself and the Ones You Love,Dread the Sundown,['Forgotten Tomb'],Forgotten Tomb,6,24,6,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Dread the Sundown.mp3,dsbm
127,6fc6a78b-b74c-4dfa-b66a-9079574cc300,Hurt Yourself and the Ones You Love,Swallow the Void,['Forgotten Tomb'],Forgotten Tomb,7,24,7,,2015-04-17,2015,6cdda84f-1703-4618-aecf-decc6218497f,b261660c-35d3-4801-8c85-f4773d6068f4,6cdda84f-1703-4618-aecf-decc6218497f,Official,7,eng,Album,,XW,,https://musify.club/track/dl/5258827/forgotten-tomb-swallow-the-void.mp3,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love,dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Swallow the Void.mp3,dsbm

1 id album title artist album_artist tracknumber albumsort titlesort isrc date year musicbrainz_artistid musicbrainz_albumid musicbrainz_albumartistid musicbrainz_albumstatus total_tracks language musicbrainz_albumtype compilation releasecountry barcode url path file genre
0 691d2ac1-c64a-40f4-8bdc-01d8525c6a19 Obscura Arcana Mortis Nightfrost ['Forgotten Tomb'] Forgotten Tomb 1 0 1 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nightfrost.mp3 dsbm
1 c5736e99-48da-456f-8da9-ba36376d1d30 Obscura Arcana Mortis Nefarious Nights ['Forgotten Tomb'] Forgotten Tomb 2 0 2 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nefarious Nights.mp3 dsbm
2 09544c56-de2d-474c-8944-fcb61108ed02 Obscura Arcana Mortis Forgotten Tomb ['Forgotten Tomb'] Forgotten Tomb 3 0 3 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Forgotten Tomb.mp3 dsbm
3 8c81bd2b-2fb1-44fe-a348-143ec6862caf Obscura Arcana Mortis Obscura Arcana Mortis ['Forgotten Tomb'] Forgotten Tomb 4 0 4 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Obscura Arcana Mortis.mp3 dsbm
4 20b26fc7-1921-4b56-ab30-406e64042b25 Obscura Arcana Mortis XXX (Outro) ['Forgotten Tomb'] Forgotten Tomb 5 0 5 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/XXX (Outro).mp3 dsbm
5 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 1 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Entombed by Winter.mp3 dsbm
6 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 1 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Solitude Ways.mp3 dsbm
7 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 1 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Steal My Corpse.mp3 dsbm
8 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 1 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Disheartenment.mp3 dsbm
9 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 2 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Entombed by Winter.mp3 dsbm
10 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 2 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Solitude Ways.mp3 dsbm
11 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 2 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Steal My Corpse.mp3 dsbm
12 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 2 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Disheartenment.mp3 dsbm
13 c5783c79-7c9b-4a18-aa02-26817c44e66d Springtime Depression Todestrieb ['Forgotten Tomb'] Forgotten Tomb 1 3 1 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723.0 https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Todestrieb.mp3 dsbm
14 3fd10f2d-c0a3-4796-8bde-ca896dc2d209 Springtime Depression Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 3 3 3 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723.0 https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Daylight Obsession.mp3 dsbm
15 add38b27-d759-4c34-b7a2-3fde97beff7b Springtime Depression Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 4 3 4 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723.0 https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Springtime Depression.mp3 dsbm
16 18046de2-c73c-463e-ac8b-5c085c11af18 Springtime Depression Colourless Despondency ['Forgotten Tomb'] Forgotten Tomb 5 3 5 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723.0 https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Colourless Despondency.mp3 dsbm
17 c32a5fc8-542e-4efe-b4bb-cbbcf954e9b9 Springtime Depression Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 3 6 2003-08-04 2003 6cdda84f-1703-4618-aecf-decc6218497f a4c39d80-de33-4f8c-b474-ba6749654f66 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600723.0 https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Subway Apathy.mp3 dsbm
18 696fde7b-2899-4f10-9a96-24e82d7f8928 Love's Burial Ground Kill Life ['Forgotten Tomb'] Forgotten Tomb 2 4 2 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891.0 https://musify.club/track/dl/636957/forgotten-tomb-kill-life.mp3 dsbm/Forgotten Tomb/Love's Burial Ground dsbm/Forgotten Tomb/Love's Burial Ground/Kill Life.mp3 dsbm
19 2ac034d2-97d2-4372-9de7-12313e11a7f5 Love's Burial Ground House of Nostalgia ['Forgotten Tomb'] Forgotten Tomb 4 4 4 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891.0 https://musify.club/track/dl/636959/forgotten-tomb-house-of-nostalgia.mp3 dsbm/Forgotten Tomb/Love's Burial Ground dsbm/Forgotten Tomb/Love's Burial Ground/House of Nostalgia.mp3 dsbm
20 f8c3ac89-8502-41ae-bdb3-c8487164560f Love's Burial Ground Love's Burial Ground ['Forgotten Tomb'] Forgotten Tomb 6 4 6 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891.0 https://musify.club/track/dl/636961/forgotten-tomb-loves-burial-ground.mp3 dsbm/Forgotten Tomb/Love's Burial Ground dsbm/Forgotten Tomb/Love's Burial Ground/Love's Burial Ground.mp3 dsbm
21 d8fd7421-e2ce-4686-8749-326eaec89ea2 Love's Burial Ground Slave to Negativity ['Forgotten Tomb'] Forgotten Tomb 7 4 7 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891.0 https://musify.club/track/dl/636962/forgotten-tomb-slave-to-negativity.mp3 dsbm/Forgotten Tomb/Love's Burial Ground dsbm/Forgotten Tomb/Love's Burial Ground/Slave to Negativity.mp3 dsbm
22 008a122f-0a59-4004-99db-8d90386392b7 Love's Burial Ground Forgotten Tomb MMIII ['Forgotten Tomb'] Forgotten Tomb 8 4 8 2004-09-11 2004 6cdda84f-1703-4618-aecf-decc6218497f 023a4c15-1f1f-484e-b05d-556a534c8e84 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album FR 3700132600891.0 https://musify.club/track/dl/636963/forgotten-tomb-forgotten-tomb-mmiii.mp3 dsbm/Forgotten Tomb/Love's Burial Ground dsbm/Forgotten Tomb/Love's Burial Ground/Forgotten Tomb MMIII.mp3 dsbm
23 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 5 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661.0 https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Entombed by Winter.mp3 dsbm
24 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 5 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661.0 https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Solitude Ways.mp3 dsbm
25 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 5 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661.0 https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Steal My Corpse.mp3 dsbm
26 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 5 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album SE 3700132610661.0 https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Disheartenment.mp3 dsbm
27 0a7739c7-b5cf-4441-91c7-e82913027d36 Songs to Leave Desolated Funeral ['Forgotten Tomb'] Forgotten Tomb 6 5 6 2005 2005 6cdda84f-1703-4618-aecf-decc6218497f 80ddad38-720b-40ed-b4f3-f969af04d314 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album FR 3700132600938.0 https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Desolated Funeral.mp3 dsbm
28 2d7e3130-5dff-4fcb-8767-4f08b1b08964 Negative Megalomania A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 1 6 1 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/A Dish Best Served Cold.mp3 dsbm
29 62c544d0-9fea-424a-ab3d-b255e0404036 Negative Megalomania No Rehab (Final Exit) ['Forgotten Tomb'] Forgotten Tomb 2 6 2 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/No Rehab (Final Exit).mp3 dsbm
30 fd1e91a8-d816-4f18-816b-5dff6ef9bfc8 Negative Megalomania Negative Megalomania ['Forgotten Tomb'] Forgotten Tomb 3 6 3 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/Negative Megalomania.mp3 dsbm
31 7a371c04-9fef-41ba-b6b5-515f5eb66297 Negative Megalomania Blood and Concrete ['Forgotten Tomb'] Forgotten Tomb 5 6 5 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/Blood and Concrete.mp3 dsbm
32 2d7e3130-5dff-4fcb-8767-4f08b1b08964 Negative Megalomania A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 1 7 1 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/A Dish Best Served Cold.mp3 dsbm
33 62c544d0-9fea-424a-ab3d-b255e0404036 Negative Megalomania No Rehab (Final Exit) ['Forgotten Tomb'] Forgotten Tomb 2 7 2 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/No Rehab (Final Exit).mp3 dsbm
34 fd1e91a8-d816-4f18-816b-5dff6ef9bfc8 Negative Megalomania Negative Megalomania ['Forgotten Tomb'] Forgotten Tomb 3 7 3 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/Negative Megalomania.mp3 dsbm
35 7a371c04-9fef-41ba-b6b5-515f5eb66297 Negative Megalomania Blood and Concrete ['Forgotten Tomb'] Forgotten Tomb 5 7 5 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/Blood and Concrete.mp3 dsbm
36 691d2ac1-c64a-40f4-8bdc-01d8525c6a19 Obscura Arcana Mortis Nightfrost ['Forgotten Tomb'] Forgotten Tomb 1 8 1 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nightfrost.mp3 dsbm
37 c5736e99-48da-456f-8da9-ba36376d1d30 Obscura Arcana Mortis Nefarious Nights ['Forgotten Tomb'] Forgotten Tomb 2 8 2 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nefarious Nights.mp3 dsbm
38 09544c56-de2d-474c-8944-fcb61108ed02 Obscura Arcana Mortis Forgotten Tomb ['Forgotten Tomb'] Forgotten Tomb 3 8 3 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Forgotten Tomb.mp3 dsbm
39 8c81bd2b-2fb1-44fe-a348-143ec6862caf Obscura Arcana Mortis Obscura Arcana Mortis ['Forgotten Tomb'] Forgotten Tomb 4 8 4 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Obscura Arcana Mortis.mp3 dsbm
40 20b26fc7-1921-4b56-ab30-406e64042b25 Obscura Arcana Mortis XXX (Outro) ['Forgotten Tomb'] Forgotten Tomb 5 8 5 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/XXX (Outro).mp3 dsbm
41 53c43172-ab10-42bd-adaa-7672fc1495d7 Obscura Arcana Mortis: The Demo Years The Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 8 6 2007 2007 6cdda84f-1703-4618-aecf-decc6218497f 9e2f6d52-a53a-49b5-bb76-12f24dfbea31 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis: The Demo Years dsbm/Forgotten Tomb/Obscura Arcana Mortis: The Demo Years/The Subway Apathy.mp3 dsbm
42 a717f6aa-bb67-43ea-83a3-5d6626f15f33 Obscura Arcana Mortis: The Demo Years Entombed by Winter (Ultra Doom version) ['Forgotten Tomb'] Forgotten Tomb 7 8 7 2007 2007 6cdda84f-1703-4618-aecf-decc6218497f 9e2f6d52-a53a-49b5-bb76-12f24dfbea31 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng EP IT https://musify.club/track/dl/750587/forgotten-tomb-entmbed-by-winter-ultra-doom-version-live-2004.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis: The Demo Years dsbm/Forgotten Tomb/Obscura Arcana Mortis: The Demo Years/Entombed by Winter (Ultra Doom version).mp3 dsbm
43 01261c12-8b27-42fa-b63d-82297a6f90e3 Vol 5: 1999-2009 Black Sabbath / Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 1 9 1 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1.0 IT https://musify.club/track/dl/1057077/forgotten-tomb-black-sabbath-black-sabbath-cover-subway-apathy.mp3 dsbm/Forgotten Tomb/Vol 5: 1999-2009 dsbm/Forgotten Tomb/Vol 5: 1999-2009/Black Sabbath Subway Apathy.mp3 dsbm
44 9ee3bc6d-437d-4b14-9447-d49b473e2ed6 Vol 5: 1999-2009 Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 9 2 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1.0 IT https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3 dsbm/Forgotten Tomb/Vol 5: 1999-2009 dsbm/Forgotten Tomb/Vol 5: 1999-2009/Solitude Ways.mp3 dsbm
45 62a31375-27bc-4599-a809-188516dd3081 Vol 5: 1999-2009 A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 3 9 3 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1.0 IT https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3 dsbm/Forgotten Tomb/Vol 5: 1999-2009 dsbm/Forgotten Tomb/Vol 5: 1999-2009/A Dish Best Served Cold.mp3 dsbm
46 04eedce1-74a8-434c-94d5-0466038d93f0 Vol 5: 1999-2009 Disheartenment / Alone / Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 4 9 4 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1.0 IT https://musify.club/track/dl/1057080/forgotten-tomb-disheartenment-alone-steal-my-corpse.mp3 dsbm/Forgotten Tomb/Vol 5: 1999-2009 dsbm/Forgotten Tomb/Vol 5: 1999-2009/Disheartenment Alone Steal My Corpse.mp3 dsbm
47 ca063619-ab8b-4720-9449-abd06a5b40c7 Vol 5: 1999-2009 Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 5 9 5 2010-08-16 2010 6cdda84f-1703-4618-aecf-decc6218497f 8020c7fb-a7e1-4d75-b6b5-3e5cbe7667e8 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Compilation 1.0 IT https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3 dsbm/Forgotten Tomb/Vol 5: 1999-2009 dsbm/Forgotten Tomb/Vol 5: 1999-2009/Daylight Obsession.mp3 dsbm
48 7694a2d4-c6a2-4e47-8a45-3db8cb344a46 Under Saturn Retrograde Reject Existence ['Forgotten Tomb'] Forgotten Tomb 1 10 1 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425790/forgotten-tomb-reject-existence.mp3 dsbm/Forgotten Tomb/Under Saturn Retrograde dsbm/Forgotten Tomb/Under Saturn Retrograde/Reject Existence.mp3 dsbm
49 0123d374-fa2a-4e99-85c0-db764355cf4e Under Saturn Retrograde Shutter ['Forgotten Tomb'] Forgotten Tomb 2 10 2 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425791/forgotten-tomb-shutter.mp3 dsbm/Forgotten Tomb/Under Saturn Retrograde dsbm/Forgotten Tomb/Under Saturn Retrograde/Shutter.mp3 dsbm
50 402d02c9-bf5e-49f0-8674-ebca88d1885f Under Saturn Retrograde Downlift ['Forgotten Tomb'] Forgotten Tomb 3 10 3 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425792/forgotten-tomb-downlift.mp3 dsbm/Forgotten Tomb/Under Saturn Retrograde dsbm/Forgotten Tomb/Under Saturn Retrograde/Downlift.mp3 dsbm
51 bef8cab2-5984-4d6f-8808-c87f54729eb1 Under Saturn Retrograde Joyless ['Forgotten Tomb'] Forgotten Tomb 5 10 5 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425794/forgotten-tomb-joyless.mp3 dsbm/Forgotten Tomb/Under Saturn Retrograde dsbm/Forgotten Tomb/Under Saturn Retrograde/Joyless.mp3 dsbm
52 49e38253-4b8c-4506-bddf-2f8a231981d8 Under Saturn Retrograde Under Saturn Retrograde, Part I ['Forgotten Tomb'] Forgotten Tomb 6 10 6 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425795/forgotten-tomb-under-saturn-retrograde-part-i.mp3 dsbm/Forgotten Tomb/Under Saturn Retrograde dsbm/Forgotten Tomb/Under Saturn Retrograde/Under Saturn Retrograde, Part I.mp3 dsbm
53 0b943a47-dd88-4676-9293-139d212403e4 Under Saturn Retrograde Under Saturn Retrograde, Part II ['Forgotten Tomb'] Forgotten Tomb 7 10 7 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425796/forgotten-tomb-under-saturn-retrograde-part-ii.mp3 dsbm/Forgotten Tomb/Under Saturn Retrograde dsbm/Forgotten Tomb/Under Saturn Retrograde/Under Saturn Retrograde, Part II.mp3 dsbm
54 2f4562e5-dfb0-4ef8-bc2c-29f8e153ab28 Under Saturn Retrograde You Can't Kill Who's Already Dead ['Forgotten Tomb'] Forgotten Tomb 8 10 8 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425797/forgotten-tomb-you-cant-kill-whos-already-dead.mp3 dsbm/Forgotten Tomb/Under Saturn Retrograde dsbm/Forgotten Tomb/Under Saturn Retrograde/You Can't Kill Who's Already Dead.mp3 dsbm
55 5c3c8e47-2b21-42bd-98a3-d20fc4a74238 Under Saturn Retrograde Spectres Over Venice ['Forgotten Tomb'] Forgotten Tomb 9 10 9 2011-04-22 2011 6cdda84f-1703-4618-aecf-decc6218497f 0e92bb6a-1d6e-4f89-97e5-d538de980488 6cdda84f-1703-4618-aecf-decc6218497f Official 9 eng Album PL 5902020284055.0 https://musify.club/track/dl/1425798/forgotten-tomb-spectres-over-venice.mp3 dsbm/Forgotten Tomb/Under Saturn Retrograde dsbm/Forgotten Tomb/Under Saturn Retrograde/Spectres Over Venice.mp3 dsbm
56 2d7e3130-5dff-4fcb-8767-4f08b1b08964 Negative Megalomania A Dish Best Served Cold ['Forgotten Tomb'] Forgotten Tomb 1 11 1 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637004/forgotten-tomb-a-dish-best-served-cold.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/A Dish Best Served Cold.mp3 dsbm
57 62c544d0-9fea-424a-ab3d-b255e0404036 Negative Megalomania No Rehab (Final Exit) ['Forgotten Tomb'] Forgotten Tomb 2 11 2 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637005/forgotten-tomb-no-rehab-final-exit.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/No Rehab (Final Exit).mp3 dsbm
58 fd1e91a8-d816-4f18-816b-5dff6ef9bfc8 Negative Megalomania Negative Megalomania ['Forgotten Tomb'] Forgotten Tomb 3 11 3 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637006/forgotten-tomb-negative-megalomania.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/Negative Megalomania.mp3 dsbm
59 7a371c04-9fef-41ba-b6b5-515f5eb66297 Negative Megalomania Blood and Concrete ['Forgotten Tomb'] Forgotten Tomb 5 11 5 2007-01-24 2007 6cdda84f-1703-4618-aecf-decc6218497f ef48b78f-13f8-4aa0-b368-19fa23cc08c6 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album IT 8033224110943.0 https://musify.club/track/dl/637008/forgotten-tomb-blood-and-concrete.mp3 dsbm/Forgotten Tomb/Negative Megalomania dsbm/Forgotten Tomb/Negative Megalomania/Blood and Concrete.mp3 dsbm
60 ca007fe0-7e0a-4b59-8264-bea73d1d1314 A Tribute to GG Allin Expose Yourself to Kids ['Forgotten Tomb'] Various Artists 1 12 1 2011-12-24 2011 6cdda84f-1703-4618-aecf-decc6218497f 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT https://musify.club/track/dl/3180336/forgotten-tomb-expose-yourself-to-kids.mp3 dsbm/Forgotten Tomb/A Tribute to GG Allin dsbm/Forgotten Tomb/A Tribute to GG Allin/Expose Yourself to Kids.mp3 dsbm
61 e46f9baa-4c8a-4e4d-8010-a81fb206f5de A Tribute to GG Allin I Kill Everything I Fuck ['Forgotten Tomb'] Various Artists 2 12 2 2011-12-24 2011 6cdda84f-1703-4618-aecf-decc6218497f 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT https://musify.club/track/dl/3180338/forgotten-tomb-i-kill-everything-i-fuck.mp3 dsbm/Forgotten Tomb/A Tribute to GG Allin dsbm/Forgotten Tomb/A Tribute to GG Allin/I Kill Everything I Fuck.mp3 dsbm
62 1435a1e2-c53a-4ddb-96f8-f9987d6323e6 A Tribute to GG Allin Die When You Die ['Whiskey Ritual'] Various Artists 3 12 3 2011-12-24 2011 b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT https://musify.club/track/dl/3180333/whiskey-ritual-die-when-you-die.mp3 dsbm/Whiskey Ritual/A Tribute to GG Allin dsbm/Whiskey Ritual/A Tribute to GG Allin/Die When You Die.mp3 dsbm
63 31f31c47-2198-449a-a945-88a8779ec4e9 A Tribute to GG Allin Bite It You Scum ['Whiskey Ritual'] Various Artists 4 12 4 2011-12-24 2011 b5ca9f42-2bf6-4344-8ae7-47e82f53f1c8 32c84239-6dd7-4056-b68c-1bba67369fab Official 4 eng EP IT https://musify.club/track/dl/3180334/whiskey-ritual-bite-it-you-scum.mp3 dsbm/Whiskey Ritual/A Tribute to GG Allin dsbm/Whiskey Ritual/A Tribute to GG Allin/Bite It You Scum.mp3 dsbm
64 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 13 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Entombed by Winter.mp3 dsbm
65 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 13 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Solitude Ways.mp3 dsbm
66 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 13 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Steal My Corpse.mp3 dsbm
67 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 13 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Disheartenment.mp3 dsbm
68 ba56e565-23b2-457e-87c6-105f2840719a Springtime Depression Todestrieb ['Forgotten Tomb'] Forgotten Tomb 1 14 1 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Todestrieb.mp3 dsbm
69 6d24644b-5b77-48b0-86d4-37dd656476ae Springtime Depression Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 3 14 3 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Daylight Obsession.mp3 dsbm
70 02a56baa-b5d5-420e-b863-d4b055b9eed8 Springtime Depression Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 4 14 4 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Springtime Depression.mp3 dsbm
71 8a963423-0d8c-4c2c-840b-fec50f67e87a Springtime Depression Colourless Despondency ['Forgotten Tomb'] Forgotten Tomb 5 14 5 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Colourless Despondency.mp3 dsbm
72 e703154f-5acf-4236-9428-89007907c36b Springtime Depression Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 14 6 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Subway Apathy.mp3 dsbm
73 4fa25bfa-27d1-44af-bc14-33d4c590ea93 Springtime Depression Desolated Funeral ['Forgotten Tomb'] Forgotten Tomb 7 14 7 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Desolated Funeral.mp3 dsbm
74 691d2ac1-c64a-40f4-8bdc-01d8525c6a19 Obscura Arcana Mortis Nightfrost ['Forgotten Tomb'] Forgotten Tomb 1 15 1 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729465/forgotten-tomb-nightfrost.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nightfrost.mp3 dsbm
75 c5736e99-48da-456f-8da9-ba36376d1d30 Obscura Arcana Mortis Nefarious Nights ['Forgotten Tomb'] Forgotten Tomb 2 15 2 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729466/forgotten-tomb-nefarious-nights.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Nefarious Nights.mp3 dsbm
76 09544c56-de2d-474c-8944-fcb61108ed02 Obscura Arcana Mortis Forgotten Tomb ['Forgotten Tomb'] Forgotten Tomb 3 15 3 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729467/forgotten-tomb-forgotten-tomb.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Forgotten Tomb.mp3 dsbm
77 8c81bd2b-2fb1-44fe-a348-143ec6862caf Obscura Arcana Mortis Obscura Arcana Mortis ['Forgotten Tomb'] Forgotten Tomb 4 15 4 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729468/forgotten-tomb-obscura-arcana-mortis.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/Obscura Arcana Mortis.mp3 dsbm
78 20b26fc7-1921-4b56-ab30-406e64042b25 Obscura Arcana Mortis XXX (Outro) ['Forgotten Tomb'] Forgotten Tomb 5 15 5 2000-06 2000 6cdda84f-1703-4618-aecf-decc6218497f 560b31e4-713d-464f-b4ea-8fbd41417eb3 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng EP IT https://musify.club/track/dl/729469/forgotten-tomb-xxx-outro.mp3 dsbm/Forgotten Tomb/Obscura Arcana Mortis dsbm/Forgotten Tomb/Obscura Arcana Mortis/XXX (Outro).mp3 dsbm
79 977ea701-0a35-4327-960d-e6367fd2dcd3 ... And Don't Deliver Us From Evil Deprived ['Forgotten Tomb'] Forgotten Tomb 1 16 1 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Deprived.mp3 dsbm
80 de859b2c-80e3-4639-ac59-e4ba829024ab ... And Don't Deliver Us From Evil ...and Don't Deliver Us From Evil ['Forgotten Tomb'] Forgotten Tomb 2 16 2 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/...and Don't Deliver Us From Evil.mp3 dsbm
81 8ff8711a-c66e-42d3-830d-288d05dcaff1 ... And Don't Deliver Us From Evil Let's Torture Each Other ['Forgotten Tomb'] Forgotten Tomb 4 16 4 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Let's Torture Each Other.mp3 dsbm
82 dd8d8774-87df-4b86-985d-36af394417cd ... And Don't Deliver Us From Evil Love Me Like You'd Love the Death ['Forgotten Tomb'] Forgotten Tomb 5 16 5 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Love Me Like You'd Love the Death.mp3 dsbm
83 977ea701-0a35-4327-960d-e6367fd2dcd3 ... And Don't Deliver Us From Evil Deprived ['Forgotten Tomb'] Forgotten Tomb 1 17 1 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Deprived.mp3 dsbm
84 de859b2c-80e3-4639-ac59-e4ba829024ab ... And Don't Deliver Us From Evil ...and Don't Deliver Us From Evil ['Forgotten Tomb'] Forgotten Tomb 2 17 2 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/...and Don't Deliver Us From Evil.mp3 dsbm
85 8ff8711a-c66e-42d3-830d-288d05dcaff1 ... And Don't Deliver Us From Evil Let's Torture Each Other ['Forgotten Tomb'] Forgotten Tomb 4 17 4 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Let's Torture Each Other.mp3 dsbm
86 dd8d8774-87df-4b86-985d-36af394417cd ... And Don't Deliver Us From Evil Love Me Like You'd Love the Death ['Forgotten Tomb'] Forgotten Tomb 5 17 5 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Love Me Like You'd Love the Death.mp3 dsbm
87 977ea701-0a35-4327-960d-e6367fd2dcd3 ... And Don't Deliver Us From Evil Deprived ['Forgotten Tomb'] Forgotten Tomb 1 18 1 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW https://musify.club/track/dl/2775425/forgotten-tomb-deprived.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Deprived.mp3 dsbm
88 de859b2c-80e3-4639-ac59-e4ba829024ab ... And Don't Deliver Us From Evil ...and Don't Deliver Us From Evil ['Forgotten Tomb'] Forgotten Tomb 2 18 2 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW https://musify.club/track/dl/2775426/forgotten-tomb-and-dont-deliver-us-from-evil.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/...and Don't Deliver Us From Evil.mp3 dsbm
89 8ff8711a-c66e-42d3-830d-288d05dcaff1 ... And Don't Deliver Us From Evil Let's Torture Each Other ['Forgotten Tomb'] Forgotten Tomb 4 18 4 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW https://musify.club/track/dl/2775428/forgotten-tomb-lets-torture-each-other.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Let's Torture Each Other.mp3 dsbm
90 dd8d8774-87df-4b86-985d-36af394417cd ... And Don't Deliver Us From Evil Love Me Like You'd Love the Death ['Forgotten Tomb'] Forgotten Tomb 5 18 5 2012-10-29 2012 6cdda84f-1703-4618-aecf-decc6218497f 20508625-9db4-4a03-b34f-663ed5e85007 6cdda84f-1703-4618-aecf-decc6218497f Official 8 eng Album XW https://musify.club/track/dl/2775429/forgotten-tomb-love-me-like-youd-love-the-death.mp3 dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil dsbm/Forgotten Tomb/... And Don't Deliver Us From Evil/Love Me Like You'd Love the Death.mp3 dsbm
91 a7723ddd-3c39-41f9-b1b7-1d33eb20a6f5 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 1 19 1 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3 dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Springtime Depression.mp3 dsbm
92 12738217-75dd-4af4-8e1f-42a909918360 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Reject Existence ['Forgotten Tomb'] Forgotten Tomb 2 19 2 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/1425790/forgotten-tomb-reject-existence.mp3 dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Reject Existence.mp3 dsbm
93 c046e71c-ddd8-449d-9a36-cd8400359c46 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Shutter ['Forgotten Tomb'] Forgotten Tomb 3 19 3 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/1425791/forgotten-tomb-shutter.mp3 dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Shutter.mp3 dsbm
94 2be04ff6-e7c4-468e-8e9e-d158fecdd55b Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 4 19 4 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3 dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Solitude Ways.mp3 dsbm
95 d0881ddf-1f34-4669-8c84-528817938c55 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Todestrieb ['Forgotten Tomb'] Forgotten Tomb 5 19 5 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3 dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Todestrieb.mp3 dsbm
96 7fd0308a-0a36-415d-a5b0-bf37ec3c4779 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Spectres Over Venice ['Forgotten Tomb'] Forgotten Tomb 6 19 6 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/1425798/forgotten-tomb-spectres-over-venice.mp3 dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Spectres Over Venice.mp3 dsbm
97 664a6f97-8268-4af3-9287-f33d284e2489 Darkness in Stereo: Eine Symphonie des Todes - Live in Germany Disheartenment / Alone / Steal My Corpse (medley) ['Forgotten Tomb'] Forgotten Tomb 7 19 7 2014-04-19 2014 6cdda84f-1703-4618-aecf-decc6218497f e2c45ef6-647c-4cf4-90cb-53147440a766 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Live XW https://musify.club/track/dl/1057080/forgotten-tomb-disheartenment-alone-steal-my-corpse.mp3 dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany dsbm/Forgotten Tomb/Darkness in Stereo: Eine Symphonie des Todes - Live in Germany/Disheartenment Alone Steal My Corpse (medley).mp3 dsbm
98 ebe2c4fa-7465-4668-beb4-c6dbc92d14e6 Hurt Yourself and the Ones You Love Soulless Upheaval ['Forgotten Tomb'] Forgotten Tomb 1 20 1 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Soulless Upheaval.mp3 dsbm
99 b2263c64-4de3-49b1-9979-92ebf745105d Hurt Yourself and the Ones You Love King of the Undesirables ['Forgotten Tomb'] Forgotten Tomb 2 20 2 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/King of the Undesirables.mp3 dsbm
100 e5ebc04d-6d12-419c-b06a-657428f009a1 Hurt Yourself and the Ones You Love Bad Dreams Come True ['Forgotten Tomb'] Forgotten Tomb 3 20 3 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Bad Dreams Come True.mp3 dsbm
101 a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc Hurt Yourself and the Ones You Love Hurt Yourself and the Ones You Love ['Forgotten Tomb'] Forgotten Tomb 4 20 4 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Hurt Yourself and the Ones You Love.mp3 dsbm
102 e6dd8920-f274-4e5e-9f0f-8999919bfefd Hurt Yourself and the Ones You Love Mislead the Snakes ['Forgotten Tomb'] Forgotten Tomb 5 20 5 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Mislead the Snakes.mp3 dsbm
103 653c8bd6-9b64-4ba8-83dd-d80e36fb3701 Hurt Yourself and the Ones You Love Dread the Sundown ['Forgotten Tomb'] Forgotten Tomb 6 20 6 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 6 eng Album XW https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Dread the Sundown.mp3 dsbm
104 ebe2c4fa-7465-4668-beb4-c6dbc92d14e6 Hurt Yourself and the Ones You Love Soulless Upheaval ['Forgotten Tomb'] Forgotten Tomb 1 21 1 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Soulless Upheaval.mp3 dsbm
105 b2263c64-4de3-49b1-9979-92ebf745105d Hurt Yourself and the Ones You Love King of the Undesirables ['Forgotten Tomb'] Forgotten Tomb 2 21 2 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/King of the Undesirables.mp3 dsbm
106 e5ebc04d-6d12-419c-b06a-657428f009a1 Hurt Yourself and the Ones You Love Bad Dreams Come True ['Forgotten Tomb'] Forgotten Tomb 3 21 3 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Bad Dreams Come True.mp3 dsbm
107 a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc Hurt Yourself and the Ones You Love Hurt Yourself and the Ones You Love ['Forgotten Tomb'] Forgotten Tomb 4 21 4 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Hurt Yourself and the Ones You Love.mp3 dsbm
108 e6dd8920-f274-4e5e-9f0f-8999919bfefd Hurt Yourself and the Ones You Love Mislead the Snakes ['Forgotten Tomb'] Forgotten Tomb 5 21 5 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Mislead the Snakes.mp3 dsbm
109 653c8bd6-9b64-4ba8-83dd-d80e36fb3701 Hurt Yourself and the Ones You Love Dread the Sundown ['Forgotten Tomb'] Forgotten Tomb 6 21 6 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Dread the Sundown.mp3 dsbm
110 6fc6a78b-b74c-4dfa-b66a-9079574cc300 Hurt Yourself and the Ones You Love Swallow the Void ['Forgotten Tomb'] Forgotten Tomb 7 21 7 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258827/forgotten-tomb-swallow-the-void.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Swallow the Void.mp3 dsbm
111 5b3af1f2-72f1-4aad-870d-9bdb7c005442 Songs to Leave Entombed by Winter ['Forgotten Tomb'] Forgotten Tomb 1 22 1 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/1057085/forgotten-tomb-entombed-by-winter-house-of-nostalgia.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Entombed by Winter.mp3 dsbm
112 12b73205-7efe-4b6a-ae22-d7276aff7637 Songs to Leave Solitude Ways ['Forgotten Tomb'] Forgotten Tomb 2 22 2 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636884/forgotten-tomb-solitude-ways.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Solitude Ways.mp3 dsbm
113 62c5201b-fdaf-449d-979e-b13c8ea45515 Songs to Leave Steal My Corpse ['Forgotten Tomb'] Forgotten Tomb 3 22 3 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636885/forgotten-tomb-steal-my-corpse.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Steal My Corpse.mp3 dsbm
114 34f170a4-e563-4727-a4eb-cb470d58c5eb Songs to Leave Disheartenment ['Forgotten Tomb'] Forgotten Tomb 5 22 5 2002-08-04 2002 6cdda84f-1703-4618-aecf-decc6218497f bc646805-8992-3172-a705-5ff99c35f6f8 6cdda84f-1703-4618-aecf-decc6218497f Official 5 eng Album SE 3700132610661.0 https://musify.club/track/dl/636887/forgotten-tomb-disheartenment.mp3 dsbm/Forgotten Tomb/Songs to Leave dsbm/Forgotten Tomb/Songs to Leave/Disheartenment.mp3 dsbm
115 ba56e565-23b2-457e-87c6-105f2840719a Springtime Depression Todestrieb ['Forgotten Tomb'] Forgotten Tomb 1 23 1 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636898/forgotten-tomb-todestrieb.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Todestrieb.mp3 dsbm
116 6d24644b-5b77-48b0-86d4-37dd656476ae Springtime Depression Daylight Obsession ['Forgotten Tomb'] Forgotten Tomb 3 23 3 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636900/forgotten-tomb-daylight-obsession.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Daylight Obsession.mp3 dsbm
117 02a56baa-b5d5-420e-b863-d4b055b9eed8 Springtime Depression Springtime Depression ['Forgotten Tomb'] Forgotten Tomb 4 23 4 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636901/forgotten-tomb-springtime-depression.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Springtime Depression.mp3 dsbm
118 8a963423-0d8c-4c2c-840b-fec50f67e87a Springtime Depression Colourless Despondency ['Forgotten Tomb'] Forgotten Tomb 5 23 5 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636902/forgotten-tomb-colourless-despondency.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Colourless Despondency.mp3 dsbm
119 e703154f-5acf-4236-9428-89007907c36b Springtime Depression Subway Apathy ['Forgotten Tomb'] Forgotten Tomb 6 23 6 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/636903/forgotten-tomb-subway-apathy.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Subway Apathy.mp3 dsbm
120 4fa25bfa-27d1-44af-bc14-33d4c590ea93 Springtime Depression Desolated Funeral ['Forgotten Tomb'] Forgotten Tomb 7 23 7 2012-01-24 2012 6cdda84f-1703-4618-aecf-decc6218497f 5c4cb4a2-03ae-4704-8bc9-16dbb7c90a44 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album PL 5902020284192.0 https://musify.club/track/dl/1172263/forgotten-tomb-desolated-funeral.mp3 dsbm/Forgotten Tomb/Springtime Depression dsbm/Forgotten Tomb/Springtime Depression/Desolated Funeral.mp3 dsbm
121 ebe2c4fa-7465-4668-beb4-c6dbc92d14e6 Hurt Yourself and the Ones You Love Soulless Upheaval ['Forgotten Tomb'] Forgotten Tomb 1 24 1 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258821/forgotten-tomb-soulless-upheaval.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Soulless Upheaval.mp3 dsbm
122 b2263c64-4de3-49b1-9979-92ebf745105d Hurt Yourself and the Ones You Love King of the Undesirables ['Forgotten Tomb'] Forgotten Tomb 2 24 2 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258822/forgotten-tomb-king-of-the-undesirables.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/King of the Undesirables.mp3 dsbm
123 e5ebc04d-6d12-419c-b06a-657428f009a1 Hurt Yourself and the Ones You Love Bad Dreams Come True ['Forgotten Tomb'] Forgotten Tomb 3 24 3 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258823/forgotten-tomb-bad-dreams-come-true.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Bad Dreams Come True.mp3 dsbm
124 a32f8b95-40eb-4bbc-b39b-8ec05f3ddabc Hurt Yourself and the Ones You Love Hurt Yourself and the Ones You Love ['Forgotten Tomb'] Forgotten Tomb 4 24 4 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258824/forgotten-tomb-hurt-yourself-and-the-ones-you-love.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Hurt Yourself and the Ones You Love.mp3 dsbm
125 e6dd8920-f274-4e5e-9f0f-8999919bfefd Hurt Yourself and the Ones You Love Mislead the Snakes ['Forgotten Tomb'] Forgotten Tomb 5 24 5 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258825/forgotten-tomb-mislead-the-snakes.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Mislead the Snakes.mp3 dsbm
126 653c8bd6-9b64-4ba8-83dd-d80e36fb3701 Hurt Yourself and the Ones You Love Dread the Sundown ['Forgotten Tomb'] Forgotten Tomb 6 24 6 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258826/forgotten-tomb-dread-the-sundown.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Dread the Sundown.mp3 dsbm
127 6fc6a78b-b74c-4dfa-b66a-9079574cc300 Hurt Yourself and the Ones You Love Swallow the Void ['Forgotten Tomb'] Forgotten Tomb 7 24 7 2015-04-17 2015 6cdda84f-1703-4618-aecf-decc6218497f b261660c-35d3-4801-8c85-f4773d6068f4 6cdda84f-1703-4618-aecf-decc6218497f Official 7 eng Album XW https://musify.club/track/dl/5258827/forgotten-tomb-swallow-the-void.mp3 dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love dsbm/Forgotten Tomb/Hurt Yourself and the Ones You Love/Swallow the Void.mp3 dsbm

61
src/youtube_music.py Normal file
View File

@ -0,0 +1,61 @@
import youtube_dl
import pandas as pd
import jellyfish
import logging
YDL_OPTIONS = {'format': 'bestaudio', 'noplaylist':'True'}
YOUTUBE_URL_KEY = 'webpage_url'
def get_youtube_from_isrc(isrc: str):
# https://stackoverflow.com/questions/63388364/searching-youtube-videos-using-youtube-dl
with youtube_dl.YoutubeDL(YDL_OPTIONS) as ydl:
video = ydl.extract_info(f"ytsearch:{isrc}", download=False)['entries'][0]
print(type(video))
if YOUTUBE_URL_KEY not in video:
return None
return {
'url': video[YOUTUBE_URL_KEY],
'title': video['title']
}
def get_youtube_url(row):
if pd.isna(row['isrc']):
return None
real_title = row['title'].lower()
result = get_youtube_from_isrc(row['isrc'])
video_title = result['title'].lower()
phonetic_distance = jellyfish.levenshtein_distance(real_title, video_title)
print(real_title, video_title, phonetic_distance)
if phonetic_distance > 1:
logging.warning(f"dont downloading {result['url']} cuz the phonetic distance ({phonetic_distance}) between {real_title} and {video_title} is to high.")
return None
return result['url']
def download(row):
url = row['url']
file_ = row['file']
options = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
'keepvideo': False,
'outtmpl': file_
}
with youtube_dl.YoutubeDL(options) as ydl:
ydl.download([url])
if __name__ == "__main__":
# example isrc that exists on youtube music
ISRC = "DEUM71500715"
result = get_youtube_from_isrc(ISRC)
print(result)
result = get_youtube_from_isrc("aslhfklasdhfjklasdfjkhasdjlfhlasdjfkuuiueiw")
print(result)

View File

@ -1,2 +1,14 @@
,id,title,artist,album_artist,album,year,track,total_tracks ,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode
0,39e9dee2-6b09-4aa5-bb5b-d04fa43578db,Black Smoke Curling From the Lips of War,['Cradle of Filth'],Cradle of Filth,Existence Is Futile,2021,6,12 0,adae3514-9f16-4164-849b-a64f9d49770a,Hurra die Welt geht unter,Wir,['K.I.Z'],K.I.Z,1,0,1,DEUM71500709,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
1,9c566dc6-d7d6-42eb-9e4f-471824ea3d8f,Hurra die Welt geht unter,Geld,['K.I.Z'],K.I.Z,2,0,2,DEUM71500710,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
2,23d60d4c-f2b3-401e-94e0-0a3e6353d4bf,Hurra die Welt geht unter,Glücklich und satt,['K.I.Z'],K.I.Z,3,0,3,DEUM71500711,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
3,7177e7dc-813a-4e1e-8d36-1d4e38eeb796,Hurra die Welt geht unter,Boom Boom Boom,['K.I.Z'],K.I.Z,4,0,4,DEUM71500712,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
4,00192a27-f412-4eb0-a111-5cc1faa9b2d7,Hurra die Welt geht unter,AMG Mercedes,['K.I.Z'],K.I.Z,5,0,5,DEUM71500713,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
5,960e130a-53e7-4b0e-b720-c23347d2d728,Hurra die Welt geht unter,Freier Fall,['K.I.Z'],K.I.Z,6,0,6,DEUM71500714,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
6,24fbd3e5-28f5-42d3-9aff-b5356ad08470,Hurra die Welt geht unter,Ariane,['K.I.Z'],K.I.Z,7,0,7,DEUM71500715,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
7,bd087625-4cc8-4b34-8837-31d0690b7aca,Hurra die Welt geht unter,Käfigbett,['K.I.Z'],K.I.Z,8,0,8,DEUM71500716,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
8,032a80d1-f211-4dd4-ac68-f125a09a4be8,Hurra die Welt geht unter,Verrückt nach dir,['K.I.Z'],K.I.Z,9,0,9,DEUM71500717,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
9,a9d08fbc-d275-4427-a1d9-adc1c79e083a,Hurra die Welt geht unter,Ehrenlos,['K.I.Z'],K.I.Z,10,0,10,DEUM71500718,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
10,80f2b1b0-9a95-4fd0-a886-546e9dd8ceff,Hurra die Welt geht unter,Superstars,"['K.I.Z', 'Sefo']",K.I.Z,11,0,11,DEUM71500719,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
11,4db0ff20-321f-49f3-b20b-a17fc6f3709b,Hurra die Welt geht unter,Was würde Manny Marc tun?,"['K.I.Z', 'Audio88', 'Yassin', 'Manny Marc']",K.I.Z,12,0,12,DEUM71500720,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326324
12,05404ed1-4f8b-43ba-833f-54e6c2918ff6,Hurra die Welt geht unter,Hurra die Welt geht unter,"['K.I.Z', 'Henning May']",K.I.Z,13,0,13,DEUM71500721,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,f538d982-71fd-4d19-8ef5-8664b4cbe0ac,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,0602547326362

1 id album title artist album_artist tracknumber track albumsort titlesort isrc date year musicbrainz_artistid musicbrainz_albumid musicbrainz_albumartistid musicbrainz_albumstatus total_tracks language musicbrainz_albumtype compilation releasecountry barcode
2 0 39e9dee2-6b09-4aa5-bb5b-d04fa43578db adae3514-9f16-4164-849b-a64f9d49770a Existence Is Futile Hurra die Welt geht unter Black Smoke Curling From the Lips of War Wir ['Cradle of Filth'] ['K.I.Z'] Cradle of Filth K.I.Z 1 6 0 1 DEUM71500709 2015-07-10 2021 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 12 13 deu Album DE 0602547326324
3 1 9c566dc6-d7d6-42eb-9e4f-471824ea3d8f Hurra die Welt geht unter Geld ['K.I.Z'] K.I.Z 2 0 2 DEUM71500710 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
4 2 23d60d4c-f2b3-401e-94e0-0a3e6353d4bf Hurra die Welt geht unter Glücklich und satt ['K.I.Z'] K.I.Z 3 0 3 DEUM71500711 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
5 3 7177e7dc-813a-4e1e-8d36-1d4e38eeb796 Hurra die Welt geht unter Boom Boom Boom ['K.I.Z'] K.I.Z 4 0 4 DEUM71500712 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
6 4 00192a27-f412-4eb0-a111-5cc1faa9b2d7 Hurra die Welt geht unter AMG Mercedes ['K.I.Z'] K.I.Z 5 0 5 DEUM71500713 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
7 5 960e130a-53e7-4b0e-b720-c23347d2d728 Hurra die Welt geht unter Freier Fall ['K.I.Z'] K.I.Z 6 0 6 DEUM71500714 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
8 6 24fbd3e5-28f5-42d3-9aff-b5356ad08470 Hurra die Welt geht unter Ariane ['K.I.Z'] K.I.Z 7 0 7 DEUM71500715 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
9 7 bd087625-4cc8-4b34-8837-31d0690b7aca Hurra die Welt geht unter Käfigbett ['K.I.Z'] K.I.Z 8 0 8 DEUM71500716 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
10 8 032a80d1-f211-4dd4-ac68-f125a09a4be8 Hurra die Welt geht unter Verrückt nach dir ['K.I.Z'] K.I.Z 9 0 9 DEUM71500717 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
11 9 a9d08fbc-d275-4427-a1d9-adc1c79e083a Hurra die Welt geht unter Ehrenlos ['K.I.Z'] K.I.Z 10 0 10 DEUM71500718 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
12 10 80f2b1b0-9a95-4fd0-a886-546e9dd8ceff Hurra die Welt geht unter Superstars ['K.I.Z', 'Sefo'] K.I.Z 11 0 11 DEUM71500719 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
13 11 4db0ff20-321f-49f3-b20b-a17fc6f3709b Hurra die Welt geht unter Was würde Manny Marc tun? ['K.I.Z', 'Audio88', 'Yassin', 'Manny Marc'] K.I.Z 12 0 12 DEUM71500720 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326324
14 12 05404ed1-4f8b-43ba-833f-54e6c2918ff6 Hurra die Welt geht unter Hurra die Welt geht unter ['K.I.Z', 'Henning May'] K.I.Z 13 0 13 DEUM71500721 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 f538d982-71fd-4d19-8ef5-8664b4cbe0ac 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 0602547326362

View File

@ -1 +1,13 @@
"" ,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode,url,src
0,adae3514-9f16-4164-849b-a64f9d49770a,Hurra die Welt geht unter,Wir,['K.I.Z'],K.I.Z,1,0,1,DEUM71500709,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=WizfUqQZyns,youtube
1,9c566dc6-d7d6-42eb-9e4f-471824ea3d8f,Hurra die Welt geht unter,Geld,['K.I.Z'],K.I.Z,2,0,2,DEUM71500710,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=PZd1zNX0tjs,youtube
2,23d60d4c-f2b3-401e-94e0-0a3e6353d4bf,Hurra die Welt geht unter,Glücklich und satt,['K.I.Z'],K.I.Z,3,0,3,DEUM71500711,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=s-FU9TVq9Wk,youtube
3,7177e7dc-813a-4e1e-8d36-1d4e38eeb796,Hurra die Welt geht unter,Boom Boom Boom,['K.I.Z'],K.I.Z,4,0,4,DEUM71500712,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=NDbKzEJtqRs,youtube
4,00192a27-f412-4eb0-a111-5cc1faa9b2d7,Hurra die Welt geht unter,AMG Mercedes,['K.I.Z'],K.I.Z,5,0,5,DEUM71500713,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=GsBtsh6fdKQ,youtube
5,960e130a-53e7-4b0e-b720-c23347d2d728,Hurra die Welt geht unter,Freier Fall,['K.I.Z'],K.I.Z,6,0,6,DEUM71500714,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=rWX-O3uu_GU,youtube
6,24fbd3e5-28f5-42d3-9aff-b5356ad08470,Hurra die Welt geht unter,Ariane,['K.I.Z'],K.I.Z,7,0,7,DEUM71500715,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=x3rQam9YyQo,youtube
7,bd087625-4cc8-4b34-8837-31d0690b7aca,Hurra die Welt geht unter,Käfigbett,['K.I.Z'],K.I.Z,8,0,8,DEUM71500716,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=ERCLP3d5GMU,youtube
8,032a80d1-f211-4dd4-ac68-f125a09a4be8,Hurra die Welt geht unter,Verrückt nach dir,['K.I.Z'],K.I.Z,9,0,9,DEUM71500717,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=adtEjaZP1NI,youtube
9,a9d08fbc-d275-4427-a1d9-adc1c79e083a,Hurra die Welt geht unter,Ehrenlos,['K.I.Z'],K.I.Z,10,0,10,DEUM71500718,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=2ZJ9dJJRcic,youtube
10,80f2b1b0-9a95-4fd0-a886-546e9dd8ceff,Hurra die Welt geht unter,Superstars,"['K.I.Z', 'Sefo']",K.I.Z,11,0,11,DEUM71500719,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=_lyVnfIfeqk,youtube
11,4db0ff20-321f-49f3-b20b-a17fc6f3709b,Hurra die Welt geht unter,Was würde Manny Marc tun?,"['K.I.Z', 'Audio88', 'Yassin', 'Manny Marc']",K.I.Z,12,0,12,DEUM71500720,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=3YyjUFBLMNE,youtube

1 id album title artist album_artist tracknumber albumsort titlesort isrc date year musicbrainz_artistid musicbrainz_albumid musicbrainz_albumartistid musicbrainz_albumstatus total_tracks language musicbrainz_albumtype compilation releasecountry barcode url src
2 0 adae3514-9f16-4164-849b-a64f9d49770a Hurra die Welt geht unter Wir ['K.I.Z'] K.I.Z 1 0 1 DEUM71500709 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=WizfUqQZyns youtube
3 1 9c566dc6-d7d6-42eb-9e4f-471824ea3d8f Hurra die Welt geht unter Geld ['K.I.Z'] K.I.Z 2 0 2 DEUM71500710 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=PZd1zNX0tjs youtube
4 2 23d60d4c-f2b3-401e-94e0-0a3e6353d4bf Hurra die Welt geht unter Glücklich und satt ['K.I.Z'] K.I.Z 3 0 3 DEUM71500711 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=s-FU9TVq9Wk youtube
5 3 7177e7dc-813a-4e1e-8d36-1d4e38eeb796 Hurra die Welt geht unter Boom Boom Boom ['K.I.Z'] K.I.Z 4 0 4 DEUM71500712 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=NDbKzEJtqRs youtube
6 4 00192a27-f412-4eb0-a111-5cc1faa9b2d7 Hurra die Welt geht unter AMG Mercedes ['K.I.Z'] K.I.Z 5 0 5 DEUM71500713 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=GsBtsh6fdKQ youtube
7 5 960e130a-53e7-4b0e-b720-c23347d2d728 Hurra die Welt geht unter Freier Fall ['K.I.Z'] K.I.Z 6 0 6 DEUM71500714 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=rWX-O3uu_GU youtube
8 6 24fbd3e5-28f5-42d3-9aff-b5356ad08470 Hurra die Welt geht unter Ariane ['K.I.Z'] K.I.Z 7 0 7 DEUM71500715 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=x3rQam9YyQo youtube
9 7 bd087625-4cc8-4b34-8837-31d0690b7aca Hurra die Welt geht unter Käfigbett ['K.I.Z'] K.I.Z 8 0 8 DEUM71500716 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=ERCLP3d5GMU youtube
10 8 032a80d1-f211-4dd4-ac68-f125a09a4be8 Hurra die Welt geht unter Verrückt nach dir ['K.I.Z'] K.I.Z 9 0 9 DEUM71500717 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=adtEjaZP1NI youtube
11 9 a9d08fbc-d275-4427-a1d9-adc1c79e083a Hurra die Welt geht unter Ehrenlos ['K.I.Z'] K.I.Z 10 0 10 DEUM71500718 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=2ZJ9dJJRcic youtube
12 10 80f2b1b0-9a95-4fd0-a886-546e9dd8ceff Hurra die Welt geht unter Superstars ['K.I.Z', 'Sefo'] K.I.Z 11 0 11 DEUM71500719 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=_lyVnfIfeqk youtube
13 11 4db0ff20-321f-49f3-b20b-a17fc6f3709b Hurra die Welt geht unter Was würde Manny Marc tun? ['K.I.Z', 'Audio88', 'Yassin', 'Manny Marc'] K.I.Z 12 0 12 DEUM71500720 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=3YyjUFBLMNE youtube

View File

@ -1 +1,13 @@
"" ,id,album,title,artist,album_artist,tracknumber,albumsort,titlesort,isrc,date,year,musicbrainz_artistid,musicbrainz_albumid,musicbrainz_albumartistid,musicbrainz_albumstatus,total_tracks,language,musicbrainz_albumtype,compilation,releasecountry,barcode,url,src,path,file,genre
0,adae3514-9f16-4164-849b-a64f9d49770a,Hurra die Welt geht unter,Wir,['K.I.Z'],K.I.Z,1,0,1,DEUM71500709,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=WizfUqQZyns,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Wir.mp3,dsbm
1,9c566dc6-d7d6-42eb-9e4f-471824ea3d8f,Hurra die Welt geht unter,Geld,['K.I.Z'],K.I.Z,2,0,2,DEUM71500710,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=PZd1zNX0tjs,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Geld.mp3,dsbm
2,23d60d4c-f2b3-401e-94e0-0a3e6353d4bf,Hurra die Welt geht unter,Glücklich und satt,['K.I.Z'],K.I.Z,3,0,3,DEUM71500711,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=s-FU9TVq9Wk,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Glücklich und satt.mp3,dsbm
3,7177e7dc-813a-4e1e-8d36-1d4e38eeb796,Hurra die Welt geht unter,Boom Boom Boom,['K.I.Z'],K.I.Z,4,0,4,DEUM71500712,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=NDbKzEJtqRs,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Boom Boom Boom.mp3,dsbm
4,00192a27-f412-4eb0-a111-5cc1faa9b2d7,Hurra die Welt geht unter,AMG Mercedes,['K.I.Z'],K.I.Z,5,0,5,DEUM71500713,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=GsBtsh6fdKQ,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/AMG Mercedes.mp3,dsbm
5,960e130a-53e7-4b0e-b720-c23347d2d728,Hurra die Welt geht unter,Freier Fall,['K.I.Z'],K.I.Z,6,0,6,DEUM71500714,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=rWX-O3uu_GU,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Freier Fall.mp3,dsbm
6,24fbd3e5-28f5-42d3-9aff-b5356ad08470,Hurra die Welt geht unter,Ariane,['K.I.Z'],K.I.Z,7,0,7,DEUM71500715,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=x3rQam9YyQo,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Ariane.mp3,dsbm
7,bd087625-4cc8-4b34-8837-31d0690b7aca,Hurra die Welt geht unter,Käfigbett,['K.I.Z'],K.I.Z,8,0,8,DEUM71500716,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=ERCLP3d5GMU,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Käfigbett.mp3,dsbm
8,032a80d1-f211-4dd4-ac68-f125a09a4be8,Hurra die Welt geht unter,Verrückt nach dir,['K.I.Z'],K.I.Z,9,0,9,DEUM71500717,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=adtEjaZP1NI,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Verrückt nach dir.mp3,dsbm
9,a9d08fbc-d275-4427-a1d9-adc1c79e083a,Hurra die Welt geht unter,Ehrenlos,['K.I.Z'],K.I.Z,10,0,10,DEUM71500718,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=2ZJ9dJJRcic,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Ehrenlos.mp3,dsbm
10,80f2b1b0-9a95-4fd0-a886-546e9dd8ceff,Hurra die Welt geht unter,Superstars,"['K.I.Z', 'Sefo']",K.I.Z,11,0,11,DEUM71500719,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=_lyVnfIfeqk,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Superstars.mp3,dsbm
11,4db0ff20-321f-49f3-b20b-a17fc6f3709b,Hurra die Welt geht unter,Was würde Manny Marc tun?,"['K.I.Z', 'Audio88', 'Yassin', 'Manny Marc']",K.I.Z,12,0,12,DEUM71500720,2015-07-10,2015,13c9c494-09aa-4518-8572-9f41dbdff461,27d0fac9-c7d2-48ef-8739-6b839ed7c461,13c9c494-09aa-4518-8572-9f41dbdff461,Official,13,deu,Album,,DE,602547326324,https://www.youtube.com/watch?v=3YyjUFBLMNE,youtube,dsbm/K.I.Z/Hurra die Welt geht unter,dsbm/K.I.Z/Hurra die Welt geht unter/Was würde Manny Marc tun?.mp3,dsbm

1 id album title artist album_artist tracknumber albumsort titlesort isrc date year musicbrainz_artistid musicbrainz_albumid musicbrainz_albumartistid musicbrainz_albumstatus total_tracks language musicbrainz_albumtype compilation releasecountry barcode url src path file genre
2 0 adae3514-9f16-4164-849b-a64f9d49770a Hurra die Welt geht unter Wir ['K.I.Z'] K.I.Z 1 0 1 DEUM71500709 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=WizfUqQZyns youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Wir.mp3 dsbm
3 1 9c566dc6-d7d6-42eb-9e4f-471824ea3d8f Hurra die Welt geht unter Geld ['K.I.Z'] K.I.Z 2 0 2 DEUM71500710 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=PZd1zNX0tjs youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Geld.mp3 dsbm
4 2 23d60d4c-f2b3-401e-94e0-0a3e6353d4bf Hurra die Welt geht unter Glücklich und satt ['K.I.Z'] K.I.Z 3 0 3 DEUM71500711 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=s-FU9TVq9Wk youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Glücklich und satt.mp3 dsbm
5 3 7177e7dc-813a-4e1e-8d36-1d4e38eeb796 Hurra die Welt geht unter Boom Boom Boom ['K.I.Z'] K.I.Z 4 0 4 DEUM71500712 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=NDbKzEJtqRs youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Boom Boom Boom.mp3 dsbm
6 4 00192a27-f412-4eb0-a111-5cc1faa9b2d7 Hurra die Welt geht unter AMG Mercedes ['K.I.Z'] K.I.Z 5 0 5 DEUM71500713 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=GsBtsh6fdKQ youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/AMG Mercedes.mp3 dsbm
7 5 960e130a-53e7-4b0e-b720-c23347d2d728 Hurra die Welt geht unter Freier Fall ['K.I.Z'] K.I.Z 6 0 6 DEUM71500714 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=rWX-O3uu_GU youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Freier Fall.mp3 dsbm
8 6 24fbd3e5-28f5-42d3-9aff-b5356ad08470 Hurra die Welt geht unter Ariane ['K.I.Z'] K.I.Z 7 0 7 DEUM71500715 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=x3rQam9YyQo youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Ariane.mp3 dsbm
9 7 bd087625-4cc8-4b34-8837-31d0690b7aca Hurra die Welt geht unter Käfigbett ['K.I.Z'] K.I.Z 8 0 8 DEUM71500716 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=ERCLP3d5GMU youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Käfigbett.mp3 dsbm
10 8 032a80d1-f211-4dd4-ac68-f125a09a4be8 Hurra die Welt geht unter Verrückt nach dir ['K.I.Z'] K.I.Z 9 0 9 DEUM71500717 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=adtEjaZP1NI youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Verrückt nach dir.mp3 dsbm
11 9 a9d08fbc-d275-4427-a1d9-adc1c79e083a Hurra die Welt geht unter Ehrenlos ['K.I.Z'] K.I.Z 10 0 10 DEUM71500718 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=2ZJ9dJJRcic youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Ehrenlos.mp3 dsbm
12 10 80f2b1b0-9a95-4fd0-a886-546e9dd8ceff Hurra die Welt geht unter Superstars ['K.I.Z', 'Sefo'] K.I.Z 11 0 11 DEUM71500719 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=_lyVnfIfeqk youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Superstars.mp3 dsbm
13 11 4db0ff20-321f-49f3-b20b-a17fc6f3709b Hurra die Welt geht unter Was würde Manny Marc tun? ['K.I.Z', 'Audio88', 'Yassin', 'Manny Marc'] K.I.Z 12 0 12 DEUM71500720 2015-07-10 2015 13c9c494-09aa-4518-8572-9f41dbdff461 27d0fac9-c7d2-48ef-8739-6b839ed7c461 13c9c494-09aa-4518-8572-9f41dbdff461 Official 13 deu Album DE 602547326324 https://www.youtube.com/watch?v=3YyjUFBLMNE youtube dsbm/K.I.Z/Hurra die Welt geht unter dsbm/K.I.Z/Hurra die Welt geht unter/Was würde Manny Marc tun?.mp3 dsbm