diff --git a/backupfiles.sh b/backupfiles.sh
new file mode 100755
index 0000000..f7d3035
--- /dev/null
+++ b/backupfiles.sh
@@ -0,0 +1,3 @@
+pg_dumpall -Upostgres > divar.backup
+
+#psql -f infile postgres #Restore using this command.
\ No newline at end of file
diff --git a/frontend/src/App.js b/frontend/src/App.js
index 23466b2..c9f0795 100644
--- a/frontend/src/App.js
+++ b/frontend/src/App.js
@@ -1779,11 +1779,16 @@ function ReleaseList(p) {
function DivaBot() {
const releases=[
- ["02A","http://projectdivar.com/files/releases/DivaBot02A.zip","14 Sep 2020",<>Recommended! Label Headers and Redo Song Calibration features added>],
- ["02","http://projectdivar.com/files/releases/DivaBot02.zip","14 Sep 2020",<>Stable>],
- ["01B","http://projectdivar.com/files/releases/DivaBot01B.zip","13 Sep 2020",<> BUGGED! DO NOT USE!>],
- ["01A","http://projectdivar.com/files/releases/DivaBot01A.zip","13 Sep 2020",<> BUGGED! DO NOT USE! Speed Improvements>],
- ["01","http://projectdivar.com/files/releases/DivaBot01.zip","13 Sep 2020",<> BUGGED! DO NOT USE! Initial Release>]]
+ ["03","http://projectdivar.com/files/releases/DivaBot03.zip","17 Sep 2020",<>Recommended! DLC Update - Compatibility with removed 'bpm' field from database. Fixed bug with ":" in song names.>],
+ ]
+
+ const incompatiblereleases=[
+ ["02A","http://projectdivar.com/files/releases/DivaBot02A.zip","14 Sep 2020",<>Incompatible! Label Headers and Redo Song Calibration features added>],
+ ["02","http://projectdivar.com/files/releases/DivaBot02.zip","14 Sep 2020",<>Incompatible!>],
+ ["01B","http://projectdivar.com/files/releases/DivaBot01B.zip","13 Sep 2020",<> Incompatible! BUGGED! DO NOT USE!>],
+ ["01A","http://projectdivar.com/files/releases/DivaBot01A.zip","13 Sep 2020",<> Incompatible! BUGGED! DO NOT USE! Speed Improvements>],
+ ["01","http://projectdivar.com/files/releases/DivaBot01.zip","13 Sep 2020",<> Incompatible! BUGGED! DO NOT USE! Initial Release>]
+ ]
return (
<>
@@ -1806,6 +1811,11 @@ function DivaBot() {
This app and Project DivaR itself is open source. You can find its source code at this link.
If you need an open discussion about how this program works or have any feedbacks/concerns, please contact me via the Project DivaR Discord server (@sigonasr2).
+
+ Incompatible Downloads
+ Downloads stored below no longer work due to infrastructure changes or updates that break old apps.
+
+
>
)
}
diff --git a/imgparser/projectDivaImgParser b/imgparser/projectDivaImgParser
index cdfe63f..ac2c50b 160000
--- a/imgparser/projectDivaImgParser
+++ b/imgparser/projectDivaImgParser
@@ -1 +1 @@
-Subproject commit cdfe63fec298f37a70d3b34ac90cb5cd2a45b479
+Subproject commit ac2c50bd39603a8efc4cacdfb704301c97aec3a4
diff --git a/server/app.js b/server/app.js
index 37539eb..7db7d6a 100644
--- a/server/app.js
+++ b/server/app.js
@@ -76,6 +76,12 @@ app.get('/songs', (req, res) => {
data[song.id].notecount[song.difficulty]=song.notecount;
} else {
data[song.id]=song
+ if (data[song.id].rating===null) {
+ data[song.id].rating={}
+ }
+ if (data[song.id].notecount===null) {
+ data[song.id].notecount={};
+ }
}})
res.status(200).json(data)
}
@@ -1008,7 +1014,7 @@ axios.get('https://api.twitter.com/1.1/search/tweets.json?q=@divarbot', {
setInterval(
()=>{
- var uploadData=undefined;
+ var uploadData=undefined,user=undefined,auth=undefined;
db.query("select * from uploadedplays order by submissiondate asc limit 1;")
.then((data)=>{
if (data.rows.length>0) {
@@ -1018,16 +1024,21 @@ setInterval(
})
.then((data)=>{
if (uploadData && data.rows.length>0) {
- return axios.post("http://projectdivar.com/image",
- {url:uploadData.filename,user:data.rows[0].username,auth:data.rows[0].authentication_token})
+ user=data.rows[0].username
+ auth=data.rows[0].authentication_token
+ return db.query("delete from uploadedplays where id=$1",[uploadData.id])
+ } else {
+ throw new Error("Something went wrong!")
}
})
+ .then((data)=>{
+ return axios.post("http://projectdivar.com/image",
+ {url:uploadData.filename,user:user,auth:auth})
+ })
.then((data)=>{
if (uploadData) {
if (data.data==="Invalid parameters!") {
throw new Error("Invalid parameters while trying to submit play!")
- } else {
- return db.query("delete from uploadedplays where id=$1",[uploadData.id])
}
}
})
diff --git a/server/files/album_art/021.jpg b/server/files/album_art/021.jpg
new file mode 100644
index 0000000..e97fcd1
Binary files /dev/null and b/server/files/album_art/021.jpg differ
diff --git a/server/files/album_art/022.jpg b/server/files/album_art/022.jpg
new file mode 100644
index 0000000..50837dd
Binary files /dev/null and b/server/files/album_art/022.jpg differ
diff --git a/server/files/album_art/028.jpg b/server/files/album_art/028.jpg
new file mode 100644
index 0000000..b9bc924
Binary files /dev/null and b/server/files/album_art/028.jpg differ
diff --git a/server/files/album_art/038.jpg b/server/files/album_art/038.jpg
new file mode 100644
index 0000000..d2179e3
Binary files /dev/null and b/server/files/album_art/038.jpg differ
diff --git a/server/files/album_art/061.jpg b/server/files/album_art/061.jpg
new file mode 100644
index 0000000..a0df606
Binary files /dev/null and b/server/files/album_art/061.jpg differ
diff --git a/server/files/album_art/086.jpg b/server/files/album_art/086.jpg
new file mode 100644
index 0000000..5cc8e70
Binary files /dev/null and b/server/files/album_art/086.jpg differ
diff --git a/server/files/album_art/088.jpg b/server/files/album_art/088.jpg
new file mode 100644
index 0000000..b1ddda9
Binary files /dev/null and b/server/files/album_art/088.jpg differ
diff --git a/server/files/album_art/106.jpg b/server/files/album_art/106.jpg
new file mode 100644
index 0000000..b9672b7
Binary files /dev/null and b/server/files/album_art/106.jpg differ
diff --git a/server/files/album_art/151.jpg b/server/files/album_art/151.jpg
new file mode 100644
index 0000000..800f877
Binary files /dev/null and b/server/files/album_art/151.jpg differ
diff --git a/server/files/album_art/161.jpg b/server/files/album_art/161.jpg
new file mode 100644
index 0000000..1ec273a
Binary files /dev/null and b/server/files/album_art/161.jpg differ
diff --git a/server/files/album_art/168.jpg b/server/files/album_art/168.jpg
new file mode 100644
index 0000000..7192ffe
Binary files /dev/null and b/server/files/album_art/168.jpg differ
diff --git a/server/files/album_art/175.jpg.1.1 b/server/files/album_art/175.jpg.1.1
new file mode 100644
index 0000000..9174d3a
Binary files /dev/null and b/server/files/album_art/175.jpg.1.1 differ
diff --git a/server/files/album_art/227.jpg b/server/files/album_art/227.jpg
new file mode 100644
index 0000000..b71c959
Binary files /dev/null and b/server/files/album_art/227.jpg differ
diff --git a/server/files/album_art/252.jpg b/server/files/album_art/252.jpg
new file mode 100644
index 0000000..02360f8
Binary files /dev/null and b/server/files/album_art/252.jpg differ
diff --git a/server/files/album_art/253.jpg b/server/files/album_art/253.jpg
new file mode 100644
index 0000000..ac318b6
Binary files /dev/null and b/server/files/album_art/253.jpg differ
diff --git a/server/files/album_art/downloadImages.sh b/server/files/album_art/downloadImages.sh
index 27d3401..3d6ce24 100755
--- a/server/files/album_art/downloadImages.sh
+++ b/server/files/album_art/downloadImages.sh
@@ -1,165 +1,178 @@
-wget https://108memo.jp/images/result-pic/242.jpg &
-wget https://108memo.jp/images/result-pic/240.jpg &
-wget https://108memo.jp/images/result-pic/243.jpg &
-wget https://108memo.jp/images/result-pic/247.jpg &
-wget https://108memo.jp/images/result-pic/248.jpg &
-wget https://108memo.jp/images/result-pic/241.jpg &
-wget https://108memo.jp/images/result-pic/246.jpg &
-wget https://108memo.jp/images/result-pic/245.jpg &
-wget https://108memo.jp/images/result-pic/244.jpg &
-wget https://108memo.jp/images/result-pic/249.jpg &
-wget https://108memo.jp/images/result-pic/030.jpg &
-wget https://108memo.jp/images/result-pic/027.jpg &
-wget https://108memo.jp/images/result-pic/025.jpg &
-wget https://108memo.jp/images/result-pic/196.jpg &
-wget https://108memo.jp/images/result-pic/004.jpg &
-wget https://108memo.jp/images/result-pic/016.jpg &
-wget https://108memo.jp/images/result-pic/024.jpg &
-wget https://108memo.jp/images/result-pic/059.jpg &
-wget https://108memo.jp/images/result-pic/078.jpg &
-wget https://108memo.jp/images/result-pic/060.jpg &
-wget https://108memo.jp/images/result-pic/073.jpg &
-wget https://108memo.jp/images/result-pic/102.jpg &
-wget https://108memo.jp/images/result-pic/062.jpg &
-wget https://108memo.jp/images/result-pic/056.jpg &
-wget https://108memo.jp/images/result-pic/087.jpg &
-wget https://108memo.jp/images/result-pic/075.jpg &
-wget https://108memo.jp/images/result-pic/074.jpg &
-wget https://108memo.jp/images/result-pic/055.jpg &
-wget https://108memo.jp/images/result-pic/097.jpg &
-wget https://108memo.jp/images/result-pic/114.jpg &
-wget https://108memo.jp/images/result-pic/122.jpg &
-wget https://108memo.jp/images/result-pic/109.jpg &
-wget https://108memo.jp/images/result-pic/089.jpg &
-wget https://108memo.jp/images/result-pic/120.jpg &
-wget https://108memo.jp/images/result-pic/104.jpg &
-wget https://108memo.jp/images/result-pic/123.jpg &
-wget https://108memo.jp/images/result-pic/157.jpg &
-wget https://108memo.jp/images/result-pic/129.jpg &
-wget https://108memo.jp/images/result-pic/232.jpg &
-wget https://108memo.jp/images/result-pic/143.jpg &
-wget https://108memo.jp/images/result-pic/231.jpg &
-wget https://108memo.jp/images/result-pic/148.jpg &
-wget https://108memo.jp/images/result-pic/164.jpg &
-wget https://108memo.jp/images/result-pic/158.jpg &
-wget https://108memo.jp/images/result-pic/147.jpg &
-wget https://108memo.jp/images/result-pic/176.jpg &
-wget https://108memo.jp/images/result-pic/152.jpg &
-wget https://108memo.jp/images/result-pic/149.jpg &
-wget https://108memo.jp/images/result-pic/163.jpg &
-wget https://108memo.jp/images/result-pic/202.jpg &
-wget https://108memo.jp/images/result-pic/165.jpg &
-wget https://108memo.jp/images/result-pic/150.jpg &
-wget https://108memo.jp/images/result-pic/162.jpg &
-wget https://108memo.jp/images/result-pic/128.jpg &
-wget https://108memo.jp/images/result-pic/175.jpg &
-wget https://108memo.jp/images/result-pic/184.jpg &
-wget https://108memo.jp/images/result-pic/146.jpg &
-wget https://108memo.jp/images/result-pic/178.jpg &
-wget https://108memo.jp/images/result-pic/153.jpg &
-wget https://108memo.jp/images/result-pic/181.jpg &
-wget https://108memo.jp/images/result-pic/204.jpg &
-wget https://108memo.jp/images/result-pic/154.jpg &
-wget https://108memo.jp/images/result-pic/170.jpg &
-wget https://108memo.jp/images/result-pic/180.jpg &
-wget https://108memo.jp/images/result-pic/198.jpg &
-wget https://108memo.jp/images/result-pic/207.jpg &
-wget https://108memo.jp/images/result-pic/201.jpg &
-wget https://108memo.jp/images/result-pic/236.jpg &
-wget https://108memo.jp/images/result-pic/175.jpg &
-wget https://108memo.jp/images/result-pic/177.jpg &
-wget https://108memo.jp/images/result-pic/237.jpg &
-wget https://108memo.jp/images/result-pic/228.jpg &
-wget https://108memo.jp/images/result-pic/193.jpg &
-wget https://108memo.jp/images/result-pic/230.jpg &
-wget https://108memo.jp/images/result-pic/212.jpg &
-wget https://108memo.jp/images/result-pic/179.jpg &
-wget https://108memo.jp/images/result-pic/234.jpg &
-wget https://108memo.jp/images/result-pic/229.jpg &
-wget https://108memo.jp/images/result-pic/209.jpg &
-wget https://108memo.jp/images/result-pic/213.jpg &
-wget https://108memo.jp/images/result-pic/208.jpg &
-wget https://108memo.jp/images/result-pic/220.jpg &
-wget https://108memo.jp/images/result-pic/225.jpg &
-wget https://108memo.jp/images/result-pic/218.jpg &
-wget https://108memo.jp/images/result-pic/224.jpg &
-wget https://108memo.jp/images/result-pic/215.jpg &
-wget https://108memo.jp/images/result-pic/190.jpg &
-wget https://108memo.jp/images/result-pic/211.jpg &
-wget https://108memo.jp/images/result-pic/221.jpg &
-wget https://108memo.jp/images/result-pic/223.jpg &
-wget https://108memo.jp/images/result-pic/206.jpg &
-wget https://108memo.jp/images/result-pic/214.jpg &
-wget https://108memo.jp/images/result-pic/210.jpg &
-wget https://108memo.jp/images/result-pic/205.jpg &
-wget https://108memo.jp/images/result-pic/233.jpg &
-wget https://108memo.jp/images/result-pic/131.jpg &
-wget https://108memo.jp/images/result-pic/033.jpg &
-wget https://108memo.jp/images/result-pic/137.jpg &
-wget https://108memo.jp/images/result-pic/235.jpg &
-wget https://108memo.jp/images/result-pic/238.jpg &
-wget https://108memo.jp/images/result-pic/239.jpg &
-wget https://108memo.jp/images/result-pic/009.jpg &
-wget https://108memo.jp/images/result-pic/057.jpg &
-wget https://108memo.jp/images/result-pic/111.jpg &
-wget https://108memo.jp/images/result-pic/132.jpg &
-wget https://108memo.jp/images/result-pic/110.jpg &
-wget https://108memo.jp/images/result-pic/194.jpg &
-wget https://108memo.jp/images/result-pic/064.jpg &
-wget https://108memo.jp/images/result-pic/096.jpg &
-wget https://108memo.jp/images/result-pic/155.jpg &
-wget https://108memo.jp/images/result-pic/219.jpg &
-wget https://108memo.jp/images/result-pic/076.jpg &
-wget https://108memo.jp/images/result-pic/127.jpg &
-wget https://108memo.jp/images/result-pic/169.jpg &
-wget https://108memo.jp/images/result-pic/124.jpg &
-wget https://108memo.jp/images/result-pic/063.jpg &
-wget https://108memo.jp/images/result-pic/125.jpg &
-wget https://108memo.jp/images/result-pic/200.jpg &
-wget https://108memo.jp/images/result-pic/015.jpg &
-wget https://108memo.jp/images/result-pic/085.jpg &
-wget https://108memo.jp/images/result-pic/174.jpg &
-wget https://108memo.jp/images/result-pic/112.jpg &
-wget https://108memo.jp/images/result-pic/116.jpg &
-wget https://108memo.jp/images/result-pic/199.jpg &
-wget https://108memo.jp/images/result-pic/005.jpg &
-wget https://108memo.jp/images/result-pic/203.jpg &
-wget https://108memo.jp/images/result-pic/084.jpg &
-wget https://108memo.jp/images/result-pic/160.jpg &
-wget https://108memo.jp/images/result-pic/159.jpg &
-wget https://108memo.jp/images/result-pic/118.jpg &
-wget https://108memo.jp/images/result-pic/100.jpg &
-wget https://108memo.jp/images/result-pic/167.jpg &
-wget https://108memo.jp/images/result-pic/095.jpg &
-wget https://108memo.jp/images/result-pic/189.jpg &
-wget https://108memo.jp/images/result-pic/139.jpg &
-wget https://108memo.jp/images/result-pic/216.jpg &
-wget https://108memo.jp/images/result-pic/217.jpg &
-wget https://108memo.jp/images/result-pic/156.jpg &
-wget https://108memo.jp/images/result-pic/072.jpg &
-wget https://108memo.jp/images/result-pic/188.jpg &
-wget https://108memo.jp/images/result-pic/222.jpg &
-wget https://108memo.jp/images/result-pic/250.jpg &
-wget https://108memo.jp/images/result-pic/006.jpg &
-wget https://108memo.jp/images/result-pic/000.jpg &
-wget https://108memo.jp/images/result-pic/121.jpg &
-wget https://108memo.jp/images/result-pic/035.jpg &
-wget https://108memo.jp/images/result-pic/117.jpg &
-wget https://108memo.jp/images/result-pic/141.jpg &
-wget https://108memo.jp/images/result-pic/051.jpg &
-wget https://108memo.jp/images/result-pic/138.jpg &
-wget https://108memo.jp/images/result-pic/134.jpg &
-
-wget https://108memo.jp/images/result-pic/058.jpg &
-wget https://108memo.jp/images/result-pic/171.jpg &
-wget https://108memo.jp/images/result-pic/192.jpg &
-wget https://108memo.jp/images/result-pic/130.jpg &
-wget https://108memo.jp/images/result-pic/105.jpg &
-wget https://108memo.jp/images/result-pic/010.jpg &
-wget https://108memo.jp/images/result-pic/251.jpg &
-wget https://108memo.jp/images/result-pic/071.jpg &
-wget https://108memo.jp/images/result-pic/113.jpg &
-wget https://108memo.jp/images/result-pic/115.jpg &
-wget https://108memo.jp/images/result-pic/099.jpg &
-wget https://108memo.jp/images/result-pic/077.jpg &
-wget https://108memo.jp/images/result-pic/011.jpg &
+# wget https://108memo.jp/images/result-pic/242.jpg &
+# wget https://108memo.jp/images/result-pic/240.jpg &
+# wget https://108memo.jp/images/result-pic/243.jpg &
+# wget https://108memo.jp/images/result-pic/247.jpg &
+# wget https://108memo.jp/images/result-pic/248.jpg &
+# wget https://108memo.jp/images/result-pic/241.jpg &
+# wget https://108memo.jp/images/result-pic/246.jpg &
+# wget https://108memo.jp/images/result-pic/245.jpg &
+# wget https://108memo.jp/images/result-pic/244.jpg &
+# wget https://108memo.jp/images/result-pic/249.jpg &
+# wget https://108memo.jp/images/result-pic/030.jpg &
+# wget https://108memo.jp/images/result-pic/027.jpg &
+# wget https://108memo.jp/images/result-pic/025.jpg &
+# wget https://108memo.jp/images/result-pic/196.jpg &
+# wget https://108memo.jp/images/result-pic/004.jpg &
+# wget https://108memo.jp/images/result-pic/016.jpg &
+# wget https://108memo.jp/images/result-pic/024.jpg &
+# wget https://108memo.jp/images/result-pic/059.jpg &
+# wget https://108memo.jp/images/result-pic/078.jpg &
+# wget https://108memo.jp/images/result-pic/060.jpg &
+# wget https://108memo.jp/images/result-pic/073.jpg &
+# wget https://108memo.jp/images/result-pic/102.jpg &
+# wget https://108memo.jp/images/result-pic/062.jpg &
+# wget https://108memo.jp/images/result-pic/056.jpg &
+# wget https://108memo.jp/images/result-pic/087.jpg &
+# wget https://108memo.jp/images/result-pic/075.jpg &
+# wget https://108memo.jp/images/result-pic/074.jpg &
+# wget https://108memo.jp/images/result-pic/055.jpg &
+# wget https://108memo.jp/images/result-pic/097.jpg &
+# wget https://108memo.jp/images/result-pic/114.jpg &
+# wget https://108memo.jp/images/result-pic/122.jpg &
+# wget https://108memo.jp/images/result-pic/109.jpg &
+# wget https://108memo.jp/images/result-pic/089.jpg &
+# wget https://108memo.jp/images/result-pic/120.jpg &
+# wget https://108memo.jp/images/result-pic/104.jpg &
+# wget https://108memo.jp/images/result-pic/123.jpg &
+# wget https://108memo.jp/images/result-pic/157.jpg &
+# wget https://108memo.jp/images/result-pic/129.jpg &
+# wget https://108memo.jp/images/result-pic/232.jpg &
+# wget https://108memo.jp/images/result-pic/143.jpg &
+# wget https://108memo.jp/images/result-pic/231.jpg &
+# wget https://108memo.jp/images/result-pic/148.jpg &
+# wget https://108memo.jp/images/result-pic/164.jpg &
+# wget https://108memo.jp/images/result-pic/158.jpg &
+# wget https://108memo.jp/images/result-pic/147.jpg &
+# wget https://108memo.jp/images/result-pic/176.jpg &
+# wget https://108memo.jp/images/result-pic/152.jpg &
+# wget https://108memo.jp/images/result-pic/149.jpg &
+# wget https://108memo.jp/images/result-pic/163.jpg &
+# wget https://108memo.jp/images/result-pic/202.jpg &
+# wget https://108memo.jp/images/result-pic/165.jpg &
+# wget https://108memo.jp/images/result-pic/150.jpg &
+# wget https://108memo.jp/images/result-pic/162.jpg &
+# wget https://108memo.jp/images/result-pic/128.jpg &
+# wget https://108memo.jp/images/result-pic/175.jpg &
+# wget https://108memo.jp/images/result-pic/184.jpg &
+# wget https://108memo.jp/images/result-pic/146.jpg &
+# wget https://108memo.jp/images/result-pic/178.jpg &
+# wget https://108memo.jp/images/result-pic/153.jpg &
+# wget https://108memo.jp/images/result-pic/181.jpg &
+# wget https://108memo.jp/images/result-pic/204.jpg &
+# wget https://108memo.jp/images/result-pic/154.jpg &
+# wget https://108memo.jp/images/result-pic/170.jpg &
+# wget https://108memo.jp/images/result-pic/180.jpg &
+# wget https://108memo.jp/images/result-pic/198.jpg &
+# wget https://108memo.jp/images/result-pic/207.jpg &
+# wget https://108memo.jp/images/result-pic/201.jpg &
+# wget https://108memo.jp/images/result-pic/236.jpg &
+# wget https://108memo.jp/images/result-pic/175.jpg &
+# wget https://108memo.jp/images/result-pic/177.jpg &
+# wget https://108memo.jp/images/result-pic/237.jpg &
+# wget https://108memo.jp/images/result-pic/228.jpg &
+# wget https://108memo.jp/images/result-pic/193.jpg &
+# wget https://108memo.jp/images/result-pic/230.jpg &
+# wget https://108memo.jp/images/result-pic/212.jpg &
+# wget https://108memo.jp/images/result-pic/179.jpg &
+# wget https://108memo.jp/images/result-pic/234.jpg &
+# wget https://108memo.jp/images/result-pic/229.jpg &
+# wget https://108memo.jp/images/result-pic/209.jpg &
+# wget https://108memo.jp/images/result-pic/213.jpg &
+# wget https://108memo.jp/images/result-pic/208.jpg &
+# wget https://108memo.jp/images/result-pic/220.jpg &
+# wget https://108memo.jp/images/result-pic/225.jpg &
+# wget https://108memo.jp/images/result-pic/218.jpg &
+# wget https://108memo.jp/images/result-pic/224.jpg &
+# wget https://108memo.jp/images/result-pic/215.jpg &
+# wget https://108memo.jp/images/result-pic/190.jpg &
+# wget https://108memo.jp/images/result-pic/211.jpg &
+# wget https://108memo.jp/images/result-pic/221.jpg &
+# wget https://108memo.jp/images/result-pic/223.jpg &
+# wget https://108memo.jp/images/result-pic/206.jpg &
+# wget https://108memo.jp/images/result-pic/214.jpg &
+# wget https://108memo.jp/images/result-pic/210.jpg &
+# wget https://108memo.jp/images/result-pic/205.jpg &
+# wget https://108memo.jp/images/result-pic/233.jpg &
+# wget https://108memo.jp/images/result-pic/131.jpg &
+# wget https://108memo.jp/images/result-pic/033.jpg &
+# wget https://108memo.jp/images/result-pic/137.jpg &
+# wget https://108memo.jp/images/result-pic/235.jpg &
+# wget https://108memo.jp/images/result-pic/238.jpg &
+# wget https://108memo.jp/images/result-pic/239.jpg &
+# wget https://108memo.jp/images/result-pic/009.jpg &
+# wget https://108memo.jp/images/result-pic/057.jpg &
+# wget https://108memo.jp/images/result-pic/111.jpg &
+# wget https://108memo.jp/images/result-pic/132.jpg &
+# wget https://108memo.jp/images/result-pic/110.jpg &
+# wget https://108memo.jp/images/result-pic/194.jpg &
+# wget https://108memo.jp/images/result-pic/064.jpg &
+# wget https://108memo.jp/images/result-pic/096.jpg &
+# wget https://108memo.jp/images/result-pic/155.jpg &
+# wget https://108memo.jp/images/result-pic/219.jpg &
+# wget https://108memo.jp/images/result-pic/076.jpg &
+# wget https://108memo.jp/images/result-pic/127.jpg &
+# wget https://108memo.jp/images/result-pic/169.jpg &
+# wget https://108memo.jp/images/result-pic/124.jpg &
+# wget https://108memo.jp/images/result-pic/063.jpg &
+# wget https://108memo.jp/images/result-pic/125.jpg &
+# wget https://108memo.jp/images/result-pic/200.jpg &
+# wget https://108memo.jp/images/result-pic/015.jpg &
+# wget https://108memo.jp/images/result-pic/085.jpg &
+# wget https://108memo.jp/images/result-pic/174.jpg &
+# wget https://108memo.jp/images/result-pic/112.jpg &
+# wget https://108memo.jp/images/result-pic/116.jpg &
+# wget https://108memo.jp/images/result-pic/199.jpg &
+# wget https://108memo.jp/images/result-pic/005.jpg &
+# wget https://108memo.jp/images/result-pic/203.jpg &
+# wget https://108memo.jp/images/result-pic/084.jpg &
+# wget https://108memo.jp/images/result-pic/160.jpg &
+# wget https://108memo.jp/images/result-pic/159.jpg &
+# wget https://108memo.jp/images/result-pic/118.jpg &
+# wget https://108memo.jp/images/result-pic/100.jpg &
+# wget https://108memo.jp/images/result-pic/167.jpg &
+# wget https://108memo.jp/images/result-pic/095.jpg &
+# wget https://108memo.jp/images/result-pic/189.jpg &
+# wget https://108memo.jp/images/result-pic/139.jpg &
+# wget https://108memo.jp/images/result-pic/216.jpg &
+# wget https://108memo.jp/images/result-pic/217.jpg &
+# wget https://108memo.jp/images/result-pic/156.jpg &
+# wget https://108memo.jp/images/result-pic/072.jpg &
+# wget https://108memo.jp/images/result-pic/188.jpg &
+# wget https://108memo.jp/images/result-pic/222.jpg &
+# wget https://108memo.jp/images/result-pic/250.jpg &
+# wget https://108memo.jp/images/result-pic/006.jpg &
+# wget https://108memo.jp/images/result-pic/000.jpg &
+# wget https://108memo.jp/images/result-pic/121.jpg &
+# wget https://108memo.jp/images/result-pic/035.jpg &
+# wget https://108memo.jp/images/result-pic/117.jpg &
+# wget https://108memo.jp/images/result-pic/141.jpg &
+# wget https://108memo.jp/images/result-pic/051.jpg &
+# wget https://108memo.jp/images/result-pic/138.jpg &
+# wget https://108memo.jp/images/result-pic/134.jpg &
+# wget https://108memo.jp/images/result-pic/058.jpg &
+# wget https://108memo.jp/images/result-pic/171.jpg &
+# wget https://108memo.jp/images/result-pic/192.jpg &
+# wget https://108memo.jp/images/result-pic/130.jpg &
+# wget https://108memo.jp/images/result-pic/105.jpg &
+# wget https://108memo.jp/images/result-pic/010.jpg &
+# wget https://108memo.jp/images/result-pic/251.jpg &
+# wget https://108memo.jp/images/result-pic/071.jpg &
+# wget https://108memo.jp/images/result-pic/113.jpg &
+# wget https://108memo.jp/images/result-pic/115.jpg &
+# wget https://108memo.jp/images/result-pic/099.jpg &
+# wget https://108memo.jp/images/result-pic/077.jpg &
+# wget https://108memo.jp/images/result-pic/011.jpg &
+# wget https://108memo.jp/images/result-pic/252.jpg &
+# wget https://108memo.jp/images/result-pic/253.jpg &
+# wget https://108memo.jp/images/result-pic/022.jpg &
+# wget https://108memo.jp/images/result-pic/086.jpg &
+# wget https://108memo.jp/images/result-pic/088.jpg &
+# wget https://108memo.jp/images/result-pic/168.jpg &
+# wget https://108memo.jp/images/result-pic/161.jpg &
+# wget https://108memo.jp/images/result-pic/038.jpg &
+# wget https://108memo.jp/images/result-pic/028.jpg &
+# wget https://108memo.jp/images/result-pic/021.jpg &
+# wget https://108memo.jp/images/result-pic/061.jpg &
+# wget https://108memo.jp/images/result-pic/227.jpg &
+# wget https://108memo.jp/images/result-pic/106.jpg &
+# wget https://108memo.jp/images/result-pic/151.jpg &
diff --git a/server/files/album_art/small/021.jpg b/server/files/album_art/small/021.jpg
new file mode 100644
index 0000000..04511fe
Binary files /dev/null and b/server/files/album_art/small/021.jpg differ
diff --git a/server/files/album_art/small/022.jpg b/server/files/album_art/small/022.jpg
new file mode 100644
index 0000000..51725ee
Binary files /dev/null and b/server/files/album_art/small/022.jpg differ
diff --git a/server/files/album_art/small/028.jpg b/server/files/album_art/small/028.jpg
new file mode 100644
index 0000000..b11e01f
Binary files /dev/null and b/server/files/album_art/small/028.jpg differ
diff --git a/server/files/album_art/small/038.jpg b/server/files/album_art/small/038.jpg
new file mode 100644
index 0000000..b08ce15
Binary files /dev/null and b/server/files/album_art/small/038.jpg differ
diff --git a/server/files/album_art/small/061.jpg b/server/files/album_art/small/061.jpg
new file mode 100644
index 0000000..d0e37fe
Binary files /dev/null and b/server/files/album_art/small/061.jpg differ
diff --git a/server/files/album_art/small/086.jpg b/server/files/album_art/small/086.jpg
new file mode 100644
index 0000000..34bf75d
Binary files /dev/null and b/server/files/album_art/small/086.jpg differ
diff --git a/server/files/album_art/small/088.jpg b/server/files/album_art/small/088.jpg
new file mode 100644
index 0000000..22a054f
Binary files /dev/null and b/server/files/album_art/small/088.jpg differ
diff --git a/server/files/album_art/small/106.jpg b/server/files/album_art/small/106.jpg
new file mode 100644
index 0000000..6de42da
Binary files /dev/null and b/server/files/album_art/small/106.jpg differ
diff --git a/server/files/album_art/small/151.jpg b/server/files/album_art/small/151.jpg
new file mode 100644
index 0000000..a72090d
Binary files /dev/null and b/server/files/album_art/small/151.jpg differ
diff --git a/server/files/album_art/small/161.jpg b/server/files/album_art/small/161.jpg
new file mode 100644
index 0000000..9a9a5bd
Binary files /dev/null and b/server/files/album_art/small/161.jpg differ
diff --git a/server/files/album_art/small/168.jpg b/server/files/album_art/small/168.jpg
new file mode 100644
index 0000000..29c1165
Binary files /dev/null and b/server/files/album_art/small/168.jpg differ
diff --git a/server/files/album_art/small/227.jpg b/server/files/album_art/small/227.jpg
new file mode 100644
index 0000000..553f578
Binary files /dev/null and b/server/files/album_art/small/227.jpg differ
diff --git a/server/files/album_art/small/252.jpg b/server/files/album_art/small/252.jpg
new file mode 100644
index 0000000..7773234
Binary files /dev/null and b/server/files/album_art/small/252.jpg differ
diff --git a/server/files/album_art/small/253.jpg b/server/files/album_art/small/253.jpg
new file mode 100644
index 0000000..c255f31
Binary files /dev/null and b/server/files/album_art/small/253.jpg differ
diff --git a/server/files/releases/DivaBot03.zip b/server/files/releases/DivaBot03.zip
new file mode 100644
index 0000000..1202253
Binary files /dev/null and b/server/files/releases/DivaBot03.zip differ
diff --git a/songDataImport.sql b/songDataImport.sql
new file mode 100755
index 0000000..7b2c73d
--- /dev/null
+++ b/songDataImport.sql
@@ -0,0 +1,302 @@
+update songs set bpm=153 where id=1;
+update songs set album_art='http://projectdivar.com/files/album_art/242.jpg' where id= 1; /*Catch the Wave */;
+update songs set bpm=152 where id=2;
+update songs set album_art='http://projectdivar.com/files/album_art/240.jpg' where id= 2; /*Alien Alien */;
+update songs set bpm=130 where id=3;
+update songs set album_art='http://projectdivar.com/files/album_art/243.jpg' where id= 3; /*39 Music! */;
+update songs set bpm=128 where id=4;
+update songs set album_art='http://projectdivar.com/files/album_art/247.jpg' where id= 4; /*Dreamin Chuchu */;
+update songs set bpm=200 where id=5;
+update songs set album_art='http://projectdivar.com/files/album_art/248.jpg' where id= 5; /*Hibana */;
+update songs set bpm=144 where id=6;
+update songs set album_art='http://projectdivar.com/files/album_art/241.jpg' where id= 6; /*Ohedo Julia-Night */;
+update songs set bpm=200 where id=7;
+update songs set album_art='http://projectdivar.com/files/album_art/246.jpg' where id= 7; /*Teo */;
+update songs set bpm=264 where id=8;
+update songs set album_art='http://projectdivar.com/files/album_art/245.jpg' where id= 8; /*Jitter Bug */;
+update songs set bpm=172 where id=9;
+update songs set album_art='http://projectdivar.com/files/album_art/244.jpg' where id= 9; /*Jigsaw Puzzle */;
+update songs set bpm=150 where id=10;
+update songs set album_art='http://projectdivar.com/files/album_art/249.jpg' where id= 10; /*Roki */;
+update songs set bpm=165 where id=11;
+update songs set album_art='http://projectdivar.com/files/album_art/030.jpg' where id= 11; /*World is Mine */;
+update songs set bpm=170 where id=12;
+update songs set album_art='http://projectdivar.com/files/album_art/27.jpg' where id= 12; /*Melt */;
+update songs set bpm=215 where id=13;
+update songs set album_art='http://projectdivar.com/files/album_art/025.jpg' where id= 13; /*Miracle Paint */;
+update songs set bpm=76 where id=14;
+update songs set album_art='http://projectdivar.com/files/album_art/196.jpg' where id= 14; /*Sakura no Ame */;
+update songs set bpm=150 where id=15;
+update songs set album_art='http://projectdivar.com/files/album_art/004.jpg' where id= 15; /*Electric Angel */;
+update songs set bpm=240 where id=16;
+update songs set album_art='http://projectdivar.com/files/album_art/016.jpg' where id= 16; /*Hatsune Miku no Shoushitsu -DEAD END- */;
+update songs set bpm=160 where id=17;
+update songs set album_art='http://projectdivar.com/files/album_art/024.jpg' where id= 17; /*Miku Miku ni Shite Ageru♪ */;
+update songs set bpm=170 where id=18;
+update songs set album_art='http://projectdivar.com/files/album_art/059.jpg' where id= 18; /*Romeo to Cinderella */;
+update songs set bpm=216 where id=19;
+update songs set album_art='http://projectdivar.com/files/album_art/078.jpg' where id= 19; /*magnet */;
+update songs set bpm=136 where id=20;
+update songs set album_art='http://projectdivar.com/files/album_art/060.jpg' where id= 20; /*Ai Kotoba */;
+update songs set bpm=128 where id=21;
+update songs set album_art='http://projectdivar.com/files/album_art/073.jpg' where id= 21; /*Just Be Friends */;
+update songs set bpm=98 where id=22;
+update songs set album_art='http://projectdivar.com/files/album_art/102.jpg' where id= 22; /*from Y to Y */;
+update songs set bpm=150 where id=23;
+update songs set album_art='http://projectdivar.com/files/album_art/062.jpg' where id= 23; /*PoPiPo */;
+update songs set bpm=144 where id=24;
+update songs set album_art='http://projectdivar.com/files/album_art/056.jpg' where id= 24; /*Cantarella */;
+update songs set bpm=90 where id=25;
+update songs set album_art='http://projectdivar.com/files/album_art/087.jpg' where id= 25; /*Gemini */;
+update songs set bpm=100 where id=26;
+update songs set album_art='http://projectdivar.com/files/album_art/075.jpg' where id= 26; /*Hajimete no Oto */;
+update songs set bpm=146 where id=27;
+update songs set album_art='http://projectdivar.com/files/album_art/074.jpg' where id= 27; /*Saihate */;
+update songs set bpm=185 where id=28;
+update songs set album_art='http://projectdivar.com/files/album_art/055.jpg' where id= 28; /*Colorful × Melody */;
+update songs set bpm=200 where id=29;
+update songs set album_art='http://projectdivar.com/files/album_art/097.jpg' where id= 29; /*Hatsune Miku no Gekishou */;
+update songs set bpm=180 where id=30;
+update songs set album_art='http://projectdivar.com/files/album_art/114.jpg' where id= 30; /*Palette */;
+update songs set bpm=162 where id=31;
+update songs set album_art='http://projectdivar.com/files/album_art/122.jpg' where id= 31; /*SPiCa -39update songs set album_art='s Giving Day Edition- */;
+update songs set bpm=102 where id=32;
+update songs set album_art='http://projectdivar.com/files/album_art/109.jpg' where id= 32; /*Tsugai Kogarashi */;
+update songs set bpm=160 where id=33;
+update songs set album_art='http://projectdivar.com/files/album_art/089.jpg' where id= 33; /*Luka Luka★Night Fever */;
+update songs set bpm=150 where id=34;
+update songs set album_art='http://projectdivar.com/files/album_art/120.jpg' where id= 34; /**Hello*/;
+update songs set bpm=159 where id=35;
+update songs set album_art='http://projectdivar.com/files/album_art/104.jpg' where id= 35; /*Ura-omote Lovers */;
+update songs set bpm=195 where id=36;
+update songs set album_art='http://projectdivar.com/files/album_art/123.jpg' where id= 36; /*Rolling Girl */;
+update songs set bpm=110 where id=37;
+update songs set album_art='http://projectdivar.com/files/album_art/157.jpg' where id= 37; /*Tricolor Airline */;
+update songs set bpm=150 where id=38;
+update songs set album_art='http://projectdivar.com/files/album_art/129.jpg' where id= 38; /*on the rocks */;
+update songs set bpm=138 where id=39;
+update songs set album_art='http://projectdivar.com/files/album_art/232.jpg' where id= 39; /*LOL -lots of laugh- */;
+update songs set bpm=137 where id=40;
+update songs set album_art='http://projectdivar.com/files/album_art/143.jpg' where id= 40; /*Shinkai Shoujo */;
+update songs set bpm=220 where id=41;
+update songs set album_art='http://projectdivar.com/files/album_art/231.jpg' where id= 41; /*Kimi no Taion */;
+update songs set bpm=174 where id=42;
+update songs set album_art='http://projectdivar.com/files/album_art/148.jpg' where id= 42; /*Cat Food */;
+update songs set bpm=200 where id=43;
+update songs set album_art='http://projectdivar.com/files/album_art/164.jpg' where id= 43; /*Himitsu Keisatsu */;
+update songs set bpm=140 where id=44;
+update songs set album_art='http://projectdivar.com/files/album_art/158.jpg' where id= 44; /*Melancholic */;
+update songs set bpm=132 where id=45;
+update songs set album_art='http://projectdivar.com/files/album_art/147.jpg' where id= 45; /*Weekender Girl */;
+update songs set bpm=126 where id=46;
+update songs set album_art='http://projectdivar.com/files/album_art/176.jpg' where id= 46; /*Time Machine */;
+update songs set bpm=158 where id=47;
+update songs set album_art='http://projectdivar.com/files/album_art/152.jpg' where id= 47; /*DYE */;
+update songs set bpm=175 where id=48;
+update songs set album_art='http://projectdivar.com/files/album_art/149.jpg' where id= 48; /*Fire◎Flower */;
+update songs set bpm=114 where id=49;
+update songs set album_art='http://projectdivar.com/files/album_art/163.jpg' where id= 49; /*ACUTE */;
+update songs set bpm=135 where id=50;
+update songs set album_art='http://projectdivar.com/files/album_art/202.jpg' where id= 50; /*Torinoko City */;
+update songs set bpm=165 where id=51;
+update songs set album_art='http://projectdivar.com/files/album_art/165.jpg' where id= 51; /*Rimokon */;
+update songs set bpm=129 where id=52;
+update songs set album_art='http://projectdivar.com/files/album_art/150.jpg' where id= 52; /*FREELY TOMORROW */;
+update songs set bpm=130 where id=53;
+update songs set album_art='http://projectdivar.com/files/album_art/162.jpg' where id= 53; /*Monochro∞Blue Sky */;
+update songs set bpm=171 where id=54;
+update songs set album_art='http://projectdivar.com/files/album_art/128.jpg' where id= 54; /*Worldupdate songs set album_art='s End Dancehall */;
+update songs set bpm=175 where id=55;
+update songs set album_art='http://projectdivar.com/files/album_art/175.jpg' where id= 55; /*Netoge Haijin Sprechchor */;
+update songs set bpm=140 where id=56;
+update songs set album_art='http://projectdivar.com/files/album_art/184.jpg' where id= 56; /*Nostalogic */;
+update songs set bpm=205 where id=57;
+update songs set album_art='http://projectdivar.com/files/album_art/146.jpg' where id= 57; /*Unhappy Refrain */;
+update songs set bpm=192 where id=58;
+update songs set album_art='http://projectdivar.com/files/album_art/178.jpg' where id= 58; /*ODDS&ENDS */;
+update songs set bpm=232 where id=59;
+update songs set album_art='http://projectdivar.com/files/album_art/153.jpg' where id= 59; /*Tengaku */;
+update songs set bpm=165 where id=60;
+update songs set album_art='http://projectdivar.com/files/album_art/181.jpg' where id= 60; /*Black★Rock Shooter */;
+update songs set bpm=165 where id=61;
+update songs set album_art='http://projectdivar.com/files/album_art/204.jpg' where id= 61; /*Sadistic.Music∞Factory */;
+update songs set bpm=150 where id=62;
+update songs set album_art='http://projectdivar.com/files/album_art/154.jpg' where id= 62; /*Tell Your World */;
+update songs set bpm=204 where id=63;
+update songs set album_art='http://projectdivar.com/files/album_art/170.jpg' where id= 63; /*Tokyo Teddy Bear */;
+update songs set bpm=132 where id=64;
+update songs set album_art='http://projectdivar.com/files/album_art/180.jpg' where id= 64; /*Sweet Devil */;
+update songs set bpm=154 where id=65;
+update songs set album_art='http://projectdivar.com/files/album_art/198.jpg' where id= 65; /*Senbonzakura */;
+update songs set bpm=123 where id=66;
+update songs set album_art='http://projectdivar.com/files/album_art/207.jpg' where id= 66; /*Sweet Magic */;
+update songs set bpm=170 where id=67;
+update songs set album_art='http://projectdivar.com/files/album_art/201.jpg' where id= 67; /*Terekakushi Shishunki */;
+update songs set bpm=190 where id=68;
+update songs set album_art='http://projectdivar.com/files/album_art/236.jpg' where id= 68; /*Amatsukitsune */;
+update songs set bpm=226 where id=69;
+update songs set album_art='http://projectdivar.com/files/album_art/175.jpg' where id= 69; /*Ageage Again */;
+update songs set bpm=125 where id=70;
+update songs set album_art='http://projectdivar.com/files/album_art/177.jpg' where id= 70; /*1/6 -out of the gravity- */;
+update songs set bpm=145 where id=71;
+update songs set album_art='http://projectdivar.com/files/album_art/237.jpg' where id= 71; /*1925 */;
+update songs set bpm=147 where id=72;
+update songs set album_art='http://projectdivar.com/files/album_art/228.jpg' where id= 72; /*Cendrillon */;
+update songs set bpm=127 where id=73;
+update songs set album_art='http://projectdivar.com/files/album_art/193.jpg' where id= 73; /*Snowman */;
+update songs set bpm=130 where id=74;
+update songs set album_art='http://projectdivar.com/files/album_art/230.jpg' where id= 74; /*Gaikotsu Gakudan to Lilia */;
+update songs set bpm=150 where id=75;
+update songs set album_art='http://projectdivar.com/files/album_art/212.jpg' where id= 75; /*Arifureta Sekai Seifuku */;
+update songs set bpm=125 where id=76;
+update songs set album_art='http://projectdivar.com/files/album_art/179.jpg' where id= 76; /*Interviewer */;
+update songs set bpm=135 where id=77;
+update songs set album_art='http://projectdivar.com/files/album_art/234.jpg' where id= 77; /*Piano × Forte × Scandal */;
+update songs set bpm=130 where id=78;
+update songs set album_art='http://projectdivar.com/files/album_art/229.jpg' where id= 78; /*shake it! */;
+update songs set bpm=125 where id=79;
+update songs set album_art='http://projectdivar.com/files/album_art/209.jpg' where id= 79; /*Akatsuki Arrival */;
+update songs set bpm=140 where id=80;
+update songs set album_art='http://projectdivar.com/files/album_art/213.jpg' where id= 80; /*Glory 3usi9 */;
+update songs set bpm=120 where id=81;
+update songs set album_art='http://projectdivar.com/files/album_art/208.jpg' where id= 81; /*Suki Kirai */;
+update songs set bpm=195 where id=82;
+update songs set album_art='http://projectdivar.com/files/album_art/220.jpg' where id= 82; /*Yubikiri */;
+update songs set bpm=228 where id=83;
+update songs set album_art='http://projectdivar.com/files/album_art/225.jpg' where id= 83; /*Blackjack */;
+update songs set bpm=102 where id=84;
+update songs set album_art='http://projectdivar.com/files/album_art/218.jpg' where id= 84; /*Karakuri Pierrot */;
+update songs set bpm=178 where id=85;
+update songs set album_art='http://projectdivar.com/files/album_art/224.jpg' where id= 85; /*Narisumashi Genga */;
+update songs set bpm=128 where id=86;
+update songs set album_art='http://projectdivar.com/files/album_art/215.jpg' where id= 86; /*e*/;
+update songs set bpm=168 where id=87;
+update songs set album_art='http://projectdivar.com/files/album_art/190.jpg' where id= 87; /*Hello*/;
+update songs set bpm=140 where id=88;
+update songs set album_art='http://projectdivar.com/files/album_art/211.jpg' where id= 88; /*Meteor */;
+update songs set bpm=82 where id=89;
+update songs set album_art='http://projectdivar.com/files/album_art/221.jpg' where id= 89; /*soundless voice */;
+update songs set bpm=138 where id=90;
+update songs set album_art='http://projectdivar.com/files/album_art/223.jpg' where id= 90; /*erase or zero */;
+update songs set bpm=160 where id=91;
+update songs set album_art='http://projectdivar.com/files/album_art/206.jpg' where id= 91; /*Envy Cat Walk */;
+update songs set bpm=143 where id=92;
+update songs set album_art='http://projectdivar.com/files/album_art/214.jpg' where id= 92; /*DECORATOR */;
+update songs set bpm=180 where id=93;
+update songs set album_art='http://projectdivar.com/files/album_art/210.jpg' where id= 93; /*Nijigen Dream Fever */;
+update songs set bpm=175 where id=94;
+update songs set album_art='http://projectdivar.com/files/album_art/205.jpg' where id= 94; /*Hajimemashite Chikyuujin-san */;
+update songs set bpm=128 where id=95;
+update songs set album_art='http://projectdivar.com/files/album_art/233.jpg' where id= 95; /*Hand in Hand */;
+update songs set bpm=200 where id=96;
+update songs set album_art='http://projectdivar.com/files/album_art/131.jpg' where id= 96; /*Shiroi Yuki no Princess wa */;
+update songs set bpm=175 where id=97;
+update songs set album_art='http://projectdivar.com/files/album_art/033.jpg' where id= 97; /*39 */;
+update songs set bpm=250 where id=98;
+update songs set album_art='http://projectdivar.com/files/album_art/137.jpg' where id= 98; /*Black Gold */;
+update songs set bpm=140 where id=99;
+update songs set album_art='http://projectdivar.com/files/album_art/235.jpg' where id= 99; /*Hibikase */;
+update songs set bpm=210 where id=100;
+update songs set album_art='http://projectdivar.com/files/album_art/238.jpg' where id=100; /*Ghost Rule */;
+update songs set bpm=96 where id=101;
+update songs set album_art='http://projectdivar.com/files/album_art/239.jpg' where id=101; /*Suna no Wakusei */;
+update songs set bpm=133 where id=102;
+update songs set album_art='http://projectdivar.com/files/album_art/009.jpg' where id=102; /*The secret garden */;
+update songs set bpm=185 where id=103;
+update songs set album_art='http://projectdivar.com/files/album_art/057.jpg' where id=103; /*Kocchi Muite Baby */;
+update songs set bpm=138 where id=104;
+update songs set album_art='http://projectdivar.com/files/album_art/111.jpg' where id=104; /*Sekiranun Graffiti */;
+update songs set bpm=160 where id=105;
+update songs set album_art='http://projectdivar.com/files/album_art/132.jpg' where id=105; /*YUMEYUME */;
+update songs set bpm=169 where id=106;
+update songs set album_art='http://projectdivar.com/files/album_art/110.jpg' where id=106; /*Musunde Hiraite Rasetsu to Mukuro */;
+update songs set bpm=141 where id=107;
+update songs set album_art='http://projectdivar.com/files/album_art/194.jpg' where id=107; /*electro saturator */;
+update songs set bpm=165 where id=108;
+update songs set album_art='http://projectdivar.com/files/album_art/064.jpg' where id=108; /*Roshin Yuukai */;
+update songs set bpm=138 where id=109;
+update songs set album_art='http://projectdivar.com/files/album_art/096.jpg' where id=109; /*Double Lariat */;
+update songs set bpm=130 where id=110;
+update songs set album_art='http://projectdivar.com/files/album_art/155.jpg' where id=110; /*Hai wa Hai ni */;
+update songs set bpm=116 where id=111;
+update songs set album_art='http://projectdivar.com/files/album_art/219.jpg' where id=111; /*Kowase Kowase */;
+update songs set bpm=180 where id=112;
+update songs set album_art='http://projectdivar.com/files/album_art/076.jpg' where id=112; /*Hajimete no Koi ga Owaru Toki */;
+update songs set bpm=174 where id=113;
+update songs set album_art='http://projectdivar.com/files/album_art/127.jpg' where id=113; /*Mousou Sketch */;
+update songs set bpm=220 where id=114;
+update songs set album_art='http://projectdivar.com/files/album_art/169.jpg' where id=114; /*Den Paradigm */;
+update songs set bpm=180 where id=115;
+update songs set album_art='http://projectdivar.com/files/album_art/124.jpg' where id=115; /*Kodoku no Hate */;
+update songs set bpm=140 where id=116;
+update songs set album_art='http://projectdivar.com/files/album_art/063.jpg' where id=116; /*Migikata no Chou */;
+update songs set bpm=120 where id=117;
+update songs set album_art='http://projectdivar.com/files/album_art/125.jpg' where id=117; /*No Logic */;
+update songs set bpm=192 where id=118;
+update songs set album_art='http://projectdivar.com/files/album_art/200.jpg' where id=118; /*E? Aa*/;
+update songs set bpm=125 where id=119;
+update songs set album_art='http://projectdivar.com/files/album_art/015.jpg' where id=119; /*packaged */;
+update songs set bpm=135 where id=120;
+update songs set album_art='http://projectdivar.com/files/album_art/085.jpg' where id=120; /*Kyodai Shoujo */;
+update songs set bpm=180 where id=121;
+update songs set album_art='http://projectdivar.com/files/album_art/174.jpg' where id=121; /*Summer Idol */;
+update songs set bpm=108 where id=122;
+update songs set album_art='http://projectdivar.com/files/album_art/112.jpg' where id=122; /*Sennen no Dokusou Ka */;
+update songs set bpm=180 where id=123;
+update songs set album_art='http://projectdivar.com/files/album_art/116.jpg' where id=123; /*Boukyaku Shinjuu */;
+update songs set bpm=180 where id=124;
+update songs set album_art='http://projectdivar.com/files/album_art/199.jpg' where id=124; /*WORLDupdate songs set album_art='S END UMBRELLA */;
+update songs set bpm=130 where id=125;
+update songs set album_art='http://projectdivar.com/files/album_art/005.jpg' where id=125; /*Koisuru VOC@LOID */;
+update songs set bpm=163 where id=126;
+update songs set album_art='http://projectdivar.com/files/album_art/203.jpg' where id=126; /*Kami Kyoku */;
+update songs set bpm=127 where id=127;
+update songs set album_art='http://projectdivar.com/files/album_art/084.jpg' where id=127; /*Yellow */;
+update songs set bpm=220 where id=128;
+update songs set album_art='http://projectdivar.com/files/album_art/160.jpg' where id=128; /*Negaposi*Continues */;
+update songs set bpm=190 where id=129;
+update songs set album_art='http://projectdivar.com/files/album_art/159.jpg' where id=129; /*SING&SMILE */;
+update songs set bpm=98 where id=130;
+update songs set album_art='http://projectdivar.com/files/album_art/118.jpg' where id=130; /*Uta ni Katachi wa Nai Keredo */;
+update songs set bpm=135 where id=131;
+update songs set album_art='http://projectdivar.com/files/album_art/100.jpg' where id=131; /*Dear */;
+update songs set bpm=175 where id=132;
+update songs set album_art='http://projectdivar.com/files/album_art/167.jpg' where id=132; /*Dou Iu Koto na no!? */;
+update songs set bpm=150 where id=133;
+update songs set album_art='http://projectdivar.com/files/album_art/095.jpg' where id=133; /*Clover♣Club */;
+update songs set bpm=200 where id=134;
+update songs set album_art='http://projectdivar.com/files/album_art/189.jpg' where id=134; /*Rin-chan Nau! */;
+update songs set bpm=170 where id=135;
+update songs set album_art='http://projectdivar.com/files/album_art/139.jpg' where id=135; /*Shinkai City Underground */;
+update songs set bpm=180 where id=136;
+update songs set album_art='http://projectdivar.com/files/album_art/216.jpg' where id=136; /*Nisoku Hokou */;
+update songs set bpm=130 where id=137;
+update songs set album_art='http://projectdivar.com/files/album_art/217.jpg' where id=137; /*PIANO*GIRL */;
+update songs set bpm=136 where id=138;
+update songs set album_art='http://projectdivar.com/files/album_art/156.jpg' where id=138; /*Systematic Love */;
+update songs set bpm=140 where id=139;
+update songs set album_art='http://projectdivar.com/files/album_art/072.jpg' where id=139; /*Kokoro */;
+update songs set bpm=197 where id=140;
+update songs set album_art='http://projectdivar.com/files/album_art/188.jpg' where id=140; /*Yumekui Shirokuro Baku */;
+update songs set bpm=110 where id=141;
+update songs set album_art='http://projectdivar.com/files/album_art/222.jpg' where id=141; /*Knife */;
+update songs set bpm=152 where id=142;
+update songs set album_art='http://projectdivar.com/files/album_art/250.jpg' where id=142; /*Bless Your Breath */;
+update songs set bpm=175 where id=143;
+update songs set album_art='http://projectdivar.com/files/album_art/006.jpg' where id=143; /*Koi wa Sensou */;
+update songs set bpm=89 where id=144;
+update songs set album_art='http://projectdivar.com/files/album_art/000.jpg' where id=144; /*Anata no Utahime */;
+update songs set bpm=82 where id=145;
+update songs set album_art='http://projectdivar.com/files/album_art/121.jpg' where id=145; /*Starduster */;
+update songs set bpm=195 where id=146;
+update songs set album_art='http://projectdivar.com/files/album_art/035.jpg' where id=146; /*StargazeR */;
+update songs set bpm=124 where id=147;
+update songs set album_art='http://projectdivar.com/files/album_art/117.jpg' where id=147; /*Rin Rin Signal */;
+update songs set bpm=148 where id=148;
+update songs set album_art='http://projectdivar.com/files/album_art/141.jpg' where id=148; /*Rosary Pale */;
+update songs set bpm=150 where id=149;
+update songs set album_art='http://projectdivar.com/files/album_art/051.jpg' where id=149; /*Tajuu Mirai no Quartet ~QUARTET THEME~ */;
+update songs set bpm=182 where id=150;
+update songs set album_art='http://projectdivar.com/files/album_art/138.jpg' where id=150; /*LIKE THE WIND */;
+update songs set bpm=172 where id=151;
+update songs set album_art='http://projectdivar.com/files/album_art/134.jpg' where id=151; /*AFTER BURNER */;
\ No newline at end of file
diff --git a/songDataImport2.sql b/songDataImport2.sql
new file mode 100644
index 0000000..561625c
--- /dev/null
+++ b/songDataImport2.sql
@@ -0,0 +1,14 @@
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'ドラマツルギー',E'Dramaturgy',E'Doramatsurugii',E'Eve',E'Miku','http://projectdivar.com/files/album_art/252.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'グリーンライツセレナーデ',E'Greenlights Serenade',E'Guriinraitsu Sereneede',E'Omoi',E'Miku','http://projectdivar.com/files/album_art/253.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'マージナル',E'Marginal',E'Marginal',E'OSTER project',E'Miku','http://projectdivar.com/files/album_art/022.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'サウンド',E'sound',E'sound',E'baker',E'Miku','http://projectdivar.com/files/album_art/086.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'ファインダー (DSLR remix - re:edit)',E'finder (DSLR remix - re:edit)',E'',E'kz (livetune)',E'Miku','http://projectdivar.com/files/album_art/088.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'Nyanyanyanyanyanyanya!',E'Nyanyanyanyanyanyanya!',E'',E'daniwellP',E'Miku','http://projectdivar.com/files/album_art/168.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'巴里映画少女',E'Paris Eiga Shoujo',E'Paris Cinema Girl',E'apfel note',E'Miku','http://projectdivar.com/files/album_art/161.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'星屑ユートピア',E'Hoshikuzu Utopia',E'Stardust Utopia',E'otetsu',E'Luka','http://projectdivar.com/files/album_art/038.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'Last Night, Good Night',E'Last Night, Good Night',E'',E'kz (livetune)',E'Miku','http://projectdivar.com/files/album_art/028.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'フキゲンワルツ',E'Fukigen Waltz',E'Bad Mood Waltz',E'OSTER project',E'Miku','http://projectdivar.com/files/album_art/021.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'Promise',E'Promise',E'',E'samfree',E'Miku, Rin','http://projectdivar.com/files/album_art/061.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'アドレサンス',E'Adolescence',E'Adolescence',E'Signal-P',E'Rin, Len','http://projectdivar.com/files/album_art/227.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'Leia',E'Leia',E'',E'yuyoyuppe',E'Luka','http://projectdivar.com/files/album_art/106.jpg');
+insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'Stay with me',E'Stay with me',E'',E'shu-tP',E'MEIKO','http://projectdivar.com/files/album_art/151.jpg');
\ No newline at end of file
diff --git a/songUpdateImport.sql b/songUpdateImport.sql
new file mode 100644
index 0000000..18a501b
--- /dev/null
+++ b/songUpdateImport.sql
@@ -0,0 +1,180 @@
+update songs set name=E'Catch the Wave',english_name=E'Catch the Wave',romanized_name=E'' where id=1;
+update songs set name=E'エイリアンエイリアン',english_name=E'Alien Alien',romanized_name=E'Eirian eirian' where id=2;
+update songs set name=E'39みゅーじっく!',english_name=E'39 Music!',romanized_name=E'39 myuujikku' where id=3;
+update songs set name=E'どりーみんチュチュ',english_name=E'Dreamin Chuchu',romanized_name=E'Doriimin chu chu' where id=4;
+update songs set name=E'ヒバナ',english_name=E'HIBANA',romanized_name=E'Hibana' where id=5;
+update songs set name=E'大江戸ジュリアナイト',english_name=E'Ooedo Julia-Night',romanized_name=E'Ooedo juria naito' where id=6;
+update songs set name=E'テオ',english_name=E'Teo',romanized_name=E'Teo' where id=7;
+update songs set name=E'ジターバグ',english_name=E'JITTERBUG',romanized_name=E'Jitaabagu' where id=8;
+update songs set name=E'ジグソーパズル',english_name=E'Jigsaw Puzzle',romanized_name=E'Jigusoo puzuru' where id=9;
+update songs set name=E'ロキ',english_name=E'ROKI',romanized_name=E'Roki' where id=10;
+update songs set name=E'ワールドイズマイン',english_name=E'The World is Mine',romanized_name=E'Waarudo izu main' where id=11;
+update songs set name=E'メルト',english_name=E'Melt',romanized_name=E'Meruto' where id=12;
+update songs set name=E'ミラクルペイント',english_name=E'Miracle Paint',romanized_name=E'Mirakuru peinto' where id=13;
+update songs set name=E'桜ノ雨',english_name=E'Sakura no Ame',romanized_name=E'Sakura no ame' where id=14;
+update songs set name=E'えれくとりっく・えんじぇぅ',english_name=E'Electric Angel',romanized_name=E'Erekutorikku enjeu' where id=15;
+update songs set name=E'初音ミクの消失 -DEAD END-',english_name=E'The Disappearance of Hatsune Miku',romanized_name=E'Hatsune Miku no shoushitsu' where id=16;
+update songs set name=E'みくみくにしてあげる♪',english_name=E'I\'ll Miku-Miku You♪ (For Reals)',romanized_name=E'Miku Miku ni shite ageru♪ (Shiteyanyo)' where id=17;
+update songs set name=E'ロミオとシンデレラ',english_name=E'Romeo and Cinderella',romanized_name=E'Romio to shinderera' where id=18;
+update songs set name=E'magnet',english_name=E'Magnet',romanized_name=E'magnet' where id=19;
+update songs set name=E'愛言葉',english_name=E'Aikotoba',romanized_name=E'Ai kotoba' where id=20;
+update songs set name=E'Just Be Friends',english_name=E'',romanized_name=E'Just Be Friends' where id=21;
+update songs set name=E'from Y to Y',english_name=E'from Y to Y',romanized_name=E'' where id=22;
+update songs set name=E'ぽっぴっぽー',english_name=E'Po Pi Po',romanized_name=E'Poppippoo' where id=23;
+update songs set name=E'カンタレラ',english_name=E'Cantarella',romanized_name=E'Kandarera' where id=24;
+update songs set name=E'ジェミニ',english_name=E'Gemini',romanized_name=E'Jemini' where id=25;
+update songs set name=E'ハジメテノオト',english_name=E'The First Sound',romanized_name=E'Hajimete no oto' where id=26;
+update songs set name=E'サイハテ',english_name=E'Saihate',romanized_name=E'Saihate' where id=27;
+update songs set name=E'カラフル×メロディ',english_name=E'Colorful × Melody',romanized_name=E'Karafuru × Medodi' where id=28;
+update songs set name=E'初音ミクの激唱',english_name=E'The Intense Voice of Hatsune Miku',romanized_name=E'Hatsune Miku no gekishou' where id=29;
+update songs set name=E'Palette',english_name=E'Palette',romanized_name=E'' where id=30;
+update songs set name=E'SPiCa -39\'s Giving Day Edition-',english_name=E'SPiCa',romanized_name=E'' where id=31;
+update songs set name=E'番凩',english_name=E'Wintry Winds',romanized_name=E'Tsugai kogarashi' where id=32;
+update songs set name=E'ルカルカ★ナイトフィーバー',english_name=E'Luka Luka★Night Fever',romanized_name=E'Ruka Ruka★naito feebaa' where id=33;
+update songs set name=E'*ハロー、プラネット。 (I.M.PLSE-EDIT)',english_name=E'*Hello, Planet.',romanized_name=E'*Haroo, puranetto.' where id=34;
+update songs set name=E'裏表ラバーズ',english_name=E'Two-Sided Lovers',romanized_name=E'Ura-omote rabaazu' where id=35;
+update songs set name=E'ローリンガール',english_name=E'Rolling Girl',romanized_name=E'Roorin gaaru' where id=36;
+update songs set name=E'トリコロール・エア・ライン',english_name=E'Tricolore Airline',romanized_name=E'Torikorooru ea rain' where id=37;
+update songs set name=E'on the rocks',english_name=E'On The Rocks',romanized_name=E'on the rocks' where id=38;
+update songs set name=E'LOL -lots of laugh-',english_name=E'LOL -lots of laugh-',romanized_name=E'' where id=39;
+update songs set name=E'深海少女',english_name=E'Deep Sea Girl',romanized_name=E'Shinkai shoujo' where id=40;
+update songs set name=E'君の体温',english_name=E'Kimi no Taion',romanized_name=E'Kimi no taion' where id=41;
+update songs set name=E'キャットフード',english_name=E'Cat Food',romanized_name=E'Kyatto fuudo' where id=42;
+update songs set name=E'秘密警察',english_name=E'Secret Police',romanized_name=E'Himitsu keisatsu' where id=43;
+update songs set name=E'メランコリック',english_name=E'Melancholic',romanized_name=E'Merankorikku' where id=44;
+update songs set name=E'Weekender Girl',english_name=E'Weekender Girl',romanized_name=E'' where id=45;
+update songs set name=E'タイムマシン',english_name=E'Time Machine',romanized_name=E'taimu mashin' where id=46;
+update songs set name=E'DYE',english_name=E'DYE',romanized_name=E'' where id=47;
+update songs set name=E'Fire◎Flower',english_name=E'Fire◎Flower',romanized_name=E'' where id=48;
+update songs set name=E'ACUTE',english_name=E'ACUTE',romanized_name=E'' where id=49;
+update songs set name=E'トリノコシティ',english_name=E'Torinoko City',romanized_name=E'Torinoko shidi' where id=50;
+update songs set name=E'リモコン',english_name=E'',romanized_name=E'' where id=51;
+update songs set name=E'FREELY TOMORROW',english_name=E'Freely Tomorrow',romanized_name=E'FREELY TOMORROW' where id=52;
+update songs set name=E'モノクロ∞ブルースカイ',english_name=E'Monochrome∞Blue Sky',romanized_name=E'Monnokuro∞buruu sukai' where id=53;
+update songs set name=E'ワールズエンド・ダンスホール',english_name=E'World\'s End Dance Hall',romanized_name=E'Waaruzuendo dansuhooru' where id=54;
+update songs set name=E'ネトゲ廃人シュプレヒコール',english_name=E'The MMORPG Addict\'s Anthem',romanized_name=E'Netoge hijin shupurehikooru' where id=55;
+update songs set name=E'Nostalogic',english_name=E'Nostalogic',romanized_name=E'' where id=56;
+update songs set name=E'アンハッピーリフレイン',english_name=E'Unhappy Refrain',romanized_name=E'Anhapii refurein' where id=57;
+update songs set name=E'ODDS&ENDS',english_name=E'Odds & Ends',romanized_name=E'ODDS&ENDS' where id=58;
+update songs set name=E'天樂',english_name=E'Tengaku',romanized_name=E'Tengaku' where id=59;
+update songs set name=E'ブラック★ロックシューター',english_name=E'Black★Rock Shooter',romanized_name=E'Burakku★rokku syuudaa' where id=60;
+update songs set name=E'Sadistic.Music∞Factory',english_name=E'Sadistic.Music∞Factory',romanized_name=E'' where id=61;
+update songs set name=E'Tell Your World',english_name=E'Tell Your World',romanized_name=E'' where id=62;
+update songs set name=E'東京テディベア',english_name=E'Tokyo Teddy Bear',romanized_name=E'Tokyo tedi bea' where id=63;
+update songs set name=E'Sweet Devil',english_name=E'Sweet Devil',romanized_name=E'' where id=64;
+update songs set name=E'千本桜',english_name=E'Senbonzakura',romanized_name=E'Senbonzakura' where id=65;
+update songs set name=E'スイートマジック',english_name=E'Sweet Magic',romanized_name=E'Suiito majiku' where id=66;
+update songs set name=E'テレカクシ思春期',english_name=E'Terekakushi Shishunki',romanized_name=E'Terekakushi shishunki' where id=67;
+update songs set name=E'アマツキツネ',english_name=E'Amatsu Kitsune',romanized_name=E'Amatsu kitsune' where id=68;
+update songs set name=E'アゲアゲアゲイン',english_name=E'Ageage Again',romanized_name=E'Ageage again' where id=69;
+update songs set name=E'1/6 -out of the gravity-',english_name=E'1/6 -out of the gravity-',romanized_name=E'' where id=70;
+update songs set name=E'1925',english_name=E'1925',romanized_name=E'' where id=71;
+update songs set name=E'サンドリヨン',english_name=E'Cendrillon',romanized_name=E'Sendoriyon' where id=72;
+update songs set name=E'スノーマン',english_name=E'Snowman',romanized_name=E'Sunooman' where id=73;
+update songs set name=E'骸骨楽団とリリア',english_name=E'Gaikotsu Gakudan to Riria',romanized_name=E'Gaikotsu gakudan to Riria' where id=74;
+update songs set name=E'ありふれたせかいせいふく',english_name=E'Arifureta Sekai Seifuku',romanized_name=E'Arifureta sekai seifuku' where id=75;
+update songs set name=E'インタビュア',english_name=E'Interviewer',romanized_name=E'Inkubya' where id=76;
+update songs set name=E'ピアノ×フォルテ×スキャンダル',english_name=E'Piano × Forte × Scandal',romanized_name=E'Piano × Forute × Sukyandaru' where id=77;
+update songs set name=E'shake it!',english_name=E'shake it!',romanized_name=E'' where id=78;
+update songs set name=E'アカツキアライヴァル',english_name=E'Akatsuki Arrival',romanized_name=E'Akatsuki arrival' where id=79;
+update songs set name=E'Glory 3usi9',english_name=E'Glory 3usi9',romanized_name=E'' where id=80;
+update songs set name=E'スキキライ',english_name=E'Love-Hate',romanized_name=E'Suki kirai' where id=81;
+update songs set name=E'指切り',english_name=E'Pinky Swear',romanized_name=E'Yubikiri' where id=82;
+update songs set name=E'Blackjack',english_name=E'Blackjack',romanized_name=E'' where id=83;
+update songs set name=E'からくりピエロ',english_name=E'Karakuri Pierrot',romanized_name=E'Karakuri pierot' where id=84;
+update songs set name=E'なりすましゲンガー',english_name=E'Doubleganger',romanized_name=E'Narisumashi gengaa' where id=85;
+update songs set name=E'こちら、幸福安心委員会です。',english_name=E'This is the Happiness and Peace of Mind Committee',romanized_name=E'Kochira, koufuku anshin iinkai desu.' where id=86;
+update songs set name=E'Hello, Worker',english_name=E'Hello, Worker',romanized_name=E'' where id=87;
+update songs set name=E'メテオ',english_name=E'Meteor',romanized_name=E'Meteo' where id=88;
+update songs set name=E'soundless voice',english_name=E'Soundless Voice',romanized_name=E'souldless voice' where id=89;
+update songs set name=E'erase or zero',english_name=E'Erase or Zero',romanized_name=E'erase or zero' where id=90;
+update songs set name=E'エンヴィキャットウォーク',english_name=E'Envy Cat Walk',romanized_name=E'Enbi kyatto wooku' where id=91;
+update songs set name=E'DECORATOR',english_name=E'Decorator',romanized_name=E'DECORATOR' where id=92;
+update songs set name=E'二次元ドリームフィーバー',english_name=E'2D Dream Fever',romanized_name=E'Nijigen Doriimu fiibaa' where id=93;
+update songs set name=E'はじめまして地球人さん',english_name=E'Nice To Meet You, Mr. Earthling',romanized_name=E'Hajimemashite Chikyuujin-san' where id=94;
+update songs set name=E'Hand in Hand',english_name=E'Hand in Hand',romanized_name=E'' where id=95;
+update songs set name=E'白い雪のプリンセスは',english_name=E'The Snow White Princess is..',romanized_name=E'Shiroi yuki no purinsesu wa' where id=96;
+update songs set name=E'39',english_name=E'39',romanized_name=E'' where id=97;
+update songs set name=E'ブラックゴールド',english_name=E'Black Gold',romanized_name=E'Burakku goorudo' where id=98;
+update songs set name=E'ヒビカセ',english_name=E'Hibikase',romanized_name=E'Hibikase' where id=99;
+update songs set name=E'ゴーストルール',english_name=E'Ghost Rule',romanized_name=E'Goosuto ruuru' where id=100;
+update songs set name=E'砂の惑星',english_name=E'Suna no Wakusei feat. Hatsune Miku',romanized_name=E'Suna no wakusei feat. Hatsune Miku' where id=101;
+update songs set name=E'The secret garden',english_name=E'The secret garden',romanized_name=E'' where id=102;
+update songs set name=E'こっち向いて Baby',english_name=E'Look This Way, Baby',romanized_name=E'Kocchi muite Baby' where id=103;
+update songs set name=E'積乱雲グラフィティ',english_name=E'Sekiranun Graffiti',romanized_name=E'Sekiranun gurafiti' where id=104;
+update songs set name=E'ゆめゆめ',english_name=E'Yumeyume',romanized_name=E'Yume yume' where id=105;
+update songs set name=E'結ンデ開イテ羅刹ト骸',english_name=E'Close and Open, Demons and The Dead',romanized_name=E'Musunde hiraite rasetsu to mukuro' where id=106;
+update songs set name=E'エレクトロサチュレイタ',english_name=E'Electrosaturator',romanized_name=E'Erekutoro sachureita' where id=107;
+update songs set name=E'炉心融解',english_name=E'Rushin Yukai',romanized_name=E'Roshin yuukai' where id=108;
+update songs set name=E'ダブルラリアット',english_name=E'Double Lariat',romanized_name=E'Dapuru rariatto' where id=109;
+update songs set name=E'ハイハハイニ',english_name=E'Ashes to Ashes',romanized_name=E'Hai wa hai ni' where id=110;
+update songs set name=E'壊セ壊セ',english_name=E'Break It, Break It!',romanized_name=E'Kowase kowase' where id=111;
+update songs set name=E'初めての恋が終わる時',english_name=E'When First Love Ends',romanized_name=E'Hajimete no hoi ga owaru toki' where id=112;
+update songs set name=E'妄想スケッチ',english_name=E'Mousou Sketch',romanized_name=E'Mousou sketch' where id=113;
+update songs set name=E'デンパラダイム',english_name=E'Denparadigm',romanized_name=E'Den paradaimu' where id=114;
+update songs set name=E'孤独の果て -extend edition-',english_name=E'Solitude\'s End',romanized_name=E'Kodoku no hate' where id=115;
+update songs set name=E'右肩の蝶',english_name=E'Butterfly on Your Right Shoulder',romanized_name=E'Migikata no chou' where id=116;
+update songs set name=E'No Logic',english_name=E'No Logic',romanized_name=E'' where id=117;
+update songs set name=E'え?あぁ、そう。',english_name=E'Hm? Ah, Yes.',romanized_name=E'E? Aa, sou.' where id=118;
+update songs set name=E'packaged',english_name=E'Packaged',romanized_name=E'' where id=119;
+update songs set name=E'巨大少女',english_name=E'Gigantic Girl',romanized_name=E'Kyodai shoujo' where id=120;
+update songs set name=E'サマーアイドル',english_name=E'Summer Idol',romanized_name=E'Samaa aidoru' where id=121;
+update songs set name=E'千年の独奏歌',english_name=E'Thousand Year Solo',romanized_name=E'Sennen no dokusou Ka' where id=122;
+update songs set name=E'忘却心中',english_name=E'Lover\'s Suicide Oblivion',romanized_name=E'Boukyaku hinjuu' where id=123;
+update songs set name=E'WORLD\'S END UMBRELLA',english_name=E'World\'s End Umbrella',romanized_name=E'WORLD\'S END UMBRELLA' where id=124;
+update songs set name=E'恋スルVOC@LOID',english_name=E'VOC@LOID in Love',romanized_name=E'Koisuru VOC@LOID' where id=125;
+update songs set name=E'神曲',english_name=E'God-Tier Tune',romanized_name=E'Kami kyoku' where id=126;
+update songs set name=E'Yellow',english_name=E'Yellow',romanized_name=E'' where id=127;
+update songs set name=E'ネガポジ*コンティニューズ',english_name=E'Negaposi*Continues',romanized_name=E'Negapoji*kontinyuuzu' where id=128;
+update songs set name=E'SING&SMILE',english_name=E'SING&SMILE',romanized_name=E'' where id=129;
+update songs set name=E'歌に形はないけれど',english_name=E'Though My Song Has No Form',romanized_name=E'Uta ni katachi wa nai keredo' where id=130;
+update songs set name=E'Dear',english_name=E'Dear',romanized_name=E'' where id=131;
+update songs set name=E'どういうことなの!?',english_name=E'What Do You Mean!?',romanized_name=E'Dou iu koto na no!?' where id=132;
+update songs set name=E'クローバー♣クラブ',english_name=E'Clover♣Club',romanized_name=E'kuroobaa kurapu' where id=133;
+update songs set name=E'リンちゃんなう!',english_name=E'Rin-chan Now!',romanized_name=E'Rin-chan nau!' where id=134;
+update songs set name=E'深海シティアンダーグラウンド',english_name=E'Deep Sea City Underground',romanized_name=E'Shinkai city andaaguraundo' where id=135;
+update songs set name=E'二息歩行',english_name=E'Two Breaths Walking',romanized_name=E'Nisoku hokou' where id=136;
+update songs set name=E'PIANO*GIRL',english_name=E'PIANO*GIRL',romanized_name=E'' where id=137;
+update songs set name=E'システマティック・ラヴ',english_name=E'Systematic Love',romanized_name=E'Shisutematikku rabu' where id=138;
+update songs set name=E'ココロ',english_name=E'Kokoro',romanized_name=E'' where id=139;
+update songs set name=E'夢喰い白黒バク',english_name=E'Dream-Eating Monochrome Baku',romanized_name=E'Yumekui shirokuro baku' where id=140;
+update songs set name=E'Knife',english_name=E'Knife',romanized_name=E'' where id=141;
+update songs set name=E'ブレス・ユア・ブレス',english_name=E'Bless Your Breath',romanized_name=E'Buresu yua buresu' where id=142;
+update songs set name=E'恋は戦争',english_name=E'Love is War',romanized_name=E'Koi wa sensou' where id=143;
+update songs set name=E'あなたの歌姫',english_name=E'I\'m Your Diva',romanized_name=E'Anata no utahime' where id=144;
+update songs set name=E'Starduster',english_name=E'Starduster',romanized_name=E'' where id=145;
+update songs set name=E'StargazeR',english_name=E'StargazeR',romanized_name=E'' where id=146;
+update songs set name=E'リンリンシグナル',english_name=E'RinRin Signal',romanized_name=E'Rin Rin shugynaru' where id=147;
+update songs set name=E'Rosary Pale',english_name=E'Rosary Pale',romanized_name=E'' where id=148;
+update songs set name=E'多重未来のカルテット~QUARTET THEME~',english_name=E'Quartet of Multiple Futures',romanized_name=E'Tajuu mirai no karudetto' where id=149;
+update songs set name=E'LIKE THE WIND',english_name=E'LIKE THE WIND',romanized_name=E'' where id=150;
+update songs set name=E'AFTER BURNER',english_name=E'AFTER BURNER',romanized_name=E'' where id=151;
+update songs set name=E'ストロボナイツ',english_name=E'Strobe Nights',romanized_name=E'Sutorobo naito' where id=152;
+update songs set name=E'VOiCE',english_name=E'VOiCE',romanized_name=E'' where id=153;
+update songs set name=E'恋色病棟',english_name=E'Love-Colored Ward',romanized_name=E'Koi iro byoutou' where id=154;
+update songs set name=E'ねこみみスイッチ',english_name=E'NekoMimi Switch',romanized_name=E'Nekomimi suicchi' where id=155;
+update songs set name=E'パラジクロロベンゼン',english_name=E'Paradichlorobenzene',romanized_name=E'Parajikurorobenzen' where id=156;
+update songs set name=E'カラフル×セクシィ',english_name=E'Colorful × Sexy',romanized_name=E'Karafuru × Sekushi' where id=157;
+update songs set name=E'劣等上等',english_name=E'BRING IT ON',romanized_name=E'Rettou joutou' where id=158;
+update songs set name=E'Star Story',english_name=E'Star Story',romanized_name=E'' where id=159;
+update songs set name=E'パズル',english_name=E'Puzzle',romanized_name=E'Puzuru' where id=160;
+update songs set name=E'キップル・インダストリー',english_name=E'Kipple Industry, Inc.',romanized_name=E'Kyupuru indasutorii' where id=161;
+update songs set name=E'パラジクロロベンゼン',english_name=E'Continuing Dream',romanized_name=E'Yume no tsuzuki' where id=162;
+update songs set name=E'MEGANE',english_name=E'Glasses',romanized_name=E'Megane' where id=163;
+update songs set name=E'Change me',english_name=E'Change Me',romanized_name=E'' where id=164;
+update songs set name=E'ドラマツルギー',english_name=E'Dramaturgy',romanized_name=E'Doramatsurugii' where id=165;
+update songs set name=E'グリーンライツセレナーデ',english_name=E'Greenlights Serenade',romanized_name=E'Guriinraitsu Sereneede' where id=166;
+update songs set name=E'マージナル',english_name=E'Marginal',romanized_name=E'Marginal' where id=167;
+update songs set name=E'サウンド',english_name=E'sound',romanized_name=E'sound' where id=168;
+update songs set name=E'ファインダー (DSLR remix - re:edit)',english_name=E'finder (DSLR remix - re:edit)',romanized_name=E'' where id=169;
+update songs set name=E'Nyanyanyanyanyanyanya!',english_name=E'Nyanyanyanyanyanyanya!',romanized_name=E'' where id=170;
+update songs set name=E'巴里映画少女',english_name=E'Paris Cinema Girl',romanized_name=E'Paris Eiga Shoujo' where id=171;
+update songs set name=E'星屑ユートピア',english_name=E'Stardust Utopia',romanized_name=E'Hoshikuzu Utopia' where id=172;
+update songs set name=E'Last Night, Good Night',english_name=E'Last Night, Good Night',romanized_name=E'' where id=173;
+update songs set name=E'フキゲンワルツ',english_name=E'Bad Mood Waltz',romanized_name=E'Fukigen Waltz' where id=174;
+update songs set name=E'Promise',english_name=E'Promise',romanized_name=E'' where id=175;
+update songs set name=E'アドレサンス',english_name=E'Adolescence',romanized_name=E'Adolescence' where id=176;
+update songs set name=E'Leia',english_name=E'Leia',romanized_name=E'' where id=177;
+update songs set name=E'Stay with me',english_name=E'Stay with me',romanized_name=E'' where id=178;
+update songs set name=E'Just Be Friends',english_name=E'Just Be Friends',romanized_name=E'' where id=21;
+update songs set name=E'リモコン',english_name=E'Remote Controller',romanized_name=E'Rimokon' where id=51;
\ No newline at end of file
diff --git a/updateNoteCounts.sql b/updateNoteCounts.sql
old mode 100644
new mode 100755
index 66530e6..e515f58
--- a/updateNoteCounts.sql
+++ b/updateNoteCounts.sql
@@ -1,3 +1,606 @@
+
+
+
+
+
+
+
+
+
+
+update songdata set notecount=419 where songid=11 and difficulty='EXEX';
+update songdata set notecount=406 where songid=12 and difficulty='EXEX';
+update songdata set notecount=407 where songid=13 and difficulty='EXEX';
+
+update songdata set notecount=597 where songid=15 and difficulty='EXEX';
+update songdata set notecount=554 where songid=16 and difficulty='EXEX';
+update songdata set notecount=312 where songid=17 and difficulty='EXEX';
+update songdata set notecount=707 where songid=18 and difficulty='EXEX';
+update songdata set notecount=593 where songid=19 and difficulty='EXEX';
+update songdata set notecount=433 where songid=20 and difficulty='EXEX';
+update songdata set notecount=635 where songid=21 and difficulty='EXEX';
+update songdata set notecount=414 where songid=22 and difficulty='EXEX';
+update songdata set notecount=811 where songid=23 and difficulty='EXEX';
+update songdata set notecount=538 where songid=24 and difficulty='EXEX';
+
+update songdata set notecount=389 where songid=26 and difficulty='EXEX';
+update songdata set notecount=466 where songid=27 and difficulty='EXEX';
+update songdata set notecount=561 where songid=28 and difficulty='EXEX';
+update songdata set notecount=681 where songid=29 and difficulty='EXEX';
+update songdata set notecount=386 where songid=30 and difficulty='EXEX';
+
+update songdata set notecount=599 where songid=32 and difficulty='EXEX';
+update songdata set notecount=675 where songid=33 and difficulty='EXEX';
+
+update songdata set notecount=982 where songid=35 and difficulty='EXEX';
+update songdata set notecount=644 where songid=36 and difficulty='EXEX';
+
+update songdata set notecount=575 where songid=38 and difficulty='EXEX';
+
+update songdata set notecount=664 where songid=40 and difficulty='EXEX';
+
+update songdata set notecount=715 where songid=42 and difficulty='EXEX';
+
+update songdata set notecount=645 where songid=44 and difficulty='EXEX';
+
+
+
+update songdata set notecount=504 where songid=48 and difficulty='EXEX';
+
+
+
+
+
+update songdata set notecount=880 where songid=54 and difficulty='EXEX';
+update songdata set notecount=787 where songid=55 and difficulty='EXEX';
+
+update songdata set notecount=1017 where songid=57 and difficulty='EXEX';
+update songdata set notecount=713 where songid=58 and difficulty='EXEX';
+
+
+
+update songdata set notecount=478 where songid=62 and difficulty='EXEX';
+update songdata set notecount=643 where songid=63 and difficulty='EXEX';
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+update songdata set notecount=579 where songid=87 and difficulty='EXEX';
+
+
+
+
+
+
+
+
+update songdata set notecount=504 where songid=96 and difficulty='EXEX';
+update songdata set notecount=606 where songid=97 and difficulty='EXEX';
+update songdata set notecount=674 where songid=98 and difficulty='EXEX';
+
+
+
+
+update songdata set notecount=657 where songid=103 and difficulty='EXEX';
+update songdata set notecount=470 where songid=104 and difficulty='EXEX';
+update songdata set notecount=663 where songid=105 and difficulty='EXEX';
+update songdata set notecount=655 where songid=106 and difficulty='EXEX';
+
+update songdata set notecount=537 where songid=108 and difficulty='EXEX';
+update songdata set notecount=619 where songid=109 and difficulty='EXEX';
+update songdata set notecount=584 where songid=110 and difficulty='EXEX';
+
+update songdata set notecount=463 where songid=112 and difficulty='EXEX';
+update songdata set notecount=808 where songid=113 and difficulty='EXEX';
+update songdata set notecount=829 where songid=114 and difficulty='EXEX';
+update songdata set notecount=703 where songid=115 and difficulty='EXEX';
+
+
+update songdata set notecount=619 where songid=118 and difficulty='EXEX';
+update songdata set notecount=332 where songid=119 and difficulty='EXEX';
+update songdata set notecount=478 where songid=120 and difficulty='EXEX';
+
+update songdata set notecount=510 where songid=122 and difficulty='EXEX';
+update songdata set notecount=518 where songid=123 and difficulty='EXEX';
+
+update songdata set notecount=455 where songid=125 and difficulty='EXEX';
+
+update songdata set notecount=505 where songid=127 and difficulty='EXEX';
+
+
+update songdata set notecount=431 where songid=130 and difficulty='EXEX';
+update songdata set notecount=467 where songid=131 and difficulty='EXEX';
+
+update songdata set notecount=516 where songid=133 and difficulty='EXEX';
+
+update songdata set notecount=711 where songid=135 and difficulty='EXEX';
+
+
+
+update songdata set notecount=462 where songid=139 and difficulty='EXEX';
+
+
+
+update songdata set notecount=360 where songid=143 and difficulty='EXEX';
+update songdata set notecount=489 where songid=144 and difficulty='EXEX';
+
+update songdata set notecount=447 where songid=146 and difficulty='EXEX';
+
+update songdata set notecount=410 where songid=148 and difficulty='EXEX';
+
+
+update songdata set notecount=676 where songid=1 and difficulty='EX';
+update songdata set notecount=731 where songid=2 and difficulty='EX';
+update songdata set notecount=771 where songid=3 and difficulty='EX';
+update songdata set notecount=723 where songid=4 and difficulty='EX';
+update songdata set notecount=819 where songid=5 and difficulty='EX';
+update songdata set notecount=872 where songid=6 and difficulty='EX';
+update songdata set notecount=961 where songid=7 and difficulty='EX';
+update songdata set notecount=939 where songid=8 and difficulty='EX';
+update songdata set notecount=883 where songid=9 and difficulty='EX';
+update songdata set notecount=841 where songid=10 and difficulty='EX';
+update songdata set notecount=413 where songid=11 and difficulty='EX';
+update songdata set notecount=380 where songid=12 and difficulty='EX';
+update songdata set notecount=392 where songid=13 and difficulty='EX';
+update songdata set notecount=429 where songid=14 and difficulty='EX';
+update songdata set notecount=587 where songid=15 and difficulty='EX';
+update songdata set notecount=496 where songid=16 and difficulty='EX';
+update songdata set notecount=293 where songid=17 and difficulty='EX';
+update songdata set notecount=701 where songid=18 and difficulty='EX';
+update songdata set notecount=537 where songid=19 and difficulty='EX';
+update songdata set notecount=402 where songid=20 and difficulty='EX';
+update songdata set notecount=632 where songid=21 and difficulty='EX';
+update songdata set notecount=415 where songid=22 and difficulty='EX';
+update songdata set notecount=743 where songid=23 and difficulty='EX';
+update songdata set notecount=497 where songid=24 and difficulty='EX';
+update songdata set notecount=523 where songid=25 and difficulty='EX';
+update songdata set notecount=389 where songid=26 and difficulty='EX';
+update songdata set notecount=465 where songid=27 and difficulty='EX';
+update songdata set notecount=535 where songid=28 and difficulty='EX';
+update songdata set notecount=598 where songid=29 and difficulty='EX';
+update songdata set notecount=358 where songid=30 and difficulty='EX';
+update songdata set notecount=701 where songid=31 and difficulty='EX';
+update songdata set notecount=599 where songid=32 and difficulty='EX';
+update songdata set notecount=646 where songid=33 and difficulty='EX';
+update songdata set notecount=587 where songid=34 and difficulty='EX';
+update songdata set notecount=888 where songid=35 and difficulty='EX';
+update songdata set notecount=641 where songid=36 and difficulty='EX';
+update songdata set notecount=440 where songid=37 and difficulty='EX';
+update songdata set notecount=578 where songid=38 and difficulty='EX';
+update songdata set notecount=553 where songid=39 and difficulty='EX';
+update songdata set notecount=661 where songid=40 and difficulty='EX';
+update songdata set notecount=829 where songid=41 and difficulty='EX';
+update songdata set notecount=647 where songid=42 and difficulty='EX';
+update songdata set notecount=716 where songid=43 and difficulty='EX';
+update songdata set notecount=608 where songid=44 and difficulty='EX';
+update songdata set notecount=435 where songid=45 and difficulty='EX';
+update songdata set notecount=417 where songid=46 and difficulty='EX';
+update songdata set notecount=658 where songid=47 and difficulty='EX';
+update songdata set notecount=483 where songid=48 and difficulty='EX';
+update songdata set notecount=549 where songid=49 and difficulty='EX';
+update songdata set notecount=564 where songid=50 and difficulty='EX';
+update songdata set notecount=669 where songid=51 and difficulty='EX';
+update songdata set notecount=424 where songid=52 and difficulty='EX';
+update songdata set notecount=500 where songid=53 and difficulty='EX';
+update songdata set notecount=842 where songid=54 and difficulty='EX';
+update songdata set notecount=704 where songid=55 and difficulty='EX';
+update songdata set notecount=454 where songid=56 and difficulty='EX';
+update songdata set notecount=946 where songid=57 and difficulty='EX';
+update songdata set notecount=657 where songid=58 and difficulty='EX';
+update songdata set notecount=430 where songid=59 and difficulty='EX';
+update songdata set notecount=398 where songid=60 and difficulty='EX';
+update songdata set notecount=666 where songid=61 and difficulty='EX';
+update songdata set notecount=426 where songid=62 and difficulty='EX';
+update songdata set notecount=587 where songid=63 and difficulty='EX';
+update songdata set notecount=621 where songid=64 and difficulty='EX';
+update songdata set notecount=909 where songid=65 and difficulty='EX';
+update songdata set notecount=574 where songid=66 and difficulty='EX';
+update songdata set notecount=583 where songid=67 and difficulty='EX';
+update songdata set notecount=584 where songid=68 and difficulty='EX';
+update songdata set notecount=718 where songid=69 and difficulty='EX';
+update songdata set notecount=601 where songid=70 and difficulty='EX';
+update songdata set notecount=668 where songid=71 and difficulty='EX';
+update songdata set notecount=557 where songid=72 and difficulty='EX';
+update songdata set notecount=639 where songid=73 and difficulty='EX';
+update songdata set notecount=866 where songid=74 and difficulty='EX';
+update songdata set notecount=767 where songid=75 and difficulty='EX';
+update songdata set notecount=473 where songid=76 and difficulty='EX';
+update songdata set notecount=849 where songid=77 and difficulty='EX';
+update songdata set notecount=671 where songid=78 and difficulty='EX';
+update songdata set notecount=709 where songid=79 and difficulty='EX';
+update songdata set notecount=513 where songid=80 and difficulty='EX';
+update songdata set notecount=522 where songid=81 and difficulty='EX';
+update songdata set notecount=524 where songid=82 and difficulty='EX';
+update songdata set notecount=610 where songid=83 and difficulty='EX';
+update songdata set notecount=514 where songid=84 and difficulty='EX';
+update songdata set notecount=742 where songid=85 and difficulty='EX';
+update songdata set notecount=647 where songid=86 and difficulty='EX';
+update songdata set notecount=560 where songid=87 and difficulty='EX';
+update songdata set notecount=538 where songid=88 and difficulty='EX';
+update songdata set notecount=464 where songid=89 and difficulty='EX';
+update songdata set notecount=514 where songid=90 and difficulty='EX';
+update songdata set notecount=1000 where songid=91 and difficulty='EX';
+update songdata set notecount=543 where songid=92 and difficulty='EX';
+update songdata set notecount=869 where songid=93 and difficulty='EX';
+update songdata set notecount=638 where songid=94 and difficulty='EX';
+update songdata set notecount=459 where songid=95 and difficulty='EX';
+update songdata set notecount=498 where songid=96 and difficulty='EX';
+update songdata set notecount=578 where songid=97 and difficulty='EX';
+update songdata set notecount=626 where songid=98 and difficulty='EX';
+update songdata set notecount=777 where songid=99 and difficulty='EX';
+update songdata set notecount=715 where songid=100 and difficulty='EX';
+update songdata set notecount=955 where songid=101 and difficulty='EX';
+update songdata set notecount=400 where songid=102 and difficulty='EX';
+update songdata set notecount=649 where songid=103 and difficulty='EX';
+update songdata set notecount=463 where songid=104 and difficulty='EX';
+update songdata set notecount=641 where songid=105 and difficulty='EX';
+update songdata set notecount=654 where songid=106 and difficulty='EX';
+update songdata set notecount=441 where songid=107 and difficulty='EX';
+update songdata set notecount=535 where songid=108 and difficulty='EX';
+update songdata set notecount=619 where songid=109 and difficulty='EX';
+update songdata set notecount=555 where songid=110 and difficulty='EX';
+update songdata set notecount=587 where songid=111 and difficulty='EX';
+update songdata set notecount=462 where songid=112 and difficulty='EX';
+update songdata set notecount=683 where songid=113 and difficulty='EX';
+update songdata set notecount=811 where songid=114 and difficulty='EX';
+update songdata set notecount=684 where songid=115 and difficulty='EX';
+update songdata set notecount=548 where songid=116 and difficulty='EX';
+update songdata set notecount=623 where songid=117 and difficulty='EX';
+update songdata set notecount=593 where songid=118 and difficulty='EX';
+update songdata set notecount=299 where songid=119 and difficulty='EX';
+update songdata set notecount=478 where songid=120 and difficulty='EX';
+update songdata set notecount=451 where songid=121 and difficulty='EX';
+update songdata set notecount=472 where songid=122 and difficulty='EX';
+update songdata set notecount=507 where songid=123 and difficulty='EX';
+update songdata set notecount=642 where songid=124 and difficulty='EX';
+update songdata set notecount=451 where songid=125 and difficulty='EX';
+update songdata set notecount=421 where songid=126 and difficulty='EX';
+update songdata set notecount=505 where songid=127 and difficulty='EX';
+update songdata set notecount=806 where songid=128 and difficulty='EX';
+update songdata set notecount=743 where songid=129 and difficulty='EX';
+update songdata set notecount=409 where songid=130 and difficulty='EX';
+update songdata set notecount=464 where songid=131 and difficulty='EX';
+update songdata set notecount=538 where songid=132 and difficulty='EX';
+update songdata set notecount=509 where songid=133 and difficulty='EX';
+update songdata set notecount=647 where songid=134 and difficulty='EX';
+update songdata set notecount=712 where songid=135 and difficulty='EX';
+update songdata set notecount=488 where songid=136 and difficulty='EX';
+update songdata set notecount=642 where songid=137 and difficulty='EX';
+update songdata set notecount=583 where songid=138 and difficulty='EX';
+update songdata set notecount=466 where songid=139 and difficulty='EX';
+update songdata set notecount=653 where songid=140 and difficulty='EX';
+update songdata set notecount=683 where songid=141 and difficulty='EX';
+update songdata set notecount=726 where songid=142 and difficulty='EX';
+update songdata set notecount=340 where songid=143 and difficulty='EX';
+update songdata set notecount=480 where songid=144 and difficulty='EX';
+update songdata set notecount=231 where songid=145 and difficulty='EX';
+update songdata set notecount=443 where songid=146 and difficulty='EX';
+update songdata set notecount=537 where songid=147 and difficulty='EX';
+update songdata set notecount=400 where songid=148 and difficulty='EX';
+update songdata set notecount=474 where songid=149 and difficulty='EX';
+update songdata set notecount=523 where songid=150 and difficulty='EX';
+update songdata set notecount=554 where songid=151 and difficulty='EX';
+update songdata set notecount=655 where songid=1 and difficulty='H';
+update songdata set notecount=640 where songid=2 and difficulty='H';
+update songdata set notecount=642 where songid=3 and difficulty='H';
+update songdata set notecount=640 where songid=4 and difficulty='H';
+update songdata set notecount=777 where songid=5 and difficulty='H';
+update songdata set notecount=678 where songid=6 and difficulty='H';
+update songdata set notecount=858 where songid=7 and difficulty='H';
+update songdata set notecount=763 where songid=8 and difficulty='H';
+update songdata set notecount=731 where songid=9 and difficulty='H';
+update songdata set notecount=714 where songid=10 and difficulty='H';
+update songdata set notecount=383 where songid=11 and difficulty='H';
+update songdata set notecount=342 where songid=12 and difficulty='H';
+update songdata set notecount=320 where songid=13 and difficulty='H';
+update songdata set notecount=372 where songid=14 and difficulty='H';
+update songdata set notecount=528 where songid=15 and difficulty='H';
+update songdata set notecount=435 where songid=16 and difficulty='H';
+update songdata set notecount=248 where songid=17 and difficulty='H';
+update songdata set notecount=620 where songid=18 and difficulty='H';
+update songdata set notecount=455 where songid=19 and difficulty='H';
+update songdata set notecount=354 where songid=20 and difficulty='H';
+update songdata set notecount=547 where songid=21 and difficulty='H';
+update songdata set notecount=369 where songid=22 and difficulty='H';
+update songdata set notecount=605 where songid=23 and difficulty='H';
+update songdata set notecount=475 where songid=24 and difficulty='H';
+update songdata set notecount=445 where songid=25 and difficulty='H';
+update songdata set notecount=373 where songid=26 and difficulty='H';
+update songdata set notecount=456 where songid=27 and difficulty='H';
+update songdata set notecount=506 where songid=28 and difficulty='H';
+update songdata set notecount=458 where songid=29 and difficulty='H';
+update songdata set notecount=288 where songid=30 and difficulty='H';
+update songdata set notecount=567 where songid=31 and difficulty='H';
+update songdata set notecount=465 where songid=32 and difficulty='H';
+update songdata set notecount=582 where songid=33 and difficulty='H';
+update songdata set notecount=541 where songid=34 and difficulty='H';
+update songdata set notecount=573 where songid=35 and difficulty='H';
+update songdata set notecount=511 where songid=36 and difficulty='H';
+update songdata set notecount=406 where songid=37 and difficulty='H';
+update songdata set notecount=540 where songid=38 and difficulty='H';
+update songdata set notecount=427 where songid=39 and difficulty='H';
+update songdata set notecount=523 where songid=40 and difficulty='H';
+update songdata set notecount=750 where songid=41 and difficulty='H';
+update songdata set notecount=601 where songid=42 and difficulty='H';
+update songdata set notecount=648 where songid=43 and difficulty='H';
+update songdata set notecount=566 where songid=44 and difficulty='H';
+update songdata set notecount=398 where songid=45 and difficulty='H';
+update songdata set notecount=396 where songid=46 and difficulty='H';
+update songdata set notecount=632 where songid=47 and difficulty='H';
+update songdata set notecount=464 where songid=48 and difficulty='H';
+update songdata set notecount=501 where songid=49 and difficulty='H';
+update songdata set notecount=542 where songid=50 and difficulty='H';
+update songdata set notecount=624 where songid=51 and difficulty='H';
+update songdata set notecount=404 where songid=52 and difficulty='H';
+update songdata set notecount=454 where songid=53 and difficulty='H';
+update songdata set notecount=757 where songid=54 and difficulty='H';
+update songdata set notecount=631 where songid=55 and difficulty='H';
+update songdata set notecount=412 where songid=56 and difficulty='H';
+update songdata set notecount=815 where songid=57 and difficulty='H';
+update songdata set notecount=582 where songid=58 and difficulty='H';
+update songdata set notecount=423 where songid=59 and difficulty='H';
+update songdata set notecount=379 where songid=60 and difficulty='H';
+update songdata set notecount=395 where songid=61 and difficulty='H';
+update songdata set notecount=387 where songid=62 and difficulty='H';
+update songdata set notecount=587 where songid=63 and difficulty='H';
+update songdata set notecount=516 where songid=64 and difficulty='H';
+update songdata set notecount=804 where songid=65 and difficulty='H';
+update songdata set notecount=544 where songid=66 and difficulty='H';
+update songdata set notecount=558 where songid=67 and difficulty='H';
+update songdata set notecount=523 where songid=68 and difficulty='H';
+update songdata set notecount=644 where songid=69 and difficulty='H';
+update songdata set notecount=575 where songid=70 and difficulty='H';
+update songdata set notecount=494 where songid=71 and difficulty='H';
+update songdata set notecount=537 where songid=72 and difficulty='H';
+update songdata set notecount=564 where songid=73 and difficulty='H';
+update songdata set notecount=727 where songid=74 and difficulty='H';
+update songdata set notecount=608 where songid=75 and difficulty='H';
+update songdata set notecount=462 where songid=76 and difficulty='H';
+update songdata set notecount=538 where songid=77 and difficulty='H';
+update songdata set notecount=538 where songid=78 and difficulty='H';
+update songdata set notecount=575 where songid=79 and difficulty='H';
+update songdata set notecount=498 where songid=80 and difficulty='H';
+update songdata set notecount=485 where songid=81 and difficulty='H';
+update songdata set notecount=432 where songid=82 and difficulty='H';
+update songdata set notecount=510 where songid=83 and difficulty='H';
+update songdata set notecount=487 where songid=84 and difficulty='H';
+update songdata set notecount=679 where songid=85 and difficulty='H';
+update songdata set notecount=524 where songid=86 and difficulty='H';
+update songdata set notecount=541 where songid=87 and difficulty='H';
+update songdata set notecount=536 where songid=88 and difficulty='H';
+update songdata set notecount=401 where songid=89 and difficulty='H';
+update songdata set notecount=485 where songid=90 and difficulty='H';
+update songdata set notecount=833 where songid=91 and difficulty='H';
+update songdata set notecount=513 where songid=92 and difficulty='H';
+update songdata set notecount=702 where songid=93 and difficulty='H';
+update songdata set notecount=604 where songid=94 and difficulty='H';
+update songdata set notecount=427 where songid=95 and difficulty='H';
+update songdata set notecount=467 where songid=96 and difficulty='H';
+update songdata set notecount=536 where songid=97 and difficulty='H';
+update songdata set notecount=573 where songid=98 and difficulty='H';
+update songdata set notecount=692 where songid=99 and difficulty='H';
+update songdata set notecount=705 where songid=100 and difficulty='H';
+update songdata set notecount=937 where songid=101 and difficulty='H';
+update songdata set notecount=375 where songid=102 and difficulty='H';
+update songdata set notecount=519 where songid=103 and difficulty='H';
+update songdata set notecount=404 where songid=104 and difficulty='H';
+update songdata set notecount=616 where songid=105 and difficulty='H';
+update songdata set notecount=479 where songid=106 and difficulty='H';
+update songdata set notecount=417 where songid=107 and difficulty='H';
+update songdata set notecount=498 where songid=108 and difficulty='H';
+update songdata set notecount=565 where songid=109 and difficulty='H';
+update songdata set notecount=435 where songid=110 and difficulty='H';
+update songdata set notecount=480 where songid=111 and difficulty='H';
+update songdata set notecount=444 where songid=112 and difficulty='H';
+update songdata set notecount=585 where songid=113 and difficulty='H';
+update songdata set notecount=723 where songid=114 and difficulty='H';
+update songdata set notecount=590 where songid=115 and difficulty='H';
+update songdata set notecount=479 where songid=116 and difficulty='H';
+update songdata set notecount=447 where songid=117 and difficulty='H';
+update songdata set notecount=530 where songid=118 and difficulty='H';
+update songdata set notecount=277 where songid=119 and difficulty='H';
+update songdata set notecount=461 where songid=120 and difficulty='H';
+update songdata set notecount=404 where songid=121 and difficulty='H';
+update songdata set notecount=379 where songid=122 and difficulty='H';
+update songdata set notecount=432 where songid=123 and difficulty='H';
+update songdata set notecount=583 where songid=124 and difficulty='H';
+update songdata set notecount=326 where songid=125 and difficulty='H';
+update songdata set notecount=421 where songid=126 and difficulty='H';
+update songdata set notecount=481 where songid=127 and difficulty='H';
+update songdata set notecount=742 where songid=128 and difficulty='H';
+update songdata set notecount=665 where songid=129 and difficulty='H';
+update songdata set notecount=387 where songid=130 and difficulty='H';
+update songdata set notecount=436 where songid=131 and difficulty='H';
+update songdata set notecount=511 where songid=132 and difficulty='H';
+update songdata set notecount=458 where songid=133 and difficulty='H';
+update songdata set notecount=613 where songid=134 and difficulty='H';
+update songdata set notecount=610 where songid=135 and difficulty='H';
+update songdata set notecount=455 where songid=136 and difficulty='H';
+update songdata set notecount=561 where songid=137 and difficulty='H';
+update songdata set notecount=510 where songid=138 and difficulty='H';
+update songdata set notecount=354 where songid=139 and difficulty='H';
+update songdata set notecount=548 where songid=140 and difficulty='H';
+update songdata set notecount=581 where songid=141 and difficulty='H';
+update songdata set notecount=687 where songid=142 and difficulty='H';
+update songdata set notecount=263 where songid=143 and difficulty='H';
+update songdata set notecount=441 where songid=144 and difficulty='H';
+update songdata set notecount=209 where songid=145 and difficulty='H';
+update songdata set notecount=443 where songid=146 and difficulty='H';
+update songdata set notecount=478 where songid=147 and difficulty='H';
+update songdata set notecount=318 where songid=148 and difficulty='H';
+update songdata set notecount=397 where songid=149 and difficulty='H';
+update songdata set notecount=522 where songid=150 and difficulty='H';
+update songdata set notecount=390 where songid=151 and difficulty='H';
+update songdata set notecount=443 where songid=1 and difficulty='N';
+update songdata set notecount=402 where songid=2 and difficulty='N';
+update songdata set notecount=430 where songid=3 and difficulty='N';
+update songdata set notecount=479 where songid=4 and difficulty='N';
+update songdata set notecount=649 where songid=5 and difficulty='N';
+update songdata set notecount=409 where songid=6 and difficulty='N';
+update songdata set notecount=590 where songid=7 and difficulty='N';
+update songdata set notecount=385 where songid=8 and difficulty='N';
+update songdata set notecount=514 where songid=9 and difficulty='N';
+update songdata set notecount=470 where songid=10 and difficulty='N';
+update songdata set notecount=382 where songid=11 and difficulty='N';
+update songdata set notecount=340 where songid=12 and difficulty='N';
+update songdata set notecount=309 where songid=13 and difficulty='N';
+update songdata set notecount=262 where songid=14 and difficulty='N';
+update songdata set notecount=328 where songid=15 and difficulty='N';
+update songdata set notecount=397 where songid=16 and difficulty='N';
+update songdata set notecount=242 where songid=17 and difficulty='N';
+update songdata set notecount=478 where songid=18 and difficulty='N';
+update songdata set notecount=307 where songid=19 and difficulty='N';
+update songdata set notecount=296 where songid=20 and difficulty='N';
+update songdata set notecount=458 where songid=21 and difficulty='N';
+update songdata set notecount=335 where songid=22 and difficulty='N';
+update songdata set notecount=412 where songid=23 and difficulty='N';
+update songdata set notecount=363 where songid=24 and difficulty='N';
+update songdata set notecount=351 where songid=25 and difficulty='N';
+update songdata set notecount=339 where songid=26 and difficulty='N';
+update songdata set notecount=351 where songid=27 and difficulty='N';
+update songdata set notecount=430 where songid=28 and difficulty='N';
+update songdata set notecount=357 where songid=29 and difficulty='N';
+update songdata set notecount=251 where songid=30 and difficulty='N';
+update songdata set notecount=457 where songid=31 and difficulty='N';
+update songdata set notecount=431 where songid=32 and difficulty='N';
+update songdata set notecount=443 where songid=33 and difficulty='N';
+update songdata set notecount=405 where songid=34 and difficulty='N';
+update songdata set notecount=455 where songid=35 and difficulty='N';
+update songdata set notecount=391 where songid=36 and difficulty='N';
+update songdata set notecount=271 where songid=37 and difficulty='N';
+update songdata set notecount=393 where songid=38 and difficulty='N';
+update songdata set notecount=363 where songid=39 and difficulty='N';
+update songdata set notecount=430 where songid=40 and difficulty='N';
+update songdata set notecount=468 where songid=41 and difficulty='N';
+update songdata set notecount=509 where songid=42 and difficulty='N';
+update songdata set notecount=495 where songid=43 and difficulty='N';
+update songdata set notecount=488 where songid=44 and difficulty='N';
+update songdata set notecount=352 where songid=45 and difficulty='N';
+update songdata set notecount=247 where songid=46 and difficulty='N';
+update songdata set notecount=502 where songid=47 and difficulty='N';
+update songdata set notecount=395 where songid=48 and difficulty='N';
+update songdata set notecount=369 where songid=49 and difficulty='N';
+update songdata set notecount=398 where songid=50 and difficulty='N';
+update songdata set notecount=522 where songid=51 and difficulty='N';
+update songdata set notecount=303 where songid=52 and difficulty='N';
+update songdata set notecount=419 where songid=53 and difficulty='N';
+update songdata set notecount=516 where songid=54 and difficulty='N';
+update songdata set notecount=486 where songid=55 and difficulty='N';
+update songdata set notecount=334 where songid=56 and difficulty='N';
+update songdata set notecount=594 where songid=57 and difficulty='N';
+update songdata set notecount=533 where songid=58 and difficulty='N';
+update songdata set notecount=374 where songid=59 and difficulty='N';
+update songdata set notecount=343 where songid=60 and difficulty='N';
+update songdata set notecount=279 where songid=61 and difficulty='N';
+update songdata set notecount=324 where songid=62 and difficulty='N';
+update songdata set notecount=521 where songid=63 and difficulty='N';
+update songdata set notecount=337 where songid=64 and difficulty='N';
+update songdata set notecount=542 where songid=65 and difficulty='N';
+update songdata set notecount=354 where songid=66 and difficulty='N';
+update songdata set notecount=413 where songid=67 and difficulty='N';
+update songdata set notecount=477 where songid=68 and difficulty='N';
+update songdata set notecount=460 where songid=69 and difficulty='N';
+update songdata set notecount=461 where songid=70 and difficulty='N';
+update songdata set notecount=355 where songid=71 and difficulty='N';
+update songdata set notecount=425 where songid=72 and difficulty='N';
+update songdata set notecount=386 where songid=73 and difficulty='N';
+update songdata set notecount=449 where songid=74 and difficulty='N';
+update songdata set notecount=357 where songid=75 and difficulty='N';
+update songdata set notecount=354 where songid=76 and difficulty='N';
+update songdata set notecount=397 where songid=77 and difficulty='N';
+update songdata set notecount=422 where songid=78 and difficulty='N';
+update songdata set notecount=428 where songid=79 and difficulty='N';
+update songdata set notecount=400 where songid=80 and difficulty='N';
+update songdata set notecount=381 where songid=81 and difficulty='N';
+update songdata set notecount=288 where songid=82 and difficulty='N';
+update songdata set notecount=332 where songid=83 and difficulty='N';
+update songdata set notecount=333 where songid=84 and difficulty='N';
+update songdata set notecount=470 where songid=85 and difficulty='N';
+update songdata set notecount=435 where songid=86 and difficulty='N';
+update songdata set notecount=432 where songid=87 and difficulty='N';
+update songdata set notecount=406 where songid=88 and difficulty='N';
+update songdata set notecount=253 where songid=89 and difficulty='N';
+update songdata set notecount=355 where songid=90 and difficulty='N';
+update songdata set notecount=588 where songid=91 and difficulty='N';
+update songdata set notecount=439 where songid=92 and difficulty='N';
+update songdata set notecount=576 where songid=93 and difficulty='N';
+update songdata set notecount=470 where songid=94 and difficulty='N';
+update songdata set notecount=280 where songid=95 and difficulty='N';
+update songdata set notecount=352 where songid=96 and difficulty='N';
+update songdata set notecount=510 where songid=97 and difficulty='N';
+update songdata set notecount=456 where songid=98 and difficulty='N';
+update songdata set notecount=424 where songid=99 and difficulty='N';
+update songdata set notecount=547 where songid=100 and difficulty='N';
+update songdata set notecount=654 where songid=101 and difficulty='N';
+update songdata set notecount=375 where songid=102 and difficulty='N';
+update songdata set notecount=475 where songid=103 and difficulty='N';
+update songdata set notecount=387 where songid=104 and difficulty='N';
+update songdata set notecount=545 where songid=105 and difficulty='N';
+update songdata set notecount=333 where songid=106 and difficulty='N';
+update songdata set notecount=342 where songid=107 and difficulty='N';
+update songdata set notecount=395 where songid=108 and difficulty='N';
+update songdata set notecount=482 where songid=109 and difficulty='N';
+update songdata set notecount=331 where songid=110 and difficulty='N';
+update songdata set notecount=296 where songid=111 and difficulty='N';
+update songdata set notecount=401 where songid=112 and difficulty='N';
+update songdata set notecount=503 where songid=113 and difficulty='N';
+update songdata set notecount=589 where songid=114 and difficulty='N';
+update songdata set notecount=430 where songid=115 and difficulty='N';
+update songdata set notecount=399 where songid=116 and difficulty='N';
+update songdata set notecount=316 where songid=117 and difficulty='N';
+update songdata set notecount=393 where songid=118 and difficulty='N';
+
+update songdata set notecount=391 where songid=120 and difficulty='N';
+update songdata set notecount=327 where songid=121 and difficulty='N';
+update songdata set notecount=296 where songid=122 and difficulty='N';
+update songdata set notecount=364 where songid=123 and difficulty='N';
+update songdata set notecount=442 where songid=124 and difficulty='N';
+
+update songdata set notecount=358 where songid=126 and difficulty='N';
+update songdata set notecount=406 where songid=127 and difficulty='N';
+update songdata set notecount=577 where songid=128 and difficulty='N';
+update songdata set notecount=519 where songid=129 and difficulty='N';
+update songdata set notecount=319 where songid=130 and difficulty='N';
+update songdata set notecount=310 where songid=131 and difficulty='N';
+update songdata set notecount=385 where songid=132 and difficulty='N';
+update songdata set notecount=404 where songid=133 and difficulty='N';
+update songdata set notecount=422 where songid=134 and difficulty='N';
+update songdata set notecount=446 where songid=135 and difficulty='N';
+update songdata set notecount=400 where songid=136 and difficulty='N';
+update songdata set notecount=374 where songid=137 and difficulty='N';
+update songdata set notecount=414 where songid=138 and difficulty='N';
+update songdata set notecount=315 where songid=139 and difficulty='N';
+update songdata set notecount=441 where songid=140 and difficulty='N';
+update songdata set notecount=324 where songid=141 and difficulty='N';
+update songdata set notecount=467 where songid=142 and difficulty='N';
+update songdata set notecount=263 where songid=143 and difficulty='N';
+update songdata set notecount=363 where songid=144 and difficulty='N';
+update songdata set notecount=204 where songid=145 and difficulty='N';
+update songdata set notecount=387 where songid=146 and difficulty='N';
+update songdata set notecount=361 where songid=147 and difficulty='N';
+update songdata set notecount=298 where songid=148 and difficulty='N';
+update songdata set notecount=352 where songid=149 and difficulty='N';
+update songdata set notecount=381 where songid=150 and difficulty='N';
+update songdata set notecount=316 where songid=151 and difficulty='N';
update songdata set notecount=290 where songid=1 and difficulty='E';
update songdata set notecount=253 where songid=2 and difficulty='E';
update songdata set notecount=312 where songid=3 and difficulty='E';
@@ -148,673 +751,3 @@ update songdata set notecount=310 where songid=147 and difficulty='E';
update songdata set notecount=291 where songid=149 and difficulty='E';
-update songdata set notecount=290 where songid=1 and difficulty='N';
-update songdata set notecount=253 where songid=2 and difficulty='N';
-update songdata set notecount=312 where songid=3 and difficulty='N';
-update songdata set notecount=350 where songid=4 and difficulty='N';
-update songdata set notecount=400 where songid=5 and difficulty='N';
-update songdata set notecount=263 where songid=6 and difficulty='N';
-update songdata set notecount=370 where songid=7 and difficulty='N';
-update songdata set notecount=236 where songid=8 and difficulty='N';
-update songdata set notecount=310 where songid=9 and difficulty='N';
-update songdata set notecount=287 where songid=10 and difficulty='N';
-update songdata set notecount=322 where songid=11 and difficulty='N';
-update songdata set notecount=305 where songid=12 and difficulty='N';
-update songdata set notecount= where songid=13 and difficulty='N';
-update songdata set notecount=199 where songid=14 and difficulty='N';
-update songdata set notecount=273 where songid=15 and difficulty='N';
-update songdata set notecount= where songid=16 and difficulty='N';
-update songdata set notecount=147 where songid=17 and difficulty='N';
-update songdata set notecount=346 where songid=18 and difficulty='N';
-update songdata set notecount=305 where songid=19 and difficulty='N';
-update songdata set notecount=225 where songid=20 and difficulty='N';
-update songdata set notecount=345 where songid=21 and difficulty='N';
-update songdata set notecount=276 where songid=22 and difficulty='N';
-update songdata set notecount=310 where songid=23 and difficulty='N';
-update songdata set notecount=300 where songid=24 and difficulty='N';
-update songdata set notecount=276 where songid=25 and difficulty='N';
-update songdata set notecount=250 where songid=26 and difficulty='N';
-update songdata set notecount=260 where songid=27 and difficulty='N';
-update songdata set notecount=343 where songid=28 and difficulty='N';
-update songdata set notecount=216 where songid=29 and difficulty='N';
-update songdata set notecount= where songid=30 and difficulty='N';
-update songdata set notecount=340 where songid=31 and difficulty='N';
-update songdata set notecount=279 where songid=32 and difficulty='N';
-update songdata set notecount=389 where songid=33 and difficulty='N';
-update songdata set notecount=316 where songid=34 and difficulty='N';
-update songdata set notecount= where songid=35 and difficulty='N';
-update songdata set notecount= where songid=36 and difficulty='N';
-update songdata set notecount= where songid=37 and difficulty='N';
-update songdata set notecount= where songid=38 and difficulty='N';
-update songdata set notecount=282 where songid=39 and difficulty='N';
-update songdata set notecount=275 where songid=40 and difficulty='N';
-update songdata set notecount=381 where songid=41 and difficulty='N';
-update songdata set notecount=374 where songid=42 and difficulty='N';
-update songdata set notecount= where songid=43 and difficulty='N';
-update songdata set notecount=394 where songid=44 and difficulty='N';
-update songdata set notecount=268 where songid=45 and difficulty='N';
-update songdata set notecount=157 where songid=46 and difficulty='N';
-update songdata set notecount= where songid=47 and difficulty='N';
-update songdata set notecount=315 where songid=48 and difficulty='N';
-update songdata set notecount=289 where songid=49 and difficulty='N';
-update songdata set notecount=302 where songid=50 and difficulty='N';
-update songdata set notecount=416 where songid=51 and difficulty='N';
-update songdata set notecount=233 where songid=52 and difficulty='N';
-update songdata set notecount=371 where songid=53 and difficulty='N';
-update songdata set notecount=318 where songid=54 and difficulty='N';
-update songdata set notecount= where songid=55 and difficulty='N';
-update songdata set notecount= where songid=56 and difficulty='N';
-update songdata set notecount=362 where songid=57 and difficulty='N';
-update songdata set notecount= where songid=58 and difficulty='N';
-update songdata set notecount= where songid=59 and difficulty='N';
-update songdata set notecount=275 where songid=60 and difficulty='N';
-update songdata set notecount=212 where songid=61 and difficulty='N';
-update songdata set notecount=204 where songid=62 and difficulty='N';
-update songdata set notecount= where songid=63 and difficulty='N';
-update songdata set notecount=246 where songid=64 and difficulty='N';
-update songdata set notecount=414 where songid=65 and difficulty='N';
-update songdata set notecount=216 where songid=66 and difficulty='N';
-update songdata set notecount= where songid=67 and difficulty='N';
-update songdata set notecount=399 where songid=68 and difficulty='N';
-update songdata set notecount=337 where songid=69 and difficulty='N';
-update songdata set notecount=406 where songid=70 and difficulty='N';
-update songdata set notecount=288 where songid=71 and difficulty='N';
-update songdata set notecount=339 where songid=72 and difficulty='N';
-update songdata set notecount=251 where songid=73 and difficulty='N';
-update songdata set notecount=280 where songid=74 and difficulty='N';
-update songdata set notecount=226 where songid=75 and difficulty='N';
-update songdata set notecount=274 where songid=76 and difficulty='N';
-update songdata set notecount=299 where songid=77 and difficulty='N';
-update songdata set notecount=377 where songid=78 and difficulty='N';
-update songdata set notecount=330 where songid=79 and difficulty='N';
-update songdata set notecount=322 where songid=80 and difficulty='N';
-update songdata set notecount=261 where songid=81 and difficulty='N';
-update songdata set notecount=231 where songid=82 and difficulty='N';
-update songdata set notecount= where songid=83 and difficulty='N';
-update songdata set notecount=265 where songid=84 and difficulty='N';
-update songdata set notecount=404 where songid=85 and difficulty='N';
-update songdata set notecount=363 where songid=86 and difficulty='N';
-update songdata set notecount=368 where songid=87 and difficulty='N';
-update songdata set notecount=250 where songid=88 and difficulty='N';
-update songdata set notecount=164 where songid=89 and difficulty='N';
-update songdata set notecount=246 where songid=90 and difficulty='N';
-update songdata set notecount=420 where songid=91 and difficulty='N';
-update songdata set notecount=416 where songid=92 and difficulty='N';
-update songdata set notecount=361 where songid=93 and difficulty='N';
-update songdata set notecount=348 where songid=94 and difficulty='N';
-update songdata set notecount=199 where songid=95 and difficulty='N';
-update songdata set notecount= where songid=96 and difficulty='N';
-update songdata set notecount=392 where songid=97 and difficulty='N';
-update songdata set notecount= where songid=98 and difficulty='N';
-update songdata set notecount=321 where songid=99 and difficulty='N';
-update songdata set notecount=388 where songid=100 and difficulty='N';
-update songdata set notecount=388 where songid=101 and difficulty='N';
-update songdata set notecount=276 where songid=102 and difficulty='N';
-update songdata set notecount=369 where songid=103 and difficulty='N';
-update songdata set notecount=336 where songid=104 and difficulty='N';
-update songdata set notecount=330 where songid=105 and difficulty='N';
-update songdata set notecount= where songid=106 and difficulty='N';
-update songdata set notecount=284 where songid=107 and difficulty='N';
-update songdata set notecount=305 where songid=108 and difficulty='N';
-update songdata set notecount=363 where songid=109 and difficulty='N';
-update songdata set notecount=213 where songid=110 and difficulty='N';
-update songdata set notecount=208 where songid=111 and difficulty='N';
-update songdata set notecount=340 where songid=112 and difficulty='N';
-update songdata set notecount= where songid=113 and difficulty='N';
-update songdata set notecount= where songid=114 and difficulty='N';
-update songdata set notecount= where songid=115 and difficulty='N';
-update songdata set notecount=292 where songid=116 and difficulty='N';
-update songdata set notecount= where songid=117 and difficulty='N';
-update songdata set notecount=291 where songid=118 and difficulty='N';
-
-update songdata set notecount=348 where songid=120 and difficulty='N';
-update songdata set notecount=270 where songid=121 and difficulty='N';
-update songdata set notecount=239 where songid=122 and difficulty='N';
-update songdata set notecount= where songid=123 and difficulty='N';
-update songdata set notecount=332 where songid=124 and difficulty='N';
-
-update songdata set notecount=286 where songid=126 and difficulty='N';
-update songdata set notecount=358 where songid=127 and difficulty='N';
-update songdata set notecount= where songid=128 and difficulty='N';
-update songdata set notecount= where songid=129 and difficulty='N';
-update songdata set notecount=251 where songid=130 and difficulty='N';
-update songdata set notecount=249 where songid=131 and difficulty='N';
-update songdata set notecount=329 where songid=132 and difficulty='N';
-update songdata set notecount=335 where songid=133 and difficulty='N';
-update songdata set notecount=288 where songid=134 and difficulty='N';
-update songdata set notecount=285 where songid=135 and difficulty='N';
-update songdata set notecount=327 where songid=136 and difficulty='N';
-update songdata set notecount=285 where songid=137 and difficulty='N';
-update songdata set notecount= where songid=138 and difficulty='N';
-update songdata set notecount=265 where songid=139 and difficulty='N';
-update songdata set notecount=346 where songid=140 and difficulty='N';
-update songdata set notecount=174 where songid=141 and difficulty='N';
-update songdata set notecount=328 where songid=142 and difficulty='N';
-update songdata set notecount=241 where songid=143 and difficulty='N';
-update songdata set notecount= where songid=144 and difficulty='N';
-update songdata set notecount=135 where songid=145 and difficulty='N';
-update songdata set notecount= where songid=146 and difficulty='N';
-update songdata set notecount=310 where songid=147 and difficulty='N';
-update songdata set notecount= where songid=148 and difficulty='N';
-update songdata set notecount=291 where songid=149 and difficulty='N';
-update songdata set notecount= where songid=150 and difficulty='N';
-update songdata set notecount= where songid=151 and difficulty='N';
-update songdata set notecount=290 where songid=1 and difficulty='H';
-update songdata set notecount=253 where songid=2 and difficulty='H';
-update songdata set notecount=312 where songid=3 and difficulty='H';
-update songdata set notecount=350 where songid=4 and difficulty='H';
-update songdata set notecount=400 where songid=5 and difficulty='H';
-update songdata set notecount=263 where songid=6 and difficulty='H';
-update songdata set notecount=370 where songid=7 and difficulty='H';
-update songdata set notecount=236 where songid=8 and difficulty='H';
-update songdata set notecount=310 where songid=9 and difficulty='H';
-update songdata set notecount=287 where songid=10 and difficulty='H';
-update songdata set notecount=322 where songid=11 and difficulty='H';
-update songdata set notecount=305 where songid=12 and difficulty='H';
-update songdata set notecount= where songid=13 and difficulty='H';
-update songdata set notecount=199 where songid=14 and difficulty='H';
-update songdata set notecount=273 where songid=15 and difficulty='H';
-update songdata set notecount= where songid=16 and difficulty='H';
-update songdata set notecount=147 where songid=17 and difficulty='H';
-update songdata set notecount=346 where songid=18 and difficulty='H';
-update songdata set notecount=305 where songid=19 and difficulty='H';
-update songdata set notecount=225 where songid=20 and difficulty='H';
-update songdata set notecount=345 where songid=21 and difficulty='H';
-update songdata set notecount=276 where songid=22 and difficulty='H';
-update songdata set notecount=310 where songid=23 and difficulty='H';
-update songdata set notecount=300 where songid=24 and difficulty='H';
-update songdata set notecount=276 where songid=25 and difficulty='H';
-update songdata set notecount=250 where songid=26 and difficulty='H';
-update songdata set notecount=260 where songid=27 and difficulty='H';
-update songdata set notecount=343 where songid=28 and difficulty='H';
-update songdata set notecount=216 where songid=29 and difficulty='H';
-update songdata set notecount= where songid=30 and difficulty='H';
-update songdata set notecount=340 where songid=31 and difficulty='H';
-update songdata set notecount=279 where songid=32 and difficulty='H';
-update songdata set notecount=389 where songid=33 and difficulty='H';
-update songdata set notecount=316 where songid=34 and difficulty='H';
-update songdata set notecount= where songid=35 and difficulty='H';
-update songdata set notecount= where songid=36 and difficulty='H';
-update songdata set notecount= where songid=37 and difficulty='H';
-update songdata set notecount= where songid=38 and difficulty='H';
-update songdata set notecount=282 where songid=39 and difficulty='H';
-update songdata set notecount=275 where songid=40 and difficulty='H';
-update songdata set notecount=381 where songid=41 and difficulty='H';
-update songdata set notecount=374 where songid=42 and difficulty='H';
-update songdata set notecount= where songid=43 and difficulty='H';
-update songdata set notecount=394 where songid=44 and difficulty='H';
-update songdata set notecount=268 where songid=45 and difficulty='H';
-update songdata set notecount=157 where songid=46 and difficulty='H';
-update songdata set notecount= where songid=47 and difficulty='H';
-update songdata set notecount=315 where songid=48 and difficulty='H';
-update songdata set notecount=289 where songid=49 and difficulty='H';
-update songdata set notecount=302 where songid=50 and difficulty='H';
-update songdata set notecount=416 where songid=51 and difficulty='H';
-update songdata set notecount=233 where songid=52 and difficulty='H';
-update songdata set notecount=371 where songid=53 and difficulty='H';
-update songdata set notecount=318 where songid=54 and difficulty='H';
-update songdata set notecount= where songid=55 and difficulty='H';
-update songdata set notecount= where songid=56 and difficulty='H';
-update songdata set notecount=362 where songid=57 and difficulty='H';
-update songdata set notecount= where songid=58 and difficulty='H';
-update songdata set notecount= where songid=59 and difficulty='H';
-update songdata set notecount=275 where songid=60 and difficulty='H';
-update songdata set notecount=212 where songid=61 and difficulty='H';
-update songdata set notecount=204 where songid=62 and difficulty='H';
-update songdata set notecount= where songid=63 and difficulty='H';
-update songdata set notecount=246 where songid=64 and difficulty='H';
-update songdata set notecount=414 where songid=65 and difficulty='H';
-update songdata set notecount=216 where songid=66 and difficulty='H';
-update songdata set notecount= where songid=67 and difficulty='H';
-update songdata set notecount=399 where songid=68 and difficulty='H';
-update songdata set notecount=337 where songid=69 and difficulty='H';
-update songdata set notecount=406 where songid=70 and difficulty='H';
-update songdata set notecount=288 where songid=71 and difficulty='H';
-update songdata set notecount=339 where songid=72 and difficulty='H';
-update songdata set notecount=251 where songid=73 and difficulty='H';
-update songdata set notecount=280 where songid=74 and difficulty='H';
-update songdata set notecount=226 where songid=75 and difficulty='H';
-update songdata set notecount=274 where songid=76 and difficulty='H';
-update songdata set notecount=299 where songid=77 and difficulty='H';
-update songdata set notecount=377 where songid=78 and difficulty='H';
-update songdata set notecount=330 where songid=79 and difficulty='H';
-update songdata set notecount=322 where songid=80 and difficulty='H';
-update songdata set notecount=261 where songid=81 and difficulty='H';
-update songdata set notecount=231 where songid=82 and difficulty='H';
-update songdata set notecount= where songid=83 and difficulty='H';
-update songdata set notecount=265 where songid=84 and difficulty='H';
-update songdata set notecount=404 where songid=85 and difficulty='H';
-update songdata set notecount=363 where songid=86 and difficulty='H';
-update songdata set notecount=368 where songid=87 and difficulty='H';
-update songdata set notecount=250 where songid=88 and difficulty='H';
-update songdata set notecount=164 where songid=89 and difficulty='H';
-update songdata set notecount=246 where songid=90 and difficulty='H';
-update songdata set notecount=420 where songid=91 and difficulty='H';
-update songdata set notecount=416 where songid=92 and difficulty='H';
-update songdata set notecount=361 where songid=93 and difficulty='H';
-update songdata set notecount=348 where songid=94 and difficulty='H';
-update songdata set notecount=199 where songid=95 and difficulty='H';
-update songdata set notecount= where songid=96 and difficulty='H';
-update songdata set notecount=392 where songid=97 and difficulty='H';
-update songdata set notecount= where songid=98 and difficulty='H';
-update songdata set notecount=321 where songid=99 and difficulty='H';
-update songdata set notecount=388 where songid=100 and difficulty='H';
-update songdata set notecount=388 where songid=101 and difficulty='H';
-update songdata set notecount=276 where songid=102 and difficulty='H';
-update songdata set notecount=369 where songid=103 and difficulty='H';
-update songdata set notecount=336 where songid=104 and difficulty='H';
-update songdata set notecount=330 where songid=105 and difficulty='H';
-update songdata set notecount= where songid=106 and difficulty='H';
-update songdata set notecount=284 where songid=107 and difficulty='H';
-update songdata set notecount=305 where songid=108 and difficulty='H';
-update songdata set notecount=363 where songid=109 and difficulty='H';
-update songdata set notecount=213 where songid=110 and difficulty='H';
-update songdata set notecount=208 where songid=111 and difficulty='H';
-update songdata set notecount=340 where songid=112 and difficulty='H';
-update songdata set notecount= where songid=113 and difficulty='H';
-update songdata set notecount= where songid=114 and difficulty='H';
-update songdata set notecount= where songid=115 and difficulty='H';
-update songdata set notecount=292 where songid=116 and difficulty='H';
-update songdata set notecount= where songid=117 and difficulty='H';
-update songdata set notecount=291 where songid=118 and difficulty='H';
-update songdata set notecount=228 where songid=119 and difficulty='H';
-update songdata set notecount=348 where songid=120 and difficulty='H';
-update songdata set notecount=270 where songid=121 and difficulty='H';
-update songdata set notecount=239 where songid=122 and difficulty='H';
-update songdata set notecount= where songid=123 and difficulty='H';
-update songdata set notecount=332 where songid=124 and difficulty='H';
-update songdata set notecount=227 where songid=125 and difficulty='H';
-update songdata set notecount=286 where songid=126 and difficulty='H';
-update songdata set notecount=358 where songid=127 and difficulty='H';
-update songdata set notecount= where songid=128 and difficulty='H';
-update songdata set notecount= where songid=129 and difficulty='H';
-update songdata set notecount=251 where songid=130 and difficulty='H';
-update songdata set notecount=249 where songid=131 and difficulty='H';
-update songdata set notecount=329 where songid=132 and difficulty='H';
-update songdata set notecount=335 where songid=133 and difficulty='H';
-update songdata set notecount=288 where songid=134 and difficulty='H';
-update songdata set notecount=285 where songid=135 and difficulty='H';
-update songdata set notecount=327 where songid=136 and difficulty='H';
-update songdata set notecount=285 where songid=137 and difficulty='H';
-update songdata set notecount= where songid=138 and difficulty='H';
-update songdata set notecount=265 where songid=139 and difficulty='H';
-update songdata set notecount=346 where songid=140 and difficulty='H';
-update songdata set notecount=174 where songid=141 and difficulty='H';
-update songdata set notecount=328 where songid=142 and difficulty='H';
-update songdata set notecount=241 where songid=143 and difficulty='H';
-update songdata set notecount= where songid=144 and difficulty='H';
-update songdata set notecount=135 where songid=145 and difficulty='H';
-update songdata set notecount= where songid=146 and difficulty='H';
-update songdata set notecount=310 where songid=147 and difficulty='H';
-update songdata set notecount= where songid=148 and difficulty='H';
-update songdata set notecount=291 where songid=149 and difficulty='H';
-update songdata set notecount= where songid=150 and difficulty='H';
-update songdata set notecount= where songid=151 and difficulty='H';
-update songdata set notecount=290 where songid=1 and difficulty='EX';
-update songdata set notecount=253 where songid=2 and difficulty='EX';
-update songdata set notecount=312 where songid=3 and difficulty='EX';
-update songdata set notecount=350 where songid=4 and difficulty='EX';
-update songdata set notecount=400 where songid=5 and difficulty='EX';
-update songdata set notecount=263 where songid=6 and difficulty='EX';
-update songdata set notecount=370 where songid=7 and difficulty='EX';
-update songdata set notecount=236 where songid=8 and difficulty='EX';
-update songdata set notecount=310 where songid=9 and difficulty='EX';
-update songdata set notecount=287 where songid=10 and difficulty='EX';
-update songdata set notecount=322 where songid=11 and difficulty='EX';
-update songdata set notecount=305 where songid=12 and difficulty='EX';
-update songdata set notecount= where songid=13 and difficulty='EX';
-update songdata set notecount=199 where songid=14 and difficulty='EX';
-update songdata set notecount=273 where songid=15 and difficulty='EX';
-update songdata set notecount= where songid=16 and difficulty='EX';
-update songdata set notecount=147 where songid=17 and difficulty='EX';
-update songdata set notecount=346 where songid=18 and difficulty='EX';
-update songdata set notecount=305 where songid=19 and difficulty='EX';
-update songdata set notecount=225 where songid=20 and difficulty='EX';
-update songdata set notecount=345 where songid=21 and difficulty='EX';
-update songdata set notecount=276 where songid=22 and difficulty='EX';
-update songdata set notecount=310 where songid=23 and difficulty='EX';
-update songdata set notecount=300 where songid=24 and difficulty='EX';
-update songdata set notecount=276 where songid=25 and difficulty='EX';
-update songdata set notecount=250 where songid=26 and difficulty='EX';
-update songdata set notecount=260 where songid=27 and difficulty='EX';
-update songdata set notecount=343 where songid=28 and difficulty='EX';
-update songdata set notecount=216 where songid=29 and difficulty='EX';
-update songdata set notecount= where songid=30 and difficulty='EX';
-update songdata set notecount=340 where songid=31 and difficulty='EX';
-update songdata set notecount=279 where songid=32 and difficulty='EX';
-update songdata set notecount=389 where songid=33 and difficulty='EX';
-update songdata set notecount=316 where songid=34 and difficulty='EX';
-update songdata set notecount= where songid=35 and difficulty='EX';
-update songdata set notecount= where songid=36 and difficulty='EX';
-update songdata set notecount= where songid=37 and difficulty='EX';
-update songdata set notecount= where songid=38 and difficulty='EX';
-update songdata set notecount=282 where songid=39 and difficulty='EX';
-update songdata set notecount=275 where songid=40 and difficulty='EX';
-update songdata set notecount=381 where songid=41 and difficulty='EX';
-update songdata set notecount=374 where songid=42 and difficulty='EX';
-update songdata set notecount= where songid=43 and difficulty='EX';
-update songdata set notecount=394 where songid=44 and difficulty='EX';
-update songdata set notecount=268 where songid=45 and difficulty='EX';
-update songdata set notecount=157 where songid=46 and difficulty='EX';
-update songdata set notecount= where songid=47 and difficulty='EX';
-update songdata set notecount=315 where songid=48 and difficulty='EX';
-update songdata set notecount=289 where songid=49 and difficulty='EX';
-update songdata set notecount=302 where songid=50 and difficulty='EX';
-update songdata set notecount=416 where songid=51 and difficulty='EX';
-update songdata set notecount=233 where songid=52 and difficulty='EX';
-update songdata set notecount=371 where songid=53 and difficulty='EX';
-update songdata set notecount=318 where songid=54 and difficulty='EX';
-update songdata set notecount= where songid=55 and difficulty='EX';
-update songdata set notecount= where songid=56 and difficulty='EX';
-update songdata set notecount=362 where songid=57 and difficulty='EX';
-update songdata set notecount= where songid=58 and difficulty='EX';
-update songdata set notecount= where songid=59 and difficulty='EX';
-update songdata set notecount=275 where songid=60 and difficulty='EX';
-update songdata set notecount=212 where songid=61 and difficulty='EX';
-update songdata set notecount=204 where songid=62 and difficulty='EX';
-update songdata set notecount= where songid=63 and difficulty='EX';
-update songdata set notecount=246 where songid=64 and difficulty='EX';
-update songdata set notecount=414 where songid=65 and difficulty='EX';
-update songdata set notecount=216 where songid=66 and difficulty='EX';
-update songdata set notecount= where songid=67 and difficulty='EX';
-update songdata set notecount=399 where songid=68 and difficulty='EX';
-update songdata set notecount=337 where songid=69 and difficulty='EX';
-update songdata set notecount=406 where songid=70 and difficulty='EX';
-update songdata set notecount=288 where songid=71 and difficulty='EX';
-update songdata set notecount=339 where songid=72 and difficulty='EX';
-update songdata set notecount=251 where songid=73 and difficulty='EX';
-update songdata set notecount=280 where songid=74 and difficulty='EX';
-update songdata set notecount=226 where songid=75 and difficulty='EX';
-update songdata set notecount=274 where songid=76 and difficulty='EX';
-update songdata set notecount=299 where songid=77 and difficulty='EX';
-update songdata set notecount=377 where songid=78 and difficulty='EX';
-update songdata set notecount=330 where songid=79 and difficulty='EX';
-update songdata set notecount=322 where songid=80 and difficulty='EX';
-update songdata set notecount=261 where songid=81 and difficulty='EX';
-update songdata set notecount=231 where songid=82 and difficulty='EX';
-update songdata set notecount= where songid=83 and difficulty='EX';
-update songdata set notecount=265 where songid=84 and difficulty='EX';
-update songdata set notecount=404 where songid=85 and difficulty='EX';
-update songdata set notecount=363 where songid=86 and difficulty='EX';
-update songdata set notecount=368 where songid=87 and difficulty='EX';
-update songdata set notecount=250 where songid=88 and difficulty='EX';
-update songdata set notecount=164 where songid=89 and difficulty='EX';
-update songdata set notecount=246 where songid=90 and difficulty='EX';
-update songdata set notecount=420 where songid=91 and difficulty='EX';
-update songdata set notecount=416 where songid=92 and difficulty='EX';
-update songdata set notecount=361 where songid=93 and difficulty='EX';
-update songdata set notecount=348 where songid=94 and difficulty='EX';
-update songdata set notecount=199 where songid=95 and difficulty='EX';
-update songdata set notecount= where songid=96 and difficulty='EX';
-update songdata set notecount=392 where songid=97 and difficulty='EX';
-update songdata set notecount= where songid=98 and difficulty='EX';
-update songdata set notecount=321 where songid=99 and difficulty='EX';
-update songdata set notecount=388 where songid=100 and difficulty='EX';
-update songdata set notecount=388 where songid=101 and difficulty='EX';
-update songdata set notecount=276 where songid=102 and difficulty='EX';
-update songdata set notecount=369 where songid=103 and difficulty='EX';
-update songdata set notecount=336 where songid=104 and difficulty='EX';
-update songdata set notecount=330 where songid=105 and difficulty='EX';
-update songdata set notecount= where songid=106 and difficulty='EX';
-update songdata set notecount=284 where songid=107 and difficulty='EX';
-update songdata set notecount=305 where songid=108 and difficulty='EX';
-update songdata set notecount=363 where songid=109 and difficulty='EX';
-update songdata set notecount=213 where songid=110 and difficulty='EX';
-update songdata set notecount=208 where songid=111 and difficulty='EX';
-update songdata set notecount=340 where songid=112 and difficulty='EX';
-update songdata set notecount= where songid=113 and difficulty='EX';
-update songdata set notecount= where songid=114 and difficulty='EX';
-update songdata set notecount= where songid=115 and difficulty='EX';
-update songdata set notecount=292 where songid=116 and difficulty='EX';
-update songdata set notecount= where songid=117 and difficulty='EX';
-update songdata set notecount=291 where songid=118 and difficulty='EX';
-update songdata set notecount=228 where songid=119 and difficulty='EX';
-update songdata set notecount=348 where songid=120 and difficulty='EX';
-update songdata set notecount=270 where songid=121 and difficulty='EX';
-update songdata set notecount=239 where songid=122 and difficulty='EX';
-update songdata set notecount= where songid=123 and difficulty='EX';
-update songdata set notecount=332 where songid=124 and difficulty='EX';
-update songdata set notecount=227 where songid=125 and difficulty='EX';
-update songdata set notecount=286 where songid=126 and difficulty='EX';
-update songdata set notecount=358 where songid=127 and difficulty='EX';
-update songdata set notecount= where songid=128 and difficulty='EX';
-update songdata set notecount= where songid=129 and difficulty='EX';
-update songdata set notecount=251 where songid=130 and difficulty='EX';
-update songdata set notecount=249 where songid=131 and difficulty='EX';
-update songdata set notecount=329 where songid=132 and difficulty='EX';
-update songdata set notecount=335 where songid=133 and difficulty='EX';
-update songdata set notecount=288 where songid=134 and difficulty='EX';
-update songdata set notecount=285 where songid=135 and difficulty='EX';
-update songdata set notecount=327 where songid=136 and difficulty='EX';
-update songdata set notecount=285 where songid=137 and difficulty='EX';
-update songdata set notecount= where songid=138 and difficulty='EX';
-update songdata set notecount=265 where songid=139 and difficulty='EX';
-update songdata set notecount=346 where songid=140 and difficulty='EX';
-update songdata set notecount=174 where songid=141 and difficulty='EX';
-update songdata set notecount=328 where songid=142 and difficulty='EX';
-update songdata set notecount=241 where songid=143 and difficulty='EX';
-update songdata set notecount= where songid=144 and difficulty='EX';
-update songdata set notecount=135 where songid=145 and difficulty='EX';
-update songdata set notecount= where songid=146 and difficulty='EX';
-update songdata set notecount=310 where songid=147 and difficulty='EX';
-update songdata set notecount= where songid=148 and difficulty='EX';
-update songdata set notecount=291 where songid=149 and difficulty='EX';
-update songdata set notecount= where songid=150 and difficulty='EX';
-update songdata set notecount= where songid=151 and difficulty='EX';
-
-
-
-
-
-
-
-
-
-
-update songdata set notecount=322 where songid=11 and difficulty='EXEX';
-update songdata set notecount=305 where songid=12 and difficulty='EXEX';
-update songdata set notecount= where songid=13 and difficulty='EXEX';
-
-update songdata set notecount=273 where songid=15 and difficulty='EXEX';
-update songdata set notecount= where songid=16 and difficulty='EXEX';
-update songdata set notecount=147 where songid=17 and difficulty='EXEX';
-update songdata set notecount=346 where songid=18 and difficulty='EXEX';
-update songdata set notecount=305 where songid=19 and difficulty='EXEX';
-update songdata set notecount=225 where songid=20 and difficulty='EXEX';
-update songdata set notecount=345 where songid=21 and difficulty='EXEX';
-update songdata set notecount=276 where songid=22 and difficulty='EXEX';
-update songdata set notecount=310 where songid=23 and difficulty='EXEX';
-update songdata set notecount=300 where songid=24 and difficulty='EXEX';
-
-update songdata set notecount=250 where songid=26 and difficulty='EXEX';
-update songdata set notecount=260 where songid=27 and difficulty='EXEX';
-update songdata set notecount=343 where songid=28 and difficulty='EXEX';
-update songdata set notecount=216 where songid=29 and difficulty='EXEX';
-update songdata set notecount= where songid=30 and difficulty='EXEX';
-
-update songdata set notecount=279 where songid=32 and difficulty='EXEX';
-update songdata set notecount=389 where songid=33 and difficulty='EXEX';
-
-update songdata set notecount= where songid=35 and difficulty='EXEX';
-update songdata set notecount= where songid=36 and difficulty='EXEX';
-
-update songdata set notecount= where songid=38 and difficulty='EXEX';
-
-update songdata set notecount=275 where songid=40 and difficulty='EXEX';
-
-update songdata set notecount=374 where songid=42 and difficulty='EXEX';
-
-update songdata set notecount=394 where songid=44 and difficulty='EXEX';
-
-
-
-update songdata set notecount=315 where songid=48 and difficulty='EXEX';
-
-
-
-
-
-update songdata set notecount=318 where songid=54 and difficulty='EXEX';
-update songdata set notecount= where songid=55 and difficulty='EXEX';
-
-update songdata set notecount=362 where songid=57 and difficulty='EXEX';
-update songdata set notecount= where songid=58 and difficulty='EXEX';
-
-
-
-update songdata set notecount=204 where songid=62 and difficulty='EXEX';
-update songdata set notecount= where songid=63 and difficulty='EXEX';
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-update songdata set notecount=368 where songid=87 and difficulty='EXEX';
-
-
-
-
-
-
-
-
-update songdata set notecount= where songid=96 and difficulty='EXEX';
-update songdata set notecount=392 where songid=97 and difficulty='EXEX';
-update songdata set notecount= where songid=98 and difficulty='EXEX';
-
-
-
-
-update songdata set notecount=369 where songid=103 and difficulty='EXEX';
-update songdata set notecount=336 where songid=104 and difficulty='EXEX';
-update songdata set notecount=330 where songid=105 and difficulty='EXEX';
-update songdata set notecount= where songid=106 and difficulty='EXEX';
-
-update songdata set notecount=305 where songid=108 and difficulty='EXEX';
-update songdata set notecount=363 where songid=109 and difficulty='EXEX';
-update songdata set notecount=213 where songid=110 and difficulty='EXEX';
-
-update songdata set notecount=340 where songid=112 and difficulty='EXEX';
-update songdata set notecount= where songid=113 and difficulty='EXEX';
-update songdata set notecount= where songid=114 and difficulty='EXEX';
-update songdata set notecount= where songid=115 and difficulty='EXEX';
-
-
-update songdata set notecount=291 where songid=118 and difficulty='EXEX';
-update songdata set notecount=228 where songid=119 and difficulty='EXEX';
-update songdata set notecount=348 where songid=120 and difficulty='EXEX';
-
-update songdata set notecount=239 where songid=122 and difficulty='EXEX';
-update songdata set notecount= where songid=123 and difficulty='EXEX';
-
-update songdata set notecount=227 where songid=125 and difficulty='EXEX';
-
-update songdata set notecount=358 where songid=127 and difficulty='EXEX';
-
-
-update songdata set notecount=251 where songid=130 and difficulty='EXEX';
-update songdata set notecount=249 where songid=131 and difficulty='EXEX';
-
-update songdata set notecount=335 where songid=133 and difficulty='EXEX';
-
-update songdata set notecount=285 where songid=135 and difficulty='EXEX';
-
-
-
-update songdata set notecount=265 where songid=139 and difficulty='EXEX';
-
-
-
-update songdata set notecount=241 where songid=143 and difficulty='EXEX';
-update songdata set notecount= where songid=144 and difficulty='EXEX';
-
-update songdata set notecount= where songid=146 and difficulty='EXEX';
-
-update songdata set notecount= where songid=148 and difficulty='EXEX';
-
-
-update songdata set notecount=242 where songid=152 and difficulty='E';
-update songdata set notecount=293 where songid=152 and difficulty='H';
-update songdata set notecount=357 where songid=152 and difficulty='EX';
-update songdata set notecount=372 where songid=152 and difficulty='EXEX';
-update songdata set notecount=296 where songid=153 and difficulty='E';
-update songdata set notecount=369 where songid=153 and difficulty='N';
-update songdata set notecount=447 where songid=153 and difficulty='H';
-update songdata set notecount=541 where songid=153 and difficulty='EX';
-update songdata set notecount=561 where songid=153 and difficulty='EXEX';
-update songdata set notecount=389 where songid=154 and difficulty='E';
-update songdata set notecount=479 where songid=154 and difficulty='N';
-update songdata set notecount=529 where songid=154 and difficulty='H';
-update songdata set notecount=682 where songid=154 and difficulty='EX';
-update songdata set notecount=758 where songid=154 and difficulty='EXEX';
-
-update songdata set notecount=282 where songid=155 and difficulty='E';
-update songdata set notecount=366 where songid=155 and difficulty='N';
-update songdata set notecount=495 where songid=155 and difficulty='H';
-update songdata set notecount=593 where songid=155 and difficulty='EX';
-
-update songdata set notecount=332 where songid=156 and difficulty='E';
-update songdata set notecount=421 where songid=156 and difficulty='N';
-update songdata set notecount=535 where songid=156 and difficulty='H';
-update songdata set notecount=808 where songid=156 and difficulty='EX';
-
-update songdata set notecount=409 where songid=157 and difficulty='N';
-update songdata set notecount=495 where songid=157 and difficulty='H';
-update songdata set notecount=536 where songid=157 and difficulty='EX';
-update songdata set notecount=545 where songid=157 and difficulty='EXEX';
-
-update songdata set notecount=313 where songid=158 and difficulty='E';
-update songdata set notecount=534 where songid=158 and difficulty='N';
-update songdata set notecount=827 where songid=158 and difficulty='H';
-update songdata set notecount=893 where songid=158 and difficulty='EX';
-
-update songdata set notecount=196 where songid=159 and difficulty='E';
-update songdata set notecount=242 where songid=159 and difficulty='N';
-update songdata set notecount=276 where songid=159 and difficulty='H';
-update songdata set notecount=282 where songid=159 and difficulty='EX';
-update songdata set notecount=282 where songid=159 and difficulty='EXEX';
-
-update songdata set notecount=224 where songid=160 and difficulty='E';
-update songdata set notecount=297 where songid=160 and difficulty='N';
-update songdata set notecount=388 where songid=160 and difficulty='H';
-update songdata set notecount=415 where songid=160 and difficulty='EX';
-update songdata set notecount=417 where songid=160 and difficulty='EXEX';
-
-update songdata set notecount=449 where songid=161 and difficulty='N';
-update songdata set notecount=537 where songid=161 and difficulty='H';
-update songdata set notecount=644 where songid=161 and difficulty='EX';
-update songdata set notecount=702 where songid=161 and difficulty='EXEX';
-
-update songdata set notecount=344 where songid=162 and difficulty='E';
-update songdata set notecount=434 where songid=162 and difficulty='N';
-update songdata set notecount=482 where songid=162 and difficulty='H';
-update songdata set notecount=486 where songid=162 and difficulty='EX';
-
-update songdata set notecount=310 where songid=163 and difficulty='N';
-update songdata set notecount=410 where songid=163 and difficulty='H';
-update songdata set notecount=453 where songid=163 and difficulty='EX';
-
-update songdata set notecount=337 where songid=164 and difficulty='E';
-update songdata set notecount=414 where songid=164 and difficulty='N';
-update songdata set notecount=495 where songid=164 and difficulty='H';
-update songdata set notecount=525 where songid=164 and difficulty='EX';
-update songdata set notecount=525 where songid=164 and difficulty='EXEX';
-
diff --git a/updateNoteCounts2.sql b/updateNoteCounts2.sql
new file mode 100644
index 0000000..2823c1a
--- /dev/null
+++ b/updateNoteCounts2.sql
@@ -0,0 +1,50 @@
+insert into songdata(songid,difficulty,rating) values(167,'N',5.5);
+insert into songdata(songid,difficulty,rating) values(167,'H',6);
+insert into songdata(songid,difficulty,rating) values(167,'EX',8);
+insert into songdata(songid,difficulty,rating) values(167,'EXEX',9);
+insert into songdata(songid,difficulty,rating) values(168,'E',3.5);
+insert into songdata(songid,difficulty,rating) values(168,'N',5);
+insert into songdata(songid,difficulty,rating) values(168,'H',6);
+insert into songdata(songid,difficulty,rating) values(168,'EX',8);
+insert into songdata(songid,difficulty,rating) values(168,'EXEX',8.5);
+insert into songdata(songid,difficulty,rating) values(169,'E',2);
+insert into songdata(songid,difficulty,rating) values(169,'N',4);
+insert into songdata(songid,difficulty,rating) values(169,'H',5);
+insert into songdata(songid,difficulty,rating) values(169,'EX',7);
+insert into songdata(songid,difficulty,rating) values(169,'EXEX',7.5);
+insert into songdata(songid,difficulty,rating) values(170,'E',3);
+insert into songdata(songid,difficulty,rating) values(170,'N',5.5);
+insert into songdata(songid,difficulty,rating) values(170,'H',7.5);
+insert into songdata(songid,difficulty,rating) values(170,'EX',9);
+insert into songdata(songid,difficulty,rating) values(171,'E',3.5);
+insert into songdata(songid,difficulty,rating) values(171,'N',4.5);
+insert into songdata(songid,difficulty,rating) values(171,'H',6.5);
+insert into songdata(songid,difficulty,rating) values(171,'EX',8);
+insert into songdata(songid,difficulty,rating) values(172,'N',5);
+insert into songdata(songid,difficulty,rating) values(172,'H',6.5);
+insert into songdata(songid,difficulty,rating) values(172,'EX',8);
+insert into songdata(songid,difficulty,rating) values(172,'EXEX',8.5);
+insert into songdata(songid,difficulty,rating) values(173,'E',2);
+insert into songdata(songid,difficulty,rating) values(173,'H',5.5);
+insert into songdata(songid,difficulty,rating) values(173,'EX',6.5);
+insert into songdata(songid,difficulty,rating) values(174,'N',5);
+insert into songdata(songid,difficulty,rating) values(174,'H',7);
+insert into songdata(songid,difficulty,rating) values(174,'EX',9.5);
+insert into songdata(songid,difficulty,rating) values(174,'EXEX',9.5);
+insert into songdata(songid,difficulty,rating) values(175,'E',3.5);
+insert into songdata(songid,difficulty,rating) values(175,'N',4.5);
+insert into songdata(songid,difficulty,rating) values(175,'H',6);
+insert into songdata(songid,difficulty,rating) values(175,'EX',8);
+insert into songdata(songid,difficulty,rating) values(175,'EXEX',8);
+insert into songdata(songid,difficulty,rating) values(176,'E', );
+insert into songdata(songid,difficulty,rating) values(176,'N',4.5);
+insert into songdata(songid,difficulty,rating) values(176,'H',5.5);
+insert into songdata(songid,difficulty,rating) values(176,'EX',8);
+insert into songdata(songid,difficulty,rating) values(177,'N',5.5);
+insert into songdata(songid,difficulty,rating) values(177,'H',6.5);
+insert into songdata(songid,difficulty,rating) values(177,'EX',8);
+insert into songdata(songid,difficulty,rating) values(177,'EXEX',9.5);
+insert into songdata(songid,difficulty,rating) values(178,'E',2.5);
+insert into songdata(songid,difficulty,rating) values(178,'N',4);
+insert into songdata(songid,difficulty,rating) values(178,'H',5);
+insert into songdata(songid,difficulty,rating) values(178,'EX',7.5);"
\ No newline at end of file
diff --git a/updateNoteCounts3.sql b/updateNoteCounts3.sql
new file mode 100644
index 0000000..2650a3e
--- /dev/null
+++ b/updateNoteCounts3.sql
@@ -0,0 +1,8 @@
+insert into songdata(songid,difficulty,rating) values(165,'E',2);
+insert into songdata(songid,difficulty,rating) values(165,'N',4.5);
+insert into songdata(songid,difficulty,rating) values(165,'H',7.5);
+insert into songdata(songid,difficulty,rating) values(165,'EX',9.5);
+insert into songdata(songid,difficulty,rating) values(166,'E',2);
+insert into songdata(songid,difficulty,rating) values(166,'N',5);
+insert into songdata(songid,difficulty,rating) values(166,'H',7);
+insert into songdata(songid,difficulty,rating) values(166,'EX',8.5);
\ No newline at end of file