-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathaug_7.js
More file actions
203 lines (196 loc) · 3.17 KB
/
aug_7.js
File metadata and controls
203 lines (196 loc) · 3.17 KB
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
// 8/7 (August 7th, Sunday)
const Lands_End = [
{
start: '12:00',
end: '12:45',
name: 'Kamasi Washington',
},
{
start: '13:15',
end: '14:00',
name: 'Oh Wonder',
},
{
start: '14:30',
end: '14:55',
name: 'The Muppets\' Dr. Teeth and the Electric Mayhem',
},
{
start: '15:25',
end: '16:25',
name: 'Third Eye Blind',
},
{
start: '16:55',
end: '17:55',
name: 'Chance the Rapper',
},
{
start: '18:25',
end: '19:25',
name: 'Major Lazer',
},
{
start: '20:05',
end: '21:35',
name: 'Lionel Richie',
},
];
const Sutro = [
{
start: '12:05',
end: '12:50',
name: 'Frances',
},
{
start: '13:20',
end: '14:05',
name: 'The Oh Hellos',
},
{
start: '14:35',
end: '15:25',
name: 'Jack Garratt',
},
{
start: '15:55',
end: '16:45',
name: 'Brandi Carlile',
},
{
start: '17:05',
end: '18:05',
name: 'Jason Isbell',
},
{
start: '18:35',
end: '19:50',
name: 'Ryan Adams and the Shining',
},
];
const Twin_Peaks = [
{
start: '12:40',
end: '13:20',
name: 'Natalia Lafourcade',
},
{
start: '14:00',
end: '14:45',
name: 'Snakehips',
},
{
start: '15:30',
end: '16:20',
name: 'Griz',
},
{
start: '17:05',
end: '17:55',
name: 'Kehlani',
},
{
start: '18:40',
end: '19:40',
name: 'Miguel',
},
{
start: '20:20',
end: '21:35',
name: 'Lana Del Rey',
},
];
const Panhandle = [
{
start: '12:00',
end: '12:40',
name: 'Heron Oblivion',
},
{
start: '13:20',
end: '14:00',
name: 'Cloves',
},
{
start: '14:45',
end: '15:25',
name: 'Haelos',
},
{
start: '16:20',
end: '17:00',
name: 'Diiv',
},
{
start: '17:55',
end: '18:35',
name: 'Rufus Du Sol',
},
{
start: '19:40',
end: '20:30',
name: 'Lettuce',
},
];
const The_House_by_Heineken = [
{
start: '12:00',
end: '13:30',
name: 'Grensta',
},
{
start: '13:30',
end: '15:00',
name: 'Derek Hena',
},
{
start: '15:00',
end: '16:30',
name: 'Deckard',
},
{
start: '16:30',
end: '18:00',
name: 'Gina Turner',
},
{
start: '18:00',
end: '20:00',
name: 'Lee K',
},
];
const The_Barbary = [
{
start: '12:30',
end: '13:15',
name: 'Jo Firestone\'s Friends of Single People',
},
{
start: '13:45',
end: '14:30',
name: 'Sasheer Zamata & Nicole Byer',
},
{
start: '15:25',
end: '16:15',
name: 'Spontaneataion with Paul F. Tompkins Feat. Eban Schletter and Guests: Craig Cackowski, Tawny Newsome, Janet Varney',
},
{
start: '16:45',
end: '17:35',
name: 'Fred Armisen & Friends Feat. Bob Mould & Charlyne Yi',
},
{
start: '18:05',
end: '18:55',
name: 'Jash presents Pound House live Hosted by Brent Weinbach & DJ Douggpound with Esther Povitsky & Johnny Pemberton and special guest Natasha Leggero',
},
];
module.exports = {
Lands_End: Lands_End,
Sutro: Sutro,
Twin_Peaks: Twin_Peaks,
Panhandle: Panhandle,
The_House_by_Heineken: The_House_by_Heineken,
The_Barbary: The_Barbary,
};