-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
79 lines (74 loc) · 1.88 KB
/
data.js
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
const letterDict = {
A: [21, 40],
B: [41, 60],
C: [61, 80],
D: [81, 100],
E: [101, 120],
F: [121, 140],
G: [141, 160],
H: [161, 180],
I: [181, 200],
J: [201, 220],
K: [221, 240],
L: [241, 260],
M: [261, 280],
N: [281, 300],
O: [301, 320],
P: [321, 340],
Q: [341, 360],
R: [361, 380],
S: [381, 400],
T: [401, 420],
U: [421, 440],
V: [441, 460],
W: [461, 480],
X: [481, 500],
};
const numDict = {
1: [21, 40],
2: [41, 60],
3: [61, 80],
4: [81, 100],
5: [101, 120],
6: [121, 140],
7: [141, 160],
8: [161, 180],
9: [181, 200],
10: [201, 220],
11: [221, 240],
12: [241, 260],
13: [261, 280],
14: [281, 300],
15: [301, 320],
16: [321, 340],
17: [341, 360],
18: [361, 380],
19: [381, 400],
20: [401, 420],
21: [421, 440],
22: [441, 460],
23: [461, 480],
24: [481, 500],
25: [501, 520],
26: [521, 540],
27: [541, 560],
28: [561, 580],
29: [581, 600],
30: [601, 620],
};
const legendDict = {
0: ['One of our developers is Canadian'],
1: ['Two of our developers are named Alex'],
2: ['One of our developers is a top 10 Lucio Ball player'],
3: ['All of our developers are seniors at DePaul University'],
4: ['One of our developers is ranked Grand Champion in Rocket League'],
5: ['One of our developers owns a first edition Charizard pokemon card'],
6: ['One of our developers has visited over 25 different countries'],
7: ['One of our developers is fluent in three different languages'],
8: ['All of our developers enjoy pho'],
9: ['All of our developers are depressed'],
10: ['One of our developers is really short'],
};
exports.legendDict = legendDict;
exports.letterDict = letterDict;
exports.numDict = numDict;