summaryrefslogtreecommitdiff
path: root/js/comp/map.js
blob: d84503192cc873e850d8e148030b8e2bd366944e (plain) (blame)
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
var map = function(){
  var map = {};
  var maps = {
    "0": "001-1",
    "1": "001-2",
    "2": "001-3",
    "3": "002-1",
    "4": "002-3",
    "5": "002-4",
    "6": "003-1",
    "7": "003-2",
    "8": "004-1",
    "9": "004-2",
    "10": "005-1",
    "11": "005-3",
    "12": "005-4",
    "13": "006-1",
    "14": "006-3",
    "15": "007-1",
    "16": "008-1",
    "17": "009-1",
    "18": "009-2",
    "19": "009-3",
    "20": "009-4",
    "21": "009-5",
    "22": "009-6",
    "23": "010-1",
    "24": "010-2",
    "25": "011-1",
    "26": "011-3",
    "27": "011-4",
    "28": "011-6",
    "29": "012-1",
    "30": "012-3",
    "31": "012-4",
    "32": "013-1",
    "33": "013-2",
    "34": "013-3",
    "35": "014-1",
    "36": "014-3",
    "37": "015-1",
    "38": "015-3",
    "39": "016-1",
    "40": "017-1",
    "41": "017-2",
    "42": "017-3",
    "43": "017-4",
    "44": "017-9",
    "45": "018-1",
    "46": "018-2",
    "47": "018-3",
    "48": "019-1",
    "49": "019-3",
    "50": "019-4",
    "51": "020-1",
    "52": "020-2",
    "53": "020-3",
    "54": "021-1",
    "55": "021-2",
    "56": "022-1",
    "57": "024-1",
    "58": "024-2",
    "59": "024-3",
    "60": "024-4",
    "61": "025-1",
    "62": "025-3",
    "63": "025-4",
    "64": "026-1",
    "65": "027-1",
    "66": "027-2",
    "67": "027-3",
    "68": "027-4",
    "69": "028-1",
    "70": "028-3",
    "71": "029-1",
    "72": "029-3",
    "73": "030-1",
    "74": "030-2",
    "75": "031-1",
    "76": "031-2",
    "77": "031-3",
    "78": "031-4",
    "79": "032-1",
    "80": "032-3",
    "81": "033-1",
    "82": "034-1",
    "83": "041-1",
    "84": "042-1",
    "85": "042-2",
    "86": "044-1",
    "87": "044-3",
    "88": "045-1",
    "89": "046-1",
    "90": "046-3",
    "91": "047-1",
    "92": "048-1",
    "93": "048-2",
    "94": "051-1",
    "95": "051-3",
    "96": "052-1",
    "97": "052-2",
    "98": "055-1",
    "99": "055-3",
    "100": "056-1",
    "101": "056-2",
    "102": "057-1",
    "103": "botcheck",
  };
  map.nameByServerID = function(serverID, date) {
    /* TODO: Merged output format suitable for converting records running under different data */
    return maps[serverID];
  }
  return map;
}();