-
Notifications
You must be signed in to change notification settings - Fork 0
/
query.sql
547 lines (521 loc) · 54.6 KB
/
query.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
PRAGMA foreign_keys = off;
BEGIN TRANSACTION;
-- 表:allsongs
DROP TABLE IF EXISTS allsongs;
CREATE TABLE allsongs(
songname TEXT,
songId TEXT,
PST,
PRS,
FTR,
BYD,
ETR
);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Last | Eternity', 'lasteternity', '-', '-', '-', 9.7, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Fracture Ray', 'fractureray', 6.0, 9.5, 11.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Grievous Lady', 'grievouslady', 6.5, 9.3, 11.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Abstruse Dilemma', 'abstrusedilemma', 5.0, 8.9, 11.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Aegleseeker', 'aegleseeker', 5.5, 9.1, 11.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('SAIKYO STRONGER', 'saikyostronger', 5.5, 9.4, 11.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('#1f1e33', 'ifi', 5.5, 9.2, 10.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('BUCHiGiRE Berserker', 'buchigireberserker', 5.0, 8.6, 10.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('CHAOS', 'chaos', 5.5, 7.5, 10.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dantalion', 'dantalion', 5.0, 8.2, 10.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('LAMIA', 'lamia', 5.0, 8.5, 10.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Misdeed -la bonte de Dieu et l''origine du mal-', 'gou', 5.5, 8.5, 10.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('TEmPTaTiON', 'temptation', 5.0, 8.2, 10.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Divine Light of Myriad', 'divinelight', 4.5, 7.8, 10.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Ringed Genesis', 'ringedgenesis', 5.5, 8.4, 10.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Spider''s Thread', 'spidersthread', 4.5, 7.8, 10.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Testify', 'testify', 7.8, 9.4, 10.8, 12.0, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('World Vanquisher', 'worldvanquisher', 2.5, 5.5, 10.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('w4', 'omegafour', 3.5, 7.8, 10.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('II', 'ii', 5.0, 8.9, 10.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('AMAZING MIGHTYYYY!!!!', 'amazingmightyyyy', 4.5, 7.8, 10.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Axium Crisis', 'axiumcrisis', 5.5, 8.5, 10.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Cyaegha', 'cyaegha', 5.5, 8.4, 10.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('GENOCIDER', 'genocider', 4.5, 8.9, 10.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Halcyon', 'halcyon', 5.5, 8.2, 10.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('PRIMITIVE LIGHTS', 'primitivelights', 5.5, 8.8, 10.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('REKKA RESONANCE', 'rekkaresonance', 5.0, 8.9, 10.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Singularity', 'singularity', 4.5, 7.8, 10.7, 10.4, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Stasis', 'stasis', 4.5, 7.0, 10.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Tempestissimo', 'tempestissimo', 7, 9.5, 10.7, 11.5, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('ouroboros -twin stroke of the end-', 'ouroboros', 4.5, 7.5, 10.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('AttraqtiA', 'attraqtia', 4.0, 8.3, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('GLORY : ROAD', 'gloryroad', 4.5, 7.0, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Live Fast Die Young', 'livefastdieyoung', 4.5, 8.5, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Manic Jeer', 'manicjeer', 4.0, 7.8, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('NULL APOPHENIA', 'nullapophenia', 4.5, 8.8, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Overwhelm', 'overwhelm', 5.0, 8.5, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Seclusion', 'seclusion', 4.0, 7.5, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Sheriruth (Laur Remix)', 'sheriruthrmx', 4.0, 7.8, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('UNKNOWN LEVELS', 'unknownlevels', 4.0, 8.1, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('corps-sans-organes', 'corpssansorganes', 4.5, 7.8, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('cyanine', 'cyanine', 4.0, 7.8, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Arcana Eden', 'arcanaeden', 5.5, 8.7, 10.5, 11.4, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Aurgelmir', 'aurgelmir', 4.5, 8.5, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Good bye Merry-Go-Round.', 'goodbyemerry', 4.5, 7.5, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Last Celebration', 'lastcelebration', 3.5, 6.5, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lightning Screw', 'lightningscrew', 4.5, 7.8, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('To the Milky Way', 'tothemilkyway', 5.0, 8.9, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Chronicle', 'chronicle', 5.0, 8.9, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Climax', 'climax', 4.5, 7.8, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Crimson Throne', 'crimsonthrone', 4.0, 8.0, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Felis', 'felis', 4.0, 7.5, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('GIMME DA BLOOD', 'gimmedablood', 3.5, 7.5, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Garakuta Doll Play', 'garakuta', 4.5, 6.5, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Ikazuchi', 'ikazuchi', 3.5, 7.5, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Kissing Lucifer', 'kissinglucifer', 4.5, 7.8, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lucid Traveler', 'lucidtraveler', 4.5, 8.9, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('PUPA', 'pupa', 4.0, 7.8, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Rise of the World', 'riseoftheworld', 4.0, 8.1, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Tiferet', 'tiferet', 4.5, 7.8, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Valhalla:0', 'valhallazero', 4.5, 7.5, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('[X]', 'infinity', 4.5, 7.8, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('guardina', 'guardina', 4.0, 8.0, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('99 Glooms', 'nnglooms', 4.0, 7.8, 10.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Ether Strike', 'etherstrike', 5.5, 8.3, 10.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Hiiro Gekka Kyoushou no Zetsu (nayuta 2017 ver.)', 'hiirogekka', 3.5, 6.5, 10.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('IZANA', 'izana', 5.0, 8.3, 10.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Metallic Punisher', 'metallicpunisher', 3.0, 7.0, 10.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Nirv lucE', 'nirvluce', 2.5, 7.0, 10.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Pentiment', 'pentiment', 7.0, 8.7, 10.3, 11.4, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('To: Alice Liddell', 'toaliceliddell', 4.0, 7.8, 10.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Viyella''s Tears', 'viyellastears', 4.0, 7.8, 10.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Capella', 'capella', 4.5, 7.8, 10.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('G e n g a o z o', 'gengaozo', 4.0, 8.1, 10.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Loschen', 'loschen', 3.5, 7.0, 10.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Magnolia', 'magnolia', 4.5, 7.8, 10.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Malicious Mischance', 'maliciousmischance', 4.0, 7.8, 10.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Medusa', 'medusa', 4.5, 7.0, 10.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('NEO WINGS', 'neowings', 4.0, 7.5, 10.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Redolent Shape', 'redolentshape', 4.5, 7.5, 10.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('conflict', 'conflict', 4.5, 7.5, 10.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('aterlbus', 'aterlbus', 4.0, 7.5, 10.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('PRAGMATISM', 'pragmatism', 4.5, 8.6, 10.1, 11.0, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Scarlet Lance', 'scarletlance', 4.0, 7.0, 10.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Sheriruth', 'sheriruth', 5.5, 7.5, 10.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Trrricksters!!', 'trrricksters', 4.5, 7.5, 10.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Alexandrite', 'alexandrite', 4.5, 7.5, 10.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Bamboo', 'take', 3.0, 6.5, 10.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Free Myself', 'freemyself', 4.5, 7.5, 10.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('HIVEMIND', 'hivemind', 4.0, 8.6, 10.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Mirzam', 'mirzam', 4.0, 7.5, 10.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Modelista', 'modelista', 3.5, 7.5, 10.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Oshama Scramble!', 'oshamascramble', 3.5, 6.5, 10.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Vicious Heroism', 'viciousheroism', 4.0, 7.5, 10.0, 11.1, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Xanatos', 'xanatos', 4.0, 7.5, 10.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('trappola bewitching', 'trappola', 3.0, 6.0, 10.0, 10.5, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('7thSense', 'seventhsense', 3.0, 7.8, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Antagonism', 'antagonism', 4.5, 7.8, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Arcahv', 'arcahv', 4.5, 7.8, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Astra walkthrough', 'astrawalkthrough', 4.5, 7.8, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Devillic Sphere', 'devillicsphere', 4.0, 7.8, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Genesis', 'genesis', 2, 5.5, 8.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Genesis ', 'genesischunithm', 4.0, 7.0, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Heavensdoor', 'heavensdoor', 4.5, 7.5, 9.9, 10.8, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('INTERNET YAMERO', 'internetyamero', 4.5, 7.8, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Infinite Strife', 'infinitestrife', 4.0, 7.5, 9.9, 10.9, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('MAXRAGE', 'maxrage', 3.5, 6.5, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('New York Back Raise', 'newyorkbackraise', 4.5, 7.0, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Nhelv', 'nhelv', 3.0, 6.5, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('SOUNDWiTCH', 'soundwitch', 3.5, 6.5, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Summer Fireworks of Love', 'summerfireworks', 3.0, 6.5, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('The Survivor (Game Edit)', 'thesurvivor', 3.5, 6.5, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Trap Crow', 'trapcrow', 4.5, 7.8, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('World Ender', 'worldender', 4.0, 7.8, 9.9, 11.2, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Ai Drew', 'aidrew', 3.5, 6.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Ascent', 'ascent', 3.0, 6.0, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Black Territory', 'blackterritory', 3.0, 7.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Callima Karma', 'callimakarma', 3.5, 7.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Corruption', 'corruption', 3.0, 6.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('DX Choseinou Full Metal Shojo', 'dxfullmetal', 3.0, 6.0, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Defection', 'defection', 3.5, 6.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Einherjar Joker', 'einherjar', 4.0, 7.0, 9.8, 10.9, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('FLUFFY FLASH', 'fluffyflash', 3.5, 6.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Far Away Light', 'farawaylight', 4.5, 7.8, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Galaxy Friends', 'galaxyfriends', 3.5, 6.0, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Got hive of Ra', 'gothiveofra', 3.0, 6.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Haze of Autumn', 'akinokagerou', 3.5, 7.0, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Heavenly caress', 'heavenlycaress', 3.5, 7.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Hybris (The one who shattered)', 'hybris', 4.5, 7.8, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Linear Accelerator', 'linearaccelerator', 2.5, 6.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lost Desire', 'lostdesire', 4.0, 7.8, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Macrocosmic Modulation', 'macromod', 4.0, 7.8, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Memory Forest', 'memoryforest', 3.5, 6.0, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Protoflicker', 'protoflicker', 3.0, 7.0, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Scarlet Cage', 'scarletcage', 4.0, 7.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('THE ULTIMACY', 'theultimacy', 3.0, 7.0, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('World Fragments III(radio edit)', 'worldfragments', 3.5, 7.0, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Xeraphinite', 'xeraphinite', 3.0, 7.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('init()', 'init', 4.0, 7.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Altale', 'altale', 2.5, 5.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('AlterAle', 'alterale', 3.0, 6.0, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('BADTEK', 'badtek', 4.0, 7.0, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('BATTLE NO.1', 'battlenoone', 3.5, 6.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('BLRINK', 'blrink', 3.5, 7.8, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Black Lotus', 'blacklotus', 3.0, 6.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dazzle hop', 'dazzlehop', 3.5, 6.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dreadnought', 'dreadnought', 4.0, 7.0, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Filament', 'filament', 4.5, 7.8, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Heart Jackin''', 'heartjackin', 3.0, 5.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Let''s Rock (Arcaea mix)', 'letsrock', 3.0, 7.0, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lethaeus', 'lethaeus', 3.5, 6.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lost in the Abyss', 'lostintheabyss', 3.5, 6.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Mazy Metroplex', 'mazymetroplex', 3.0, 7.8, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Monochrome Princess', 'monochromeprincess', 4.5, 7.8, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('RGB', 'rgb', 4.0, 7.8, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('SACRIFICE feat. ayame', 'sacrifice', 3.0, 7.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('SUPERNOVA', 'supernova', 3.0, 6.0, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Sulfur', 'sulfur', 4.0, 6.0, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('The Message', 'themessage', 3.0, 6.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Ultimate taste', 'ultimatetaste', 3.5, 6.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Vandalism', 'vandalism', 3.5, 7.0, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('amygdata', 'amygdata', 4.0, 7.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('goldenslaughterer', 'goldenslaughterer', 4.0, 6.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('neo kosmo', 'neokosmo', 4.0, 7.8, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('u', 'mu', 3.5, 7.5, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('A Wandering Melody of Love', 'melodyoflove', 3.5, 7.5, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Astral tale', 'astraltale', 4.5, 7.0, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Avant Raze', 'avantraze', 3.5, 6.5, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('ENERGY SYNERGY MATRIX', 'energysynergymatrix', 3.5, 7.0, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Fallensquare', 'fallensquare', 3.0, 7.5, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('IMPACT', 'impact', 3.5, 7.8, 9.6, 10.4, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lazy Addiction', 'lazyaddiction', 2.5, 6.0, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Loveless Dress', 'lovelessdress', 3.5, 6.5, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('LunarOrbit -believe in the Espebranch road-', 'espebranch', 3.5, 6.0, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Purple Verse', 'purpleverse', 4.0, 7.5, 9.6, 10.6, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Quon', 'quonwacca', 2.5, 6.0, 8.7, 10.2, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Quon', 'quon', 4.0, 6.5, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Vindication', 'vindication', 4.0, 6.5, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('carmine:scythe', 'carminescythe', 4.0, 7.8, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Cybernecia Catharsis', 'cyberneciacatharsis', 4.0, 7.0, 9.5, 9.8, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('DRG', 'drg', 3.5, 7.0, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('DataErr0r', 'dataerror', 3.0, 7.0, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Evening in Scarlet', 'eveninginscarlet', 4.0, 7.0, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('GIMMICK', 'gimmick', 2.5, 6.5, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Illegal Paradise', 'darakunosono', 2.0, 7.0, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('MAHOROBA', 'mahoroba', 3.0, 6.5, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('NULCTRL', 'nulctrl', 3.0, 7.5, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('OMAKENO Stroke', 'omakeno', 3.0, 6.5, 9.5, 10.2, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('STAGER (ALL STAGE CLEAR)', 'stager', 3.0, 6.5, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Specta', 'specta', 3.5, 6.5, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('odysseia', 'odysseia', 4.0, 7.8, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('AI[UE]OON', 'aiueoon', 3.5, 6.5, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Be There', 'bethere', 4.0, 7.5, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('CROSS✝OVER', 'crossover', 4.0, 6.5, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('CROSS✝SOUL', 'crosssoul', 4.0, 7.0, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Crystal Gravity', 'crystalgravity', 3.5, 6.5, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dreamin'' Attraction!!', 'dreaminattraction', 4.5, 7.0, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Equilibrium', 'equilibrium', 3.5, 6.5, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Final Step!', 'finalstep', 3.5, 6.5, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Head BONK ache', 'headbonkache', 4.0, 7.0, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Impure Bird', 'impurebird', 2.0, 5.5, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lapis', 'lapis', 2.0, 6.0, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Let you DIVE! (nitro rmx)', 'letyoudivermx', 3.0, 6.5, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Party Vinyl', 'partyvinyl', 4.0, 7.8, 9.4, 10.1, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Raven''s Pride', 'ravenspride', 3.0, 7.0, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Red and Blue', 'redandblue', 4.0, 7.8, 9.4, 10.0, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Teriqma', 'teriqma', 3.0, 6.5, 9.4, 9.7, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('VECTOR', 'vector', 3.0, 7.0, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Yosakura Fubuki', 'yozakurafubuki', 4.5, 7.0, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Your voice so... feat. Such', 'yourvoiceso', 3.5, 6.5, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('lastendconductor', 'lastendconductor', 3.5, 7.5, 9.4, 10.1, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('with U', 'withu', 2.5, 6.5, 9.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Auxesia', 'auxesia', 3.5, 6.5, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Blaster', 'blaster', 4.0, 7.0, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Blocked Library', 'blockedlibrary', 3.5, 6.5, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Can I Friend You on Bassbook? Lol', 'bassline', 3.0, 6.5, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('False Embellishment', 'kyogenkigo', 3.5, 6.5, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Feels So Right feat. Renko', 'feelssoright', 3.5, 6.5, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('GOODTEK (Arcaea Edit)', 'goodtek', 4.0, 6.5, 9.3, 9.8, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Glow', 'glow', 4.0, 7.5, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Heart', 'kokoro', 1.0, 5.0, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Ignotus', 'ignotus', 3.5, 6.5, 9.3, 9.9, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lost Emotion feat. nomico', 'lostemotion', 3.5, 7.0, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('MANTIS (Arcaea Ultra-Bloodrush VIP)', 'mantis', 3.0, 7.0, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Oracle', 'oracle', 3.0, 5.5, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('PICO-Pico-Translation!', 'picopicotranslation', 2.0, 6.0, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Sakura Fubuki', 'sakurafubuki', 3.5, 6.5, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Syro', 'syro', 3.5, 6.5, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Alice a la mode', 'alicealamode', 2.5, 6.5, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Anokumene', 'anokumene', 2.5, 6.5, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dancin'' on a Cat''s Paw', 'nekonote', 3.0, 6.0, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Libertas', 'libertas', 3.5, 5.5, 9.2, 10.5, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lost Civilization', 'lostcivilization', 4.0, 7.0, 9.2, 9.8, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Phantasia', 'phantasia', 4.0, 5.5, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Redraw the Colorless World', 'mukishitsu', 4.0, 6.5, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Rugie', 'rugie', 3.0, 6.0, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Strongholds', 'strongholds', 2.5, 5.0, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Used to be', 'usedtobe', 4.0, 6.5, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('cocoro*cosmetic', 'cocorocosmetic', 3.0, 7.0, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Alice''s Suitcase', 'alicessuitcase', 3.5, 6.0, 9.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Blue Rose', 'bluerose', 2.0, 6.0, 9.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Essence of Twilight', 'essenceoftwilight', 4.5, 7.0, 9.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Faint Light (Arcaea Edit)', 'faintlight', 3.0, 6.0, 9.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Iconoclast', 'iconoclast', 4.0, 7.0, 9.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('La''qryma of the Wasteland', 'laqryma', 3.5, 6.5, 9.1, 9.9, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Life is PIANO', 'lifeispiano', 3.5, 5.5, 9.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Small Cloud Sugar Candy', 'smallcloud', 3.0, 6.5, 9.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('dropdead', 'dropdead', 1.5, 9.5, 9.1, 10.5, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('qualia -ideaesthesia-', 'qualia', 4.5, 7.0, 9.1, 9.7, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Empire of Winter', 'empireofwinter', 3.5, 6.5, 9.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Flyburg and Endroll', 'flyburg', 3.0, 6.0, 9.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Galactic Love', 'galacticlove', 3.0, 6.5, 9.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Jump', 'jump', 4.0, 6.0, 9.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Kanagawa Cyber Culvert', 'kanagawa', 1.0, 5.5, 9.0, 9.8, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Last', 'last', 4.0, 7.0, 9.0, 9.6, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('ReviXy', 'revixy', 3.0, 7.0, 9.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Turbocharger', 'turbocharger', 2.5, 6.0, 9.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Chronostasis', 'chronostasis', 3.5, 7.5, 8.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Evoltex (poppi''n mix)', 'evoltex', 2.0, 7.0, 8.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Give Me a Nightmare', 'givemeanightmare', 3.5, 5.5, 8.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lawless Point', 'lawlesspoint', 3.0, 6.0, 9.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('MERLIN', 'merlin', 3.0, 5.5, 8.9, 9.4, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Maze No.9', 'mazenine', 3.0, 3.5, 8.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('memoryfactory.lzh', 'memoryfactory', 2.5, 5.5, 8.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Antithese', 'antithese', 2.0, 5.0, 8.8, 9.5, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('CYCLES', 'cycles', 2.0, 5.0, 8.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Coastal Highway', 'coastalhighway', 3.0, 6.0, 9.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Cosmo Pop Funclub', 'cosmopop', 2.5, 6.0, 8.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Flashback', 'flashback', 2.0, 5.0, 8.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Journey', 'journey', 3.0, 6.0, 9.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Particle Arts', 'particlearts', 3.5, 6.0, 8.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Solitary Dream', 'solitarydream', 4.0, 7.0, 8.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Surrender', 'surrender', 3.0, 6.5, 8.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Vivid Theory', 'vividtheory', 2.0, 5.0, 8.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('next to you', 'nexttoyou', 4.5, 7.0, 8.8, 9.6, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Beside You', 'besideyou', 2.5, 6.0, 8.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Call My Name feat. Yukacco', 'callmyname', 3.5, 6.0, 8.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lights of Muse', 'lightsofmuse', 2.5, 5.5, 8.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Paper Witch', 'paperwitch', 2.0, 5.0, 8.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Senkyou', 'senkyou', 3.0, 5.5, 8.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('WAIT FOR DAWN', 'waitfordawn', 2.0, 7.8, 8.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('FREEF4LL', 'freefall', 4.0, 7.0, 8.6, 9.8, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Gekka (Short Version)', 'gekka', 4.0, 6.5, 8.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Grimheart', 'grimheart', 2.5, 5.0, 8.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Silent Rush', 'silentrush', 2.5, 5.0, 8.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Babaroque', 'babaroque', 3.0, 6.5, 8.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Chelsea', 'chelsea', 3.0, 6.0, 8.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Cosmica', 'cosmica', 2.5, 5.0, 8.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('DDD', 'ddd', 2.5, 6.5, 8.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dandelion', 'dandelion', 2.5, 6.0, 8.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Harutopia ~Utopia of Spring~', 'harutopia', 1.0, 4.5, 8.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Reinvent', 'reinvent', 2.5, 6.5, 8.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('cry of viyella', 'viyella', 3.5, 6.0, 8.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('syuten', 'syuten', 2.0, 5.0, 8.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Eccentric Tale', 'eccentrictale', 2.0, 5.5, 8.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('INTERNET OVERDOSE', 'internetoverdose', 3.0, 6.5, 8.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lumia', 'lumia', 2.5, 5.5, 8.4, 9.5, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Moonheart', 'moonheart', 2.5, 5.5, 8.4, 9.7, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Purgatorium', 'purgatorium', 2.5, 6.0, 8.4, 9.6, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('REconstruction', 'reconstruction', 2.5, 6.0, 8.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Rabbit In The Black Room', 'rabbitintheblackroom', 2.5, 5.5, 8.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Snow White', 'snowwhite', 2.5, 5.0, 8.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Tsuki ni Murakumo Hana ni Kaze', 'tsukinimurakumo', 3.0, 6.0, 8.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('enchanted love', 'enchantedlove', 2.0, 4.5, 8.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Avril -Flicka i krans-', 'avril', 3.0, 6.0, 8.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Altair (feat. *spiLa*)', 'altair', 2.5, 6.0, 8.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('April showers', 'aprilshowers', 2.0, 5.5, 8.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Bookmaker (2D Version)', 'bookmaker', 4.5, 6.5, 8.3, 10.0, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dot to Dot feat. shully', 'dottodot', 3.0, 6.0, 8.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Oblivia', 'oblivia', 3.5, 5.0, 8.3, 9.7, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Shades of Light in a Transcendent Realm', 'shadesoflight', 3.0, 6.0, 8.3, 9.0, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Tie me down gently', 'tiemedowngently', 3.0, 5.5, 8.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('san skia', 'sanskia', 3.5, 6.0, 8.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('1FV', 'onefr', 2.5, 6.5, 8.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Hall of Mirrors', 'hallofmirrors', 3.0, 5.5, 8.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lucifer', 'lucifer', 3.5, 5.5, 8.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('One Last Drive', 'onelastdrive', 2.5, 5.5, 8.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('blue comet', 'bluecomet', 3.5, 5.0, 8.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Bullet Waiting for Me (James Landino remix)', 'bulletwaiting', 2.5, 4.5, 8.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dialnote', 'dialnote', 3.0, 6.0, 8.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Diode', 'diode', 2.5, 5.5, 8.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Hikari', 'hikari', 2.5, 6.0, 8.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('I''ve heard it said', 'hearditsaid', 3.5, 6.0, 8.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Prism', 'prism', 2.0, 5.0, 8.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Relentless', 'relentless', 4.5, 6.5, 8.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('world.execute(me)', 'worldexecuteme', 3.5, 5.0, 8.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Brand new world', 'brandnewworld', 2.0, 4.0, 7.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Clotho and the stargazer', 'clotho', 2.0, 5.0, 7.8, '', 8.8);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dement ~after legend~', 'dement', 3.5, 6.0, 7.8, 9.9, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dream goes on', 'dreamgoeson', 1.5, 5.0, 7.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('First Snow', 'firstsnow', 2.5, 4.5, 7.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Infinity Heaven', 'infinityheaven', 1.5, 5.5, 7.8, 9.6, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Moonlight of Sand Castle', 'moonlightofsandcastle', 1.5, 5.0, 7.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Paradise', 'paradise', 1.0, 4.0, 7.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Rise', 'rise', 2.5, 4.0, 7.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Romance Wars', 'romancewars', 1.0, 4.0, 7.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Suomi', 'suomi', 2.0, 5.0, 7.8, '', 8.9);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('inkar-usi', 'inkarusi', 2.0, 4.0, 7.8, 9.4, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Blossoms', 'blossoms', 1.0, 4.0, 7.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Fairytale', 'fairytale', 1.0, 3.5, 7.0, 9.5, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Sayonara Hatsukoi', 'sayonarahatsukoi', 1.5, 4.5, 7.0, '', 8.5);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Vexaria', 'vexaria', 2.5, 5.0, 7.0, 9.0, '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Kanjou no Matenrou ~ Arr.Demetori', 'matenrou', 3.5, 6.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('To the Furthest Dream', 'tothefurthestdream', 4.5, 8.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('B.B.K.K.B.K.K.', 'bbkkbkk', 4.5, 7, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Amekagura', 'amekagura', 4, 7.5, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Dynitikos', 'dynitikos', 4, 7.5, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Remind the Souls (Short Version)', 'remindthesouls', 3.5, 7.0, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Primeval Texture', 'primevaltexture', 3, 7.5, 9.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Technicolour', 'technicolour', 3.5, 7, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Logos', 'logos', 4, 7.5, 10.1, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Ego Eimi', 'egoeimi', 5.5, 8.6, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Arghena', 'arghena', 7.5, 9.4, 11.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('TeraVolt', 'teravolt', 5.0, 8.9, 10.9,'', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('FANTA5Y', 'fantasy', 3.0, 7.0, 9.4,'', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Nameless Passion', 'namelesspassion', 3.0, 7.0, 9.9,'', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Transient Space', 'transientspace', 2.5, 7.0, 9.5,'', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Stratoliner', 'stratoliner', 3.5, 6.5, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('XTREME', 'xtreme', 4.5, 7.8, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Ouverture', 'ouverture', 2.5, 7.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('eden', 'edenwacca', 4.5, 8.2, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Meta-Mysteria', 'metamysteria', 5.0, 7.8, 10.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Alone & Lorn', 'aloneandlorn', 3.0, 6.5, 9.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Wish Upon a Snow', 'wishuponasnow', 4.5, 7.5, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Kanbu de Tomatte Sugu Tokeru', 'overdrive', 4.0, 7.5, 10.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('felys final remix', 'felys', 3.0, 6.5, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('On And On!! feat. Jenga', 'onandon', 3.0, 7.0, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('LIVHT MY WAY', 'lightmyway', 4.5, 7.5, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Hotarubi no Yuki', 'hotarubinoyuki', 3.0, 7.0, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Luna Rossa', 'lunarossa', 3, 7, 9.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('The Formula', 'theformula', 3, 6, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Jingle', 'jingle', 2.5, 5.5, 7.8, '', 9.5);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Innocence', 'innocence', 3.0, 6.5, 8.5, '', 9.7);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('IONOSTREAM', 'ionostream', 3.5, 6, 8.7, '', 9.7);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Aleph-0', 'alephzero', 5.5, 8.8, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Masquerade Legion', 'masqueradelegion', 3.5, 6.5, 10, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('KYOREN ROMANCE', 'kyorenromance', 4.0, 7.8, 10.7, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Qovat', 'qovat', 4.5, 8.2, 10.6, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('HELLOHELL', 'hellohell',2.5, 5.0, 7.5, '', 9.4);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('O.', 'ichirin', 2.5, 6.5, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Awaken In Ruins', 'awakeninruins', 3.5, 7.5, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('MORNINGLOOM', 'morningloom', 3.0, 6.5, 8.8, '', 9.8);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Lethal Voltage', 'lethalvoltage', 4.5, 7.8, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('MIRINAE', 'mirinae', 4.5, 8.3, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('ultradiaxon-N3', 'ultradiaxon', 4.5, 8.5, 10.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Leave All Behind', 'leaveallbehind', 2.0, 5.5, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Distorted Fate', 'distortedfate', 4.5, 7.8, 9.6, '', 10.9);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Floating World', 'floatingworld', 3.0, 7.0, 9.3, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Chromafill', 'chromafill', 4.0, 7.0, 10.0, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Desive', 'desive', 5, 8, 9.9, '', 10.8);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Hidden Rainbows of Epicurus', 'epicurus', 2.5, 5.5, 7.5, '', 8.8);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Twilight Concerto', 'tasogare', 4.5, 7.8, 9.5, '', 10.4);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Old School Salvage', 'oldschoolsalvage', 4.0, 7.8, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Beautiful Dreamer', 'beautifuldreamer', 4.0, 7.8, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Back to Basics', 'backtobasics', 5.0, 8.7, 10.5, '', '');
--未完成PST PRS定数
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('STARGATE EXTREME', 'stargateextreme', 4, 6, 9.3, '', 10.0);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Sign of "10.5km"', 'signof', 3, 6, 9.2, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('10pt8ion', 'temptationgc', 4, 7.8, 9.7, '', 10.4);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Black MInD', 'blackmind', 5, 8, 10.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('HYPER VISION', 'hypervision', 4, 7, 9.8, '', '');
--未完成PST PRS定数
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Distortion Human', 'distortionhuman', 3, 6, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('shrink', 'shrink', 3, 7, 9.8, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('In Vain', 'invain', 3.5, 6.5, 9.5, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Hypnotize', 'hypnotize', 3.5, 7.0, 8.9, '', 9.9);
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Ashen 6oundary', 'ashenboundary', 4.5, 7.8, 9.9, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('Judgement', 'judgement', 5.5, 8.6, 10.4, '', '');
INSERT INTO allsongs (songname, songId, PST, PRS, FTR, BYD, ETR) VALUES ('ALTER EGO', 'alterego', 6.5, 9.2, 10.5, '', 11.2);
COMMIT TRANSACTION;
PRAGMA foreign_keys = on;
DROP VIEW IF EXISTS PTT2;
CREATE VIEW PTT2 AS
SELECT
allsongs.songname,
allsongs.songId,
CASE
WHEN songDifficulty = 0 THEN "Past"
WHEN songDifficulty = 1 THEN "Present"
WHEN songDifficulty = 2 THEN "Future"
WHEN songDifficulty = 3 THEN "Beyond"
WHEN songDifficulty = 4 THEN "Eternal"
END AS Difficulty,
scores.score,
scores.perfectCount AS Perfect,
scores.shinyPerfectCount AS criticalPerfect,
scores.nearCount AS Far,
scores.missCount AS Lost,
CASE
WHEN songDifficulty = 0 THEN allsongs.PST
WHEN songDifficulty = 1 THEN allsongs.PRS
WHEN songDifficulty = 2 THEN allsongs.FTR
WHEN songDifficulty = 3 THEN allsongs.BYD
WHEN songDifficulty = 4 THEN allsongs.ETR
END AS Constant,
CASE
WHEN score >= 10000000 THEN
CASE
WHEN songDifficulty = 0 THEN ROUND((allsongs.PST + 2.0), 6)
WHEN songDifficulty = 1 THEN ROUND((allsongs.PRS + 2.0), 6)
WHEN songDifficulty = 2 THEN ROUND((allsongs.FTR + 2.0), 6)
WHEN songDifficulty = 3 THEN ROUND((allsongs.BYD + 2.0), 6)
WHEN songDifficulty = 4 THEN ROUND((allsongs.ETR + 2.0), 6)
END
WHEN score >= 9800000 AND score < 10000000 THEN
CASE
WHEN songDifficulty = 0 THEN ROUND((allsongs.PST + 1.0 + CAST((score - 9800000) AS REAL) / 200000), 6)
WHEN songDifficulty = 1 THEN ROUND((allsongs.PRS + 1.0 + CAST((score - 9800000) AS REAL) / 200000), 6)
WHEN songDifficulty = 2 THEN ROUND((allsongs.FTR + 1.0 + CAST((score - 9800000) AS REAL) / 200000), 6)
WHEN songDifficulty = 3 THEN ROUND((allsongs.BYD + 1.0 + CAST((score - 9800000) AS REAL) / 200000), 6)
WHEN songDifficulty = 4 THEN ROUND((allsongs.ETR + 1.0 + CAST((score - 9800000) AS REAL) / 200000), 6)
END
ELSE
CASE
WHEN songDifficulty = 0 THEN
CASE
WHEN allsongs.PST + CAST((score - 9500000) AS REAL) / 300000 < 0 THEN 0
ELSE ROUND((allsongs.PST + CAST((score - 9500000) AS REAL) / 300000), 6)
END
WHEN songDifficulty = 1 THEN
CASE
WHEN allsongs.PRS + CAST((score - 9500000) AS REAL) / 300000 < 0 THEN 0
ELSE ROUND((allsongs.PRS + CAST((score - 9500000) AS REAL) / 300000), 6)
END
WHEN songDifficulty = 2 THEN
CASE
WHEN allsongs.FTR + CAST((score - 9500000) AS REAL) / 300000 < 0 THEN 0
ELSE ROUND((allsongs.FTR + CAST((score - 9500000) AS REAL) / 300000), 6)
END
WHEN songDifficulty = 3 THEN
CASE
WHEN allsongs.BYD + CAST((score - 9500000) AS REAL) / 300000 < 0 THEN 0
ELSE ROUND((allsongs.BYD + CAST((score - 9500000) AS REAL) / 300000), 6)
END
WHEN songDifficulty = 4 THEN
CASE
WHEN allsongs.ETR + CAST((score - 9500000) AS REAL) / 300000 < 0 THEN 0
ELSE ROUND((allsongs.ETR + CAST((score - 9500000) AS REAL) / 300000), 6)
END
END
END AS singlePTT
FROM scores,allsongs
WHERE
/*(scores.songDifficulty = 2 OR scores.songDifficulty = 3)
AND*/
scores.songId = allsongs.songId
ORDER BY singlePTT DESC;
--SELECT * FROM PTT2;
--输出新表
DROP TABLE IF EXISTS PTT_DESC;
--创建目标表, 如果尚未存在
CREATE TABLE PTT_DESC(
songname TEXT,
songId TEXT,
Difficulty TEXT,
score INTEGER,
Perfect INTEGER,
criticalPerfect INTEGER,
Far INTEGER,
Lost INTEGER,
Constant REAL,
singlePTT REAL
);
--将视图查询结果插入到新表中
INSERT INTO PTT_DESC
SELECT * FROM PTT2;
SELECT * FROM PTT_DESC;
--COMMIT TRANSACTION