CREATE TABLE `vgsongdetails` (
  `song_id` int(10) unsigned NOT NULL auto_increment,
  `title` varchar(255) collate latin1_general_ci default NULL,
  `filename` varchar(255) collate latin1_general_ci default NULL,
  `localfolder` text collate latin1_general_ci,
  `filesize` int(10) unsigned default NULL,
  `filetype` varchar(255) collate latin1_general_ci default NULL,
  `hours` tinyint(3) unsigned default NULL,
  `mins` tinyint(2) unsigned default NULL,
  `secs` tinyint(2) unsigned default NULL,
  `url` text collate latin1_general_ci,
  `urltype` varchar(255) collate latin1_general_ci default NULL,
  `label1` tinyint(1) unsigned default NULL,
  `label2` tinyint(1) unsigned default NULL,
  `label3` tinyint(1) unsigned default NULL,
  `sublabels` varchar(255) collate latin1_general_ci default NULL,
  `genre` varchar(255) collate latin1_general_ci default NULL,
  `me` tinyint(1) default NULL,
  `ve` tinyint(1) default NULL,
  `ma` tinyint(1) default NULL,
  `ju` tinyint(1) default NULL,
  `sa` tinyint(1) default NULL,
  `ur` tinyint(1) default NULL,
  `ne` tinyint(1) default NULL,
  `pl` tinyint(1) default NULL,
  `er` tinyint(1) default NULL,
  `warning` tinytext collate latin1_general_ci,
  `comment` text collate latin1_general_ci,
  `privatenote` text collate latin1_general_ci,
  `vocals` enum('n','y') collate latin1_general_ci NOT NULL,
  `words` enum('n','y') collate latin1_general_ci NOT NULL,
  `malevocals` enum('n','y') collate latin1_general_ci NOT NULL,
  `femvocals` enum('n','y') collate latin1_general_ci NOT NULL,
  `foreignlang` enum('n','y') collate latin1_general_ci NOT NULL,
  `profanity` enum('n','y') collate latin1_general_ci NOT NULL,
  `volumewarning` enum('n','y') collate latin1_general_ci NOT NULL,
  `grating` enum('n','y') collate latin1_general_ci NOT NULL,
  `disturbing` enum('n','y') collate latin1_general_ci NOT NULL,
  `humorous` enum('n','y') collate latin1_general_ci NOT NULL,
  `nonewlabel` enum('n','y') collate latin1_general_ci NOT NULL default 'n',
  `temphide` enum('n','y') collate latin1_general_ci NOT NULL,
  `addlater` enum('n','y') collate latin1_general_ci NOT NULL,
  `findagain` enum('n','y') collate latin1_general_ci NOT NULL,
  `medley` enum('n','y') collate latin1_general_ci NOT NULL,
  `deleted` enum('n','y') collate latin1_general_ci NOT NULL,
  `sourcestring` text collate latin1_general_ci,
  `performerstring` text collate latin1_general_ci,
  `vocaliststring` text collate latin1_general_ci,
  `remixerstring` text collate latin1_general_ci,
  `composerstring` text collate latin1_general_ci,
  `adjectivestring` text collate latin1_general_ci,
  `genrestring` text collate latin1_general_ci,
  `leadinstrumentstring` text collate latin1_general_ci,
  `otherinstrumentstring` text collate latin1_general_ci,
  `otherstring` text collate latin1_general_ci,
  `languagestring` text collate latin1_general_ci,
  `whenadded` timestamp NOT NULL default CURRENT_TIMESTAMP,
  `whenmodified` timestamp NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`song_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci  ;CREATE TABLE `vgrolesandsongs` (
  `generic_id` int(10) unsigned NOT NULL auto_increment,
  `spelling_id` int(10) unsigned NOT NULL,
  `entity_id` int(10) unsigned NOT NULL,
  `song_id` int(10) unsigned NOT NULL,
  `role` enum('source','performer','vocalist','remixer','composer') collate latin1_general_ci NOT NULL,
  PRIMARY KEY  (`generic_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci  ;CREATE TABLE `songtagmap` (
  `tagmap_id` int(10) unsigned NOT NULL auto_increment,
  `song_id` int(10) unsigned NOT NULL,
  `tag_id` int(10) unsigned NOT NULL,
  `tagtypenum` tinyint(3) unsigned default NULL,
  PRIMARY KEY  (`tagmap_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci  ;CREATE TABLE `tags` (
  `tag_id` int(10) unsigned NOT NULL auto_increment,
  `tag_name` varchar(255) collate latin1_general_ci default NULL,
  `whenadded` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  PRIMARY KEY  (`tag_id`),
  UNIQUE KEY `tag_name` (`tag_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci  ;CREATE TABLE `vgnames` (
  `spelling_id` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(255) collate latin1_general_ci NOT NULL,
  `abbrev` varchar(255) collate latin1_general_ci NOT NULL,
  `entity_id` int(10) unsigned NOT NULL,
  `nametype` enum('Musician','Group','Source','Stream') collate latin1_general_ci NOT NULL,
  `namecat` varchar(255) collate latin1_general_ci NOT NULL,
  `namecomment` text collate latin1_general_ci NOT NULL,
  `temphide` enum('n','y') collate latin1_general_ci NOT NULL,
  `permhide` enum('n','y') collate latin1_general_ci NOT NULL,
  `whenadded` timestamp NOT NULL default CURRENT_TIMESTAMP,
  PRIMARY KEY  (`spelling_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci  ;CREATE TABLE `vgnameurls` (
  `nameurl_id` int(10) unsigned NOT NULL auto_increment,
  `entity_id` int(10) unsigned NOT NULL,
  `spelling_id` int(10) unsigned NOT NULL,
  `nameurl` varchar(255) collate latin1_general_ci NOT NULL,
  `nameurltype` varchar(255) collate latin1_general_ci NOT NULL,
  `nameurlcomment` text collate latin1_general_ci NOT NULL,
  `temphide` enum('n','y') collate latin1_general_ci NOT NULL,
  `permhide` enum('n','y') collate latin1_general_ci NOT NULL,
  `whenadded` timestamp NOT NULL default CURRENT_TIMESTAMP,
  PRIMARY KEY  (`nameurl_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci  ;

INSERT INTO

	vgSongDetails (title, filename, localfolder, filesize, filetype, hours, mins, secs, url, urltype, label1, label2, label3, sublabels, genre, me, ve, ma, ju, sa, ur, ne, pl, er, warning, comment, vocals, words, malevocals, femvocals, foreignlang, profanity, volumewarning, grating, disturbing, humorous, nonewlabel, temphide, addlater, findagain, medley, deleted, sourcestring, performerstring, vocaliststring, remixerstring, composerstring, adjectivestring, genrestring, leadinstrumentstring, otherinstrumentstring, otherstring, languagestring, whenadded, whenmodified, song_id)

	VALUES

 ('Cyborg Blobby', 'A_Boy_and_his_Blob_Cyborg_Blobby_OC_ReMix.mp3', '', '5508257', 'mp3', '0', '3', '49', 'http://www.ocremix.org/remix/OCR00881/', 'OCR', '1', '4', '6', '(Mars/Eris)', 'Chiptune', '-8', '0', '-8', '-8', '0', '-8', '0', '0', '-8', 'Some annoying noises from 1:53-2:05. Depending on how sensitive you are, I guess you might find some of the rest a bit harsh and grating too.', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Annoying; Cheerful; Happy; Harsh', '', '', '', '', '', '2008-02-23 01:30:16', '2008-12-11 13:44:48', '1'), 

  ('Child of the Murder God', 'Baldur\'s_Gate_Child_of_the_Murder_God_OC_ReMix.mp3', '', '5095642', 'mp3', '0', '3', '32', 'http://www.ocremix.org/remix/OCR01454/', 'OCR', '2', '5', '7', '(Pluto)', 'Piano', '0', '-8', '0', '0', '-8', '0', '-8', '-8', '0', '', 'Was also on Vgmix 2.  Seems identical.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Dark; Deep; Forceful; Loud; Passionate; Quiet; Rich; Sad; Subdued; Thundering', '', 'Piano', '', 'Piano Only', '', '2008-02-23 01:29:30', '2008-12-11 14:36:01', '2'), 

  ('Eros', 'Battle_of_Olympus_Eros_OC_ReMix.mp3', '', '4380672', 'mp3', '0', '3', '39', 'http://www.ocremix.org/remix/OCR01123/', 'OCR', '7', '5', '2', '', '', '0', '-8', '0', '0', '-8', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Drifting; Moving; Quiet; Sad; Soft; Sweet', '', 'Piano', '', '', '', '2008-02-23 01:30:38', '2008-12-11 15:51:49', '3'), 

  ('Japanese Swamp', 'Blaster_Master_JapaneseSwamp_OC_ReMix.mp3', '', '4220818', 'mp3', '0', '4', '23', 'http://www.ocremix.org/remix/OCR00291/', 'OCR', '2', '1', '8', '(Neptune)', '', '-8', '-8', '0', '-9', '0', '0', '-8', '-8', '-8', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Airy; Bending; Dark; Discordant; Dragging; Pretty; Quiet; Slow; Swampy', '', 'Pipes', '', '', '', '2008-02-23 01:29:59', '2008-12-11 14:20:47', '4'), 

  ('Hillbilly Rodeo', 'Bubble_Bobble_Hillbilly_Rodeo_OC_ReMix.mp3', '', '2408358', 'mp3', '0', '2', '5', 'http://www.ocremix.org/remix/OCR00015/', 'OCR', '1', '4', '3', '', '', '-8', '-8', '-8', '-8', '0', '0', '0', '-9', '-9', '', '', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Cheerful; Cute; Happy; Silly', 'Bluegrass', 'Guitar', 'Percussion; Sheep; Sometimes Falsetto Male Voice', 'Gibberish', '', '2008-02-23 01:36:15', '2008-12-11 13:42:26', '5'), 

  ('A Clockwork Vampire', 'Castlevania_3_A_Clockwork_Vampire_OC_ReMix.mp3', '', '3461120', 'mp3', '0', '2', '52', 'http://www.ocremix.org/remix/OCR01401/', 'OCR', '5', '2', '7', '(Mercury)', 'Classical Piano', '-8', '-8', '0', '0', '-8', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Dark; Deep; Pretty; Slow', '', 'Piano', '', 'Piano Only', '', '2008-02-23 01:56:37', '2008-12-11 15:18:33', '7'), 

  ('Mucho Dollar Care a Junk CIA', 'Castlevania_Chronicles_Mucho_Dollar_Care_a_Junk_CIA_OC_ReMix.mp3', '', '3486084', 'mp3', '0', '3', '37', 'http://www.ocremix.org/remix/OCR01289/', 'OCR', '2', '6', '5', '(Mercury/Mars/Neptune)', '', '3', '4', '2', '0', '4', '4', '2', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Active; Busy; Mysterious; Spacy; Unpredictable', '', 'Piano; Recorder', 'Guitar; Oboe; Percussion', '', '', '2008-02-23 02:00:34', '2008-12-11 14:42:50', '8'), 

  ('Behold the Winged Cathedral', 'Castlevania_HarmonyofDissonance_Behold_the_Winged_Cathedral_OC_ReMix.mp3', '', '5163346', 'mp3', '0', '5', '22', 'http://www.ocremix.org/remix/OCR01456/', 'OCR', '7', '6', '2', '(Mercury/Saturn)', '', '-8', '-8', '0', '0', '0', '-8', '-8', '-9', '0', '', '', 'y', 'y', 'n', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Pretty; Techno; Unpredictable; Weird', '', 'Female Voice', '', '', '', '2008-02-23 02:03:09', '2008-12-11 15:52:34', '9'), 

  ('Door to the End of Time', 'Chrono_Trigger_Door_to_the_End_of_Time_OC_ReMix.mp3', '', '5156899', 'mp3', '0', '5', '34', 'http://www.ocremix.org/remix/OCR01442/', 'OCR', '5', '7', '2', '', 'Classical Orchestral', '0', '-8', '0', '0', '-8', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Dark; Deep; Mysterious; Pretty; Sweet; Unpredictable', 'Orchestral', '', '', '', '', '2008-02-23 02:05:12', '2008-12-11 15:23:51', '10'), 

  ('Green Amnesia', 'Chrono_Trigger_Green_Amnesia_OC_ReMix.mp3', '', '6324224', 'mp3', '0', '6', '35', 'http://www.ocremix.org/remix/OCR00883/', 'OCR', '7', '1', '2', '', '', '-8', '-8', '0', '-9', '0', '0', '-8', '-9', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Beautiful; Calm; Drifting; Pretty; Soft; Sweet', '', 'Guitar; Piano; Strings', 'Saxophone', '', '', '2008-02-23 02:06:12', '2008-12-11 15:37:17', '11'), 

  ('Ruined World (Eternal Derelict)', 'Chrono_Trigger_Ruined_World_(Eternal_Derelict)_OC_ReMix.mp3', '', '6455112', 'mp3', '0', '6', '43', 'http://www.ocremix.org/remix/OCR00601/', 'OCR', '7', '5', '0', '', '', '0', '0', '0', '0', '-8', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Funereal; Sad; Tragic', '', '', 'Rain; Wind', '', '', '2008-02-23 02:07:48', '2008-12-11 15:51:06', '12'), 

  ('Team Gato', 'Chrono_Trigger_Team_Gato_OC_ReMix.mp3', '', '4965348', 'mp3', '0', '5', '10', 'http://www.ocremix.org/remix/OCR00313/', 'OCR', '1', '2', '7', '(Mars/Saturn)', '', '4', '4', '3', '2', '3', '2', '4', '-9', '-9', '', '', 'y', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', '', '', '', '', '', '', '2008-02-29 05:29:30', '2008-04-02 13:25:05', '13'), 

  ('4:20 AM', 'Crack_Down_420AM_OC_ReMix.mp3', '', '6242304', 'mp3', '0', '4', '20', 'http://www.ocremix.org/remix/OCR01294/', 'OCR', '3', '1', '7', '', '', '-8', '0', '-8', '0', '0', '0', '-8', '0', '0', '', '', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Rhythmic', '', 'Electric Guitar; Heavy Drums', '', '', '', '2008-02-23 02:19:59', '2008-12-11 14:56:03', '14'), 

  ('The Great Tentacle Pianist', 'DayoftheTentacle_The_Great_Tentacle_Pianist_OC_ReMix.mp3', '', '2363160', 'mp3', '0', '2', '27', 'http://www.ocremix.org/remix/OCR01509/', 'OCR', '2', '5', '3', '(Mercury/Pluto/Eris)', 'Piano', '-8', '-8', '-8', '0', '-8', '0', '0', '-8', '1', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Anxious; Cute; Dark; Discordant; Playful; Pretty; Scary', '', 'Piano', '', 'Piano Only', '', '2008-02-23 02:23:18', '2008-12-11 14:30:33', '15'), 

  ('Quest for Conan', 'Deadly_Towers_Quest_for_Conan_OC_ReMix.mp3', '', '3206480', 'mp3', '0', '2', '13', 'http://www.ocremix.org/remix/OCR00921/', 'OCR', '2', '7', '4', '(Mars)', '', '0', '-8', '-8', '-8', '0', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Happy; Pretty; Rhythmic; Soft; Sweet; Warm', '', '', '', '', '', '2008-02-23 02:24:26', '2008-12-11 14:46:09', '16'), 

  ('Beneath the Surface', 'Donkey_Kong_Country_BeneaththeSurface_OC_ReMix.mp3', '', '6081444', 'mp3', '0', '6', '19', 'http://www.ocremix.org/remix/OCR01242/', 'OCR', '7', '3', '2', '(Saturn/Mercury)', '', '0', '-8', '-8', '0', '0', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Drifting; Mysterious; Quiet; Slow', '', 'Guitar', '', '', '', '2008-02-23 02:26:04', '2008-12-11 15:44:57', '17'), 

  ('Clouded Mind and Ringing Ears', 'Donkey_Kong_Country_CloudedMindandRingingEars_OC_ReMix.mp3', '', '4775936', 'mp3', '0', '3', '48', 'http://www.ocremix.org/remix/OCR01293/', 'OCR', '7', '2', '6', '(Saturn)', '', '0', '-8', '0', '0', '-8', '-8', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Like Clockwork', '', '', '', '', '', '2008-02-23 02:34:50', '2008-12-11 15:43:02', '19'), 

  ('Bus!', 'Earthbound_Bus!_OC_ReMix.mp3', '', '2108979', 'mp3', '0', '1', '45', 'http://www.ocremix.org/remix/OCR00984/', 'OCR', '1', '3', '5', '(Jupiter)', '', '4', '-9', '4', '-8', '4', '-9', '-9', '-9', '-9', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', '', '', '', '', '', '', '2008-02-23 02:29:24', '2008-12-11 13:08:30', '21'), 

  ('Funky Bookas', 'Earthbound_Funky_Bookas_OC_ReMix.mp3', '', '4982618', 'mp3', '0', '3', '27', 'http://www.ocremix.org/remix/OCR01091/', 'OCR', '3', '7', '4', '(Mercury)', '', '-8', '0', '-8', '-8', '0', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Happy; Loud; Spacy', '', 'Electric Guitar', '', '', '', '2008-02-23 02:30:45', '2008-12-11 14:59:30', '22'), 

  ('Home Again', 'Earthbound_Home_Again_OC_ReMix.mp3', '', '4833280', 'mp3', '0', '3', '21', 'http://www.ocremix.org/remix/OCR01545/', 'OCR', '2', '7', '1', '(Jupiter)', '', '-8', '-8', '0', '-8', '0', '0', '-8', '0', '0', '', 'Was also on Vgmix 2. Seems identical.', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Pretty; Sappy; Sweet', '', 'Male Voice; Piano', 'Chime; Guitar', '', '', '2008-02-23 02:32:44', '2008-12-11 14:44:14', '23'), 

  ('See Sixty Funk', 'Earthbound_See_Sixty_Funk_OC_ReMix.mp3', '', '3783634', 'mp3', '0', '3', '56', 'http://www.ocremix.org/remix/OCR01469/', 'OCR', '1', '8', '5', '(Mars/Neptune/Uranus)', '', '-8', '0', '0', '0', '-8', '-8', '-8', '-8', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Plodding; Rhythmic; Steady', '', '', 'Heavy Percussion', '', '', '2008-02-23 02:35:38', '2008-12-11 14:02:48', '24'), 

  ('Unleashed! The Large-Hearted Scientist Boy', 'Earthbound_Unleashed!TheLarge-HeartedScientistBoy_OC_ReMix.mp3', '', '4225024', 'mp3', '0', '2', '55', 'http://www.ocremix.org/remix/OCR01449/', 'OCR', '7', '6', '2', '(Mars)', '', '0', '-8', '-8', '0', '0', '-8', '-8', '0', '0', '', 'Was also on Vgmix 2. The file sizes of the Vgmix (4.45 MB) and OcRemix (4.02 MB) are different, though, so, though they sound much alike, the two versions might actually be somehow different.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Forceful; Mysterious; Pretty; Quiet; Soft; Sweet; Unpredictable; Weird', '', '', 'Staccato Percussion; Very Heavy Percussion', '', '', '2008-02-23 02:42:45', '2008-12-11 15:54:01', '25'), 

  ('Venus Signed Banana Peel', 'Earthbound_VenusSignedBananaPeel_OC_ReMix.mp3', '', '3314270', 'mp3', '0', '2', '17', 'http://www.ocremix.org/remix/OCR00449/', 'OCR', '1', '5', '3', '(Venus)', '', '-8', '-8', '-8', '0', '-8', '0', '0', '0', '0', '', '', 'y', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', '', 'Jazz', 'Female Voice; Piano', '', '', '', '2008-02-23 04:51:34', '2008-12-11 13:48:27', '26'), 

  ('Invertebrate Retreat', 'Earthworm_Jim_2_Invertebrate_Retreat_OC_ReMix.mp3', '', '6291456', 'mp3', '0', '5', '37', 'http://www.ocremix.org/remix/OCR01277/', 'OCR', '1', '5', '7', '(Mars)', '', '-8', '0', '-8', '0', '-8', '0', '-8', '0', '0', '', 'Was also on Vgmix 2. Seems identical.', 'y', 'y', 'y', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', '', 'Partly Rap', 'Male Voice', 'Heavy Drums, Electric Guitar', '', '', '2008-02-23 02:46:52', '2008-12-11 13:51:50', '27'), 

  ('Tororian Love Song', 'Final_Fantasy_4_Tororian_Love_Song_OC_ReMix.mp3', '', '5922779', 'mp3', '0', '7', '3', 'http://www.ocremix.org/remix/OCR00991/', 'OCR', '1', '3', '7', '(Venus/Pluto)', '', '-8', '-8', '-8', '0', '0', '0', '-8', '-8', '0', '', '', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', '', '', 'Guitar; Male Voice', 'Electric Guitar; Percussion; Piano', '', '', '2008-02-27 08:05:53', '2008-12-11 13:38:38', '28'), 

  ('Agony of Obscuration', 'Final_Fantasy_6_Agony_of_Obscuration_OC_ReMix.mp3', '', '5488640', 'mp3', '0', '4', '42', 'http://www.ocremix.org/remix/OCR01179/', 'OCR', '1', '7', '6', '(Venus/Mars)', '', '-8', '-8', '-8', '0', '0', '-8', '-8', '0', '0', '', 'Was also on Vgmix 2. Seems identical.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Aquatic; Spacy', '', '', 'Electric Guitar; Percussion', '', '', '2008-02-23 02:53:03', '2008-12-11 13:59:55', '29'), 

  ('Philharmonic Suite: Finale', 'Final_Fantasy_7_Philharmonic_Suite_Finale_OC_ReMix.mp3', '', '6232064', 'mp3', '0', '6', '29', 'http://www.ocremix.org/remix/OCR01260/', 'OCR', '2', '8', '3', '(Jupiter)', 'Classical Orchestral', '0', '-8', '-8', '-8', '0', '0', '-8', '-8', '-9', '', 'This is actually better than the real Final Fantasy 7 ending theme!', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Anxious; Cheerful; Determined; Exciting; Exuberant; Free; Happy; Intense; Intimidating; Joyful; Joyous; Moving; Repetitive; Scary; Touching', 'Orchestral', '', 'Brass', 'Finale', '', '2008-02-23 02:54:44', '2008-12-11 14:54:24', '30'), 

  ('The Lost Horizon', 'Final_Fantasy_8_The_Lost_Horizon_OC_ReMix.mp3', '', '4664640', 'mp3', '0', '3', '53', 'http://www.ocremix.org/remix/OCR01165/', 'OCR', '2', '7', '5', '', '', '0', '-8', '0', '0', '-8', '0', '-8', '0', '0', '', 'Was also on Vgmix 2. Very similar, but a bit different, like a different instrument or two, and some changed notes.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Drifting; Pretty; Quiet; Sad; Soft', '', 'Koto', 'Piano; Pizzicato Strings', '', '', '2008-02-23 04:36:01', '2008-12-11 14:47:15', '31'), 

  ('Minotaur Nightmares', 'God_of_War_Minotaur_Nightmares_OC_ReMix.mp3', '', '4184156', 'mp3', '0', '4', '21', 'http://www.ocremix.org/remix/OCR01589/', 'OCR', '8', '5', '6', '(Mars/Neptune)', '', '0', '0', '3', '0', '4', '4', '2', '4', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Dragging; Drifting; Hellish; Hypnotic; Rhythmic; Scary', '', '', '', '', '', '2008-02-23 04:39:03', '2008-12-11 16:00:58', '32'), 

  ('Sol Sanctum Guitar', 'Golden_Sun_SolSanctumGuitar_OC_ReMix.mp3', '', '4299252', 'mp3', '0', '2', '59', 'http://www.ocremix.org/remix/OCR01315/', 'OCR', '3', '7', '2', '(Saturn)', '', '0', '4', '4', '0', '2', '0', '4', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Pretty; Sad', '', 'Electric Guitar', 'Heavy Drums; Piano; Shimmering Chimes', '', '', '2008-02-23 04:42:02', '2008-12-11 14:58:33', '33'), 

  ('The Scarlet Halls of Night', 'Guardian_Legend_The_Scarlet_Halls_of_Night_OC_ReMix.mp3', '', '', 'mp3', '0', '4', '29', 'http://www.ocremix.org/remix/OCR01459/', 'OCR', '2', '7', '5', '(Mercury)', '', '2', '4', '0', '0', '3', '0', '4', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Pretty', '', 'Piano', '', '', '', '2008-02-23 04:43:39', '2008-12-11 17:38:47', '34'), 

  ('Chopinesque Kirby', 'Kirby\'s_Dreamland_Chopinesque_Kirby_OC_ReMix.mp3', '', '2234305', 'mp3', '0', '2', '19', 'http://www.ocremix.org/remix/OCR01257/', 'OCR', '2', '1', '4', '(Saturn/Pluto)', '', '4', '4', '0', '4', '3', '0', '0', '1', '0', '', 'Was also on Vgmix 2. Vgmix: 2.13 MB, length 2:19. OcRemix: 2.12 MB, length 2:19. Maybe subtly different, hard to tell, but in any case, both are good. The OcRemix seems to have a flaw - the sound cuts out for a tiny fraction of a second around 0:18.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Anxious; Dark; Forceful; Happy; Playful; Pretty; Sweet', '', 'Piano', '', 'Piano Only', '', '2008-02-23 04:56:38', '2008-12-11 14:12:53', '35'), 

  ('Sphercular Kinetics', 'Marble_Madness_SphercularKinetics_OC_ReMix.mp3', '', '5172642', 'mp3', '0', '5', '23', 'http://www.ocremix.org/remix/OCR00755/', 'OCR', '7', '3', '6', '(Jupiter/Venus/Mercury)', '', '4', '4', '4', '3', '3', '4', '4', '1', '-9', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Drifting; Light; Pretty; Quiet; Soft; Spacy; Techno', '', '', '', '', '', '2008-02-29 11:29:15', '2008-12-11 15:47:09', '36'), 

  ('Rainbow Snowland', 'Mario_Kart_64_Rainbow_Snowland_OC_ReMix.mp3', '', '4623610', 'mp3', '0', '4', '48', 'http://www.ocremix.org/remix/OCR01188/', 'OCR', '2', '5', '4', '(Neptune)', '', '0', '-8', '0', '-8', '-8', '0', '-8', '0', '0', '', 'Was also on Vgmix 2. Seems identical.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'A Little Sad; Calm; Nostalgic; Pretty; Slow; Soft; Subdued Warmth; Sweet', '', 'Piano', '', 'Piano Only', '', '2008-02-23 19:59:15', '2008-12-11 14:33:54', '37'), 

  ('Too Hot for Heatman', 'Mega_Man_2_Too_Hot_For_Heatman_OC_ReMix.mp3', '', '5971267', 'mp3', '0', '3', '48', 'http://www.ocremix.org/remix/OCR01523/', 'OCR', '7', '6', '3', '(Mercury)', '', '0', '0', '-8', '0', '0', '-8', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Aquatic; Energetic; Fast; Quick', '', '', '', '', '', '2008-02-23 20:02:28', '2008-12-11 15:55:29', '38'), 

  ('BigShellWestBristol', 'Metal_Gear_Solid_2_BigShellWestBristol_OC_ReMix.mp3', '', '4161162', 'mp3', '0', '4', '20', 'http://www.ocremix.org/remix/OCR00945/', 'OCR', '7', '6', '2', '(Saturn/Mars)', '', '0', '-8', '-8', '0', '-8', '-8', '-8', '0', '0', '', '', 'y', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Beautiful; Percussive; Quiet; Subdued; Unpredictable; Weird', '', 'Female Voice', '', '', '', '2008-02-23 20:10:02', '2008-12-11 15:54:45', '39'), 

  ('Sugar, Water, Purple', 'Metroid_Sugar_Water_Purple_OC_ReMix.mp3', '', '5261762', 'mp3', '0', '5', '28', 'http://www.ocremix.org/remix/OCR01538/', 'OCR', '2', '6', '1', '(Saturn)', 'Piano', '4', '4', '0', '0', '3', '4', '0', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Clever; Ever-Changing; Fast; Frantic; Jazzy; Mysterious; Quiet; Skittish; Subdued; Unpredictable; Weird', '', 'Piano', '', 'Piano Only', '', '2008-02-23 20:13:20', '2008-12-11 16:15:29', '40'), 

  ('efsisos featuring Samus Aran', 'Metroid_efsisos_feat_Samus_Aran_OC_ReMix.mp3', '', '3672787', 'mp3', '0', '3', '49', 'http://www.ocremix.org/remix/OCR00054/', 'OCR', '5', '2', '3', '', '', '0', '-8', '-8', '0', '-8', '0', '0', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Dark; Slow; Steady', '', '', '', '', '', '2008-02-23 20:14:54', '2008-12-11 15:17:13', '41'), 

  ('In the Atrium', 'Ninja_Gaiden_2_InTheAtrium_OC_ReMix.mp3', '', '5735815', 'mp3', '0', '5', '58', 'http://www.ocremix.org/remix/OCR01068/', 'OCR', '1', '3', '7', '(Pluto/Venus)', '', '-8', '-8', '-8', '0', '0', '0', '-8', '-8', '0', '', 'Was also on Vgmix 2. Seems identical.', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Angry; Heartbroken; Sad', '', 'Guitar; Male Voice', 'Drums', '', '', '2008-02-23 20:16:29', '2008-12-11 13:40:20', '42'), 

  ('OceanFlameGroove', 'Ristar_OceanFlameGroove_OC_ReMix.mp3', '', '2153162', 'mp3', '0', '2', '14', 'http://www.ocremix.org/remix/OCR00476/', 'OCR', '1', '6', '7', '(Mars/Venus)', '', '-8', '0', '-8', '0', '0', '-8', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Percussive; Spacy', '', 'Heavy Percussion; Recorder', 'Brass', '', '', '2008-02-23 20:26:18', '2008-12-11 13:59:09', '43'), 

  ('Anachronism', 'Secret_of_Evermore_Anachronism_OC_ReMix.mp3', '', '4978175', 'mp3', '0', '5', '11', 'http://www.ocremix.org/remix/OCR01246/', 'OCR', '5', '2', '7', '(Mercury/Pluto/Uranus)', 'Classical Piano', '-8', '-8', '0', '0', '-8', '-8', '-8', '-8', '-9', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Busy; Calm; Dark; Flowing; Intricate; Mysterious; Passionate; Pretty; Slow; Unpredictable', '', 'Piano', '', 'Piano Only', '', '2008-02-27 02:04:07', '2008-12-11 15:20:37', '44'), 

  ('Dueling Consoles', 'Secret_of_Mana_Dueling_Consoles_OC_ReMix.mp3', '', '5339136', 'mp3', '0', '5', '33', 'http://www.ocremix.org/remix/OCR01485/', 'OCR', '1', '8', '6', '(Mars/Venus/Jupiter/Neptune)', '', '-8', '-8', '-8', '-8', '0', '-8', '-8', '-8', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Anxious; Energetic; Fast; Frantic; Happy; Intense; Spacy; Sweet; Unpredictable; Urgent', '', '', '', '', '', '2008-02-27 02:04:52', '2008-12-11 16:15:48', '45'), 

  ('Pure Lands (Total Darkness)', 'Secret_of_Mana_PureLands_(TotalDarkness)_OC_ReMix.mp3', '', '5464064', 'mp3', '0', '5', '39', 'http://www.ocremix.org/remix/OCR01084/', 'OCR', '7', '3', '2', '(Saturn/Uranus)', '', '0', '-8', '-8', '0', '0', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Deep; Drifting; Mysterious; Quiet; Rich; Slow', '', '', '', '', '', '2008-02-23 20:31:45', '2008-12-11 15:45:41', '46'), 

  ('Two Shadows Appear', 'Shadow_of_the_Ninja_Two_Shadows_Appear_OC_ReMix.mp3', '', '5763737', 'mp3', '0', '4', '0', 'http://www.ocremix.org/remix/OCR01445/', 'OCR', '3', '8', '6', '(Saturn)', 'Heavy Metal', '0', '0', '-8', '0', '-8', '-8', '0', '-8', '0', '', 'Was on Vgmix 2. Seems identical.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Controlled; Dark; Determined; Fast; Forceful; Intense; Intimidating; Powerful; Shrieking; Stable; Steady; Thundering', '', 'Electric Guitar; Heavy Drums', 'Church Organ', '', '', '2008-02-27 02:07:42', '2008-12-11 15:07:08', '47'), 

  ('Mystic Piano', 'Shadowgate_Mystic_Piano_OC_ReMix.mp3', '', '4382270', 'mp3', '0', '4', '33', 'http://www.ocremix.org/remix/OCR00593/', 'OCR', '6', '2', '8', '(Saturn/Neptune)', '', '0', '-8', '0', '0', '-8', '-8', '-8', '-8', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Anxious; Dark; Entrancing; Frantic; Frenetic; Hypnotic; Mysterious; Repetitive; Scary; Weird', '', 'Piano', 'Weird Frantic Percussion', '', '', '2008-02-27 02:10:23', '2008-12-11 15:25:03', '48'), 

  ('Dreaming While I Wake', 'Shenmue_DreamingWhileIWake_OC_ReMix.mp3', '', '5304385', 'mp3', '0', '3', '40', 'http://www.ocremix.org/remix/OCR01205/', 'OCR', '7', '1', '6', '(Venus)', '', '-8', '-8', '0', '0', '0', '-8', '-8', '0', '0', '', '', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Pretty; Quiet; Soft; Unpredictable', '', 'Male Voice', '', '', '', '2008-02-23 20:29:08', '2008-12-11 15:38:28', '49'), 

  ('Static Aversion', 'Silent_Hill_2_StaticAversion_OC_ReMix.mp3', '', '7268772', 'mp3', '0', '7', '39', 'http://www.ocremix.org/remix/OCR00451/', 'OCR', '7', '6', '3', '(Venus/Saturn/Eris)', '', '0', '-8', '-8', '0', '-8', '-8', '-8', '0', '-8', 'Sometimes a bit annoying and shrill - watch the volume.', '', 'y', 'y', 'n', 'y', 'n', 'n', 'y', 'y', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Annoying; Dark; Mysterious; Shrill', '', 'Static, Electric Guitar', '', '', '', '2008-02-27 02:29:59', '2008-12-11 15:56:25', '50'), 

  ('Scrambled Eggman', 'Sonic_3_Scrambled_Eggman_OC_ReMix.mp3', '', '4660960', 'mp3', '0', '3', '14', 'http://www.ocremix.org/remix/OCR01528/', 'OCR', '3', '8', '6', '', '', '0', '0', '-8', '0', '0', '-8', '0', '-8', '0', '', '', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Energetic; Forceful; Intense; Overpowering; Powerful', '', 'Electric Guitar; Heavy Drums', 'Males Laughing', '', '', '2008-02-27 02:32:53', '2008-12-11 16:04:46', '51'), 

  ('Sonic Azure', 'Sonic_3_Sonik_Azure_OC_ReMix.mp3', '', '4330571', 'mp3', '0', '3', '39', 'http://www.ocremix.org/remix/OCR00882/', 'OCR', '4', '3', '7', '(Venus)', '', '0', '-8', '-8', '-8', '0', '0', '-8', '-9', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Cheerful; Happy; Loud; Pretty; Sweet', '', 'Electric Guitar; Guitar', 'Drums', '', '', '2008-02-27 02:36:28', '2008-12-11 15:15:48', '52'), 

  ('Still In Your Marble Zone', 'Sonic_Still_In_Your_Marble_Zone_OC_ReMix.mp3', '', '4606296', 'mp3', '0', '3', '11', 'http://www.ocremix.org/remix/OCR01580/', 'OCR', '1', '5', '2', '(Mars)', '', '-8', '-8', '-8', '0', '-8', '0', '0', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', '', '', 'Piano', 'Guitar; Percussion; Sitar', '', '', '2008-02-28 15:15:48', '2008-12-11 13:50:08', '53'), 

  ('Sagat\'s Moonbike', 'Street_Fighter_2_Sagats_Moonbike_OC_ReMix.mp3', '', '5609814', 'mp3', '0', '4', '40', 'http://www.ocremix.org/remix/OCR01001/', 'OCR', '1', '7', '6', '(Mars/Saturn)', '', '-8', '0', '-8', '0', '-8', '-8', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Steady', '', 'Bending Synth; Heavy Percussion', 'Piano', '', '', '2008-02-27 02:48:40', '2008-12-11 14:00:46', '55'), 

  ('Ice Mountain Symphony', 'Super_Ghouls\'N_Ghosts_Ice_Mountain_Symphony_OC_ReMix.mp3', '', '2765777', 'mp3', '0', '2', '52', 'http://www.ocremix.org/remix/OCR00166/', 'OCR', '2', '1', '7', '', '', '-8', '-8', '-9', '0', '0', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Icy; Mysterious; Pretty', '', 'Flute; Oboe', 'Harp; Pizzicato Strings; Shimmering Chimes; Strings', '', '', '2008-02-27 02:15:08', '2008-12-11 14:15:55', '56'), 

  ('SuperBuckJazz', 'Super_Mario_Bros_2_SuperBuckJazz_OC_ReMix.mp3', '', '2494464', 'mp3', '0', '2', '35', 'http://www.ocremix.org/remix/OCR00577/', 'OCR', '4', '1', '5', '(Venus/Uranus)', '', '-8', '-8', '0', '-8', '-8', '-8', '0', '-9', '-8', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Cheerful; Controlled; Fast; Happy; Increasingly Unrestrained; Restrained; Sweet; Unpredictable', 'Jazz', '', '', '', '', '2008-02-27 03:00:04', '2008-12-11 15:11:40', '57'), 

  ('Battle Rocks', 'Super_Mario_Bros_3_Battle_Rocks_OC_ReMix.mp3', '', '4311954', 'mp3', '0', '2', '59', 'http://www.ocremix.org/remix/OCR00970/', 'OCR', '4', '3', '5', '', '', '0', '0', '-8', '-8', '-8', '0', '0', '0', '0', '', 'Was also on Vgmix 2. Seems identical.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Cheerful; Happy; Percussive; Plodding; Steady', '', '', 'Heavy Drums', '', '', '2008-02-27 03:01:15', '2008-12-11 15:14:52', '58'), 

  ('Dirty Mix', 'Super_Mario_Bros_Dirty_Mix_OC_ReMix.mp3', '', '4988931', 'mp3', '0', '2', '4', 'http://www.ocremix.org/remix/OCR00683/', 'OCR', '7', '6', '4', '(Mercury/Eris)', '', '-8', '0', '0', '-8', '0', '-8', '-8', '0', '-8', 'Gets loud sometimes, watch the volume, especially around 1:06-1:07.', '', 'y', 'y', 'y', 'n', 'y', 'n', 'y', 'y', 'n', 'y', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Annoying; Cheerful; Crazy; Unpredictable', '', '', '', '', '', '2008-02-27 03:03:19', '2008-12-11 15:57:28', '59'), 

  ('Mario\'s Tropical Paradise', 'Super_Mario_Bros_Mario\'sTropicalParadise_OC_ReMix.mp3', '', '4900702', 'mp3', '0', '5', '6', 'http://www.ocremix.org/remix/OCR01108/', 'OCR', '4', '1', '2', '(Uranus)', '', '-8', '-8', '0', '-8', '0', '-8', '0', '0', '0', '', 'Was also on Vgmix 2. Seems identical.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Cheerful; Energetic; Exuberant; Fast; Happy; Pretty; Sweet; Unpredictable', '', '', 'Brass; Piano; Strings', '', '', '2008-02-27 02:57:07', '2008-12-11 15:10:33', '60'), 

  ('BukkisTango', 'Super_Mario_RPG_BukkisTango_OC_ReMix.mp3', '', '2709102', 'mp3', '0', '2', '49', 'http://www.ocremix.org/remix/OCR00188/', 'OCR', '1', '5', '2', '(Neptune/Mars)', '', '-8', '-8', '-8', '0', '-8', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', '', '', 'High Strings; Low Strings', 'Choir; Harp; Heavy Thuds; Oboe', '', '', '2008-02-27 03:09:26', '2008-12-11 13:50:01', '61'), 

  ('Grand Valse Mario', 'Super_Mario_World_Grand_Valse_Mario_OC_ReMix.mp3', '', '2362520', 'mp3', '0', '2', '27', 'http://www.ocremix.org/remix/OCR01332/', 'OCR', '2', '4', '5', '', '', '0', '-8', '0', '-8', '-8', '0', '0', '0', '0', '', 'Was also on Vgmix 2. Vgmix: 2.26 MB, length 2:28. OcRemix: 2.25 MB, length 2:27. Can\'t really tell what the difference is, if any.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Cheerful; Happy; Sweet', 'Classical Waltz', 'Piano', '', 'Piano Only', '', '2008-02-27 03:10:51', '2008-12-11 14:26:11', '62'), 

  ('Monstrous Turtles!', 'Super_Mario_World_Monstrous_Turtles!_OC_ReMix.mp3', '', '4864171', 'mp3', '0', '3', '46', 'http://www.ocremix.org/remix/OCR01558/', 'OCR', '3', '7', '8', '(Mercury/Venus/Uranus)', '', '-8', '0', '-8', '0', '0', '-8', '-8', '-8', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Forceful; Mysterious; Pretty; Unpredictable', '', 'Electric Guitar; Heavy Drums', 'Chimes; Church Organ; Female Choir', '', '', '2008-02-28 14:42:04', '2008-12-11 15:07:40', '63'), 

  ('Super Mario\'s Sleigh Ride', 'Super_Mario_World_SuperMariosSleighRide_OC_ReMix.mp3', '', '4038577', 'mp3', '0', '3', '21', 'http://www.ocremix.org/remix/OCR00888/', 'OCR', '4', '1', '5', '(Venus)', '', '-8', '-8', '0', '-8', '-8', '0', '0', '-9', '0', '', 'Was also on Vgmix 2. Seems identical.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Cheerful; Christmassy; Happy; Pretty; Quiet; Steady; Sweet', 'Christmas Music', 'Brass; Piano', 'Jingle Bells', '', '', '2008-02-27 03:06:15', '2008-12-11 15:12:29', '64'), 

  ('Brinstar(DreamsinRed)', 'Super_Metroid_BrinstarDreamsInRed_OC_ReMix.mp3', '', '6213990', 'mp3', '0', '6', '15', 'http://www.ocremix.org/remix/OCR00891/', 'OCR', '7', '3', '6', '(Saturn)', '', '0', '0', '-8', '0', '-8', '-8', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Deep', '', '', '', '', '', '2008-02-29 06:56:15', '2008-12-11 15:49:57', '65'), 

  ('Norfair (Frailty Awaiting)', 'Super_Metroid_Norfair_(FrailtyAwaiting)_OC_ReMix.mp3', '', '5892096', 'mp3', '0', '5', '2', 'http://www.ocremix.org/remix/OCR01028/', 'OCR', '7', '8', '5', '', '', '0', '0', '0', '0', '-8', '0', '-8', '-8', '0', 'Can get a bit shrill.', '', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Dark; Deep; Drifting; Quiet; Shrill', '', '', '', '', '', '2008-02-29 06:54:35', '2008-12-11 15:57:59', '66'), 

  ('Turtle Wave', 'TMNT3_Turtle_Wave_OC_ReMix.mp3', '', '3710961', 'mp3', '0', '3', '51', 'http://www.ocremix.org/remix/OCR01144/', 'OCR', '1', '6', '4', '(Venus/Mars)', '', '-8', '-8', '-8', '-8', '0', '-8', '1', '1', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Cheerful; Energetic; Exuberant; Exuberantly Happy; Light; Unpredictable', '', '', 'Heavy Drums', '', '', '2008-02-29 05:30:36', '2008-12-11 14:08:29', '67'), 

  ('GiftFromMoscow', 'Tetris_GiftFromMoscow_OC_ReMix.mp3', '', '6256590', 'mp3', '0', '4', '20', 'http://www.ocremix.org/remix/OCR00826/', 'OCR', '2', '5', '1', '', '', '4', '4', '0', '1', '4', '-9', '2', '-9', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Pretty; Sweet', 'Classical; Polka', 'Harpsichord', '', '', '', '2008-02-27 03:17:53', '2008-12-11 14:28:16', '68'), 

  ('The Darkness And The Light', 'Zelda_3_TheDarknessAndTheLight_OC_ReMix.mp3', '', '5681078', 'mp3', '0', '5', '54', 'http://www.ocremix.org/remix/OCR01185/', 'OCR', '7', '2', '3', '(Saturn/Jupiter/Uranus)', '', '0', '-8', '-8', '-8', '-8', '-8', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Happy; Percussive; Pretty; Quiet; Steady', '', '', '', '', '', '2008-02-27 02:43:22', '2008-12-11 15:40:22', '69'), 

  ('Hyrule\'s Angel (The Sleeping Beauty)', 'Zelda_Hyrule\'s_Angel(The_Sleeping_Beauty)_OC_ReMix.mp3', '', '6258688', 'mp3', '0', '6', '31', 'http://www.ocremix.org/remix/OCR01496/', 'OCR', '3', '7', '8', '(Venus/Jupiter)', '', '0', '-8', '-8', '-8', '0', '0', '-8', '-8', '0', '', '', 'y', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Determined; Happy; Heroic; Mysterious; Pretty; Sad; Tragic', '', 'Electric Guitar; Heavy Drums; Male Voice', 'Female Voice', '', '', '2008-02-27 02:24:12', '2008-12-11 15:05:10', '70'), 

  ('Nayru\'s Love', 'Zelda_Oracle_of_Ages_Nayru\'s_Love_OC_ReMix.mp3', '', '3917824', 'mp3', '0', '2', '43', 'http://www.ocremix.org/remix/OCR01417/', 'OCR', '2', '5', '4', '(Neptune)', '', '0', '-8', '0', '-8', '-8', '0', '-8', '0', '0', '', 'Was also on Vgmix 2. Vgmix: 3.14 MB, length 2:44. OcRemix: 3.73 MB, length 2:43. The piano sounds different in each, possibly better in the OcRemix.', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Deep; Pretty; Sedate; Slow; Subdued Warmth; Sweet', '', 'Piano', '', 'Piano Only', '', '2008-02-27 02:12:00', '2008-12-11 14:32:02', '71'), 

  ('Bust This Groove \'81', 'Bust_a_Groove_BustThisGroove\'81_OC_ReMix.mp3', '', '5674340', 'mp3', '0', '3', '56', 'http://www.ocremix.org/remix/OCR01368/', 'OCR', '2', '1', '3', '', 'Disco', '-8', '-8', '-8', '0', '0', '0', '0', '0', '0', '', '', 'y', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Annoying; Cheesy; Determined; Pretty; Sappy; Sweet; Tacky', 'Abba; Disco', 'Female Voice', 'Electric Guitar; Percussion', '', '', '2008-02-23 01:58:03', '2008-12-11 14:10:40', '72'), 

  ('Green Hill Zone', '8 Bit Instrumental VGM - Green Hill Zone.mp3', '', '4619016', 'mp3', '0', '2', '50', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=607&song_id=375&template=script_comment.tpl', 'VGMX', '2', '4', '3', '(Neptune)', '', '-8', '4', '-8', '4', '0', '0', '-8', '-9', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Cheerful; Happy; Pretty; Sweet', '', 'Guitar', 'Heavy Drums', '', '', '2008-03-03 12:50:14', '2008-12-11 15:00:34', '73'), 

  ('Reawakening', 'AzureKevin - Reawakening.mp3', '', '5806020', 'mp3', '0', '4', '50', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=37&song_id=593&template=script_comment.tpl', 'VGMX', '2', '1', '7', '(Mars/Saturn/Jupiter)', '', '-8', '-8', '-8', '-8', '-8', '0', '-8', '-9', '-9', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Pretty; Sad; Sweet; Warm; Windy', '', 'Piccolo', 'Drums; Percussion; Piano; Strings; Wind', '', '', '2008-03-03 12:50:14', '2008-12-11 14:17:21', '74'), 

  ('Harmonpy', 'Blinn - Harmonpy.mp3', '', '268396', 'mp3', '0', '0', '22', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=492&song_id=400&template=script_comment.tpl', 'VGMX', '2', '1', '4', '', '', '-8', '-8', '-9', '-8', '0', '0', '0', '-9', '-9', '', 'Once you follow the link, check out the comments for a link to an acoustic version.', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Fun; Harmonic; Silly; Warm; Welcoming', 'A Cappella', 'Male Voice', '', 'Male Voice Only', '', '2008-03-03 12:50:14', '2008-12-11 14:14:24', '75'), 

  ('Eight Characters in a Castle', 'Bundeslang - Eight Characters in a Castle.mp3', '', '3867420', 'mp3', '0', '4', '1', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=220&song_id=46&template=script_comment.tpl', 'VGMX', '6', '5', '8', '(Mars/Venus/Neptune/Eris)', '', '-8', '-8', '-8', '-9', '-8', '-8', '-8', '-8', '-8', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Annoying; Anxious; Blaring; Hypnotic; Repetitive; Rhythmic; Scary; Steady; Techno', '', '', '', '', '', '2008-03-03 12:50:14', '2008-12-11 15:29:48', '76'), 

  ('Zelda Theme', 'Cultgaming - Zelda Theme-lofi.mp3', '', '1272576', 'mp3', '0', '1', '19', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=566&song_id=228&template=script_comment.tpl', 'VGMX', '2', '1', '7', '(Jupiter/Saturn)', '', '-8', '-8', '-8', '-8', '-8', '0', '-8', '-9', '-9', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Bold; Determined; Heroic; Pretty; Quiet', '', 'Guitar', '', 'Guitar Only', '', '2008-03-03 12:50:14', '2008-12-11 14:18:41', '77'), 

  ('Take Me Away', 'Darangen - Take Me Away.mp3', '', '6158946', 'mp3', '0', '4', '30', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=577&song_id=327&template=script_comment.tpl', 'VGMX', '2', '7', '1', '(Saturn)', '', '4', '4', '2', '0', '4', '0', '4', '1', '-8', '', '', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Pretty; Quiet; Sad; Sweet', '', 'Guitar; Male Voice', 'Harp; Male Choir', '', '', '2008-03-03 12:50:14', '2008-12-11 14:45:14', '78'), 

  ('Dances of Wind, Sky, and Earth', 'DrumUltimA - Dances of Wind Sky and Earth.mp3', '', '5908106', 'mp3', '0', '4', '5', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=25&song_id=501&template=script_comment.tpl', 'VGMX', '5', '3', '1', '(Uranus)', 'Tribal', '-8', '0', '-8', '0', '-8', '-8', '0', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Busy; Calm; Exciting; Forceful; Percussive; Quiet; Rhythmic; Thundering; Tribal; Unpredictable', '', 'Drums; Heavy Drums', '', 'Drums Only', '', '2008-03-03 12:50:14', '2008-12-11 16:15:58', '79'), 

  ('BioLab', 'Hezkore - BioLab.mp3', '', '5221608', 'mp3', '0', '3', '37', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=525&song_id=579&template=script_comment.tpl', 'VGMX', '5', '6', '3', '(Mercury/Venus/Neptune/Jupiter)', '', '-8', '-8', '-8', '-8', '-8', '-8', '-8', '-9', '-9', '', '', 'y', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Steady; Unpredictable', '', '', '', '', '', '2008-03-03 12:50:14', '2008-12-11 15:23:09', '80'), 

  ('Electric Suspect', 'Hezkore - Electric Suspect.mp3', '', '3822908', 'mp3', '0', '2', '39', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=525&song_id=578&template=script_comment.tpl', 'VGMX', '6', '5', '1', '(Mars/Venus)', '', '4', '-8', '-8', '0', '4', '4', '0', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Rhythmic; Steady; Techno', '', '', '', '', '', '2008-03-03 12:50:14', '2008-12-11 15:28:58', '81'), 

  ('Pilotwings!', 'Hezkore - Pilotwings.mp3', '', '4056129', 'mp3', '0', '2', '48', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=525&song_id=580&template=script_comment.tpl', 'VGMX', '4', '5', '3', '(Mercury/Uranus/Venus)', '', '-8', '-8', '4', '4', '4', '4', '-9', '-9', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Cheerful; Heavy; Heavy Percussion; Heavy Rhythm', '', '', 'Heavy Drums; Piano', '', '', '2008-03-03 12:50:14', '2008-12-11 15:16:44', '82'), 

  ('Jeh Jeh Rocket Drowning Lopear Mix', 'Huepow00 - Jeh Jeh Rocket Drowning Lopear Mix.mp3', '', '8769873', 'mp3', '0', '3', '39', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=1247&song_id=564&template=script_comment.tpl', 'VGMX', '6', '7', '3', '(Saturn/Pluto)', '', '-8', '-8', '-8', '0', '-8', '-8', '-8', '0', '0', '', '', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Detached; Forceful; Repetitive; Rhythmic; Scary; Steady; Techno; Unemotional; Unpredictable', 'Techno', '', '', '', '', '2008-03-03 12:50:14', '2008-12-11 15:31:25', '83'), 

  ('Olive Ocean Evening Mix', 'Huepow00 - Olive Ocean Evening Mix.mp3', '', '4941157', 'mp3', '0', '5', '8', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=1247&song_id=568&template=script_comment.tpl', 'VGMX', '6', '7', '5', '(Venus/Eris)', '', '0', '-8', '0', '0', '-8', '-8', '-8', '0', '-8', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Ambient; Anxious; Calm; Discordant; Drifting; Energetic; Mysterious; Rhythmic; Subdued; Tense', '', '', '', '', '', '2008-03-03 12:50:14', '2008-12-11 15:32:43', '84'), 

  ('The Windmill Song (Spin Spin Spin Remix)', 'Huepow00 - The Windmill Song Spin Spin Spin Remix.mp3', '', '9057846', 'mp3', '0', '6', '17', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=1247&song_id=569&template=script_comment.tpl', 'VGMX', '6', '7', '5', '(Venus/Eris/Mars)', '', '0', '-8', '-8', '0', '-8', '-8', '-8', '-8', '-8', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Annoying; Calm; Cheerful; Discordant; Repetitive; Restrained; Subdued; Unpredictable; Weird', 'Techno', '', '', '', '', '2008-03-03 12:50:14', '2008-12-11 15:34:04', '85'), 

  ('Erana\'s Peace - Lamenting Guitars Mix', 'MusicallyInspired - Eranas Peace - Lamenting Guitars Mix.mp3', '', '4843247', 'mp3', '0', '3', '33', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=188&song_id=52&template=script_comment.tpl', 'VGMX', '2', '7', '5', '(Mercury/Mars)', '', '3', '4', '3', '1', '4', '-9', '4', '-9', '1', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Pretty; Quiet; Sad; Soft', '', 'Guitar', 'Electric Guitar', '', '', '2008-03-03 12:50:14', '2008-12-11 14:48:50', '87'), 

  ('In the Library We Speak With a 6 Inch Voice', 'OverCoat - In the Library We Speak With a 6 Inch Voice.mp3', '', '4144632', 'mp3', '0', '3', '27', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=122&song_id=222&template=script_comment.tpl', 'VGMX', '1', '6', '5', '(Mars/Neptune/Eris)', '', '-8', '0', '4', '0', '4', '4', '-8', '0', '-8', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Controlled; Heavy; Weird', '', '', 'Heavy Drums', 'Sounds Like Jaws', '', '2008-03-03 12:50:14', '2008-12-11 14:07:46', '90'), 

  ('High Intensity', 'Trevin Hughes - High Intensity.mp3', '', '2955525', 'mp3', '0', '2', '3', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=53&song_id=69&template=script_comment.tpl', 'VGMX', '6', '8', '3', '(Saturn/Mercury/Venus)', '', '-8', '0', '-8', '0', '-8', '-8', '-8', '-8', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Busy; Dark; Intense; Intimidating; Scary; Techno; Threatening', '', 'Electric Guitar', '', '', '', '2008-03-03 12:50:14', '2008-12-11 15:34:49', '93'), 

  ('Mushroom Maddness', 'Trevin Hughes - Mushroom Maddness.mp3', '', '3537650', 'mp3', '0', '3', '40', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=53&song_id=66&template=script_comment.tpl', 'VGMX', '4', '2', '6', '(Mercury/Neptune/Mars)', '', '-8', '-8', '-8', '-8', '-8', '4', '-8', '-9', '-9', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Cheerful; Happy; Percussive; Playful; Pretty; Spacy; Stable; Steady; Sweet; Unpredictable', '', '', 'Heavy Drums', '', '', '2008-03-03 12:50:14', '2008-12-11 15:13:32', '94'), 

  ('Heated standstill', 'ansgaros - Heated standstill.mp3', '', '6540958', 'mp3', '0', '4', '7', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=292&song_id=124&template=script_comment.tpl', 'VGMX', '3', '7', '5', '(Venus/Pluto)', '', '0', '-8', '-8', '0', '-8', '0', '-8', '-8', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Anxious; Calm; Dark; Drifting; Pretty; Slow', '', 'Electric Guitar; Heavy Drums', 'Piano; Shimmering Chimes', '', '', '2008-03-03 12:50:14', '2008-12-11 15:01:54', '95'), 

  ('The Forest That Never Sleeps', 'halcyon - The Forest That Never Sleeps.mp3', '', '4773138', 'mp3', '0', '4', '58', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=395&song_id=135&template=script_comment.tpl', 'VGMX', '1', '6', '7', '(Venus/Mars)', '', '-8', '-8', '-8', '0', '0', '4', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Aquatic; Soft; Unpredictable', '', '', 'Piano; Sitar; Soft Percussion', '', '', '2008-03-03 12:50:14', '2008-12-11 14:06:51', '96'), 

  ('LEGEND OF ZELDA ROCKS ALL OF YOU', 'mrSimon - LEGEND OF ZELDA ROCKS ALL OF YOU.mp3', '', '1637086', 'mp3', '0', '1', '37', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=230&song_id=276&template=script_comment.tpl', 'VGMX', '6', '4', '3', '(Mercury/Venus/Neptune/Pluto)', '', '-8', '-8', '-8', '-8', '0', '-8', '-8', '-8', '0', '', '', 'y', 'y', 'y', 'n', 'n', 'y', 'n', 'n', 'n', 'y', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Cheerful; Forceful; Happy; Mysterious; Rhythmic; Spacy; Techno; Unpredictable', '', '', '', 'Harsh Lyrics', '', '2008-03-03 12:50:14', '2008-12-11 15:28:19', '101'), 

  ('MARIO KNOWS HOW TO TREAT HIS ****', 'mrSimon - MARIO KNOWS HOW TO TREAT HIS .mp3', '', '1979812', 'mp3', '0', '1', '58', 'http://www.vgmix.com/comment.php?mode=view_comments&type=song&band_id=230&song_id=277&template=script_comment.tpl', 'VGMX', '2', '6', '7', '(Jupiter/Mars/Eris)', '', '-8', '-8', '-8', '-8', '0', '-8', '-8', '0', '-8', 'Mostly a pleasant enough song but watch out for the end, beginning at 1:53. The first time I heard that I thought my headphones were breaking.', '', 'y', 'y', 'n', 'n', 'n', 'n', 'y', 'y', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Aquatic; Cheerful; Energetic; Happy; Pretty; Soft; Spacy; Sweet; Techno; Weird', '', '', '', '', '', '2008-03-03 12:50:14', '2008-12-11 14:43:33', '102'), 

  ('Fillmore Freestyle', 'Actraiser_Fillmore_Freestyle_OC_ReMix.mp3', '', '3232077', 'mp3', '0', '3', '21', 'http://www.ocremix.org/remix/OCR00211/', 'OCR', '1', '2', '6', '(Mars/Saturn)', '', '-8', '-8', '-8', '0', '-8', '-8', '0', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', '', '', '', '', '', '', '2008-03-03 13:23:21', '2008-03-09 01:09:25', '139'), 

  ('Advance with Caution', 'Bionic_Commando_Advance_with_Caution_OC_ReMix.mp3', '', '4984870', 'mp3', '0', '4', '9', 'http://www.ocremix.org/remix/OCR01302/', 'OCR', '2', '3', '5', '(Jupiter/Pluto)', '', '-8', '-8', '-8', '-8', '-8', '0', '0', '-8', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Anxious; Determined; Forceful; Happy; Heroic; Militant; Worrisome', '', 'Drums; Strings', '', '', '', '2008-03-03 13:23:21', '2008-12-11 14:24:45', '140'), 

  ('Watermelon Flava', 'Breath_of_Fire_3_Watermelon_Flava_OC_ReMix.mp3', '', '4321280', 'mp3', '0', '3', '0', 'http://www.ocremix.org/remix/OCR01411/', 'OCR', '1', '2', '5', '(Jupiter/Neptune)', '', '-8', '-8', '0', '-8', '-8', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', '', '', '', '', '', '', '2008-03-03 13:23:21', '2008-12-11 13:08:16', '141'), 

  ('Doomed', 'Doom_Doomed_OC_ReMix.mp3', '', '4690914', 'mp3', '0', '4', '53', 'http://www.ocremix.org/remix/OCR00231/', 'OCR', '7', '2', '6', '(Mercury/Saturn/Pluto)', '', '0', '-8', '0', '0', '0', '-8', '-8', '-8', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Drifting; Quiet; Slow', '', '', '', '', '', '2008-03-03 13:23:21', '2008-12-11 15:43:57', '148') ;

INSERT INTO

	vgSongDetails (title, filename, localfolder, filesize, filetype, hours, mins, secs, url, urltype, label1, label2, label3, sublabels, genre, me, ve, ma, ju, sa, ur, ne, pl, er, warning, comment, vocals, words, malevocals, femvocals, foreignlang, profanity, volumewarning, grating, disturbing, humorous, nonewlabel, temphide, addlater, findagain, medley, deleted, sourcestring, performerstring, vocaliststring, remixerstring, composerstring, adjectivestring, genrestring, leadinstrumentstring, otherinstrumentstring, otherstring, languagestring, whenadded, whenmodified, song_id)

	VALUES

 ('Purgatory', 'Doom_Purgatory_OC_ReMix.mp3', '', '5852398', 'mp3', '0', '4', '3', 'http://www.ocremix.org/remix/OCR01385/', 'OCR', '8', '3', '1', '(Uranus)', 'Death Metal', '-8', '0', '-8', '0', '0', '-8', '-8', '-8', '0', 'Some screaming around 0:43-0:52, though other than that, this song isn\'t that disturbing.', '', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Atmospheric; Dark; Drifting; Energetic; Fast; Forceful; Inconsistent Mood; Loud; Scary', '', 'Electric Guitar', '', '', '', '2008-03-03 13:23:21', '2008-12-11 15:59:35', '149'), 

  ('Climhazzard Rush', 'Final_Fantasy_7_Climhazzard_Rush_OC_ReMix.mp3', '', '5570432', 'mp3', '0', '3', '52', '', 'OCR', '7', '2', '6', '(Mars/Saturn)', '', '-8', '-8', '-8', '0', '-8', '-8', '-8', '0', '0', '', '', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Mysterious; Percussive; Slow; Unpredictable; Weird', '', '', 'Heavy Drums', '', '', '2008-03-03 13:23:21', '2008-12-11 15:44:32', '157'), 

  ('Icy Peaks', 'Perfect_Cherry_Blossom_Icy_Peaks_OC_ReMix.mp3', '', '2872810', 'mp3', '0', '1', '59', 'http://www.ocremix.org/remix/OCR01569/', 'OCR', '2', '7', '5', '', 'Classical Violin', '0', '-8', '0', '0', '-8', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Beautiful; Heartbreaking; Sad', '', 'Violin', '', 'Violin Only', '', '2008-03-03 13:23:21', '2008-12-11 14:49:46', '174'), 

  ('Pegasus Boots', 'Solstice_Pegasus_Boots_OC_ReMix.mp3', '', '4839813', 'mp3', '0', '5', '2', 'http://www.ocremix.org/remix/OCR01405/', 'OCR', '1', '6', '5', '(Venus/Mars)', '', '-8', '-8', '-8', '0', '-8', '-8', '0', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Jazzy; Quiet; Weird', '', 'Saxophone', 'Chime; Flute; Heavy Drums', '', '', '2008-03-03 13:23:21', '2008-12-11 13:57:59', '179'), 

  ('Knuckleduster', 'Sonic_3_Knuckleduster_OC_ReMix.mp3', '', '5565005', 'mp3', '0', '3', '51', 'http://www.ocremix.org/remix/OCR01526/', 'OCR', '1', '3', '2', '(Saturn/Jupiter)', '', '-8', '-8', '-8', '0', '-8', '0', '0', '-9', '-9', '', '', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', '', '', 'Sometimes Falsetto Male Voice', 'Piano; Strings', '', '', '2008-03-03 13:23:21', '2008-12-11 13:37:11', '181'), 

  ('Tears For a Moonlit Knight', 'Soul_Blazer_Tears_For_a_Moonlit_Knight_OC_ReMix.mp3', '', '5220256', 'mp3', '0', '5', '26', 'http://www.ocremix.org/remix/OCR00587/', 'OCR', '7', '2', '3', '(Mercury/Uranus/Saturn)', '', '-8', '-8', '-8', '0', '0', '-8', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Deep; Medieval; Mysterious; Pretty; Quiet; Rich; Soft; Weird', '', 'Recorder', 'Bowed Strings; Pizzicato Strings; Weird Heavy Drums', '', '', '2008-03-03 13:23:21', '2008-12-11 15:42:25', '183'), 

  ('hyrulecastledarkworld', 'Zelda_3_hyrulecastledarkworld_OC_ReMix.mp3', '', '3817842', 'mp3', '0', '3', '58', 'http://www.ocremix.org/remix/OCR00065/', 'OCR', '1', '5', '7', '(Venus/Mars)', '', '-8', '-8', '-8', '0', '-8', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Cool; Detached', 'Jazz', 'Bending Synth Strings', 'Heavy Drums', '', '', '2008-03-03 13:23:21', '2008-12-11 13:53:18', '198'), 

  ('Gerudo Peeples', 'Zelda_64_Gerudo_Peeples_OC_ReMix.mp3', '', '3228165', 'mp3', '0', '3', '21', 'http://www.ocremix.org/remix/OCR00109/', 'OCR', '7', '3', '5', '(Venus/Mercury)', '', '-8', '-8', '-8', '0', '-8', '0', '-8', '0', '0', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Forceful; Heavy', '', '', '', '', '', '2008-03-03 13:23:21', '2008-12-11 15:46:32', '199'), 

  ('Prayer', 'Zelda_64_Prayer_OC_ReMix.mp3', '', '5785155', 'mp3', '0', '4', '49', 'http://www.ocremix.org/remix/OCR01333/', 'OCR', '7', '2', '1', '(Uranus)', '', '-8', '-8', '0', '0', '0', '-8', '-8', '0', '-8', '', '', 'y', 'y', 'n', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Pretty; Soft; Sometimes Inadvertently Off-Key', '', 'Female Voice', 'Rain', '', 'Japanese', '2008-03-03 13:23:21', '2008-12-11 15:39:44', '200'), 

  ('Psychotic Censors', 'Bad Dudes ZRMN EP - Mazedude - Psychotic Censors.mp3', '', '4022272', 'mp3', '0', '3', '21', 'http://www.oneupstudios.com/ep_03.php', 'DL', '8', '5', '3', '(Mercury/Venus/Uranus/Neptune/Eris)', '', '-8', '-8', '-8', '-9', '4', '-8', '-8', '4', '-8', '', '', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Dark; Playful; Rhythmic; Scary; Unpredictable', '', '', '', '', '', '2008-03-14 02:48:50', '2008-12-11 16:00:14', '3739'), 

  ('We\'re All Going To Hell', 'THE BASTARD FAIRIES Memento Mori-06_WERE_ALL_GOING_TO_HELL.mp3', '', '2712026', 'mp3', '0', '2', '49', 'http://thebastardfairies.com/download-memento-mori/', 'DL', '6', '2', '9', '(Saturn/Neptune/Pluto/Jupiter/Mercury/Mars)', '', '3', '4', '3', '2', '3', '4', '3', '3', '4', '', 'Darn, this one was hard to classify. :-)', 'y', 'y', 'n', 'y', 'n', 'y', 'n', 'n', 'n', 'y', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Calm; Cheerful; Clever; Creepy; Dark; Insulting; Pretty; Pseudo-Light; Sarcastic; Shocking; Steady; Unpredictable', '', 'Female Voice', '', 'Harsh Lyrics', '', '2008-03-14 02:48:50', '2008-12-11 15:26:59', '3779'), 

  ('Everyone Has A Secret', 'THE BASTARD FAIRIES Memento Mori-07_EVERYONE_HAS_A_SECRET.mp3', '', '3999466', 'mp3', '0', '4', '9', 'http://thebastardfairies.com/download-memento-mori/', 'DL', '1', '7', '9', '(Venus/Mars/Uranus/Pluto)', '', '-8', '-8', '-8', '0', '0', '-8', '-8', '-8', '-8', '', '', 'y', 'y', 'n', 'y', 'n', 'n', 'n', 'y', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Annoying; Discordant; Heartbreaking', '', 'Female Voice; Female Whisper; Guitar', 'Heavy Drums', '', '', '2008-03-14 02:48:50', '2008-12-11 14:01:50', '3780'), 

  ('A Venomous Tale', 'THE BASTARD FAIRIES Memento Mori-09_A_VENOMOUS_TALE.mp3', '', '3318962', 'mp3', '0', '3', '27', 'http://thebastardfairies.com/download-memento-mori/', 'DL', '2', '3', '1', '(Saturn/Jupiter/Neptune/Uranus)', '', '4', '4', '4', '3', '4', '2', '2', '-9', '-9', '', '', 'y', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Cheerful; Happy; Mysterious; Pretty; Stable; Steady', '', 'Female Voice', 'Guitar; Heavy Drums', '', '', '2008-03-14 02:48:50', '2008-12-11 14:22:07', '3781'), 

  ('Guns and Dolls', 'THE BASTARD FAIRIES Memento Mori-10_GUNS_AND_DOLLS.mp3', '', '3213208', 'mp3', '0', '3', '20', 'http://thebastardfairies.com/download-memento-mori/', 'DL', '1', '2', '7', '(Saturn/Eris)', '', '-8', '-8', '-9', '0', '-8', '-9', '-8', '0', '-8', '', '', 'y', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Pretty; Repetitive', '', 'Female Voice; Guitar', '', '', '', '2008-03-14 02:48:50', '2008-12-11 13:34:48', '3782'), 

  ('Memento Mori', 'THE BASTARD FAIRIES Memento Mori-11_MEMENTO_MORI.mp3', '', '2972440', 'mp3', '0', '3', '5', 'http://thebastardfairies.com/download-memento-mori/', 'DL', '2', '8', '4', '(Mercury/Neptune/Eris)', '', '3', '4', '0', '4', '0', '0', '4', '4', '-8', 'The jingle bells are a bit loud and annoying. Plus, the lyrics rather clash with what an overall pretty, pleasant song this is.', '', 'y', 'y', 'n', 'y', 'n', 'n', 'y', 'y', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', '', '', '', '', '', 'Annoying; Creepy; Pretty; Too Loud', '', 'Female Voice; Guitar', 'Jingle Bells', '', '', '2008-03-14 02:48:50', '2008-12-11 14:55:20', '3783');



INSERT INTO

	vgRolesAndSongs (generic_id, spelling_id, entity_id, song_id, role)

	VALUES

 ('1', '49', '49', '1', 'source'), 

  ('45', '40', '40', '1', 'remixer'), 

  ('44', '40', '40', '1', 'performer'), 

  ('33', '19', '19', '2', 'remixer'), 

  ('32', '19', '19', '2', 'performer'), 

  ('41', '50', '50', '2', 'source'), 

  ('7', '51', '51', '3', 'source'), 

  ('46', '37', '37', '3', 'performer'), 

  ('47', '29', '29', '3', 'performer'), 

  ('48', '37', '37', '3', 'remixer'), 

  ('49', '29', '29', '3', 'remixer'), 

  ('43', '40', '40', '4', 'remixer'), 

  ('42', '40', '40', '4', 'performer'), 

  ('12', '52', '52', '4', 'source'), 

  ('50', '53', '53', '5', 'source'), 

  ('51', '32', '32', '5', 'performer'), 

  ('52', '32', '32', '5', 'vocalist'), 

  ('53', '32', '32', '5', 'remixer'), 

  ('57', '55', '55', '7', 'source'), 

  ('58', '28', '28', '7', 'performer'), 

  ('59', '28', '28', '7', 'remixer'), 

  ('61', '56', '56', '8', 'source'), 

  ('62', '44', '44', '8', 'performer'), 

  ('63', '44', '44', '8', 'remixer'), 

  ('64', '58', '58', '9', 'source'), 

  ('65', '44', '44', '9', 'performer'), 

  ('66', '114', '114', '9', 'vocalist'), 

  ('67', '44', '44', '9', 'remixer'), 

  ('68', '57', '57', '10', 'source'), 

  ('69', '13', '13', '10', 'performer'), 

  ('70', '13', '13', '10', 'remixer'), 

  ('71', '57', '57', '11', 'source'), 

  ('72', '31', '31', '11', 'performer'), 

  ('73', '31', '31', '11', 'remixer'), 

  ('74', '57', '57', '12', 'source'), 

  ('75', '17', '17', '12', 'performer'), 

  ('76', '17', '17', '12', 'remixer'), 

  ('77', '57', '57', '13', 'source'), 

  ('78', '20', '20', '13', 'performer'), 

  ('79', '21', '21', '13', 'performer'), 

  ('80', '20', '20', '13', 'vocalist'), 

  ('81', '21', '21', '13', 'vocalist'), 

  ('82', '20', '20', '13', 'remixer'), 

  ('83', '21', '21', '13', 'remixer'), 

  ('84', '59', '59', '14', 'source'), 

  ('85', '25', '25', '14', 'performer'), 

  ('86', '114', '114', '14', 'vocalist'), 

  ('87', '25', '25', '14', 'remixer'), 

  ('88', '60', '60', '15', 'source'), 

  ('89', '40', '40', '15', 'performer'), 

  ('90', '40', '40', '15', 'remixer'), 

  ('91', '61', '61', '16', 'source'), 

  ('92', '40', '40', '16', 'performer'), 

  ('93', '40', '40', '16', 'remixer'), 

  ('94', '62', '62', '17', 'source'), 

  ('95', '26', '26', '17', 'performer'), 

  ('96', '26', '26', '17', 'remixer'), 

  ('112', '62', '62', '19', 'source'), 

  ('113', '4', '4', '19', 'performer'), 

  ('114', '4', '4', '19', 'remixer'), 

  ('100', '63', '63', '21', 'source'), 

  ('101', '43', '43', '21', 'performer'), 

  ('102', '43', '43', '21', 'remixer'), 

  ('103', '63', '63', '22', 'source'), 

  ('104', '43', '43', '22', 'performer'), 

  ('105', '43', '43', '22', 'remixer'), 

  ('106', '63', '63', '23', 'source'), 

  ('107', '20', '20', '23', 'performer'), 

  ('108', '20', '20', '23', 'vocalist'), 

  ('109', '20', '20', '23', 'remixer'), 

  ('115', '63', '63', '24', 'source'), 

  ('116', '40', '40', '24', 'performer'), 

  ('117', '40', '40', '24', 'remixer'), 

  ('118', '63', '63', '25', 'source'), 

  ('119', '3', '3', '25', 'performer'), 

  ('120', '3', '3', '25', 'remixer'), 

  ('121', '63', '63', '26', 'source'), 

  ('122', '8', '8', '26', 'performer'), 

  ('123', '9', '9', '26', 'performer'), 

  ('124', '9', '9', '26', 'vocalist'), 

  ('125', '8', '8', '26', 'remixer'), 

  ('126', '9', '9', '26', 'remixer'), 

  ('127', '64', '64', '27', 'source'), 

  ('128', '24', '24', '27', 'performer'), 

  ('129', '26', '26', '27', 'performer'), 

  ('130', '25', '25', '27', 'performer'), 

  ('131', '24', '24', '27', 'vocalist'), 

  ('132', '25', '25', '27', 'vocalist'), 

  ('133', '24', '24', '27', 'remixer'), 

  ('134', '26', '26', '27', 'remixer'), 

  ('135', '25', '25', '27', 'remixer'), 

  ('136', '65', '65', '28', 'source'), 

  ('137', '46', '46', '28', 'performer'), 

  ('138', '46', '46', '28', 'vocalist'), 

  ('139', '46', '46', '28', 'remixer'), 

  ('294', '115', '115', '28', 'composer'), 

  ('140', '66', '66', '29', 'source'), 

  ('141', '24', '24', '29', 'performer'), 

  ('142', '24', '24', '29', 'remixer'), 

  ('143', '115', '115', '29', 'composer'), 

  ('144', '71', '71', '30', 'source'), 

  ('145', '39', '39', '30', 'performer'), 

  ('146', '39', '39', '30', 'remixer'), 

  ('147', '115', '115', '30', 'composer'), 

  ('148', '72', '72', '31', 'source'), 

  ('149', '27', '27', '31', 'performer'), 

  ('150', '27', '27', '31', 'remixer'), 

  ('151', '115', '115', '31', 'composer'), 

  ('152', '76', '76', '32', 'source'), 

  ('153', '40', '40', '32', 'performer'), 

  ('154', '40', '40', '32', 'remixer'), 

  ('155', '77', '77', '33', 'source'), 

  ('156', '35', '35', '33', 'performer'), 

  ('157', '35', '35', '33', 'remixer'), 

  ('158', '78', '78', '34', 'source'), 

  ('159', '47', '47', '34', 'performer'), 

  ('160', '47', '47', '34', 'remixer'), 

  ('312', '79', '79', '35', 'source'), 

  ('162', '12', '12', '35', 'performer'), 

  ('163', '12', '12', '35', 'remixer'), 

  ('167', '80', '80', '36', 'source'), 

  ('168', '45', '45', '36', 'performer'), 

  ('169', '45', '45', '36', 'remixer'), 

  ('170', '81', '81', '37', 'source'), 

  ('171', '28', '28', '37', 'performer'), 

  ('172', '28', '28', '37', 'remixer'), 

  ('173', '82', '82', '38', 'source'), 

  ('174', '5', '5', '38', 'performer'), 

  ('175', '5', '5', '38', 'remixer'), 

  ('176', '84', '84', '39', 'source'), 

  ('177', '11', '11', '39', 'performer'), 

  ('178', '11', '11', '39', 'remixer'), 

  ('179', '86', '86', '40', 'source'), 

  ('180', '44', '44', '40', 'performer'), 

  ('181', '44', '44', '40', 'remixer'), 

  ('182', '86', '86', '41', 'source'), 

  ('183', '34', '34', '41', 'performer'), 

  ('184', '34', '34', '41', 'remixer'), 

  ('185', '88', '88', '42', 'source'), 

  ('186', '46', '46', '42', 'performer'), 

  ('187', '46', '46', '42', 'vocalist'), 

  ('188', '46', '46', '42', 'remixer'), 

  ('189', '89', '89', '43', 'source'), 

  ('190', '1', '1', '43', 'performer'), 

  ('191', '1', '1', '43', 'remixer'), 

  ('200', '90', '90', '44', 'source'), 

  ('201', '44', '44', '44', 'performer'), 

  ('202', '44', '44', '44', 'remixer'), 

  ('203', '117', '117', '44', 'composer'), 

  ('204', '91', '91', '45', 'source'), 

  ('205', '44', '44', '45', 'performer'), 

  ('206', '44', '44', '45', 'remixer'), 

  ('207', '116', '116', '45', 'composer'), 

  ('196', '91', '91', '46', 'source'), 

  ('197', '17', '17', '46', 'performer'), 

  ('198', '17', '17', '46', 'remixer'), 

  ('199', '116', '116', '46', 'composer'), 

  ('208', '92', '92', '47', 'source'), 

  ('209', '15', '15', '47', 'performer'), 

  ('210', '15', '15', '47', 'remixer'), 

  ('211', '93', '93', '48', 'source'), 

  ('212', '42', '42', '48', 'performer'), 

  ('213', '42', '42', '48', 'remixer'), 

  ('192', '94', '94', '49', 'source'), 

  ('193', '10', '10', '49', 'performer'), 

  ('194', '10', '10', '49', 'vocalist'), 

  ('195', '10', '10', '49', 'remixer'), 

  ('226', '95', '95', '50', 'source'), 

  ('732', '18', '18', '50', 'performer'), 

  ('731', '17', '17', '50', 'performer'), 

  ('733', '17', '17', '50', 'remixer'), 

  ('734', '18', '18', '50', 'remixer'), 

  ('229', '96', '96', '51', 'source'), 

  ('230', '15', '15', '51', 'performer'), 

  ('231', '16', '16', '51', 'performer'), 

  ('232', '15', '15', '51', 'remixer'), 

  ('233', '16', '16', '51', 'remixer'), 

  ('234', '96', '96', '52', 'source'), 

  ('235', '7', '7', '52', 'performer'), 

  ('236', '7', '7', '52', 'remixer'), 

  ('237', '97', '97', '53', 'source'), 

  ('295', '30', '30', '53', 'performer'), 

  ('296', '30', '30', '53', 'remixer'), 

  ('244', '99', '99', '55', 'source'), 

  ('245', '40', '40', '55', 'performer'), 

  ('246', '40', '40', '55', 'remixer'), 

  ('222', '100', '100', '56', 'source'), 

  ('220', '41', '41', '56', 'performer'), 

  ('221', '41', '41', '56', 'remixer'), 

  ('253', '102', '102', '57', 'source'), 

  ('254', '36', '36', '57', 'performer'), 

  ('255', '36', '36', '57', 'remixer'), 

  ('256', '103', '103', '58', 'source'), 

  ('257', '6', '6', '58', 'performer'), 

  ('258', '6', '6', '58', 'remixer'), 

  ('259', '101', '101', '59', 'source'), 

  ('260', '2', '2', '59', 'performer'), 

  ('865', '2', '2', '59', 'remixer'), 

  ('866', '265', '261', '59', 'remixer'), 

  ('867', '266', '262', '59', 'remixer'), 

  ('250', '101', '101', '60', 'source'), 

  ('251', '33', '33', '60', 'performer'), 

  ('252', '33', '33', '60', 'remixer'), 

  ('273', '104', '104', '61', 'source'), 

  ('274', '41', '41', '61', 'performer'), 

  ('275', '41', '41', '61', 'remixer'), 

  ('276', '105', '105', '62', 'source'), 

  ('277', '12', '12', '62', 'performer'), 

  ('278', '12', '12', '62', 'remixer'), 

  ('247', '105', '105', '63', 'source'), 

  ('248', '48', '48', '63', 'performer'), 

  ('249', '48', '48', '63', 'remixer'), 

  ('263', '105', '105', '64', 'source'), 

  ('264', '20', '20', '64', 'performer'), 

  ('265', '21', '21', '64', 'performer'), 

  ('266', '22', '22', '64', 'performer'), 

  ('267', '23', '23', '64', 'performer'), 

  ('268', '20', '20', '64', 'remixer'), 

  ('269', '21', '21', '64', 'remixer'), 

  ('270', '22', '22', '64', 'remixer'), 

  ('271', '23', '23', '64', 'remixer'), 

  ('279', '106', '106', '65', 'source'), 

  ('280', '17', '17', '65', 'performer'), 

  ('281', '118', '118', '65', 'performer'), 

  ('282', '119', '119', '65', 'performer'), 

  ('283', '17', '17', '65', 'remixer'), 

  ('284', '118', '118', '65', 'remixer'), 

  ('285', '119', '119', '65', 'remixer'), 

  ('241', '106', '106', '66', 'source'), 

  ('242', '17', '17', '66', 'performer'), 

  ('243', '17', '17', '66', 'remixer'), 

  ('286', '108', '108', '67', 'source'), 

  ('287', '40', '40', '67', 'performer'), 

  ('288', '40', '40', '67', 'remixer'), 

  ('289', '107', '107', '68', 'source'), 

  ('290', '41', '41', '68', 'performer'), 

  ('291', '41', '41', '68', 'remixer'), 

  ('238', '109', '109', '69', 'source'), 

  ('239', '41', '41', '69', 'performer'), 

  ('240', '41', '41', '69', 'remixer'), 

  ('223', '110', '110', '70', 'source'), 

  ('224', '38', '38', '70', 'performer'), 

  ('225', '38', '38', '70', 'remixer'), 

  ('214', '111', '111', '71', 'source'), 

  ('215', '28', '28', '71', 'performer'), 

  ('216', '29', '29', '71', 'performer'), 

  ('217', '28', '28', '71', 'remixer'), 

  ('218', '29', '29', '71', 'remixer'), 

  ('54', '54', '54', '72', 'source'), 

  ('55', '112', '112', '72', 'remixer'), 

  ('56', '112', '112', '72', 'performer'), 

  ('60', '113', '113', '72', 'vocalist'), 

  ('673', '97', '97', '73', 'source'), 

  ('674', '147', '147', '73', 'performer'), 

  ('675', '147', '147', '73', 'remixer'), 

  ('676', '57', '57', '74', 'source'), 

  ('677', '149', '149', '74', 'performer'), 

  ('678', '149', '149', '74', 'remixer'), 

  ('679', '242', '239', '75', 'source'), 

  ('680', '146', '146', '75', 'performer'), 

  ('681', '146', '146', '75', 'vocalist'), 

  ('682', '146', '146', '75', 'remixer'), 

  ('298', '81', '81', '76', 'source'), 

  ('299', '121', '121', '76', 'performer'), 

  ('300', '121', '121', '76', 'remixer'), 

  ('683', '110', '110', '77', 'source'), 

  ('684', '150', '150', '77', 'performer'), 

  ('685', '150', '150', '77', 'remixer'), 

  ('686', '243', '240', '78', 'source'), 

  ('687', '151', '151', '78', 'performer'), 

  ('688', '151', '151', '78', 'vocalist'), 

  ('689', '151', '151', '78', 'remixer'), 

  ('353', '57', '57', '79', 'source'), 

  ('354', '152', '152', '79', 'performer'), 

  ('355', '152', '152', '79', 'remixer'), 

  ('693', '244', '241', '80', 'source'), 

  ('694', '154', '154', '80', 'performer'), 

  ('695', '154', '154', '80', 'remixer'), 

  ('696', '245', '242', '81', 'source'), 

  ('697', '154', '154', '81', 'performer'), 

  ('698', '154', '154', '81', 'remixer'), 

  ('699', '246', '243', '82', 'source'), 

  ('700', '154', '154', '82', 'performer'), 

  ('701', '154', '154', '82', 'remixer'), 

  ('702', '247', '244', '83', 'source'), 

  ('703', '155', '155', '83', 'performer'), 

  ('704', '155', '155', '83', 'remixer'), 

  ('705', '248', '245', '84', 'source'), 

  ('706', '155', '155', '84', 'performer'), 

  ('707', '155', '155', '84', 'remixer'), 

  ('708', '249', '246', '85', 'source'), 

  ('709', '155', '155', '85', 'performer'), 

  ('710', '155', '155', '85', 'remixer'), 

  ('884', '273', '265', '87', 'source'), 

  ('885', '158', '158', '87', 'performer'), 

  ('886', '158', '158', '87', 'remixer'), 

  ('736', '67', '67', '90', 'source'), 

  ('737', '168', '167', '90', 'performer'), 

  ('738', '168', '167', '90', 'remixer'), 

  ('718', '251', '248', '93', 'source'), 

  ('719', '165', '165', '93', 'performer'), 

  ('720', '165', '165', '93', 'remixer'), 

  ('721', '252', '249', '94', 'source'), 

  ('722', '165', '165', '94', 'performer'), 

  ('723', '165', '165', '94', 'remixer'), 

  ('715', '250', '247', '95', 'source'), 

  ('716', '148', '148', '95', 'performer'), 

  ('717', '148', '148', '95', 'remixer'), 

  ('690', '243', '240', '96', 'source'), 

  ('691', '153', '153', '96', 'performer'), 

  ('692', '153', '153', '96', 'remixer'), 

  ('735', '253', '250', '101', 'source'), 

  ('725', '157', '157', '101', 'performer'), 

  ('726', '157', '157', '101', 'vocalist'), 

  ('727', '157', '157', '101', 'remixer'), 

  ('728', '194', '191', '102', 'source'), 

  ('729', '157', '157', '102', 'performer'), 

  ('730', '157', '157', '102', 'remixer'), 

  ('304', '124', '124', '139', 'source'), 

  ('305', '41', '41', '139', 'performer'), 

  ('306', '41', '41', '139', 'remixer'), 

  ('307', '125', '125', '139', 'composer'), 

  ('308', '127', '127', '140', 'source'), 

  ('309', '126', '126', '140', 'performer'), 

  ('310', '126', '126', '140', 'remixer'), 

  ('313', '130', '130', '141', 'source'), 

  ('314', '129', '129', '141', 'performer'), 

  ('315', '128', '128', '141', 'performer'), 

  ('316', '129', '129', '141', 'remixer'), 

  ('317', '128', '128', '141', 'remixer'), 

  ('887', '123', '123', '148', 'source'), 

  ('888', '274', '266', '148', 'performer'), 

  ('889', '274', '266', '148', 'remixer'), 

  ('301', '123', '123', '149', 'source'), 

  ('302', '122', '122', '149', 'performer'), 

  ('303', '122', '122', '149', 'remixer'), 

  ('321', '71', '71', '157', 'source'), 

  ('322', '135', '135', '157', 'performer'), 

  ('323', '135', '135', '157', 'remixer'), 

  ('324', '115', '115', '157', 'composer'), 

  ('377', '174', '173', '174', 'source'), 

  ('378', '173', '172', '174', 'performer'), 

  ('379', '173', '172', '174', 'remixer'), 

  ('374', '172', '171', '179', 'source'), 

  ('375', '44', '44', '179', 'performer'), 

  ('376', '44', '44', '179', 'remixer'), 

  ('442', '96', '96', '181', 'source'), 

  ('443', '24', '24', '181', 'performer'), 

  ('444', '24', '24', '181', 'vocalist'), 

  ('445', '24', '24', '181', 'remixer'), 

  ('318', '132', '132', '183', 'source'), 

  ('319', '131', '131', '183', 'performer'), 

  ('320', '131', '131', '183', 'remixer'), 

  ('421', '109', '109', '198', 'source'), 

  ('422', '128', '128', '198', 'performer'), 

  ('423', '128', '128', '198', 'remixer'), 

  ('424', '192', '189', '198', 'composer'), 

  ('418', '190', '187', '199', 'source'), 

  ('419', '191', '188', '199', 'performer'), 

  ('420', '191', '188', '199', 'remixer'), 

  ('414', '190', '187', '200', 'source'), 

  ('415', '189', '186', '200', 'performer'), 

  ('416', '189', '186', '200', 'vocalist'), 

  ('417', '189', '186', '200', 'remixer'), 

  ('666', '239', '236', '3739', 'source'), 

  ('667', '240', '237', '3739', 'source'), 

  ('668', '40', '40', '3739', 'performer'), 

  ('669', '40', '40', '3739', 'remixer'), 

  ('868', '262', '258', '3779', 'source'), 

  ('869', '263', '259', '3779', 'performer'), 

  ('870', '264', '260', '3779', 'vocalist'), 

  ('871', '263', '259', '3779', 'composer'), 

  ('858', '262', '258', '3780', 'source'), 

  ('859', '263', '259', '3780', 'performer'), 

  ('860', '264', '260', '3780', 'vocalist'), 

  ('861', '263', '259', '3780', 'composer'), 

  ('872', '262', '258', '3781', 'source'), 

  ('873', '263', '259', '3781', 'performer'), 

  ('874', '264', '260', '3781', 'vocalist'), 

  ('875', '263', '259', '3781', 'composer'), 

  ('876', '262', '258', '3782', 'source'), 

  ('877', '263', '259', '3782', 'performer'), 

  ('878', '264', '260', '3782', 'vocalist'), 

  ('879', '263', '259', '3782', 'composer'), 

  ('880', '262', '258', '3783', 'source'), 

  ('881', '263', '259', '3783', 'performer'), 

  ('882', '264', '260', '3783', 'vocalist'), 

  ('883', '263', '259', '3783', 'composer');



 INSERT INTO songtagmap (tagmap_id, song_id, tag_id, tagtypenum) VALUES  ('365', '1', '55', '1'), 

  ('366', '1', '108', '1'), 

  ('367', '1', '16', '1'), 

  ('368', '1', '113', '1'), 

  ('661', '2', '200', '1'), 

  ('662', '2', '19', '1'), 

  ('663', '2', '201', '1'), 

  ('664', '2', '167', '1'), 

  ('665', '2', '79', '1'), 

  ('666', '2', '208', '1'), 

  ('667', '2', '140', '1'), 

  ('668', '2', '209', '1'), 

  ('669', '2', '11', '1'), 

  ('670', '2', '75', '1'), 

  ('671', '2', '210', '1'), 

  ('672', '2', '2', '5'), 

  ('673', '2', '3', '9'), 

  ('674', '2', '1', '10'), 

  ('675', '2', '2', '10'), 

  ('1287', '3', '219', '1'), 

  ('1288', '3', '231', '1'), 

  ('1289', '3', '140', '1'), 

  ('1290', '3', '11', '1'), 

  ('1291', '3', '157', '1'), 

  ('1292', '3', '18', '1'), 

  ('1293', '3', '2', '5'), 

  ('573', '4', '189', '1'), 

  ('574', '4', '127', '1'), 

  ('575', '4', '19', '1'), 

  ('576', '4', '148', '1'), 

  ('577', '4', '190', '1'), 

  ('578', '4', '17', '1'), 

  ('579', '4', '140', '1'), 

  ('580', '4', '13', '1'), 

  ('581', '4', '192', '1'), 

  ('582', '4', '191', '5'), 

  ('350', '5', '108', '1'), 

  ('351', '5', '109', '1'), 

  ('352', '5', '16', '1'), 

  ('353', '5', '112', '1'), 

  ('354', '5', '107', '3'), 

  ('355', '5', '37', '5'), 

  ('357', '5', '46', '7'), 

  ('358', '5', '111', '7'), 

  ('359', '5', '110', '9'), 

  ('360', '5', '42', '8'), 

  ('361', '5', '52', '8'), 

  ('362', '5', '104', '7'), 

  ('363', '5', '102', '8'), 

  ('364', '5', '103', '8'), 

  ('1038', '7', '200', '1'), 

  ('1039', '7', '19', '1'), 

  ('1040', '7', '201', '1'), 

  ('1041', '7', '17', '1'), 

  ('1042', '7', '13', '1'), 

  ('1043', '7', '2', '5'), 

  ('1044', '7', '3', '9'), 

  ('1045', '7', '1', '10'), 

  ('1046', '7', '2', '10'), 

  ('695', '8', '215', '1'), 

  ('696', '8', '216', '1'), 

  ('697', '8', '179', '1'), 

  ('698', '8', '145', '1'), 

  ('699', '8', '50', '1'), 

  ('700', '8', '2', '5'), 

  ('701', '8', '144', '5'), 

  ('702', '8', '37', '7'), 

  ('703', '8', '121', '7'), 

  ('704', '8', '46', '7'), 

  ('1294', '9', '17', '1'), 

  ('1295', '9', '217', '1'), 

  ('1296', '9', '50', '1'), 

  ('1297', '9', '53', '1'), 

  ('1298', '9', '101', '5'), 

  ('1299', '9', '100', '6'), 

  ('1300', '9', '52', '6'), 

  ('1080', '10', '200', '1'), 

  ('1081', '10', '19', '1'), 

  ('1082', '10', '201', '1'), 

  ('1083', '10', '179', '1'), 

  ('1084', '10', '17', '1'), 

  ('1085', '10', '18', '1'), 

  ('1086', '10', '50', '1'), 

  ('1087', '10', '232', '3'), 

  ('1187', '11', '222', '1'), 

  ('1188', '11', '200', '1'), 

  ('1189', '11', '219', '1'), 

  ('1190', '11', '17', '1'), 

  ('1191', '11', '157', '1'), 

  ('1192', '11', '18', '1'), 

  ('1193', '11', '37', '5'), 

  ('1194', '11', '2', '5'), 

  ('1195', '11', '81', '5'), 

  ('1196', '11', '141', '7'), 

  ('1281', '12', '19', '1'), 

  ('1282', '12', '288', '1'), 

  ('1283', '12', '11', '1'), 

  ('1284', '12', '241', '1'), 

  ('1285', '12', '280', '7'), 

  ('1286', '12', '185', '7'), 

  ('805', '14', '153', '1'), 

  ('806', '14', '60', '5'), 

  ('807', '14', '72', '5'), 

  ('808', '14', '58', '6'), 

  ('809', '14', '59', '6'), 

  ('810', '14', '37', '6'), 

  ('811', '14', '71', '6'), 

  ('620', '15', '10', '1'), 

  ('621', '15', '109', '1'), 

  ('622', '15', '19', '1'), 

  ('623', '15', '148', '1'), 

  ('624', '15', '168', '1'), 

  ('625', '15', '17', '1'), 

  ('626', '15', '80', '1'), 

  ('627', '15', '2', '5'), 

  ('628', '15', '3', '9'), 

  ('629', '15', '1', '10'), 

  ('630', '15', '2', '10'), 

  ('737', '16', '16', '1'), 

  ('738', '16', '17', '1'), 

  ('739', '16', '153', '1'), 

  ('740', '16', '157', '1'), 

  ('741', '16', '18', '1'), 

  ('742', '16', '175', '1'), 

  ('1258', '17', '219', '1'), 

  ('1259', '17', '179', '1'), 

  ('1260', '17', '140', '1'), 

  ('1261', '17', '13', '1'), 

  ('1262', '17', '37', '5'), 

  ('1242', '19', '200', '1'), 

  ('1243', '19', '287', '1'), 

  ('1244', '19', '286', '2'), 

  ('839', '22', '79', '1'), 

  ('840', '22', '60', '5'), 

  ('841', '22', '59', '6'), 

  ('842', '22', '37', '6'), 

  ('843', '22', '16', '1'), 

  ('844', '22', '145', '1'), 

  ('715', '23', '17', '1'), 

  ('716', '23', '165', '1'), 

  ('717', '23', '18', '1'), 

  ('718', '23', '43', '5'), 

  ('719', '23', '2', '5'), 

  ('720', '23', '56', '7'), 

  ('721', '23', '37', '7'), 

  ('722', '23', '42', '6'), 

  ('723', '23', '52', '6'), 

  ('469', '24', '19', '1'), 

  ('470', '24', '152', '1'), 

  ('471', '24', '153', '1'), 

  ('472', '24', '74', '1'), 

  ('473', '24', '143', '7'), 

  ('474', '24', '71', '8'), 

  ('475', '24', '46', '8'), 

  ('1301', '25', '167', '1'), 

  ('1302', '25', '179', '1'), 

  ('1303', '25', '17', '1'), 

  ('1304', '25', '140', '1'), 

  ('1305', '25', '157', '1'), 

  ('1306', '25', '18', '1'), 

  ('1307', '25', '50', '1'), 

  ('1308', '25', '53', '1'), 

  ('1309', '25', '97', '7'), 

  ('1310', '25', '289', '7'), 

  ('1311', '25', '71', '8'), 

  ('1312', '25', '46', '8'), 

  ('1313', '25', '23', '8'), 

  ('1314', '25', '29', '8'), 

  ('373', '26', '115', '3'), 

  ('374', '26', '101', '5'), 

  ('375', '26', '2', '5'), 

  ('376', '26', '100', '6'), 

  ('377', '26', '52', '6'), 

  ('389', '27', '125', '3'), 

  ('390', '27', '43', '5'), 

  ('391', '27', '123', '7'), 

  ('392', '27', '124', '4'), 

  ('393', '27', '126', '4'), 

  ('394', '27', '42', '6'), 

  ('395', '27', '52', '6'), 

  ('396', '27', '58', '8'), 

  ('397', '27', '59', '8'), 

  ('398', '27', '37', '8'), 

  ('399', '27', '71', '8'), 

  ('333', '28', '37', '5'), 

  ('334', '28', '43', '5'), 

  ('335', '28', '60', '7'), 

  ('336', '28', '46', '7'), 

  ('337', '28', '2', '7'), 

  ('338', '28', '42', '6'), 

  ('339', '28', '52', '6'), 

  ('340', '28', '59', '8'), 

  ('341', '28', '37', '8'), 

  ('443', '29', '146', '1'), 

  ('444', '29', '145', '1'), 

  ('445', '29', '60', '7'), 

  ('446', '29', '46', '7'), 

  ('447', '29', '59', '8'), 

  ('448', '29', '37', '8'), 

  ('774', '30', '10', '1'), 

  ('775', '30', '108', '1'), 

  ('776', '30', '163', '1'), 

  ('777', '30', '225', '1'), 

  ('778', '30', '131', '1'), 

  ('779', '30', '227', '1'), 

  ('780', '30', '16', '1'), 

  ('781', '30', '78', '1'), 

  ('782', '30', '228', '1'), 

  ('783', '30', '229', '1'), 

  ('784', '30', '230', '1'), 

  ('785', '30', '231', '1'), 

  ('786', '30', '21', '1'), 

  ('787', '30', '80', '1'), 

  ('788', '30', '233', '1'), 

  ('789', '30', '232', '3'), 

  ('790', '30', '142', '7'), 

  ('791', '30', '226', '9'), 

  ('743', '31', '219', '1'), 

  ('744', '31', '17', '1'), 

  ('745', '31', '140', '1'), 

  ('746', '31', '11', '1'), 

  ('747', '31', '157', '1'), 

  ('748', '31', '220', '5'), 

  ('749', '31', '2', '7'), 

  ('750', '31', '181', '7'), 

  ('751', '31', '180', '8'), 

  ('752', '31', '81', '8'), 

  ('1367', '32', '19', '1'), 

  ('1368', '32', '190', '1'), 

  ('1369', '32', '219', '1'), 

  ('1370', '32', '300', '1'), 

  ('1371', '32', '265', '1'), 

  ('1372', '32', '153', '1'), 

  ('1373', '32', '80', '1'), 

  ('826', '33', '200', '1'), 

  ('827', '33', '17', '1'), 

  ('828', '33', '11', '1'), 

  ('829', '33', '60', '5'), 

  ('830', '33', '72', '7'), 

  ('831', '33', '2', '7'), 

  ('832', '33', '183', '7'), 

  ('833', '33', '59', '6'), 

  ('834', '33', '37', '6'), 

  ('835', '33', '177', '8'), 

  ('836', '33', '58', '8'), 

  ('837', '33', '71', '8'), 

  ('838', '33', '182', '8'), 

  ('753', '34', '17', '1'), 

  ('756', '34', '2', '5'), 

  ('515', '35', '10', '1'), 

  ('516', '35', '19', '1'), 

  ('517', '35', '167', '1'), 

  ('518', '35', '16', '1'), 

  ('519', '35', '168', '1'), 

  ('520', '35', '17', '1'), 

  ('521', '35', '18', '1'), 

  ('522', '35', '2', '5'), 

  ('523', '35', '3', '9'), 

  ('524', '35', '1', '10'), 

  ('525', '35', '2', '10'), 

  ('1272', '36', '219', '1'), 

  ('1273', '36', '160', '1'), 

  ('1274', '36', '17', '1'), 

  ('1275', '36', '140', '1'), 

  ('1276', '36', '157', '1'), 

  ('1277', '36', '145', '1'), 

  ('1278', '36', '217', '1'), 

  ('644', '37', '205', '1'), 

  ('645', '37', '200', '1'), 

  ('646', '37', '207', '1'), 

  ('647', '37', '17', '1'), 

  ('648', '37', '13', '1'), 

  ('649', '37', '157', '1'), 

  ('650', '37', '203', '1'), 

  ('651', '37', '18', '1'), 

  ('652', '37', '2', '5'), 

  ('653', '37', '3', '9'), 

  ('654', '37', '169', '2'), 

  ('655', '37', '206', '2'), 

  ('656', '37', '11', '2'), 

  ('657', '37', '75', '2'), 

  ('658', '37', '204', '2'), 

  ('659', '37', '1', '10'), 

  ('660', '37', '2', '10'), 

  ('1324', '38', '146', '1'), 

  ('1325', '38', '154', '1'), 

  ('1326', '38', '87', '1'), 

  ('1327', '38', '290', '1'), 

  ('1315', '39', '222', '1'), 

  ('1316', '39', '65', '1'), 

  ('1317', '39', '140', '1'), 

  ('1318', '39', '75', '1'), 

  ('1319', '39', '50', '1'), 

  ('1320', '39', '53', '1'), 

  ('1321', '39', '101', '5'), 

  ('1322', '39', '100', '6'), 

  ('1323', '39', '52', '6'), 

  ('677', '40', '200', '1'), 

  ('678', '40', '57', '1'), 

  ('679', '40', '213', '1'), 

  ('680', '40', '87', '1'), 

  ('681', '40', '155', '1'), 

  ('682', '40', '139', '1'), 

  ('683', '40', '179', '1'), 

  ('684', '40', '140', '1'), 

  ('685', '40', '214', '1'), 

  ('686', '40', '75', '1'), 

  ('687', '40', '50', '1'), 

  ('688', '40', '53', '1'), 

  ('689', '40', '2', '5'), 

  ('690', '40', '3', '9'), 

  ('691', '40', '211', '2'), 

  ('692', '40', '212', '2'), 

  ('693', '40', '1', '10'), 

  ('694', '40', '2', '10'), 

  ('1027', '41', '200', '1'), 

  ('1028', '41', '19', '1'), 

  ('1029', '41', '13', '1'), 

  ('1030', '41', '74', '1'), 

  ('342', '42', '105', '1'), 

  ('343', '42', '106', '1'), 

  ('344', '42', '11', '1'), 

  ('345', '42', '37', '5'), 

  ('346', '42', '43', '5'), 

  ('347', '42', '58', '7'), 

  ('348', '42', '42', '6'), 

  ('349', '42', '52', '6'), 

  ('436', '43', '65', '1'), 

  ('437', '43', '145', '1'), 

  ('438', '43', '143', '5'), 

  ('439', '43', '144', '5'), 

  ('440', '43', '142', '7'), 

  ('441', '43', '71', '6'), 

  ('442', '43', '46', '6'), 

  ('1047', '44', '216', '1'), 

  ('1048', '44', '200', '1'), 

  ('1049', '44', '19', '1'), 

  ('1050', '44', '259', '1'), 

  ('1051', '44', '260', '1'), 

  ('1052', '44', '179', '1'), 

  ('1053', '44', '208', '1'), 

  ('1054', '44', '17', '1'), 

  ('1055', '44', '13', '1'), 

  ('1056', '44', '50', '1'), 

  ('1057', '44', '2', '5'), 

  ('1058', '44', '3', '9'), 

  ('1059', '44', '1', '10'), 

  ('1060', '44', '2', '10'), 

  ('476', '45', '10', '1'), 

  ('478', '45', '154', '1'), 

  ('479', '45', '87', '1'), 

  ('480', '45', '155', '1'), 

  ('481', '45', '16', '1'), 

  ('482', '45', '78', '1'), 

  ('483', '45', '145', '1'), 

  ('484', '45', '18', '1'), 

  ('485', '45', '50', '1'), 

  ('486', '45', '156', '1'), 

  ('1263', '46', '19', '1'), 

  ('1264', '46', '201', '1'), 

  ('1265', '46', '219', '1'), 

  ('1266', '46', '179', '1'), 

  ('1267', '46', '140', '1'), 

  ('1268', '46', '209', '1'), 

  ('1269', '46', '13', '1'), 

  ('901', '47', '200', '1'), 

  ('902', '47', '159', '1'), 

  ('903', '47', '19', '1'), 

  ('904', '47', '163', '1'), 

  ('905', '47', '87', '1'), 

  ('906', '47', '167', '1'), 

  ('907', '47', '78', '1'), 

  ('908', '47', '228', '1'), 

  ('909', '47', '94', '1'), 

  ('910', '47', '245', '1'), 

  ('911', '47', '193', '1'), 

  ('912', '47', '74', '1'), 

  ('913', '47', '210', '1'), 

  ('914', '47', '60', '5'), 

  ('915', '47', '72', '5'), 

  ('916', '47', '243', '7'), 

  ('917', '47', '58', '6'), 

  ('918', '47', '59', '6'), 

  ('919', '47', '37', '6'), 

  ('920', '47', '71', '6'), 

  ('921', '47', '242', '8'), 

  ('922', '47', '244', '8'), 

  ('1088', '48', '10', '1'), 

  ('1089', '48', '19', '1'), 

  ('1090', '48', '263', '1'), 

  ('1091', '48', '155', '1'), 

  ('1092', '48', '264', '1'), 

  ('1093', '48', '265', '1'), 

  ('1094', '48', '179', '1'), 

  ('1095', '48', '21', '1'), 

  ('1096', '48', '80', '1'), 

  ('1097', '48', '53', '1'), 

  ('1098', '48', '2', '5'), 

  ('1099', '48', '266', '7'), 

  ('1100', '48', '155', '8'), 

  ('1101', '48', '46', '8'), 

  ('1102', '48', '53', '8'), 

  ('1197', '49', '17', '1'), 

  ('1198', '49', '140', '1'), 

  ('1199', '49', '157', '1'), 

  ('1200', '49', '50', '1'), 

  ('1201', '49', '43', '5'), 

  ('1202', '49', '42', '6'), 

  ('1203', '49', '52', '6'), 

  ('1328', '50', '55', '1'), 

  ('1329', '50', '19', '1'), 

  ('1330', '50', '179', '1'), 

  ('1331', '50', '291', '1'), 

  ('1332', '50', '293', '5'), 

  ('1333', '50', '59', '6'), 

  ('1334', '50', '37', '6'), 

  ('1335', '50', '292', '6'), 

  ('930', '51', '19', '1'), 

  ('931', '51', '154', '1'), 

  ('932', '51', '167', '1'), 

  ('933', '51', '78', '1'), 

  ('934', '51', '249', '1'), 

  ('935', '51', '94', '1'), 

  ('936', '51', '60', '5'), 

  ('937', '51', '72', '5'), 

  ('938', '51', '248', '7'), 

  ('939', '51', '58', '6'), 

  ('940', '51', '59', '6'), 

  ('941', '51', '37', '6'), 

  ('942', '51', '71', '6'), 

  ('943', '51', '246', '8'), 

  ('944', '51', '247', '8'), 

  ('1007', '52', '108', '1'), 

  ('1008', '52', '16', '1'), 

  ('1009', '52', '79', '1'), 

  ('1010', '52', '17', '1'), 

  ('1011', '52', '18', '1'), 

  ('1012', '52', '60', '5'), 

  ('1013', '52', '37', '5'), 

  ('1014', '52', '58', '7'), 

  ('1015', '52', '59', '6'), 

  ('369', '53', '2', '5'), 

  ('370', '53', '37', '7'), 

  ('371', '53', '46', '7'), 

  ('372', '53', '114', '7'), 

  ('449', '55', '74', '1'), 

  ('450', '55', '147', '5'), 

  ('451', '55', '143', '5'), 

  ('452', '55', '2', '7'), 

  ('453', '55', '127', '6'), 

  ('454', '55', '71', '6'), 

  ('455', '55', '46', '6'), 

  ('456', '55', '130', '6'), 

  ('541', '56', '178', '1'), 

  ('542', '56', '179', '1'), 

  ('543', '56', '17', '1'), 

  ('544', '56', '138', '5'), 

  ('545', '56', '121', '5'), 

  ('546', '56', '90', '7'), 

  ('547', '56', '181', '7'), 

  ('548', '56', '183', '7'), 

  ('549', '56', '81', '7'), 

  ('550', '56', '177', '8'), 

  ('551', '56', '180', '8'), 

  ('552', '56', '182', '8'), 

  ('956', '57', '200', '1'), 

  ('957', '57', '108', '1'), 

  ('958', '57', '159', '1'), 

  ('959', '57', '16', '1'), 

  ('960', '57', '250', '1'), 

  ('961', '57', '18', '1'), 

  ('962', '57', '50', '1'), 

  ('963', '57', '87', '1'), 

  ('964', '57', '252', '1'), 

  ('965', '57', '115', '3'), 

  ('966', '57', '251', '2'), 

  ('967', '57', '253', '2'), 

  ('998', '58', '200', '1'), 

  ('999', '58', '108', '1'), 

  ('1000', '58', '16', '1'), 

  ('1001', '58', '65', '1'), 

  ('1002', '58', '152', '1'), 

  ('1003', '58', '74', '1'), 

  ('1004', '58', '72', '7'), 

  ('1005', '58', '58', '8'), 

  ('1006', '58', '71', '8'), 

  ('1336', '59', '55', '1'), 

  ('1337', '59', '70', '1'), 

  ('1338', '59', '50', '1'), 

  ('1339', '59', '108', '1'), 

  ('945', '60', '108', '1'), 

  ('946', '60', '154', '1'), 

  ('947', '60', '131', '1'), 

  ('948', '60', '87', '1'), 

  ('949', '60', '16', '1'), 

  ('950', '60', '17', '1'), 

  ('951', '60', '18', '1'), 

  ('952', '60', '50', '1'), 

  ('953', '60', '142', '7'), 

  ('954', '60', '2', '7'), 

  ('955', '60', '81', '7'), 

  ('378', '61', '118', '5'), 

  ('379', '61', '120', '5'), 

  ('380', '61', '84', '7'), 

  ('381', '61', '90', '7'), 

  ('382', '61', '116', '7'), 

  ('383', '61', '121', '7'), 

  ('384', '61', '117', '6'), 

  ('385', '61', '119', '6'), 

  ('386', '61', '81', '6'), 

  ('387', '61', '71', '8'), 

  ('388', '61', '122', '8'), 

  ('605', '62', '108', '1'), 

  ('606', '62', '16', '1'), 

  ('607', '62', '18', '1'), 

  ('608', '62', '196', '3'), 

  ('609', '62', '2', '5'), 

  ('610', '62', '3', '9'), 

  ('611', '62', '5', '4'), 

  ('612', '62', '197', '4'), 

  ('613', '62', '1', '10'), 

  ('614', '62', '2', '10'), 

  ('870', '63', '19', '1'), 

  ('871', '63', '167', '1'), 

  ('872', '63', '179', '1'), 

  ('873', '63', '17', '1'), 

  ('874', '63', '50', '1'), 

  ('875', '63', '60', '5'), 

  ('876', '63', '240', '7'), 

  ('877', '63', '59', '6'), 

  ('878', '63', '37', '6'), 

  ('879', '63', '84', '8'), 

  ('880', '63', '100', '8'), 

  ('923', '63', '72', '5'), 

  ('924', '63', '177', '7'), 

  ('925', '63', '243', '7'), 

  ('926', '63', '58', '6'), 

  ('927', '63', '71', '6'), 

  ('928', '63', '242', '8'), 

  ('929', '63', '244', '8'), 

  ('968', '64', '200', '1'), 

  ('969', '64', '108', '1'), 

  ('970', '64', '256', '1'), 

  ('971', '64', '16', '1'), 

  ('972', '64', '17', '1'), 

  ('973', '64', '140', '1'), 

  ('974', '64', '74', '1'), 

  ('975', '64', '18', '1'), 

  ('976', '64', '255', '3'), 

  ('977', '64', '142', '5'), 

  ('978', '64', '2', '5'), 

  ('979', '64', '237', '7'), 

  ('980', '64', '254', '4'), 

  ('981', '64', '8', '4'), 

  ('982', '64', '234', '8'), 

  ('983', '64', '236', '8'), 

  ('1279', '65', '19', '1'), 

  ('1280', '65', '201', '1'), 

  ('1340', '66', '200', '1'), 

  ('1341', '66', '19', '1'), 

  ('1342', '66', '201', '1'), 

  ('1343', '66', '219', '1'), 

  ('1344', '66', '140', '1'), 

  ('1345', '66', '291', '1'), 

  ('410', '67', '108', '1'), 

  ('411', '67', '131', '1'), 

  ('412', '67', '133', '1'), 

  ('413', '67', '72', '7'), 

  ('414', '67', '132', '2'), 

  ('415', '67', '16', '2'), 

  ('416', '67', '58', '8'), 

  ('417', '67', '71', '8'), 

  ('496', '67', '154', '1'), 

  ('497', '67', '160', '1'), 

  ('498', '67', '50', '1'), 

  ('615', '68', '17', '1'), 

  ('616', '68', '18', '1'), 

  ('617', '68', '5', '3'), 

  ('618', '68', '199', '3'), 

  ('619', '68', '198', '5'), 

  ('1217', '69', '200', '1'), 

  ('1218', '69', '16', '1'), 

  ('1219', '69', '65', '1'), 

  ('1220', '69', '17', '1'), 

  ('1221', '69', '140', '1'), 

  ('1222', '69', '74', '1'), 

  ('881', '70', '19', '1'), 

  ('882', '70', '163', '1'), 

  ('883', '70', '16', '1'), 

  ('884', '70', '188', '1'), 

  ('885', '70', '179', '1'), 

  ('886', '70', '17', '1'), 

  ('887', '70', '11', '1'), 

  ('888', '70', '241', '1'), 

  ('889', '70', '60', '5'), 

  ('890', '70', '72', '5'), 

  ('891', '70', '43', '5'), 

  ('892', '70', '101', '7'), 

  ('893', '70', '58', '6'), 

  ('894', '70', '59', '6'), 

  ('895', '70', '37', '6'), 

  ('896', '70', '71', '6'), 

  ('897', '70', '42', '6'), 

  ('898', '70', '52', '6'), 

  ('899', '70', '100', '8'), 

  ('900', '70', '52', '8'), 

  ('631', '71', '200', '1'), 

  ('632', '71', '201', '1'), 

  ('633', '71', '17', '1'), 

  ('634', '71', '202', '1'), 

  ('635', '71', '13', '1'), 

  ('636', '71', '203', '1'), 

  ('637', '71', '18', '1'), 

  ('638', '71', '2', '5'), 

  ('639', '71', '3', '9'), 

  ('640', '71', '75', '2'), 

  ('641', '71', '204', '2'), 

  ('642', '71', '1', '10'), 

  ('643', '71', '2', '10'), 

  ('499', '72', '55', '1'), 

  ('500', '72', '162', '1'), 

  ('501', '72', '163', '1'), 

  ('502', '72', '17', '1'), 

  ('503', '72', '165', '1'), 

  ('504', '72', '18', '1'), 

  ('505', '72', '166', '1'), 

  ('506', '72', '161', '3'), 

  ('507', '72', '164', '3'), 

  ('508', '72', '101', '5'), 

  ('509', '72', '60', '7'), 

  ('510', '72', '46', '7'), 

  ('511', '72', '100', '6'), 

  ('512', '72', '52', '6'), 

  ('513', '72', '59', '8'), 

  ('514', '72', '37', '8'), 

  ('845', '73', '200', '1'), 

  ('846', '73', '108', '1'), 

  ('847', '73', '16', '1'), 

  ('848', '73', '17', '1'), 

  ('849', '73', '18', '1'), 

  ('850', '73', '37', '5'), 

  ('851', '73', '72', '7'), 

  ('852', '73', '58', '8'), 

  ('853', '73', '71', '8'), 

  ('553', '74', '17', '1'), 

  ('554', '74', '11', '1'), 

  ('555', '74', '18', '1'), 

  ('556', '74', '175', '1'), 

  ('557', '74', '99', '1'), 

  ('558', '74', '184', '5'), 

  ('559', '74', '58', '7'), 

  ('560', '74', '46', '7'), 

  ('561', '74', '2', '7'), 

  ('562', '74', '81', '7'), 

  ('563', '74', '185', '7'), 

  ('526', '75', '172', '1'), 

  ('527', '75', '173', '1'), 

  ('528', '75', '112', '1'), 

  ('529', '75', '175', '1'), 

  ('530', '75', '176', '1'), 

  ('531', '75', '170', '3'), 

  ('532', '75', '43', '5'), 

  ('533', '75', '174', '9'), 

  ('534', '75', '169', '4'), 

  ('535', '75', '171', '4'), 

  ('536', '75', '42', '6'), 

  ('537', '75', '52', '6'), 

  ('538', '75', '42', '10'), 

  ('539', '75', '1', '10'), 

  ('540', '75', '52', '10'), 

  ('1137', '76', '55', '1'), 

  ('1138', '76', '10', '1'), 

  ('1139', '76', '271', '1'), 

  ('1140', '76', '265', '1'), 

  ('1141', '76', '21', '1'), 

  ('1142', '76', '153', '1'), 

  ('1143', '76', '80', '1'), 

  ('1144', '76', '74', '1'), 

  ('1145', '76', '217', '1'), 

  ('564', '77', '186', '1'), 

  ('565', '77', '163', '1'), 

  ('566', '77', '188', '1'), 

  ('567', '77', '17', '1'), 

  ('568', '77', '140', '1'), 

  ('569', '77', '37', '5'), 

  ('570', '77', '187', '9'), 

  ('571', '77', '37', '10'), 

  ('572', '77', '1', '10'), 

  ('724', '78', '200', '1'), 

  ('725', '78', '17', '1'), 

  ('726', '78', '140', '1'), 

  ('727', '78', '11', '1'), 

  ('728', '78', '18', '1'), 

  ('729', '78', '37', '5'), 

  ('730', '78', '43', '5'), 

  ('731', '78', '90', '7'), 

  ('732', '78', '218', '7'), 

  ('733', '78', '42', '6'), 

  ('734', '78', '52', '6'), 

  ('735', '78', '84', '8'), 

  ('736', '78', '42', '8'), 

  ('1062', '79', '216', '1'), 

  ('1063', '79', '200', '1'), 

  ('1064', '79', '225', '1'), 

  ('1065', '79', '167', '1'), 

  ('1066', '79', '65', '1'), 

  ('1067', '79', '140', '1'), 

  ('1068', '79', '153', '1'), 

  ('1069', '79', '210', '1'), 

  ('1070', '79', '262', '1'), 

  ('1071', '79', '50', '1'), 

  ('1072', '79', '58', '5'), 

  ('1073', '79', '72', '5'), 

  ('1074', '79', '261', '9'), 

  ('1075', '79', '71', '6'), 

  ('1076', '79', '58', '10'), 

  ('1077', '79', '1', '10'), 

  ('1078', '80', '74', '1'), 

  ('1079', '80', '50', '1'), 

  ('1134', '81', '153', '1'), 

  ('1135', '81', '74', '1'), 

  ('1136', '81', '217', '1'), 

  ('1016', '82', '200', '1'), 

  ('1017', '82', '108', '1'), 

  ('1018', '82', '71', '1'), 

  ('1019', '82', '143', '1'), 

  ('1020', '82', '257', '1'), 

  ('1021', '82', '72', '7'), 

  ('1022', '82', '2', '7'), 

  ('1023', '82', '46', '2'), 

  ('1024', '82', '258', '2'), 

  ('1025', '82', '58', '8'), 

  ('1026', '82', '71', '8'), 

  ('1146', '83', '19', '1'), 

  ('1147', '83', '86', '1'), 

  ('1148', '83', '21', '1'), 

  ('1149', '83', '153', '1'), 

  ('1150', '83', '80', '1'), 

  ('1151', '83', '74', '1'), 

  ('1152', '83', '217', '1'), 

  ('1153', '83', '272', '1'), 

  ('1154', '83', '50', '1'), 

  ('1155', '83', '217', '3'), 

  ('1156', '83', '167', '1'), 

  ('1157', '84', '273', '1'), 

  ('1158', '84', '10', '1'), 

  ('1159', '84', '200', '1'), 

  ('1160', '84', '148', '1'), 

  ('1161', '84', '219', '1'), 

  ('1162', '84', '154', '1'), 

  ('1163', '84', '179', '1'), 

  ('1164', '84', '153', '1'), 

  ('1165', '84', '75', '1'), 

  ('1166', '84', '274', '1'), 

  ('1167', '85', '55', '1'), 

  ('1168', '85', '200', '1'), 

  ('1169', '85', '108', '1'), 

  ('1170', '85', '148', '1'), 

  ('1171', '85', '21', '1'), 

  ('1172', '85', '250', '1'), 

  ('1173', '85', '75', '1'), 

  ('1174', '85', '50', '1'), 

  ('1175', '85', '53', '1'), 

  ('1176', '85', '217', '3'), 

  ('759', '87', '17', '1'), 

  ('760', '87', '140', '1'), 

  ('761', '87', '11', '1'), 

  ('762', '87', '157', '1'), 

  ('763', '87', '37', '5'), 

  ('764', '87', '60', '7'), 

  ('765', '87', '59', '8'), 

  ('766', '87', '37', '8'), 

  ('418', '90', '71', '1'), 

  ('419', '90', '53', '1'), 

  ('420', '90', '72', '7'), 

  ('421', '90', '137', '9'), 

  ('422', '90', '58', '8'), 

  ('423', '90', '71', '8'), 

  ('424', '90', '134', '10'), 

  ('425', '90', '135', '10'), 

  ('426', '90', '136', '10'), 

  ('495', '90', '159', '1'), 

  ('1177', '93', '216', '1'), 

  ('1178', '93', '19', '1'), 

  ('1179', '93', '78', '1'), 

  ('1180', '93', '228', '1'), 

  ('1181', '93', '80', '1'), 

  ('1182', '93', '217', '1'), 

  ('1183', '93', '275', '1'), 

  ('1184', '93', '60', '5'), 

  ('1185', '93', '59', '6'), 

  ('1186', '93', '37', '6'), 

  ('984', '94', '200', '1'), 

  ('985', '94', '108', '1'), 

  ('986', '94', '16', '1'), 

  ('987', '94', '65', '1'), 

  ('988', '94', '168', '1'), 

  ('989', '94', '17', '1'), 

  ('990', '94', '145', '1'), 

  ('991', '94', '193', '1'), 

  ('992', '94', '74', '1'), 

  ('993', '94', '18', '1'), 

  ('994', '94', '50', '1'), 

  ('995', '94', '72', '7'), 

  ('996', '94', '58', '8'), 

  ('997', '94', '71', '8'), 

  ('854', '95', '10', '1'), 

  ('855', '95', '200', '1'), 

  ('856', '95', '19', '1'), 

  ('857', '95', '219', '1'), 

  ('858', '95', '17', '1'), 

  ('859', '95', '13', '1'), 

  ('860', '95', '60', '5'), 

  ('861', '95', '72', '5'), 

  ('862', '95', '2', '7'), 

  ('863', '95', '183', '7'), 

  ('864', '95', '58', '6'), 

  ('865', '95', '59', '6'), 

  ('866', '95', '37', '6'), 

  ('867', '95', '71', '6'), 

  ('868', '95', '177', '8'), 

  ('869', '95', '182', '8'), 

  ('487', '96', '146', '1'), 

  ('488', '96', '157', '1'), 

  ('489', '96', '50', '1'), 

  ('490', '96', '2', '7'), 

  ('491', '96', '114', '7'), 

  ('492', '96', '158', '7'), 

  ('493', '96', '46', '8'), 

  ('494', '96', '157', '8'), 

  ('1123', '101', '108', '1'), 

  ('1124', '101', '167', '1'), 

  ('1125', '101', '16', '1'), 

  ('1126', '101', '179', '1'), 

  ('1127', '101', '153', '1'), 

  ('1128', '101', '145', '1'), 

  ('1129', '101', '217', '1'), 

  ('1130', '101', '50', '1'), 

  ('1131', '101', '267', '9'), 

  ('1132', '101', '113', '10'), 

  ('1133', '101', '41', '10'), 

  ('705', '102', '146', '1'), 

  ('706', '102', '108', '1'), 

  ('707', '102', '154', '1'), 

  ('708', '102', '16', '1'), 

  ('709', '102', '17', '1'), 

  ('710', '102', '157', '1'), 

  ('711', '102', '145', '1'), 

  ('712', '102', '18', '1'), 

  ('713', '102', '217', '1'), 

  ('714', '102', '53', '1'), 

  ('596', '140', '10', '1'), 

  ('597', '140', '163', '1'), 

  ('598', '140', '167', '1'), 

  ('599', '140', '16', '1'), 

  ('600', '140', '188', '1'), 

  ('601', '140', '194', '1'), 

  ('602', '140', '195', '1'), 

  ('603', '140', '58', '5'), 

  ('604', '140', '81', '5'), 

  ('1246', '148', '19', '1'), 

  ('1247', '148', '219', '1'), 

  ('1248', '148', '140', '1'), 

  ('1249', '148', '13', '1'), 

  ('1346', '149', '294', '1'), 

  ('1347', '149', '19', '1'), 

  ('1348', '149', '219', '1'), 

  ('1349', '149', '154', '1'), 

  ('1350', '149', '87', '1'), 

  ('1351', '149', '167', '1'), 

  ('1352', '149', '79', '1'), 

  ('1353', '149', '80', '1'), 

  ('1354', '149', '60', '5'), 

  ('1355', '149', '59', '6'), 

  ('1356', '149', '37', '6'), 

  ('1359', '149', '296', '2'), 

  ('1360', '149', '298', '1'), 

  ('1361', '149', '299', '2'), 

  ('1250', '157', '179', '1'), 

  ('1251', '157', '65', '1'), 

  ('1252', '157', '13', '1'), 

  ('1253', '157', '50', '1'), 

  ('1254', '157', '53', '1'), 

  ('1255', '157', '72', '7'), 

  ('1256', '157', '58', '8'), 

  ('1257', '157', '71', '8'), 

  ('767', '174', '222', '1'), 

  ('768', '174', '150', '1'), 

  ('769', '174', '11', '1'), 

  ('770', '174', '223', '5'), 

  ('771', '174', '224', '9'), 

  ('772', '174', '1', '10'), 

  ('773', '174', '223', '10'), 

  ('427', '179', '139', '1'), 

  ('428', '179', '140', '1'), 

  ('429', '179', '53', '1'), 

  ('430', '179', '141', '5'), 

  ('431', '179', '56', '7'), 

  ('432', '179', '138', '7'), 

  ('433', '179', '72', '7'), 

  ('434', '179', '58', '8'), 

  ('435', '179', '71', '8'), 

  ('326', '181', '104', '5'), 

  ('327', '181', '2', '7'), 

  ('328', '181', '81', '7'), 

  ('329', '181', '102', '6'), 

  ('330', '181', '42', '6'), 

  ('331', '181', '103', '6'), 

  ('332', '181', '52', '6'), 

  ('1223', '183', '200', '1'), 

  ('1224', '183', '201', '1'), 

  ('1225', '183', '284', '1'), 

  ('1226', '183', '179', '1'), 

  ('1227', '183', '17', '1'), 

  ('1228', '183', '140', '1'), 

  ('1229', '183', '209', '1'), 

  ('1230', '183', '157', '1'), 

  ('1231', '183', '53', '1'), 

  ('1232', '183', '144', '5'), 

  ('1233', '183', '283', '7'), 

  ('1234', '183', '181', '7'), 

  ('1235', '183', '285', '7'), 

  ('1236', '183', '282', '8'), 

  ('1237', '183', '58', '8'), 

  ('1238', '183', '71', '8'), 

  ('1239', '183', '180', '8'), 

  ('1240', '183', '81', '8'), 

  ('1241', '183', '53', '8'), 

  ('400', '198', '129', '1'), 

  ('401', '198', '86', '1'), 

  ('402', '198', '115', '3'), 

  ('403', '198', '128', '5'), 

  ('404', '198', '72', '7'), 

  ('405', '198', '127', '6'), 

  ('406', '198', '81', '6'), 

  ('407', '198', '130', '6'), 

  ('408', '198', '58', '8'), 

  ('409', '198', '71', '8'), 

  ('1270', '199', '167', '1'), 

  ('1271', '199', '71', '1'), 

  ('1204', '200', '200', '1'), 

  ('1205', '200', '17', '1'), 

  ('1206', '200', '157', '1'), 

  ('1207', '200', '281', '1'), 

  ('1208', '200', '101', '5'), 

  ('1209', '200', '280', '7'), 

  ('1210', '200', '277', '11'), 

  ('1211', '200', '276', '2'), 

  ('1212', '200', '278', '2'), 

  ('1213', '200', '279', '2'), 

  ('1214', '200', '103', '2'), 

  ('1215', '200', '100', '6'), 

  ('1216', '200', '52', '6'), 

  ('1363', '3739', '168', '1'), 

  ('1362', '3739', '19', '1'), 

  ('1364', '3739', '153', '1'), 

  ('1365', '3739', '80', '1'), 

  ('1366', '3739', '50', '1'), 

  ('1103', '3779', '200', '1'), 

  ('1104', '3779', '108', '1'), 

  ('1105', '3779', '57', '1'), 

  ('1106', '3779', '235', '1'), 

  ('1107', '3779', '19', '1'), 

  ('1108', '3779', '40', '1'), 

  ('1109', '3779', '17', '1'), 

  ('1110', '3779', '269', '1'), 

  ('1111', '3779', '48', '1'), 

  ('1112', '3779', '270', '1'), 

  ('1113', '3779', '74', '1'), 

  ('1114', '3779', '50', '1'), 

  ('1115', '3779', '101', '5'), 

  ('1116', '3779', '267', '9'), 

  ('1117', '3779', '160', '2'), 

  ('1118', '3779', '268', '2'), 

  ('1119', '3779', '100', '6'), 

  ('1120', '3779', '52', '6'), 

  ('1121', '3779', '113', '10'), 

  ('1122', '3779', '41', '10'), 

  ('457', '3780', '55', '1'), 

  ('458', '3780', '148', '1'), 

  ('459', '3780', '150', '1'), 

  ('460', '3780', '101', '5'), 

  ('461', '3780', '149', '5'), 

  ('462', '3780', '37', '5'), 

  ('463', '3780', '72', '7'), 

  ('464', '3780', '100', '6'), 

  ('465', '3780', '52', '6'), 

  ('466', '3780', '151', '6'), 

  ('467', '3780', '58', '8'), 

  ('468', '3780', '71', '8'), 

  ('583', '3781', '108', '1'), 

  ('584', '3781', '16', '1'), 

  ('585', '3781', '179', '1'), 

  ('586', '3781', '17', '1'), 

  ('587', '3781', '193', '1'), 

  ('588', '3781', '74', '1'), 

  ('589', '3781', '101', '5'), 

  ('590', '3781', '37', '7'), 

  ('591', '3781', '72', '7'), 

  ('592', '3781', '100', '6'), 

  ('593', '3781', '52', '6'), 

  ('594', '3781', '58', '8'), 

  ('595', '3781', '71', '8'), 

  ('320', '3782', '17', '1'), 

  ('321', '3782', '21', '1'), 

  ('322', '3782', '101', '5'), 

  ('323', '3782', '37', '5'), 

  ('324', '3782', '100', '6'), 

  ('325', '3782', '52', '6'), 

  ('792', '3783', '55', '1'), 

  ('793', '3783', '235', '1'), 

  ('794', '3783', '17', '1'), 

  ('795', '3783', '239', '1'), 

  ('796', '3783', '101', '5'), 

  ('797', '3783', '37', '5'), 

  ('798', '3783', '237', '7'), 

  ('799', '3783', '79', '2'), 

  ('800', '3783', '238', '2'), 

  ('801', '3783', '100', '6'), 

  ('802', '3783', '52', '6'), 

  ('803', '3783', '234', '8'), 

  ('804', '3783', '236', '8');



 INSERT INTO Tags (tag_id, tag_name, whenadded) VALUES  ('1', 'Only', '2008-12-07 03:25:42'), 

  ('2', 'Piano', '2008-12-07 03:25:42'), 

  ('3', 'Piano Only', '2008-12-07 03:25:42'), 

  ('5', 'Classical', '2008-12-07 03:38:51'), 

  ('8', 'Music', '2008-12-07 03:38:51'), 

  ('10', 'Anxious', '2008-12-07 03:47:32'), 

  ('11', 'Sad', '2008-12-07 04:05:10'), 

  ('13', 'Slow', '2008-12-07 04:08:28'), 

  ('16', 'Happy', '2008-12-07 04:10:26'), 

  ('17', 'Pretty', '2008-12-07 04:10:26'), 

  ('18', 'Sweet', '2008-12-07 04:10:26'), 

  ('19', 'Dark', '2008-12-07 04:12:38'), 

  ('21', 'Repetitive', '2008-12-07 04:12:38'), 

  ('23', 'Staccato', '2008-12-07 04:16:35'), 

  ('29', 'Very', '2008-12-07 04:18:46'), 

  ('37', 'Guitar', '2008-12-08 08:48:22'), 

  ('40', 'Insulting', '2008-12-08 08:48:22'), 

  ('41', 'Lyrics', '2008-12-08 08:48:22'), 

  ('42', 'Male', '2008-12-08 08:48:22'), 

  ('43', 'Male Voice', '2008-12-08 08:48:22'), 

  ('46', 'Percussion', '2008-12-08 08:48:22'), 

  ('48', 'Sarcastic', '2008-12-08 08:48:22'), 

  ('50', 'Unpredictable', '2008-12-08 08:48:22'), 

  ('52', 'Voice', '2008-12-08 08:48:22'), 

  ('53', 'Weird', '2008-12-08 08:48:22'), 

  ('55', 'Annoying', '2008-12-08 08:58:43'), 

  ('56', 'Chime', '2008-12-08 08:58:43'), 

  ('57', 'Clever', '2008-12-08 08:58:43'), 

  ('58', 'Drums', '2008-12-08 08:58:43'), 

  ('59', 'Electric', '2008-12-08 08:58:43'), 

  ('60', 'Electric Guitar', '2008-12-08 08:58:43'), 

  ('65', 'Percussive', '2008-12-08 08:58:43'), 

  ('70', 'Crazy', '2008-12-08 09:06:50'), 

  ('71', 'Heavy', '2008-12-08 09:06:50'), 

  ('72', 'Heavy Drums', '2008-12-08 09:06:50'), 

  ('74', 'Steady', '2008-12-08 09:06:50'), 

  ('75', 'Subdued', '2008-12-08 09:06:50'), 

  ('78', 'Intense', '2008-12-08 14:03:51'), 

  ('79', 'Loud', '2008-12-08 14:03:51'), 

  ('80', 'Scary', '2008-12-08 14:03:51'), 

  ('81', 'Strings', '2008-12-08 14:03:51'), 

  ('84', 'Choir', '2008-12-08 14:10:35'), 

  ('86', 'Detached', '2008-12-08 14:10:35'), 

  ('87', 'Fast', '2008-12-08 14:10:35'), 

  ('90', 'Harp', '2008-12-08 14:10:35'), 

  ('94', 'Powerful', '2008-12-08 14:10:35'), 

  ('97', 'Staccato Percussion', '2008-12-08 14:10:35'), 

  ('99', 'Windy', '2008-12-08 14:10:35'), 

  ('100', 'Female', '2008-12-11 13:34:22'), 

  ('101', 'Female Voice', '2008-12-11 13:34:22'), 

  ('102', 'Falsetto', '2008-12-11 13:37:11'), 

  ('103', 'Sometimes', '2008-12-11 13:37:11'), 

  ('104', 'Sometimes Falsetto Male Voice', '2008-12-11 13:37:11'), 

  ('105', 'Angry', '2008-12-11 13:40:20'), 

  ('106', 'Heartbroken', '2008-12-11 13:40:20'), 

  ('107', 'Bluegrass', '2008-12-11 13:42:03'), 

  ('108', 'Cheerful', '2008-12-11 13:42:03'), 

  ('109', 'Cute', '2008-12-11 13:42:03'), 

  ('110', 'Gibberish', '2008-12-11 13:42:03'), 

  ('111', 'Sheep', '2008-12-11 13:42:03'), 

  ('112', 'Silly', '2008-12-11 13:42:03'), 

  ('113', 'Harsh', '2008-12-11 13:44:48'), 

  ('114', 'Sitar', '2008-12-11 13:46:32'), 

  ('115', 'Jazz', '2008-12-11 13:48:27'), 

  ('116', 'Heavy Thuds', '2008-12-11 13:49:52'), 

  ('117', 'High', '2008-12-11 13:49:52'), 

  ('118', 'High Strings', '2008-12-11 13:49:52'), 

  ('119', 'Low', '2008-12-11 13:49:52'), 

  ('120', 'Low Strings', '2008-12-11 13:49:52'), 

  ('121', 'Oboe', '2008-12-11 13:49:52'), 

  ('122', 'Thuds', '2008-12-11 13:49:52'), 

  ('123', 'Heavy Drums, Electric Guitar', '2008-12-11 13:51:50'), 

  ('124', 'Partly', '2008-12-11 13:51:50'), 

  ('125', 'Partly Rap', '2008-12-11 13:51:50'), 

  ('126', 'Rap', '2008-12-11 13:51:50'), 

  ('127', 'Bending', '2008-12-11 13:53:18'), 

  ('128', 'Bending Synth Strings', '2008-12-11 13:53:18'), 

  ('129', 'Cool', '2008-12-11 13:53:18'), 

  ('130', 'Synth', '2008-12-11 13:53:18'), 

  ('131', 'Exuberant', '2008-12-11 13:55:19'), 

  ('132', 'Exuberantly', '2008-12-11 13:55:19'), 

  ('133', 'Exuberantly Happy', '2008-12-11 13:55:19'), 

  ('134', 'Jaws', '2008-12-11 13:56:43'), 

  ('135', 'Like', '2008-12-11 13:56:43'), 

  ('136', 'Sounds', '2008-12-11 13:56:43'), 

  ('137', 'Sounds Like Jaws', '2008-12-11 13:56:43'), 

  ('138', 'Flute', '2008-12-11 13:57:59'), 

  ('139', 'Jazzy', '2008-12-11 13:57:59'), 

  ('140', 'Quiet', '2008-12-11 13:57:59'), 

  ('141', 'Saxophone', '2008-12-11 13:57:59'), 

  ('142', 'Brass', '2008-12-11 13:59:09'), 

  ('143', 'Heavy Percussion', '2008-12-11 13:59:09'), 

  ('144', 'Recorder', '2008-12-11 13:59:09'), 

  ('145', 'Spacy', '2008-12-11 13:59:09'), 

  ('146', 'Aquatic', '2008-12-11 13:59:55'), 

  ('147', 'Bending Synth', '2008-12-11 14:00:46'), 

  ('148', 'Discordant', '2008-12-11 14:01:50'), 

  ('149', 'Female Whisper', '2008-12-11 14:01:50'), 

  ('150', 'Heartbreaking', '2008-12-11 14:01:50'), 

  ('151', 'Whisper', '2008-12-11 14:01:50'), 

  ('152', 'Plodding', '2008-12-11 14:02:48'), 

  ('153', 'Rhythmic', '2008-12-11 14:02:48'), 

  ('154', 'Energetic', '2008-12-11 14:05:14'), 

  ('155', 'Frantic', '2008-12-11 14:05:14'), 

  ('156', 'Urgent', '2008-12-11 14:05:14'), 

  ('157', 'Soft', '2008-12-11 14:06:51'), 

  ('158', 'Soft Percussion', '2008-12-11 14:06:51'), 

  ('159', 'Controlled', '2008-12-11 14:07:46'), 

  ('160', 'Light', '2008-12-11 14:08:29'), 

  ('161', 'Abba', '2008-12-11 14:10:40'), 

  ('162', 'Cheesy', '2008-12-11 14:10:40'), 

  ('163', 'Determined', '2008-12-11 14:10:40'), 

  ('164', 'Disco', '2008-12-11 14:10:40'), 

  ('165', 'Sappy', '2008-12-11 14:10:40'), 

  ('166', 'Tacky', '2008-12-11 14:10:40'), 

  ('167', 'Forceful', '2008-12-11 14:12:53'), 

  ('168', 'Playful', '2008-12-11 14:12:53'), 

  ('169', 'A', '2008-12-11 14:14:24'), 

  ('170', 'A Cappella', '2008-12-11 14:14:24'), 

  ('171', 'Cappella', '2008-12-11 14:14:24'), 

  ('172', 'Fun', '2008-12-11 14:14:24'), 

  ('173', 'Harmonic', '2008-12-11 14:14:24'), 

  ('174', 'Male Voice Only', '2008-12-11 14:14:24'), 

  ('175', 'Warm', '2008-12-11 14:14:24'), 

  ('176', 'Welcoming', '2008-12-11 14:14:24'), 

  ('177', 'Chimes', '2008-12-11 14:15:55'), 

  ('178', 'Icy', '2008-12-11 14:15:55'), 

  ('179', 'Mysterious', '2008-12-11 14:15:55'), 

  ('180', 'Pizzicato', '2008-12-11 14:15:55'), 

  ('181', 'Pizzicato Strings', '2008-12-11 14:15:55'), 

  ('182', 'Shimmering', '2008-12-11 14:15:55'), 

  ('183', 'Shimmering Chimes', '2008-12-11 14:15:55'), 

  ('184', 'Piccolo', '2008-12-11 14:17:21'), 

  ('185', 'Wind', '2008-12-11 14:17:21'), 

  ('186', 'Bold', '2008-12-11 14:18:41'), 

  ('187', 'Guitar Only', '2008-12-11 14:18:41'), 

  ('188', 'Heroic', '2008-12-11 14:18:41'), 

  ('189', 'Airy', '2008-12-11 14:20:47'), 

  ('190', 'Dragging', '2008-12-11 14:20:47'), 

  ('191', 'Pipes', '2008-12-11 14:20:47'), 

  ('192', 'Swampy', '2008-12-11 14:20:47'), 

  ('193', 'Stable', '2008-12-11 14:22:07'), 

  ('194', 'Militant', '2008-12-11 14:24:45'), 

  ('195', 'Worrisome', '2008-12-11 14:24:45'), 

  ('196', 'Classical Waltz', '2008-12-11 14:26:11'), 

  ('197', 'Waltz', '2008-12-11 14:26:11'), 

  ('198', 'Harpsichord', '2008-12-11 14:28:16'), 

  ('199', 'Polka', '2008-12-11 14:28:16'), 

  ('200', 'Calm', '2008-12-11 14:31:50'), 

  ('201', 'Deep', '2008-12-11 14:31:50'), 

  ('202', 'Sedate', '2008-12-11 14:31:50'), 

  ('203', 'Subdued Warmth', '2008-12-11 14:31:50'), 

  ('204', 'Warmth', '2008-12-11 14:31:50'), 

  ('205', 'A Little Sad', '2008-12-11 14:33:54'), 

  ('206', 'Little', '2008-12-11 14:33:54'), 

  ('207', 'Nostalgic', '2008-12-11 14:33:54'), 

  ('208', 'Passionate', '2008-12-11 14:36:01'), 

  ('209', 'Rich', '2008-12-11 14:36:01'), 

  ('210', 'Thundering', '2008-12-11 14:36:01'), 

  ('211', 'Changing', '2008-12-11 14:38:44'), 

  ('212', 'Ever', '2008-12-11 14:38:44'), 

  ('213', 'Ever-Changing', '2008-12-11 14:38:44'), 

  ('214', 'Skittish', '2008-12-11 14:38:44'), 

  ('215', 'Active', '2008-12-11 14:42:50'), 

  ('216', 'Busy', '2008-12-11 14:42:50'), 

  ('217', 'Techno', '2008-12-11 14:43:33'), 

  ('218', 'Male Choir', '2008-12-11 14:45:14'), 

  ('219', 'Drifting', '2008-12-11 14:47:15'), 

  ('220', 'Koto', '2008-12-11 14:47:15'), 

  ('222', 'Beautiful', '2008-12-11 14:49:46'), 

  ('223', 'Violin', '2008-12-11 14:49:46'), 

  ('224', 'Violin Only', '2008-12-11 14:49:46'), 

  ('225', 'Exciting', '2008-12-11 14:54:11'), 

  ('226', 'Finale', '2008-12-11 14:54:11'), 

  ('227', 'Free', '2008-12-11 14:54:11'), 

  ('228', 'Intimidating', '2008-12-11 14:54:11'), 

  ('229', 'Joyful', '2008-12-11 14:54:11'), 

  ('230', 'Joyous', '2008-12-11 14:54:11'), 

  ('231', 'Moving', '2008-12-11 14:54:11'), 

  ('232', 'Orchestral', '2008-12-11 14:54:11'), 

  ('233', 'Touching', '2008-12-11 14:54:11'), 

  ('234', 'Bells', '2008-12-11 14:55:20'), 

  ('235', 'Creepy', '2008-12-11 14:55:20'), 

  ('236', 'Jingle', '2008-12-11 14:55:20'), 

  ('237', 'Jingle Bells', '2008-12-11 14:55:20'), 

  ('238', 'Too', '2008-12-11 14:55:20'), 

  ('239', 'Too Loud', '2008-12-11 14:55:20'), 

  ('240', 'Female Choir', '2008-12-11 15:03:20'), 

  ('241', 'Tragic', '2008-12-11 15:05:10'), 

  ('242', 'Church', '2008-12-11 15:07:08'), 

  ('243', 'Church Organ', '2008-12-11 15:07:08'), 

  ('244', 'Organ', '2008-12-11 15:07:08'), 

  ('245', 'Shrieking', '2008-12-11 15:07:08'), 

  ('246', 'Laughing', '2008-12-11 15:09:21'), 

  ('247', 'Males', '2008-12-11 15:09:21'), 

  ('248', 'Males Laughing', '2008-12-11 15:09:21'), 

  ('249', 'Overpowering', '2008-12-11 15:09:21'), 

  ('250', 'Restrained', '2008-12-11 15:11:06'), 

  ('251', 'Increasingly', '2008-12-11 15:11:40'), 

  ('252', 'Increasingly Unrestrained', '2008-12-11 15:11:40'), 

  ('253', 'Unrestrained', '2008-12-11 15:11:40'), 

  ('254', 'Christmas', '2008-12-11 15:12:29'), 

  ('255', 'Christmas Music', '2008-12-11 15:12:29'), 

  ('256', 'Christmassy', '2008-12-11 15:12:29'), 

  ('257', 'Heavy Rhythm', '2008-12-11 15:16:44'), 

  ('258', 'Rhythm', '2008-12-11 15:16:44'), 

  ('259', 'Flowing', '2008-12-11 15:20:37'), 

  ('260', 'Intricate', '2008-12-11 15:20:37'), 

  ('261', 'Drums Only', '2008-12-11 15:22:36'), 

  ('262', 'Tribal', '2008-12-11 15:22:36'), 

  ('263', 'Entrancing', '2008-12-11 15:25:03'), 

  ('264', 'Frenetic', '2008-12-11 15:25:03'), 

  ('265', 'Hypnotic', '2008-12-11 15:25:03'), 

  ('266', 'Weird Frantic Percussion', '2008-12-11 15:25:03'), 

  ('267', 'Harsh Lyrics', '2008-12-11 15:26:59'), 

  ('268', 'Pseudo', '2008-12-11 15:26:59'), 

  ('269', 'Pseudo-Light', '2008-12-11 15:26:59'), 

  ('270', 'Shocking', '2008-12-11 15:26:59'), 

  ('271', 'Blaring', '2008-12-11 15:29:48'), 

  ('272', 'Unemotional', '2008-12-11 15:31:16'), 

  ('273', 'Ambient', '2008-12-11 15:32:43'), 

  ('274', 'Tense', '2008-12-11 15:32:43'), 

  ('275', 'Threatening', '2008-12-11 15:34:49'), 

  ('276', 'Inadvertently', '2008-12-11 15:39:44'), 

  ('277', 'Japanese', '2008-12-11 15:39:44'), 

  ('278', 'Key', '2008-12-11 15:39:44'), 

  ('279', 'Off', '2008-12-11 15:39:44'), 

  ('280', 'Rain', '2008-12-11 15:39:44'), 

  ('281', 'Sometimes Inadvertently Off-Key', '2008-12-11 15:39:44'), 

  ('282', 'Bowed', '2008-12-11 15:42:25'), 

  ('283', 'Bowed Strings', '2008-12-11 15:42:25'), 

  ('284', 'Medieval', '2008-12-11 15:42:25'), 

  ('285', 'Weird Heavy Drums', '2008-12-11 15:42:25'), 

  ('286', 'Clockwork', '2008-12-11 15:43:02'), 

  ('287', 'Like Clockwork', '2008-12-11 15:43:02'), 

  ('288', 'Funereal', '2008-12-11 15:51:06'), 

  ('289', 'Very Heavy Percussion', '2008-12-11 15:54:01'), 

  ('290', 'Quick', '2008-12-11 15:55:29'), 

  ('291', 'Shrill', '2008-12-11 15:56:25'), 

  ('292', 'Static', '2008-12-11 15:56:25'), 

  ('293', 'Static, Electric Guitar', '2008-12-11 15:56:25'), 

  ('294', 'Atmospheric', '2008-12-11 15:59:13'), 

  ('296', 'Inconsistent', '2008-12-11 15:59:27'), 

  ('298', 'Inconsistent Mood', '2008-12-11 15:59:35'), 

  ('299', 'Mood', '2008-12-11 15:59:35'), 

  ('300', 'Hellish', '2008-12-11 16:00:58');



INSERT INTO

	vgNames (spelling_id, name, abbrev, entity_id, nametype, namecat, namecomment, whenadded, temphide, permhide)

	VALUES

 ('1', '4-Eyes', '', '1', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('2', 'A Scholar & A Physician', '', '2', 'Group', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('3', 'Adhesive_Boy', '', '3', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('4', 'Aetherius', '', '4', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('5', 'AeroZ', '', '5', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('6', 'AmIEviL', '', '6', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('7', 'analoq', '', '7', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('8', 'Aquas', '', '8', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('9', 'Injury', '', '9', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('10', 'Arkimedes', '', '10', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('11', 'BenCousins', '', '11', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('12', 'Bladiator', '', '12', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('13', 'Blake Perdue', '', '13', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('15', 'BrainCells', '', '15', 'Musician', '', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('16', 'SnappleMan', '', '16', 'Musician', '', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('17', 'Children of the Monkey Machine', 'cotmm', '17', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('18', 'Steve Pordon', '', '18', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('19', 'Christian Pacaud', 'cpac', '19', 'Musician', 'OCR', '', '2008-03-18 12:34:43', 'n', 'n'), 

  ('20', 'Dale North', '', '20', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('21', 'Mustin', '', '21', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('22', 'Nate Cloud', '', '22', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('23', 'The OneUps', '', '23', 'Group', 'Video Game Music Band', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('24', 'Daniel Baranowsky', 'dannyb', '24', 'Musician', 'OCR', '', '2008-03-18 12:34:29', 'n', 'n'), 

  ('25', 'zyko', '', '25', 'Musician', '', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('26', 'Vigilante', '', '26', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('27', 'destructo', '', '27', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('28', 'Dhsu', '', '28', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('29', 'GrayLightning', '', '29', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('30', 'Diggi Dis', '', '30', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('31', 'Disco Dan', '', '31', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('32', 'djpretzel', '', '32', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('33', 'Dr. Fruitcake', 'drf', '33', 'Musician', 'MIDI sequencer, OCR', '', '2008-03-31 04:02:42', 'n', 'n'), 

  ('34', 'efsisos', '', '34', 'Group', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('35', 'EgM', '', '35', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('36', 'Estradasphere', '', '36', 'Group', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('37', 'Freemind', '', '37', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('38', 'Game Over', '', '38', 'Group', 'Video Game Band, OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('39', 'Jeremy Robson', '', '39', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('40', 'Mazedude', '', '40', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('41', 'McVaffe', '', '41', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('42', 'Pisces', '', '42', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('43', 'Shadow', '', '43', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('44', 'Shnabubula', 'Shna', '44', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('45', 'Sideways Staircase', '', '45', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('46', 'Silent', '', '46', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('47', 'The Wingless', '', '47', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('48', 'zircon', '', '48', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('49', 'A Boy and His Blob', 'ABAHB', '49', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('50', 'Baldur\'s Gate', '', '50', 'Source', 'Computer Game', '', '2008-03-19 07:01:31', 'n', 'n'), 

  ('51', 'Battle of Olympus', '', '51', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('52', 'Blaster Master', '', '52', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('53', 'Bubble Bobble', '', '53', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('54', 'Bust a Groove', '', '54', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('55', 'Castlevania 3', 'CV3', '55', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('56', 'Castlevania Chronicles', 'cvc', '56', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('57', 'Chrono Trigger', 'CT', '57', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('58', 'Castlevania: Harmony of Dissonance', 'cvhod', '58', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('59', 'Crack Down', '', '59', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('60', 'Day of the Tentacle', '', '60', 'Source', 'Comp Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('61', 'Deadly Towers', '', '61', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('62', 'Donkey Kong Country', 'dkc', '62', 'Source', 'Video Game', '', '2008-03-17 11:24:41', 'n', 'n'), 

  ('63', 'Earthbound', 'eb', '63', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('64', 'Earthworm Jim 2', 'ewj2', '64', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('65', 'Final Fantasy 4', 'ff4', '65', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('66', 'Final Fantasy 6', 'ff6', '66', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('67', 'Final Fantasy 5', 'ff5', '67', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('71', 'Final Fantasy 7', 'ff7', '71', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('72', 'Final Fantasy 8', 'ff8', '72', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('76', 'God of War', '', '76', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('77', 'Golden Sun', '', '77', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('78', 'Guardian Legend', '', '78', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('79', 'Kirby\'s Dreamland', '', '79', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('80', 'Marble Madness', '', '80', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('81', 'Mario Kart 64', 'mk64', '81', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('82', 'Mega Man 2', 'mm2', '82', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('84', 'Metal Gear Solid 2', 'mgs2', '84', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('86', 'Metroid', '', '86', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('88', 'Ninja Gaiden 2', 'ng2', '88', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('89', 'Ristar', '', '89', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('90', 'Secret of Evermore', 'soe', '90', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('91', 'Secret of Mana', 'som', '91', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('92', 'Shadow of the Ninja', '', '92', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('93', 'Shadowgate', 'sg', '93', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('94', 'Shenmue', '', '94', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('95', 'Silent Hill 2', 'sh2', '95', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('96', 'Sonic the Hedgehog 3', 'sonic3', '96', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('97', 'Sonic the Hedgehog', 'sonic', '97', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('99', 'Street Fighter 2', 'SF2', '99', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('100', 'Super Ghouls n\' Ghosts', 'sgng', '100', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('101', 'Super Mario Bros.', 'smb', '101', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('102', 'Super Mario Bros. 2', 'smb2', '102', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('103', 'Super Mario Bros. 3', 'smb3', '103', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('104', 'Super Mario RPG', 'smrpg', '104', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('105', 'Super Mario World', 'smw', '105', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('106', 'Super Metroid', 'sm', '106', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('107', 'Tetris', '', '107', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('108', 'Teenage Mutant Ninja Turtles 3', 'tmnt3', '108', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('109', 'Zelda 3', 'loz3', '109', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('110', 'The Legend of Zelda', 'loz', '110', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('111', 'Zelda Oracle of Ages', 'zooa', '111', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('112', 'AkumajoBelmont', '', '112', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('113', 'Stephanie', '', '113', 'Musician', 'OCR', 'Vocalist for Bust_a_Groove_BustThisGroove\'81_OC_ReMix.mp3', '2008-03-19 06:59:14', 'n', 'n'), 

  ('114', 'Unknown', 'unkm', '114', 'Musician', '', 'Unknown Musician.', '2008-03-20 19:40:25', 'n', 'n'), 

  ('115', 'Nobuo Uematsu', 'nu', '115', 'Musician', '', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('116', 'Hiroki Kikuta', 'HK', '116', 'Musician', 'Video Game Music Composer', '', '2008-03-18 12:02:58', 'n', 'n'), 

  ('117', 'Jeremy Soule', 'soule', '117', 'Musician', 'Video Game Music Composer', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('118', 'Beatdrop', '', '118', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('119', 'K. Praslowicz', 'kpras', '119', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('121', 'Bundeslang', 'bund', '121', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('122', 'N-JekteD', 'njekted', '122', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('123', 'Doom', '', '123', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('124', 'ActRaiser', '', '124', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('125', 'Yuzo Koshiro', 'YK', '125', 'Musician', 'Video Game Music Composer', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('126', 'Star Salzman', 'star', '126', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('127', 'Bionic Commando', '', '127', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('128', 'po!', '', '128', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('129', 'Joshua Morse', '', '129', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('130', 'Breath of Fire 3', 'bof3', '130', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('131', 'Israfel', '', '131', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('132', 'Soul Blazer', '', '132', 'Source', 'Video Game', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('135', 'aluminum', '', '135', 'Musician', 'OCR', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('146', 'Blinn', '', '146', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('147', '8 Bit Instrumental VGM', '8bit', '147', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('148', 'ansgaros', '', '148', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('149', 'AzureKevin', '', '149', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('150', 'Cultgaming', '', '150', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('151', 'Darangen', '', '151', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('152', 'DrumUltimA', '', '152', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('153', 'halcyon', '', '153', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('154', 'Hezkore', '', '154', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('155', 'Huepow00', 'hue', '155', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('157', 'mrSimon', '', '157', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('158', 'MusicallyInspired', '', '158', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('165', 'Trevin Hughes', 'trevin', '165', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('167', 'po', '', '128', 'Musician', 'VGM2', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('168', 'OverCoat', 'soc', '167', 'Musician', 'VGMX', '', '0000-00-00 00:00:00', 'n', 'n'), 

  ('172', 'Solstice', '', '171', 'Source', 'Video Game', '', '2008-03-06 17:30:38', 'n', 'n'), 

  ('173', 'Justus Johnston', 'justus', '172', 'Musician', 'OCR', '', '2008-04-02 06:39:16', 'n', 'n'), 

  ('174', 'Perfect Cherry Blossom', '', '173', 'Source', 'Computer Game', '', '2008-03-06 17:34:56', 'n', 'n'), 

  ('180', 'StarBLaSt', '', '126', 'Musician', 'VGM2', '', '2008-03-06 18:07:12', 'n', 'n'), 

  ('186', 'Ajax', '', '6', 'Musician', 'VGM2', '', '2008-03-06 21:01:31', 'n', 'n'), 

  ('189', 'pixietricks', '', '186', 'Musician', 'OCR', '', '2008-03-06 21:04:39', 'n', 'n'), 

  ('190', 'Zelda 64', 'z64', '187', 'Source', 'Video Game', '', '2008-03-06 21:05:04', 'n', 'n'), 

  ('191', 'Scott Peeples', '', '188', 'Musician', 'OCR', '', '2008-03-06 21:13:21', 'n', 'n'), 

  ('192', 'Koji Kondo', 'KK', '189', 'Musician', 'Video Game Music Composer', '', '2008-03-06 21:22:33', 'n', 'n'), 

  ('194', 'Super Mario 64', 'SM64', '191', 'Source', 'Video Game', '', '2008-03-06 21:36:59', 'n', 'n'), 

  ('239', 'Bad Dudes - Zombies Rocked My Neighbors EP', 'baddudes', '236', 'Source', 'Video Game Music Remix EP (Extended Play)', 'http://www.oneupstudios.com/ep_03.php', '2008-03-18 12:06:21', 'n', 'n'), 

  ('240', 'Psychonauts', '', '237', 'Source', 'Video Game', '', '2008-03-14 03:05:09', 'n', 'n'), 

  ('242', 'Vgmix 2.5 Home Page', 'vgm2.5', '239', 'Source', 'Website', '', '2008-03-17 11:14:31', 'n', 'n'), 

  ('243', 'Donkey Kong Country 2', 'dkc2', '240', 'Source', 'Video Game', '', '2008-03-17 11:24:51', 'n', 'n'), 

  ('244', 'Mega Man ZX Advent', 'mmzxa', '241', 'Source', 'Video Game', '', '2008-03-17 11:45:05', 'n', 'n'), 

  ('245', 'Chase H.Q.', 'chq', '242', 'Source', 'Video Game', '', '2008-03-17 11:52:40', 'n', 'n'), 

  ('246', 'Pilotwings 64', 'pw64', '243', 'Source', 'Video Game', '', '2008-03-17 11:55:53', 'n', 'n'), 

  ('247', 'Sonic Rush', '', '244', 'Source', 'Video Game', '', '2008-03-17 12:04:12', 'n', 'n'), 

  ('248', 'Kirby & The Amazing Mirror', 'kmir', '245', 'Source', 'Video Game', '', '2008-03-17 12:15:51', 'n', 'n'), 

  ('249', 'Klonoa: Door to Phantomile', 'klonoa', '246', 'Source', 'Video Game', '', '2008-03-17 12:18:09', 'n', 'n'), 

  ('250', 'Chrono Cross', 'cc', '247', 'Source', 'Video Game', '', '2008-03-17 12:28:44', 'n', 'n'), 

  ('251', 'Streets of Rage', 'sor', '248', 'Source', 'Video Game', '', '2008-03-17 12:58:52', 'n', 'n'), 

  ('252', 'New Super Mario Bros.', 'nsmb', '249', 'Source', 'Video Game', '', '2008-03-17 13:03:57', 'n', 'n'), 

  ('253', 'The Legend of Zelda: Link\'s Awakening', 'lozla', '250', 'Source', 'Video Game', '', '2008-03-17 13:18:45', 'n', 'n'), 

  ('262', 'Memento Mori', 'mori', '258', 'Source', 'Album', 'An album by The Bastard Fairies.', '2008-04-02 07:46:53', 'n', 'n'), 

  ('263', 'The Bastard Fairies', 'tbf', '259', 'Group', 'Band', '', '2008-03-25 18:05:55', 'n', 'n'), 

  ('264', 'Yellow Thunder Woman', 'ytw', '260', 'Musician', '', '', '2008-03-25 18:07:06', 'n', 'n'), 

  ('265', 'Binster', '', '261', 'Musician', 'OCR', '', '2008-04-02 04:16:50', 'n', 'n'), 

  ('266', 'richBRF', '', '262', 'Musician', 'OCR', '', '2008-04-02 04:18:08', 'n', 'n'), 

  ('267', 'Freijman', 'freij', '5', 'Musician', '', '', '2008-04-02 04:28:12', 'n', 'n'), 

  ('268', 'Jaron Widman', 'jaron', '10', 'Musician', '', '', '2008-04-02 04:53:49', 'n', 'n'), 

  ('270', 'DiggiDis', '', '30', 'Musician', 'OCR', '', '2008-04-02 05:19:51', 'n', 'n'), 

  ('271', 'Nathan McLeod', '', '22', 'Musician', 'OCR', '', '2008-04-02 07:03:29', 'n', 'n'), 

  ('273', 'Quest For Glory 1', 'qfg1', '265', 'Source', 'PC Game', '', '2008-04-02 10:15:35', 'n', 'n'), 

  ('274', 'Rimco', '', '266', 'Musician', 'OCR', '', '2008-04-02 12:42:27', 'n', 'n');



INSERT INTO

	vgnameurls (nameurl_id, entity_id, spelling_id, nameurl, nameurltype, nameurlcomment, temphide, permhide, whenadded)

	VALUES

 ('13', '1', '1', 'http://www.ocremix.org/remixer/4eyes/', 'OCR', '', 'n', 'n', '2008-02-23 03:04:21'), 

  ('47', '2', '2', 'http://www.ocremix.org/remixer/ascholaraphysic/', 'OCR', '', 'n', 'n', '2008-02-23 03:12:13'), 

  ('99', '2', '2', 'http://www.ascholarandaphysician.com/', 'OHP', '', 'n', 'n', '2008-04-02 04:21:03'), 

  ('100', '2', '2', 'http://www.myspace.com/ascholarandaphysician', 'MYSP', '', 'n', 'n', '2008-04-02 04:21:30'), 

  ('44', '3', '3', 'http://www.ocremix.org/remixer/adhesiveboy/', 'OCR', '', 'n', 'n', '2008-02-23 03:11:42'), 

  ('39', '4', '4', 'http://www.ocremix.org/remixer/aetherius/', 'OCR', '', 'n', 'n', '2008-02-23 03:10:25'), 

  ('141', '4', '4', 'http://www.soundclick.com/aetherius', 'SCL', '', 'n', 'n', '2008-04-02 06:53:18'), 

  ('46', '5', '5', 'http://www.ocremix.org/remixer/aeroz/', 'OCR', '', 'n', 'n', '2008-02-23 03:12:03'), 

  ('101', '5', '267', 'http://www.myspace.com/freijman', 'MYSP', '', 'n', 'n', '2008-04-02 04:28:25'), 

  ('33', '6', '6', 'http://www.ocremix.org/remixer/amievil/', 'OCR', '', 'n', 'n', '2008-02-23 03:09:18'), 

  ('116', '6', '6', 'http://www.stefanajax.com/', 'OHP', '', 'n', 'n', '2008-04-02 05:22:38'), 

  ('42', '7', '7', 'http://www.ocremix.org/remixer/analoq/', 'OCR', '', 'n', 'n', '2008-02-23 03:11:00'), 

  ('102', '7', '7', 'http://youtube.com/analoq', 'UTUBE', '', 'n', 'n', '2008-04-02 04:31:45'), 

  ('8', '8', '8', 'http://www.ocremix.org/remixer/aquas/', 'OCR', '', 'n', 'n', '2008-02-23 03:03:36'), 

  ('142', '8', '8', 'http://aquasinn.8m.com/', 'OHP', '', 'n', 'n', '2008-04-02 06:55:00'), 

  ('9', '9', '9', 'http://www.ocremix.org/remixer/injury/', 'OCR', '', 'n', 'n', '2008-02-23 03:03:45'), 

  ('103', '9', '9', 'http://injury.thasauce.net/', 'OHP', '', 'n', 'n', '2008-04-02 04:47:52'), 

  ('38', '10', '10', 'http://www.ocremix.org/remixer/arkimedes/', 'OCR', '', 'n', 'n', '2008-02-23 03:10:17'), 

  ('104', '10', '268', 'http://www.jtwidman.com/', 'OHP', '', 'n', 'n', '2008-04-02 04:53:59'), 

  ('45', '11', '11', 'http://www.ocremix.org/remixer/bencousins/', 'OCR', '', 'n', 'n', '2008-02-23 03:11:54'), 

  ('107', '11', '11', 'http://www.bencousins.com/', 'OHP', '', 'n', 'n', '2008-04-02 05:01:26'), 

  ('16', '12', '12', 'http://www.ocremix.org/remixer/bladiator/', 'OCR', '', 'n', 'n', '2008-02-23 03:04:48'), 

  ('108', '12', '12', 'http://bladiator.vgpiano.com/', 'OHP', '', 'n', 'n', '2008-04-02 06:57:25'), 

  ('35', '13', '13', 'http://www.ocremix.org/remixer/blakeperdue/', 'OCR', '', 'n', 'n', '2008-02-23 03:09:47'), 

  ('143', '13', '13', 'http://www.soundclick.com/blizihizake', 'SCL', '', 'n', 'n', '2008-04-02 07:01:10'), 

  ('26', '15', '15', 'http://www.ocremix.org/remixer/braincells/', 'OCR', '', 'n', 'n', '2008-02-23 03:07:22'), 

  ('27', '16', '16', 'http://www.ocremix.org/remixer/snappleman/', 'OCR', '', 'n', 'n', '2008-02-23 03:07:30'), 

  ('40', '17', '17', 'http://www.ocremix.org/remixer/cotmm/', 'OCR', '', 'n', 'n', '2008-02-23 03:10:38'), 

  ('109', '17', '17', 'http://www.last.fm/music/Children+of+the+Monkey+Machine', 'LFM', '', 'n', 'n', '2008-04-02 05:05:47'), 

  ('19', '19', '19', 'http://www.ocremix.org/remixer/christianpacaud/', 'OCR', '', 'n', 'n', '2008-02-23 03:05:16'), 

  ('110', '19', '19', 'http://www.christianpacaud.com', 'OHP', '', 'n', 'n', '2008-04-02 05:07:28'), 

  ('1', '20', '20', 'http://www.ocremix.org/remixer/dalenorth/', 'OCR', '', 'n', 'n', '2008-02-23 03:00:56'), 

  ('123', '20', '20', 'http://www.dalenorth.com/', 'OHP', '', 'n', 'n', '2008-04-02 05:59:23'), 

  ('29', '21', '21', 'http://www.ocremix.org/remixer/mustin/', 'OCR', '', 'n', 'n', '2008-02-23 03:08:20'), 

  ('111', '21', '21', 'http://www.myspace.com/mustinmusic', 'MYSP', '', 'n', 'n', '2008-04-02 05:08:17'), 

  ('30', '22', '22', 'http://www.ocremix.org/remixer/natecloud/', 'OCR', '', 'n', 'n', '2008-02-23 03:08:37'), 

  ('144', '22', '271', 'http://www.myspace.com/mcleodmusic', 'MYSP', '', 'n', 'n', '2008-04-02 07:03:46'), 

  ('31', '23', '23', 'http://www.ocremix.org/remixer/theoneups/', 'OCR', '', 'n', 'n', '2008-02-23 03:08:48'), 

  ('84', '23', '23', 'http://www.theoneups.com/', 'OHP', '', 'n', 'n', '2008-03-05 20:04:16'), 

  ('10', '24', '24', 'http://www.ocremix.org/remixer/danielbaranowsky/', 'OCR', '', 'n', 'n', '2008-02-23 03:03:55'), 

  ('112', '24', '24', 'http://www.dbsoundworks.com/', 'OHP', '', 'n', 'n', '2008-04-02 05:10:28'), 

  ('113', '24', '24', 'http://www.myspace.com/dbmusiconline', 'MYSP', '', 'n', 'n', '2008-04-02 05:12:31'), 

  ('12', '25', '25', 'http://www.ocremix.org/remixer/zyko/', 'OCR', '', 'n', 'n', '2008-02-23 03:04:12'), 

  ('48', '25', '25', 'http://zykomazika.com/', 'OHP', '', 'n', 'n', '2008-02-23 03:13:55'), 

  ('49', '25', '25', 'http://www.myspace.com/zyk0', 'MYSP', '', 'n', 'n', '2008-02-23 03:16:02'), 

  ('149', '25', '25', 'http://www.vgmix.com/members/78/User_74.php', 'VGMX', '', 'n', 'n', '2008-04-02 07:33:49'), 

  ('11', '26', '26', 'http://www.ocremix.org/remixer/vigilante/', 'OCR', '', 'n', 'n', '2008-02-23 03:04:04'), 

  ('20', '27', '27', 'http://www.ocremix.org/remixer/destructo/', 'OCR', '', 'n', 'n', '2008-02-23 03:05:43'), 

  ('17', '28', '28', 'http://www.ocremix.org/remixer/dhsu/', 'OCR', '', 'n', 'n', '2008-02-23 03:04:59'), 

  ('18', '29', '29', 'http://www.ocremix.org/remixer/graylightning/', 'OCR', '', 'n', 'n', '2008-02-23 03:05:08'), 

  ('7', '30', '30', 'http://www.ocremix.org/remixer/diggidis/', 'OCR', '', 'n', 'n', '2008-02-23 03:03:25'), 

  ('114', '30', '270', 'http://www.diggidis.com/', 'OHP', '', 'n', 'n', '2008-04-02 05:20:15'), 

  ('37', '31', '31', 'http://www.ocremix.org/remixer/discodan/', 'OCR', '', 'n', 'n', '2008-02-23 03:10:08'), 

  ('115', '31', '31', 'http://www.discodan.org/', 'OHP', '', 'n', 'n', '2008-04-02 05:21:41'), 

  ('4', '32', '32', 'http://www.ocremix.org/remixer/djpretzel/', 'OCR', '', 'n', 'n', '2008-02-23 03:02:38'), 

  ('92', '32', '32', 'http://www.djpretzel.com/', 'OHP', '', 'n', 'n', '2008-04-02 04:13:06'), 

  ('28', '33', '33', 'http://www.ocremix.org/remixer/drfruitcake/', 'OCR', '', 'n', 'n', '2008-02-23 03:07:40'), 

  ('90', '33', '33', 'http://www.fcmidi.net/', 'OHP', '', 'n', 'n', '2008-03-31 04:02:47'), 

  ('34', '34', '34', 'http://www.ocremix.org/remixer/efsisos/', 'OCR', '', 'n', 'n', '2008-02-23 03:09:27'), 

  ('148', '34', '34', 'http://www.efsisos.com/', 'OHP', '', 'n', 'n', '2008-04-02 07:24:53'), 

  ('23', '35', '35', 'http://www.ocremix.org/remixer/egm/', 'OCR', '', 'n', 'n', '2008-02-23 03:06:51'), 

  ('117', '35', '35', 'http://www.gamemusic.ca/', 'OHP', '', 'n', 'n', '2008-04-02 05:24:21'), 

  ('32', '36', '36', 'http://www.ocremix.org/remixer/estradasphere/', 'OCR', '', 'n', 'n', '2008-02-23 03:09:10'), 

  ('147', '36', '36', 'http://www.estradasphere.com/', 'OHP', '', 'n', 'n', '2008-04-02 07:24:14'), 

  ('43', '37', '37', 'http://www.ocremix.org/remixer/freemind/', 'OCR', '', 'n', 'n', '2008-02-23 03:11:18'), 

  ('120', '37', '37', 'http://www.soundclick.com/freemind', 'SCL', '', 'n', 'n', '2008-04-02 05:37:13'), 

  ('25', '38', '38', 'http://www.ocremix.org/remixer/gameover/', 'OCR', '', 'n', 'n', '2008-02-23 03:07:13'), 

  ('118', '38', '38', 'http://www.nintendometal.com/', 'OHP', '', 'n', 'n', '2008-04-02 05:26:20'), 

  ('22', '39', '39', 'http://www.ocremix.org/remixer/jeremyrobson/', 'OCR', '', 'n', 'n', '2008-02-23 03:06:09'), 

  ('119', '39', '39', 'http://www.jeremyrobson.com/', 'OHP', '', 'n', 'n', '2008-04-02 05:28:18'), 

  ('121', '39', '39', 'http://www.soundclick.com/jeremyrobson', 'SCL', '', 'n', 'n', '2008-04-02 05:39:51'), 

  ('5', '40', '40', 'http://www.ocremix.org/remixer/mazedude/', 'OCR', '', 'n', 'n', '2008-02-23 03:02:52'), 

  ('122', '40', '40', 'http://www.mazedudemusic.com/', 'OHP', '', 'n', 'n', '2008-04-02 05:54:27'), 

  ('6', '41', '41', 'http://www.ocremix.org/remixer/mcvaffe/', 'OCR', '', 'n', 'n', '2008-02-23 03:03:07'), 

  ('36', '42', '42', 'http://www.ocremix.org/remixer/pisces/', 'OCR', '', 'n', 'n', '2008-02-23 03:09:55'), 

  ('2', '43', '43', 'http://www.ocremix.org/remixer/shadow/', 'OCR', '', 'n', 'n', '2008-02-23 03:01:21'), 

  ('124', '43', '43', 'http://dackz.net/sa/m/', 'OHP', '', 'n', 'n', '2008-04-02 06:01:25'), 

  ('14', '44', '44', 'http://www.ocremix.org/remixer/shnabubula/', 'OCR', '', 'n', 'n', '2008-02-23 03:04:32'), 

  ('125', '44', '44', 'http://www.arnoldascher.com/', 'OHP', '', 'n', 'n', '2008-04-02 06:02:58'), 

  ('126', '44', '44', 'http://www.myspace.com/shnabubula', 'MYSP', '', 'n', 'n', '2008-04-02 06:12:16'), 

  ('128', '44', '44', 'http://www.youtube.com/user/DragonArmyVideo', 'UTUBE', '', 'n', 'n', '2008-04-02 06:17:46'), 

  ('41', '45', '45', 'http://www.ocremix.org/remixer/sidewaysstaircase/', 'OCR', '', 'n', 'n', '2008-02-23 03:10:49'), 

  ('3', '46', '46', 'http://www.ocremix.org/remixer/silent/', 'OCR', '', 'n', 'n', '2008-02-23 03:02:15'), 

  ('146', '46', '46', 'http://jasonbrianmerrill.googlepages.com/', 'OHP', '', 'n', 'n', '2008-04-02 07:12:43'), 

  ('21', '47', '47', 'http://www.ocremix.org/remixer/thewingless/', 'OCR', '', 'n', 'n', '2008-02-23 03:05:52'), 

  ('129', '47', '47', 'http://www.thewingless.com/', 'OHP', '', 'n', 'n', '2008-04-02 06:22:30'), 

  ('24', '48', '48', 'http://www.ocremix.org/remixer/zircon/', 'OCR', '', 'n', 'n', '2008-02-23 03:07:05'), 

  ('130', '48', '48', 'http://www.zirconstudios.com/', 'OHP', '', 'n', 'n', '2008-04-02 06:24:49'), 

  ('15', '112', '112', 'http://www.ocremix.org/remixer/akumajobelmont/', 'OCR', '', 'n', 'n', '2008-02-23 03:04:40'), 

  ('89', '117', '117', 'http://www.jeremysoule.com/', 'OHP', '', 'n', 'n', '2008-03-19 15:16:55'), 

  ('174', '117', '117', 'http://www.ocremix.org/remixer/jeremysoule/', 'OCR', '', 'n', 'n', '2008-10-24 01:25:18'), 

  ('50', '121', '121', 'http://www.vgmix.com/members/220/User_216.php', 'VGMX', '', 'n', 'n', '2008-03-03 12:23:12'), 

  ('51', '122', '122', 'http://www.ocremix.org/remixer/njekted/', 'OCR', '', 'n', 'n', '2008-03-03 13:31:41'), 

  ('131', '122', '122', 'http://www.gameaudioaustralia.com/', 'OHP', '', 'n', 'n', '2008-04-02 06:26:54'), 

  ('53', '126', '126', 'http://www.ocremix.org/remixer/starsalzman/', 'OCR', '', 'n', 'n', '2008-03-03 18:57:27'), 

  ('91', '126', '180', 'http://starblast.org/', 'OHP', '', 'n', 'n', '2008-04-01 11:56:37'), 

  ('55', '128', '128', 'http://www.ocremix.org/remixer/po/', 'OCR', '', 'n', 'n', '2008-03-03 18:58:43'), 

  ('132', '128', '167', 'http://www.wushuplaya.com/', 'OHP', '', 'n', 'n', '2008-04-02 06:28:05'), 

  ('54', '129', '129', 'http://www.ocremix.org/remixer/joshuamorse/', 'OCR', '', 'n', 'n', '2008-03-03 18:58:18'), 

  ('78', '129', '129', 'http://www.jmflava.com/', 'OHP', '', 'n', 'n', '2008-04-02 06:28:37'), 

  ('56', '131', '131', 'http://www.ocremix.org/remixer/israfel/', 'OCR', '', 'n', 'n', '2008-03-03 18:59:15'), 

  ('58', '146', '146', 'http://www.vgmix.com/members/492/User_488.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:20:14'), 

  ('137', '146', '146', 'http://cpchicken.free.fr/', 'OHP', '', 'n', 'n', '2008-04-02 06:33:40'), 

  ('59', '147', '147', 'http://www.vgmix.com/members/607/User_603.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:22:55'), 

  ('93', '147', '147', 'http://www.8bitvgm.net/', 'OHP', 'In Spanish.', 'n', 'n', '2008-04-02 04:15:46'), 

  ('94', '147', '147', 'http://www.myspace.com/8bitvgm', 'MYSP', 'In Spanish.', 'n', 'n', '2008-04-02 04:15:28'), 

  ('60', '148', '148', 'http://www.vgmix.com/members/292/User_288.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:24:28'), 

  ('61', '149', '149', 'http://www.vgmix.com/members/37/User_33.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:26:08'), 

  ('62', '150', '150', 'http://www.vgmix.com/members/566/User_562.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:27:35'), 

  ('63', '151', '151', 'http://www.vgmix.com/members/577/User_573.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:29:39'), 

  ('64', '152', '152', 'http://www.vgmix.com/members/25/User_21.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:30:24'), 

  ('127', '152', '152', 'http://www.youtube.com/user/DougDrumUltimAPerry', 'UTUBE', '', 'n', 'n', '2008-04-02 06:16:38'), 

  ('65', '153', '153', 'http://www.vgmix.com/members/395/User_391.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:31:24'), 

  ('66', '154', '154', 'http://www.vgmix.com/members/525/User_521.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:32:31'), 

  ('67', '155', '155', 'http://www.vgmix.com/members/1247/User_1241.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:33:39'), 

  ('69', '157', '157', 'http://www.vgmix.com/members/230/User_226.php', 'VGMX', '', 'n', 'n', '2008-03-04 11:43:22'), 

  ('70', '158', '158', 'http://www.vgmix.com/members/188/User_184.php', 'VGMX', '', 'n', 'n', '2008-03-04 12:05:56'), 

  ('77', '165', '165', 'http://www.vgmix.com/members/53/User_49.php', 'VGMX', '', 'n', 'n', '2008-03-04 12:14:19'), 

  ('79', '167', '168', 'http://www.vgmix.com/members/122/User_118.php', 'VGMX', '', 'n', 'n', '2008-03-04 19:59:15'), 

  ('87', '167', '168', 'http://soundtempest.net/soc/', 'OHP', '', 'n', 'n', '2008-03-11 12:10:38'), 

  ('85', '172', '173', 'http://www.ocremix.org/remixer/justusjohnston/', 'OCR', '', 'n', 'n', '2008-04-02 06:39:55'), 

  ('86', '188', '191', 'http://www.ocremix.org/remixer/scottpeeples/', 'OCR', '', 'n', 'n', '2008-03-06 21:16:47'), 

  ('139', '188', '191', 'http://www.scottpeeples.com/', 'OHP', '', 'n', 'n', '2008-04-02 06:42:16'), 

  ('151', '259', '263', 'http://thebastardfairies.com/', 'OHP', '', 'n', 'n', '2008-04-02 08:04:44'), 

  ('150', '260', '264', 'http://yellowthunderwoman.com/', 'OHP', '', 'n', 'n', '2008-04-02 08:04:25'), 

  ('95', '261', '265', 'http://www.abandonedsheep.com/', 'OHP', '', 'n', 'n', '2008-04-02 04:17:22'), 

  ('98', '261', '265', 'http://www.ocremix.org/remixer/binster/', 'OCR', '', 'n', 'n', '2008-04-02 04:19:30'), 

  ('96', '262', '266', 'http://www.ocremix.org/remixer/richbrf/', 'OCR', '', 'n', 'n', '2008-04-02 04:18:20'), 

  ('97', '262', '266', 'http://www.brfuk.com/', 'OHP', '', 'n', 'n', '2008-04-02 07:22:17'), 

  ('152', '266', '274', 'http://www.ocremix.org/remixer/rimco/', 'OCR', '', 'n', 'n', '2008-04-02 12:43:17'), 

  ('153', '266', '274', 'http://www.freewebs.com/rimco/', 'OHP', '', 'n', 'n', '2008-04-02 12:44:58');

