-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmp.html
More file actions
3388 lines (2020 loc) · 217 KB
/
tmp.html
File metadata and controls
3388 lines (2020 loc) · 217 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
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns:og="http://opengraphprotocol.org/schema/"
xmlns:fb="http://www.facebook.com/2008/fbml"
lang="en">
<head>
<title>Witches Brew | Witches Brew</title>
<meta name="description" content="
Witches Brew by Witches Brew, released 14 February 2019
1. Wyrmsele
2. One Hand On The Rose
3. Shadows On The Wood
4. Ash And Bone
5. Stasis Interrupted
6. Innse Gall
7. Loathsome Worm
Recorded by Witches Brew.
Available at levertraan.limitedrun dot com
">
<link rel="shortcut icon" href="https://f4.bcbits.com/img/a2008191674_3.jpg">
<link rel="apple-touch-icon" href="https://f4.bcbits.com/img/a2008191674_3.jpg">
<meta name="msapplication-TileColor" content="#603cba">
<meta name="theme-color" content="#ffffff">
<meta name="title" content="Witches Brew, by Witches Brew">
<meta property="og:title" content="Witches Brew, by Witches Brew">
<meta property="og:type" content="album">
<meta property="og:site_name" content="Witches Brew">
<meta property="og:description" content="7 track album">
<meta name="bc-page-properties" content="{"item_type":"a","item_id":2721831846,"tralbum_page_version":0}">
<meta name="robots" content="max-image-preview:large">
<meta property="twitter:site" content="@bandcamp">
<meta property="twitter:card" content="player">
<meta property="og:image" content="https://f4.bcbits.com/img/a2008191674_5.jpg">
<link rel="image_src" href="https://f4.bcbits.com/img/a2008191674_16.jpg">
<meta property="og:url" content="https://witchesbrew024.bandcamp.com/album/witches-brew">
<meta name="generator" content="Bandcamp">
<meta name="medium" content="video">
<meta name="video_height" content="120">
<meta name="video_width" content="400">
<meta name="video_type" content="application/x-shockwave-flash">
<meta property="og:video"
content="https://bandcamp.com/EmbeddedPlayer/v=2/album=2721831846/size=large/tracklist=false/artwork=small/">
<meta property="og:video:secure_url"
content="https://bandcamp.com/EmbeddedPlayer/v=2/album=2721831846/size=large/tracklist=false/artwork=small/">
<meta property="og:video:type" content="text/html">
<meta property="og:video:height" content="120">
<meta property="og:video:width" content="400">
<meta property="twitter:player" content="https://bandcamp.com/EmbeddedPlayer/v=2/album=2721831846/size=large/linkcol=0084B4/notracklist=true/twittercard=true/">
<meta property="twitter:player:height" content="467">
<meta property="twitter:player:width" content="350">
<link type="text/css" rel="stylesheet" href="https://s4.bcbits.com/client-bundle/1/trackpipe/global-35d1a10d48fa685f1855575a03d26adc.css">
<link type="text/css" rel="stylesheet" href="https://s4.bcbits.com/client-bundle/1/trackpipe/tralbum-828e855b799307ef427645b8fc241f90.css">
<meta id="js-crumbs-data" data-crumbs="{}">
<script type="application/ld+json">
{"albumReleaseType":"AlbumRelease","@id":"https://witchesbrew024.bandcamp.com/album/witches-brew","mainEntityOfPage":"https://witchesbrew024.bandcamp.com/album/witches-brew","@type":"MusicAlbum","name":"Witches Brew","dateModified":"22 Jan 2023 15:14:12 GMT","albumRelease":[{"@type":["MusicRelease","Product"],"@id":"https://witchesbrew024.bandcamp.com/album/witches-brew","name":"Witches Brew","additionalProperty":[{"@type":"PropertyValue","name":"item_id","value":2721831846},{"@type":"PropertyValue","name":"item_type","value":"a"},{"@type":"PropertyValue","name":"selling_band_id","value":1392840280},{"@type":"PropertyValue","name":"type_name","value":"Digital"},{"@type":"PropertyValue","name":"art_id","value":2008191674}],"description":"Includes high-quality download in MP3, FLAC and more. Paying supporters also get unlimited streaming via the free Bandcamp app.","offers":{"@type":"Offer","url":"https://witchesbrew024.bandcamp.com/album/witches-brew#a2721831846-buy","priceCurrency":"EUR","price":0.0,"priceSpecification":{"minPrice":0.0},"availability":"OnlineOnly"},"musicReleaseFormat":"DigitalFormat","image":["https://f4.bcbits.com/img/a2008191674_10.jpg"]},{"@type":"MusicRelease","@id":"https://witchesbrew024.bandcamp.com/track/wyrmsele"},{"@type":"MusicRelease","@id":"https://witchesbrew024.bandcamp.com/track/one-hand-on-the-rose"},{"@type":"MusicRelease","@id":"https://witchesbrew024.bandcamp.com/track/shadows-on-the-wood"},{"@type":"MusicRelease","@id":"https://witchesbrew024.bandcamp.com/track/ash-and-bone"},{"@type":"MusicRelease","@id":"https://witchesbrew024.bandcamp.com/track/stasis-interrupted"},{"@type":"MusicRelease","@id":"https://witchesbrew024.bandcamp.com/track/innse-gall"},{"@type":"MusicRelease","@id":"https://witchesbrew024.bandcamp.com/track/loathsome-worm"}],"byArtist":{"@type":"MusicGroup","name":"Witches Brew","@id":"https://witchesbrew024.bandcamp.com"},"publisher":{"@type":"MusicGroup","@id":"https://witchesbrew024.bandcamp.com","name":"Witches Brew","additionalProperty":[{"@type":"PropertyValue","name":"band_id","value":1392840280},{"@type":"PropertyValue","name":"has_any_downloads","value":true},{"@type":"PropertyValue","name":"image_height","value":2671},{"@type":"PropertyValue","name":"image_id","value":22353284},{"@type":"PropertyValue","name":"image_width","value":1800}],"image":"https://f4.bcbits.com/img/0022353284_10.jpg","genre":"https://bandcamp.com/discover/metal","mainEntityOfPage":[{"@type":"WebPage","url":"https://www.facebook.com/PresidentEvilProject","name":"Facebook"}],"subjectOf":[{"@type":"WebPage","url":"https://witchesbrew024.bandcamp.com/music","name":"music","additionalProperty":[{"@type":"PropertyValue","name":"nav_type","value":"m"}]},{"@type":"WebPage","url":"https://witchesbrew024.bandcamp.com/community","name":"community","additionalProperty":[{"@type":"PropertyValue","name":"nav_type","value":"c"}]}],"foundingLocation":{"@type":"Place","name":"Nijmegen, Netherlands"}},"numTracks":7,"track":{"@type":"ItemList","numberOfItems":7,"itemListElement":[{"@type":"ListItem","position":1,"item":{"@type":"MusicRecording","@id":"https://witchesbrew024.bandcamp.com/track/wyrmsele","additionalProperty":[{"@type":"PropertyValue","name":"track_id","value":3001969953},{"@type":"PropertyValue","name":"license_name","value":"all_rights_reserved"}],"name":"Wyrmsele","duration":"P00H05M48S","copyrightNotice":"All Rights Reserved","mainEntityOfPage":"https://witchesbrew024.bandcamp.com/track/wyrmsele"}},{"@type":"ListItem","position":2,"item":{"@type":"MusicRecording","@id":"https://witchesbrew024.bandcamp.com/track/one-hand-on-the-rose","additionalProperty":[{"@type":"PropertyValue","name":"track_id","value":2357597682},{"@type":"PropertyValue","name":"license_name","value":"all_rights_reserved"}],"name":"One Hand On The Rose","duration":"P00H02M00S","copyrightNotice":"All Rights Reserved","mainEntityOfPage":"https://witchesbrew024.bandcamp.com/track/one-hand-on-the-rose"}},{"@type":"ListItem","position":3,"item":{"@type":"MusicRecording","@id":"https://witchesbrew024.bandcamp.com/track/shadows-on-the-wood","additionalProperty":[{"@type":"PropertyValue","name":"track_id","value":2648552909},{"@type":"PropertyValue","name":"license_name","value":"all_rights_reserved"}],"name":"Shadows On The Wood","duration":"P00H05M28S","copyrightNotice":"All Rights Reserved","mainEntityOfPage":"https://witchesbrew024.bandcamp.com/track/shadows-on-the-wood"}},{"@type":"ListItem","position":4,"item":{"@type":"MusicRecording","@id":"https://witchesbrew024.bandcamp.com/track/ash-and-bone","additionalProperty":[{"@type":"PropertyValue","name":"track_id","value":2546932477},{"@type":"PropertyValue","name":"license_name","value":"all_rights_reserved"}],"name":"Ash And Bone","duration":"P00H02M54S","copyrightNotice":"All Rights Reserved","mainEntityOfPage":"https://witchesbrew024.bandcamp.com/track/ash-and-bone"}},{"@type":"ListItem","position":5,"item":{"@type":"MusicRecording","@id":"https://witchesbrew024.bandcamp.com/track/stasis-interrupted","additionalProperty":[{"@type":"PropertyValue","name":"track_id","value":603681244},{"@type":"PropertyValue","name":"license_name","value":"all_rights_reserved"}],"name":"Stasis Interrupted","duration":"P00H03M53S","copyrightNotice":"All Rights Reserved","mainEntityOfPage":"https://witchesbrew024.bandcamp.com/track/stasis-interrupted"}},{"@type":"ListItem","position":6,"item":{"@type":"MusicRecording","@id":"https://witchesbrew024.bandcamp.com/track/innse-gall","additionalProperty":[{"@type":"PropertyValue","name":"track_id","value":475516064},{"@type":"PropertyValue","name":"license_name","value":"all_rights_reserved"}],"name":"Innse Gall","duration":"P00H08M12S","copyrightNotice":"All Rights Reserved","mainEntityOfPage":"https://witchesbrew024.bandcamp.com/track/innse-gall"}},{"@type":"ListItem","position":7,"item":{"@type":"MusicRecording","@id":"https://witchesbrew024.bandcamp.com/track/loathsome-worm","additionalProperty":[{"@type":"PropertyValue","name":"track_id","value":979490350},{"@type":"PropertyValue","name":"license_name","value":"all_rights_reserved"}],"name":"Loathsome Worm","duration":"P00H04M51S","copyrightNotice":"All Rights Reserved","mainEntityOfPage":"https://witchesbrew024.bandcamp.com/track/loathsome-worm"}}]},"image":"https://f4.bcbits.com/img/a2008191674_10.jpg","keywords":["Metal","black","death","punk","Nijmegen"],"datePublished":"14 Feb 2019 00:00:00 GMT","description":"Recorded by Witches Brew.\r\nAvailable at levertraan.limitedrun dot com","copyrightNotice":"All Rights Reserved","sponsor":[{"@type":"Person","url":"https://bandcamp.com/pmjodocus","image":"https://f4.bcbits.com/img/0033275993_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":33275993}],"name":"jodocus"},{"@type":"Person","url":"https://bandcamp.com/MorteLune","image":"https://f4.bcbits.com/img/0007112513_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":7112513}],"name":"MorteLune"},{"@type":"Person","url":"https://bandcamp.com/rkjk","image":"https://f4.bcbits.com/img/0016651449_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":16651449}],"name":"rkjk"},{"@type":"Person","url":"https://bandcamp.com/anomaliette","image":"https://f4.bcbits.com/img/0041430760_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":41430760}],"name":"MèreDoom"},{"@type":"Person","url":"https://bandcamp.com/jrkalee","image":"https://f4.bcbits.com/img/0020057713_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":20057713}],"name":"JrK"},{"@type":"Person","url":"https://bandcamp.com/presse-puree","image":"https://f4.bcbits.com/img/0020342209_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":20342209}],"name":"Presse-purée"},{"@type":"Person","url":"https://bandcamp.com/atulam","image":"https://f4.bcbits.com/img/0022942892_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":22942892}],"name":"atulam"},{"@type":"Person","url":"https://bandcamp.com/maurograziano","image":"https://f4.bcbits.com/img/0002861076_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":2861076}],"name":"Mauro Graziano"},{"@type":"Person","url":"https://bandcamp.com/zerschmetterling","image":"https://f4.bcbits.com/img/0027772618_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":27772618}],"name":"1984"},{"@type":"Person","url":"https://bandcamp.com/dannysmith1313","image":"https://f4.bcbits.com/img/0010658129_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":10658129}],"name":"Danny Smith"},{"@type":"Person","url":"https://bandcamp.com/warhammerandsickle","image":"https://f4.bcbits.com/img/0012228633_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":12228633}],"name":"Warhammer and Sickle"},{"@type":"Person","url":"https://bandcamp.com/carlprayadubia","image":"https://f4.bcbits.com/img/0023710143_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":23710143}],"name":"Ryan Gosling"},{"@type":"Person","url":"https://bandcamp.com/satanichaircult","image":"https://f4.bcbits.com/img/0004803637_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":4803637}],"name":"Black Metal Barber"},{"@type":"Person","url":"https://bandcamp.com/alexkhr","image":"https://f4.bcbits.com/img/0015267964_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":15267964}]},{"@type":"Person","url":"https://bandcamp.com/southernlordrecordingseurope","image":"https://f4.bcbits.com/img/0014749242_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":14749242}],"name":"SLRE"},{"@type":"Person","url":"https://bandcamp.com/depankraker","image":"https://f4.bcbits.com/img/0018245839_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":18245839}],"name":"peter cousaert"},{"@type":"Person","url":"https://bandcamp.com/abkehr","image":"https://f4.bcbits.com/img/0013546570_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":13546570}],"name":"Abkehr"},{"@type":"Person","url":"https://bandcamp.com/postmetalenjoyer","image":"https://f4.bcbits.com/img/0036232670_50.jpg","additionalProperty":[{"@type":"PropertyValue","name":"image_id","value":36232670}],"name":"Post-metal enjoyer"}],"additionalProperty":[{"@type":"PropertyValue","name":"art_id","value":2008191674},{"@type":"PropertyValue","name":"featured_track_num","value":1},{"@type":"PropertyValue","name":"license_name","value":"all_rights_reserved"}],"@context":"https://schema.org"}
</script>
<script type="text/javascript"
nonce="yz6c/nS/evzoclSOOURulQ=="
src="https://bandcamp.com/api/currency_data/1/javascript?when=1762199749"
data-band-currency="EUR"
></script>
<script nonce="yz6c/nS/evzoclSOOURulQ==" src="https://js.stripe.com/basil/stripe.js" async></script>
<script type="text/javascript" nonce="yz6c/nS/evzoclSOOURulQ==">
window.BCTracker=window.BCTracker||{preloadQueue:[],record:function(){this.preloadQueue.push(Array.prototype.slice.call(arguments))},prePageViewCallbacks:[],afterPageView:function(e){this.prePageViewCallbacks.push(e)}},window.ScrollDepthTracker=function(){this.track=function(){}},window.ScrollDepthTracker.track=function(){}
</script>
<script type="text/javascript" src="https://s4.bcbits.com/client-bundle/1/BCCookies_1/bccookies-fb37f2fdf1cf58b7b623df3dda68227d.js" crossorigin="anonymous" nonce="yz6c/nS/evzoclSOOURulQ==" ></script>
<script type="text/javascript" src="https://s4.bcbits.com/client-bundle/1/trackpipe/global_head-479028b8a012a037f8757eb7772d8ebe.js" crossorigin="anonymous" nonce="yz6c/nS/evzoclSOOURulQ==" data-vars="{"debug":false,"PRODUCTION":true,"siteroot":"https://bandcamp.com","static_siteroot":"https://s4.bcbits.com","client_logging":{"enabled":true,"sampleRate":null},"browser":{"type":null,"make":null,"version":[-1],"platform":null,"grade":"X","platform_name":"","platform_closed":false,"download_difficulty":"easy","media_mode":"desktop","mobile_app_compatible":false},"client_template_globals":{"siteroot":"http://bandcamp.com","siteroot_https":"https://bandcamp.com","siteroot_current":"https://bandcamp.com","static_siteroot":"https://s4.bcbits.com","is_https":true,"image_siteroot":"https://f4.bcbits.com","image_siteroot_https":"https://f4.bcbits.com","image_formats":[{"id":0,"name":"original","resize_algo":"original","file_format":null},{"id":1,"name":"fullsize","resize_algo":"scrub","file_format":"original"},{"id":2,"name":"art_thumb","resize_algo":"thumb","width":350,"height":350,"file_format":"JPEG"},{"id":3,"name":"art_thumbthumb","resize_algo":"thumb","width":100,"height":100,"file_format":"JPEG"},{"id":4,"name":"art_embedded_metadata","resize_algo":"thumb","width":300,"height":300,"file_format":"JPEG"},{"id":5,"name":"art_embedded_metadata_large","resize_algo":"thumb","width":700,"height":700,"file_format":"JPEG"},{"id":6,"name":"art_embedded_player","resize_algo":"thumb","width":100,"height":100,"file_format":"JPEG"},{"id":7,"name":"art_embedded_player_large","resize_algo":"thumb","width":150,"height":150,"file_format":"JPEG"},{"id":8,"name":"art_tags","resize_algo":"thumb","width":124,"height":124,"file_format":"JPEG"},{"id":9,"name":"art_tags_large","resize_algo":"thumb","width":210,"height":210,"file_format":"JPEG"},{"id":10,"name":"screen","resize_algo":"fit","width":1200,"height":1200,"file_format":"JPEG"},{"id":11,"name":"art_tag_search","resize_algo":"thumb","width":172,"height":172,"file_format":"JPEG"},{"id":12,"name":"art_artist_index","resize_algo":"thumb","width":138,"height":138,"file_format":"JPEG"},{"id":13,"name":"art_solo_feature","resize_algo":"thumb","width":380,"height":380,"file_format":"JPEG"},{"id":14,"name":"art_feature","resize_algo":"thumb","width":368,"height":368,"file_format":"JPEG"},{"id":15,"name":"art_feed_new_release","resize_algo":"thumb","width":135,"height":135,"file_format":"JPEG"},{"id":16,"name":"art_app_large","resize_algo":"thumb","width":700,"height":700,"file_format":"JPEG","quality":70,"minsize":{"size":30000,"format":5}},{"id":20,"name":"bio_screen","resize_algo":"fit","width":1024,"height":1024,"file_format":"JPEG"},{"id":21,"name":"bio_thumb","resize_algo":"fit","width":120,"height":180,"file_format":"JPEG"},{"id":22,"name":"bio_navbar","resize_algo":"thumb","width":25,"height":25,"file_format":"JPEG"},{"id":23,"name":"bio_phone","resize_algo":"fit","width":300,"height":300,"file_format":"JPEG"},{"id":24,"name":"bio_licensing","resize_algo":"thumb","width":300,"height":300,"file_format":"JPEG"},{"id":25,"name":"bio_app","resize_algo":"fit","width":700,"height":700,"file_format":"JPEG","quality":70},{"id":26,"name":"bio_subscribe","resize_algo":"thumb","width":800,"height":600,"file_format":"JPEG"},{"id":27,"name":"bio_subscribe2","resize_algo":"thumb","width":715,"height":402,"file_format":"JPEG"},{"id":28,"name":"bio_featured","resize_algo":"thumb","width":768,"height":432,"file_format":"JPEG"},{"id":29,"name":"bio_autocomplete","resize_algo":"thumb","width":100,"height":75,"file_format":"JPEG"},{"id":31,"name":"package_screen","resize_algo":"fit","width":1024,"height":1024,"file_format":"original"},{"id":32,"name":"package_solo_feature","resize_algo":"thumb","width":380,"height":285,"file_format":"JPEG"},{"id":33,"name":"package_feature","resize_algo":"thumb","width":368,"height":276,"file_format":"JPEG"},{"id":36,"name":"package_page","resize_algo":"thumb","width":400,"height":300,"file_format":"JPEG"},{"id":37,"name":"package_thumb","resize_algo":"thumb","width":168,"height":126,"file_format":"JPEG"},{"id":38,"name":"package_thumb_small","resize_algo":"thumb","width":144,"height":108,"file_format":"JPEG"},{"id":41,"name":"fan_bio_thumb","resize_algo":"thumb","width":210,"height":210,"file_format":"JPEG"},{"id":42,"name":"fan_bio_thumb_small","resize_algo":"thumb","height":50,"width":50,"file_format":"JPEG"},{"id":43,"name":"fan_banner","resize_algo":"fit","height":100,"width":99999,"file_format":"JPEG"},{"id":44,"name":"fan_banner_2x","resize_algo":"fit","height":200,"width":99999,"file_format":"JPEG"},{"id":50,"name":"results_grid","resize_algo":"thumb","width":140,"height":140,"file_format":"JPEG"},{"id":65,"name":"tralbum_page_cover_art","resize_algo":"thumb","width":700,"height":700,"file_format":"JPEG","quality":70,"minsize":{"size":30000,"format":69},"anim_ok":true},{"id":66,"name":"tralbum_page_cover_art_popup","resize_algo":"fit","width":1200,"height":1200,"file_format":"JPEG","anim_ok":true},{"id":67,"name":"art_thumb_anim_ok","resize_algo":"thumb","width":350,"height":350,"file_format":"JPEG","anim_ok":true},{"id":68,"name":"art_tags_large_anim_ok","resize_algo":"thumb","width":210,"height":210,"file_format":"JPEG","anim_ok":true},{"id":69,"name":"art_embedded_metadata_large_anim_ok","resize_algo":"thumb","width":700,"height":700,"file_format":"JPEG","anim_ok":true},{"id":70,"name":"tralbum_page_package_small","resize_algo":"fit","width":360,"height":270,"file_format":"JPEG","mozjpeg":true},{"id":71,"name":"tralbum_page_package_large","resize_algo":"fit","width":720,"height":540,"file_format":"JPEG","mozjpeg":true},{"id":100,"name":"custom_header_desktop","resize_algo":"thumb","width":975,"max_height":180,"file_format":"original","allow_transparency":true},{"id":101,"name":"custom_header_paypal","resize_algo":"fit","width":750,"height":90,"file_format":"JPEG"},{"id":120,"name":"custom_header_phone","resize_algo":"thumb","width":640,"max_height":124,"file_format":"JPEG"},{"id":130,"name":"design_background","resize_algo":"scrub","file_format":"JPEG"},{"id":140,"name":"subscribe_message","resize_algo":"thumb","width":60,"height":45,"file_format":"JPEG"},{"id":150,"name":"video_landscape","resize_algo":"thumb","width":1280,"height":720,"file_format":"JPEG"},{"id":151,"name":"video_portrait","resize_algo":"thumb","width":720,"height":1280,"file_format":"JPEG"},{"id":160,"name":"buy_full_email_thumb_montage","resize_algo":"thumb_crop","width":60,"height":100,"left":40,"top":0,"file_format":"JPEG"},{"id":161,"name":"buy_full_email_thumb_montage_release","resize_algo":"thumb_crop","width":40,"height":80,"left":40,"top":0,"file_format":"JPEG","quality":100},{"id":165,"name":"ppp_email_gift_thumb","resize_algo":"thumb_composite","overlay_image":"public/img/banner_email.png","x_offset":92,"y_offset":0,"width":210,"height":210,"file_format":"JPEG","quality":100},{"id":170,"name":"weekly_mobile_web","resize_algo":"fit","width":750,"height":422,"file_format":"JPEG"},{"id":171,"name":"weekly_desktop","resize_algo":"fit","width":1244,"height":646,"file_format":"JPEG"},{"id":180,"name":"bcdaily_homepage_big","resize_algo":"fit","width":1244,"height":646,"file_format":"JPEG","anim_ok":true},{"id":200,"name":"mobile_fan_banner_ios_3x","resize_algo":"fit","width":1125,"height":420,"file_format":"JPEG"},{"id":201,"name":"mobile_fan_banner_ios_2x","resize_algo":"fit","width":750,"height":280,"file_format":"JPEG"},{"id":202,"name":"mobile_fan_banner_ios_1x","resize_algo":"fit","width":375,"height":140,"file_format":"JPEG"},{"id":203,"name":"mobile_fan_banner_android_xxxhdpi","resize_algo":"fit","width":1125,"height":420,"file_format":"JPEG"},{"id":204,"name":"mobile_fan_banner_android_xxhdpi","resize_algo":"fit","width":960,"height":360,"file_format":"JPEG"},{"id":205,"name":"mobile_fan_banner_android_xhdpi","resize_algo":"fit","width":640,"height":240,"file_format":"JPEG"},{"id":206,"name":"mobile_fan_banner_android_hdpi","resize_algo":"fit","width":480,"height":180,"file_format":"JPEG"},{"id":207,"name":"mobile_fan_banner_android_mdpi","resize_algo":"fit","width":320,"height":120,"file_format":"JPEG"},{"id":220,"name":"newsletter_artist_feature","resize_algo":"thumb","width":900,"height":468,"file_format":"JPEG"},{"id":300,"name":"grayscale_thumb","resize_algo":"thumb","width":350,"height":350,"file_format":"JPEG","filter":"grayscale"}],"custom_domains_active":true,"base_port_str":null,"sitedomain":"bandcamp.com"},"matches_base_domain":true,"crumb":null,"upload_info":null,"endpoint_mobilized":true}" data-validators="{"contact":{"name":{"req":true},"email":{"req":true,"match":"(^)([^\\s\\(\\)\"'/><,@]+@\\w([^\\s\\(\\)\"'/><&,@]*\\w)?\\.\\w[^\\s\\(\\)\"'/><&,@]*\\w)($)","message":"Invalid email address."},"subject":{"type":"text","max":300},"message":{"req":true,"type":"text","min":1,"max":1999},"attachment_0_filename":{"type":"text","max":255},"attachment_0_data":{"type":"text"},"attachment_1_filename":{"type":"text","max":255},"attachment_1_data":{"type":"text"},"attachment_2_filename":{"type":"text","max":255},"attachment_2_data":{"type":"text"},"attachment_3_filename":{"type":"text","max":255},"attachment_3_data":{"type":"text"},"attachment_4_filename":{"type":"text","max":255},"attachment_4_data":{"type":"text"}}}" data-hide-params="["action","buy_id","no","permalink","from","pk","recipient","fan_id","showvid","label","tab","filter_band","campaign","newsletter_id","newsletter_sig","entry_type","entity_id","toast","toastref","toastband","search_page_id","search_page_no","search_rank","search_match_part","search_item_type","search_item_id","search_sig","logged_out_menubar","logged_in_menubar","logged_in_mobile_menubar","logged_out_mobile_menubar","corp_header"]"></script>
<script
src="https://js.sentry-cdn.com/7c33659f530ef43fb4532fc6e83354dd.min.js"
crossorigin="anonymous"
nonce="yz6c/nS/evzoclSOOURulQ=="
id="sentry"
data-config="{"sentry":{"dsn":"https://7c33659f530ef43fb4532fc6e83354dd@o363271.ingest.us.sentry.io/4508223638732800","environment":"production","release":"trackpipe@16f8126cbc95165ca1dbbcb2f212abbd49a8195e"},"userId":null}"
></script>
<script type="text/javascript" src="https://s4.bcbits.com/client-bundle/1/trackpipe/tralbum_head-6ef2c5cb8a2feb76b8f8c45e432c2198.js" crossorigin="anonymous" nonce="yz6c/nS/evzoclSOOURulQ==" data-cart="{"is_default":true,"country":"US","currency":"USD","country_name":"United States","probable_buyer_country":"NL"}" data-site="{"supportEmail":"support@witchesbrew024.bandcamp.com","is_custom_domain":null,"env":"prod"}" data-band="{"id":1392840280,"name":"Witches Brew","fan_email":null,"account_id":2886438027,"facebook_like_enabled":null,"has_discounts":false,"image_id":22353284}" data-embed="{"tralbum_param":{"name":"album","value":2721831846},"art_id":2008191674,"artist":"Witches Brew","swf_base_url":"https://bandcamp.com","show_campaign":null,"embed_info":{"public_embeddable":true,"exclusive_embeddable":false,"item_public":true,"no_track_preorder":false},"album_title":"Witches Brew","linkback":"https://witchesbrew024.bandcamp.com/album/witches-brew"}" data-fan="{"logged_in":false,"name":null,"image_id":null}" data-band-follow-info="{"tralbum_id":2721831846,"tralbum_type":"a"}" data-tralbum-collect-info="{"show_collect":true,"show_wishlist_tooltip":false}" data-tralbum="{"for the curious":"https://bandcamp.com/help/audio_basics#steal https://bandcamp.com/terms_of_use","current":{"audit":1,"title":"Witches Brew","new_date":"28 Jan 2019 19:06:00 GMT","mod_date":"22 Jan 2023 15:14:12 GMT","publish_date":"29 Jan 2019 11:52:40 GMT","private":null,"killed":null,"download_pref":2,"require_email":null,"is_set_price":null,"set_price":7.0,"minimum_price":0.0,"minimum_price_nonzero":7.0,"require_email_0":null,"artist":null,"about":"Recorded by Witches Brew.\r\nAvailable at levertraan.limitedrun dot com","credits":null,"auto_repriced":null,"new_desc_format":1,"band_id":1392840280,"selling_band_id":1392840280,"art_id":2008191674,"download_desc_id":null,"release_date":"14 Feb 2019 00:00:00 GMT","upc":null,"purchase_url":null,"purchase_title":null,"featured_track_id":3001969953,"id":2721831846,"type":"album"},"preorder_count":null,"hasAudio":true,"art_id":2008191674,"packages":null,"defaultPrice":9.0,"freeDownloadPage":"https://bandcamp.com/download?fsig=9324e577f6b127c35d65bdcfcf2b31b1&id=2721831846&ts=1762200504.1359280744&type=album","FREE":1,"PAID":2,"artist":"Witches Brew","item_type":"album","id":2721831846,"last_subscription_item":null,"has_discounts":false,"is_bonus":null,"play_cap_data":null,"is_purchased":null,"items_purchased":null,"is_private_stream":null,"is_band_member":null,"licensed_version_ids":null,"package_associated_license_id":null,"has_video":null,"tralbum_subscriber_only":false,"featured_track_id":3001969953,"initial_track_num":null,"is_preorder":false,"album_is_preorder":false,"album_release_date":"14 Feb 2019 00:00:00 GMT","trackinfo":[{"id":3001969953,"track_id":3001969953,"file":{"mp3-128":"https://t4.bcbits.com/stream/15c4c8a999efb848540a861ddf9dfaca/mp3-128/3001969953?p=0&ts=1762286904&t=6afb93167d3b4b95039a2514a17346a7b98720e3&token=1762286904_cdbbd9fe780a2cedd0e69574a46407b490d8e083"},"artist":null,"title":"Wyrmsele","encodings_id":1643827885,"license_type":1,"private":null,"track_num":1,"album_preorder":false,"unreleased_track":false,"title_link":"/track/wyrmsele","has_lyrics":false,"has_info":false,"streaming":1,"is_downloadable":false,"has_free_download":null,"free_album_download":false,"duration":348.0,"lyrics":null,"sizeof_lyrics":0,"is_draft":false,"video_source_type":null,"video_source_id":null,"video_mobile_url":null,"video_poster_url":null,"video_id":null,"video_caption":null,"video_featured":null,"alt_link":null,"encoding_error":null,"encoding_pending":null,"play_count":null,"is_capped":null,"track_license_id":null},{"id":2357597682,"track_id":2357597682,"file":{"mp3-128":"https://t4.bcbits.com/stream/c37eb958dae8e976f9f77248d94e1aa4/mp3-128/2357597682?p=0&ts=1762286904&t=082736b29dde1dd061765d6889692afb704b0031&token=1762286904_7ac832a5fd60157d34a32a845bf1190d27c1152e"},"artist":null,"title":"One Hand On The Rose","encodings_id":3269350228,"license_type":1,"private":null,"track_num":2,"album_preorder":false,"unreleased_track":false,"title_link":"/track/one-hand-on-the-rose","has_lyrics":false,"has_info":false,"streaming":1,"is_downloadable":false,"has_free_download":null,"free_album_download":false,"duration":120.375,"lyrics":null,"sizeof_lyrics":0,"is_draft":false,"video_source_type":null,"video_source_id":null,"video_mobile_url":null,"video_poster_url":null,"video_id":null,"video_caption":null,"video_featured":null,"alt_link":null,"encoding_error":null,"encoding_pending":null,"play_count":null,"is_capped":null,"track_license_id":null},{"id":2648552909,"track_id":2648552909,"file":{"mp3-128":"https://t4.bcbits.com/stream/1bebfea4152a67ed988f915b83c68fc1/mp3-128/2648552909?p=0&ts=1762286904&t=d9933ef90c3910a63703b5f443ee36753ec3d297&token=1762286904_4ef2475dbd024659e1acaff3c1bc79f83f2781a5"},"artist":null,"title":"Shadows On The Wood","encodings_id":2323489320,"license_type":1,"private":null,"track_num":3,"album_preorder":false,"unreleased_track":false,"title_link":"/track/shadows-on-the-wood","has_lyrics":false,"has_info":false,"streaming":1,"is_downloadable":false,"has_free_download":null,"free_album_download":false,"duration":328.937,"lyrics":null,"sizeof_lyrics":0,"is_draft":false,"video_source_type":null,"video_source_id":null,"video_mobile_url":null,"video_poster_url":null,"video_id":null,"video_caption":null,"video_featured":null,"alt_link":null,"encoding_error":null,"encoding_pending":null,"play_count":null,"is_capped":null,"track_license_id":null},{"id":2546932477,"track_id":2546932477,"file":{"mp3-128":"https://t4.bcbits.com/stream/fa36b9621e2607a8b3d14a88366fc5a5/mp3-128/2546932477?p=0&ts=1762286904&t=7938807f22f0b889f625ba81812d460546e5ed51&token=1762286904_f8eaecb01d3c1a8454cbb1d3d478ff87adf08cb8"},"artist":null,"title":"Ash And Bone","encodings_id":3605582982,"license_type":1,"private":null,"track_num":4,"album_preorder":false,"unreleased_track":false,"title_link":"/track/ash-and-bone","has_lyrics":false,"has_info":false,"streaming":1,"is_downloadable":false,"has_free_download":null,"free_album_download":false,"duration":174.75,"lyrics":null,"sizeof_lyrics":0,"is_draft":false,"video_source_type":null,"video_source_id":null,"video_mobile_url":null,"video_poster_url":null,"video_id":null,"video_caption":null,"video_featured":null,"alt_link":null,"encoding_error":null,"encoding_pending":null,"play_count":null,"is_capped":null,"track_license_id":null},{"id":603681244,"track_id":603681244,"file":{"mp3-128":"https://t4.bcbits.com/stream/c84f5b348034dba1ba6d09dbd0357b85/mp3-128/603681244?p=0&ts=1762286904&t=b5ce44d959bd72c26ec6ae97d87f14bd1c9ac973&token=1762286904_20237de805b8c3d145a2f7a5da7896240d3cb697"},"artist":null,"title":"Stasis Interrupted","encodings_id":1372529682,"license_type":1,"private":null,"track_num":5,"album_preorder":false,"unreleased_track":false,"title_link":"/track/stasis-interrupted","has_lyrics":false,"has_info":false,"streaming":1,"is_downloadable":false,"has_free_download":null,"free_album_download":false,"duration":233.438,"lyrics":null,"sizeof_lyrics":0,"is_draft":false,"video_source_type":null,"video_source_id":null,"video_mobile_url":null,"video_poster_url":null,"video_id":null,"video_caption":null,"video_featured":null,"alt_link":null,"encoding_error":null,"encoding_pending":null,"play_count":null,"is_capped":null,"track_license_id":null},{"id":475516064,"track_id":475516064,"file":{"mp3-128":"https://t4.bcbits.com/stream/4aeed4055d92d2dfe6d3846a03146b4a/mp3-128/475516064?p=0&ts=1762286904&t=7a8326db9eda0a26ff6527fdf4b28dd54b480f89&token=1762286904_1d66da07df492eb1083d7242e213226bb63d5925"},"artist":null,"title":"Innse Gall","encodings_id":472888671,"license_type":1,"private":null,"track_num":6,"album_preorder":false,"unreleased_track":false,"title_link":"/track/innse-gall","has_lyrics":false,"has_info":false,"streaming":1,"is_downloadable":false,"has_free_download":null,"free_album_download":false,"duration":492.125,"lyrics":null,"sizeof_lyrics":0,"is_draft":false,"video_source_type":null,"video_source_id":null,"video_mobile_url":null,"video_poster_url":null,"video_id":null,"video_caption":null,"video_featured":null,"alt_link":null,"encoding_error":null,"encoding_pending":null,"play_count":null,"is_capped":null,"track_license_id":null},{"id":979490350,"track_id":979490350,"file":{"mp3-128":"https://t4.bcbits.com/stream/e48bebcc21477fa44f53328a572ac6a7/mp3-128/979490350?p=0&ts=1762286904&t=a388650299b32d9681ebe8899954639784ffa53b&token=1762286904_8fb078becf25cb1747c71a4e5f4778f2f5c57838"},"artist":null,"title":"Loathsome Worm","encodings_id":1745108953,"license_type":1,"private":null,"track_num":7,"album_preorder":false,"unreleased_track":false,"title_link":"/track/loathsome-worm","has_lyrics":false,"has_info":false,"streaming":1,"is_downloadable":false,"has_free_download":null,"free_album_download":false,"duration":291.434,"lyrics":null,"sizeof_lyrics":0,"is_draft":false,"video_source_type":null,"video_source_id":null,"video_mobile_url":null,"video_poster_url":null,"video_id":null,"video_caption":null,"video_featured":null,"alt_link":null,"encoding_error":null,"encoding_pending":null,"play_count":null,"is_capped":null,"track_license_id":null}],"playing_from":"album page","url":"https://witchesbrew024.bandcamp.com/album/witches-brew","use_expando_lyrics":false}" data-payment="{"paymentType":null,"paymentDownloadPage":null}" data-referrer-token="null"></script>
</head>
<body class="enable-cookie-control invertIconography has-menubar has-rec-footer tralbum-clearfix tralbum-page " lang="en">
<svg height="0" width="0" style="position:absolute;margin-left:-100%">
<path id="tweet" d="M16.1 3.5a9.6 9.6 0 01-1.7 6c-.6.9-1.3 1.6-2.1 2.3-.8.7-1.8 1.2-2.9 1.6-1.2.4-2.4.6-3.7.6-2.2 0-4.1-.6-5.7-1.6 2.5.2 4.1-.5 5.5-1.5-1.7 0-3-1.1-3.4-2.4.5.1 1.3 0 1.7-.1-1.5-.3-3-1.7-3-3.5.3.2.9.4 1.7.4C1.5 4.8.8 3.7.8 2.4c0-.6.2-1.4.5-1.8 1.7 2 4.4 3.6 7.6 3.7C8.3 1.4 10.6 0 12.5 0c1.1 0 2 .4 2.7 1.1.8-.1 1.6-.4 2.3-.8-.3.8-.8 1.5-1.6 1.9.7-.1 1.4-.2 2.1-.5-.5.7-1.1 1.3-1.9 1.8z"/>
<path id="buy-for-friend" d="M3.5 4h7c1.8-.3 2.4-1.9 2-2.9S10.7-.5 9.3.5 7 3 7 3 6.1 1.5 4.7.5s-2.8-.4-3.2.6.2 2.6 2 2.9zm6.8-3c.9-.2 1.6.1 1.3 1.1-.3 1.2-2.6 1.3-3.8 1.3 0 0 1.6-2.2 2.5-2.4zM3.8 1c1.1.4 2.4 2.4 2.4 2.4-1.3 0-3.4-.3-3.8-1.3C2 1.1 3 .8 3.8 1zM0 9h6V5H0v4zm7-4v4h7V5H7zm0 9h6v-4H7v4zm-6 0h5v-4H1v4z"/>
<path id="edit-profile-info" d="M10 10.5c0 .3-.2.5-.5.5h-8c-.3 0-.5-.2-.5-.5v-8c0-.3.2-.5.5-.5h3.7V1H1.5C.7 1 0 1.7 0 2.5v8c0 .8.7 1.5 1.5 1.5h8c.8 0 1.5-.7 1.5-1.5V7h-1v3.5zm2-9.1L10.5 0 6.4 4.4l-.6 2.2L8 5.7l4-4.3z"/>
<path id="fb-logo-share-profile" d="M3.9 12V6.3h1.8L6 4.2H4V2.9c0-.6.2-1 1-1h1.1V.1C5.8.1 5.2 0 4.4 0 2.8 0 1.8 1 1.8 2.7v1.5H0v2.1h1.8V12h2.1z"/>
<path id="following-checkmark" d="M4.3 10.7L0 5.8l1.5-1.3 2.8 3.1L11 0l1.5 1.3z"/>
<path id="follow-plus" d="M8 3H5V0H3v3H0v2h3v3h2V5h3z"/>
<path id="share-profile" d="M10.7.2s-.1-.1 0 0l-.4-.2h-.1L2.5 4.8.3 8.1v.1s0 .1.1.1l3.3.9h.1l5.1-6.5-3.3 7 .9 2.2.1.1s.1 0 .1-.1l.9-1.5 2.8.9.1-.1L11.8 7 10.7.2z"/>
<path id="search-magnifier" d="M10.1 10.4l-1.4-2C9.5 7.5 10 6.3 10 5c0-2.8-2.2-5-5-5S0 2.2 0 5s2.2 5 5 5c.7 0 1.4-.1 2-.4l1.5 2c.3.4 1 .5 1.4.2.4-.3.5-.9.2-1.4zM5 9C2.8 9 1 7.2 1 5s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z"/>
<path id="close-search-results" d="M8 .7L7.3 0 4 3.3.7 0 0 .7 3.3 4 0 7.3l.7.7L4 4.7 7.3 8l.7-.7L4.7 4z"/>
<path id="camera-icon" d="M26 2h-4a2 2 0 00-2-2H8a2 2 0 00-2 2H2a2 2 0 00-2 2v14a2 2 0 002 2h24a2 2 0 002-2V4a2 2 0 00-2-2zM14 17a6 6 0 116-6 6 6 0 01-6 6zm1-10h-2v3h-3v2h3v3h2v-3h3v-2h-3z"/>
<g id="search-spinner">
<circle class="st1" cx="7" cy="1.5" r="1.5"/>
<circle class="st2" transform="rotate(-45 10.89 3.11)" cx="10.9" cy="3.1" r="1.5"/>
<circle class="st3" cx="12.5" cy="7" r="1.5"/>
<circle class="st4" transform="rotate(-45 10.89 10.89)" cx="10.9" cy="10.9" r="1.5"/>
<circle class="st5" cx="7" cy="12.5" r="1.5"/>
<circle class="st6" transform="rotate(-45 3.11 10.89)" cx="3.1" cy="10.9" r="1.5"/>
<circle class="st8" transform="rotate(-45 3.11 3.11)" cx="3.1" cy="3.1" r="1.5"/>
<circle class="st7" cx="1.5" cy="7" r="1.5"/>
</g>
<path id="mobile-web-collection-arrow" d="M20.3 17.3L3 0 .3 2.7 17.7 20 .3 37.3 3 40l17.3-17.3L23 20z"/>
<path id="homepage-mobile-arrow" d="M12.9 11L2.1.1 0 2.2l10.8 10.9L0 24l2.1 2.1 10.8-10.9 2.1-2.1z"/>
<path id="collect-control-wishlist" d="M10.5 20l-.8-.9s-1.9-2.3-4.6-4.7C1.8 11.2.1 8.5 0 6c0-1.6.6-3 1.8-4.3C3.4.3 5-.2 6.6.1c1.8.3 3.1 1.6 3.9 2.5.9-1 2.3-2.2 4.1-2.5 1.6-.2 3 .3 4.5 1.5 1.3 1.2 2 2.6 2 4.1 0 2.5-1.7 5.3-5.3 8.6a44.6 44.6 0 00-4.4 4.7l-.9 1zm-4-7.1c1.8 1.6 3.2 3.1 4 4 .8-.9 2.2-2.4 3.9-4 3.1-2.8 4.7-5.2 4.7-7.1 0-1-.4-1.9-1.3-2.7-1-.8-1.9-1.2-2.9-1-2 .3-3.6 2.7-3.6 2.7l-.9 1.4-.8-1.5S8.3 2.3 6.3 1.9c-1-.2-2 .2-3.1 1.1-.9.9-1.3 1.9-1.2 2.9 0 2 1.6 4.3 4.5 7z"/>
<path id="collect-control-purchased" d="M10.5 20l-.8-.9s-1.9-2.3-4.6-4.7C1.8 11.2.1 8.5 0 6c0-1.6.6-3 1.8-4.3C3.4.3 5-.2 6.6.1c1.8.3 3.1 1.6 3.9 2.5.9-1 2.3-2.2 4.1-2.5 1.6-.2 3 .3 4.5 1.5 1.3 1.2 2 2.6 2 4.1 0 2.5-1.7 5.3-5.3 8.6a44.6 44.6 0 00-4.4 4.7l-.9 1z"/>
<path id="collect-control-wishlisted" d="M10.5 20l-.8-.9s-1.9-2.3-4.6-4.7C1.8 11.2.1 8.5 0 6c0-1.6.6-3 1.8-4.3C3.4.3 5-.2 6.6.1c1.8.3 3.1 1.6 3.9 2.5.9-1 2.3-2.2 4.1-2.5 1.6-.2 3 .3 4.5 1.5 1.3 1.2 2 2.6 2 4.1 0 2.5-1.7 5.3-5.3 8.6a44.6 44.6 0 00-4.4 4.7l-.9 1z"/>
<path id="facebook-like" d="M2 0h12c1.15 0 2 .85 2 2v12c0 1.15-.85 2-2 2h-3.49V9.83h2.06l.34-2.52h-2.4V5.83c0-.34.12-.69.23-.8.12-.23.46-.34.92-.34h1.25V2.5c-.45-.11-1.02-.11-1.82-.11-.92 0-1.72.23-2.29.8-.57.57-.8 1.37-.8 2.4v1.83H5.94v2.4H8V16H2c-1.15 0-2-.85-2-2V2C0 .85.85 0 2 0z"/>
<path id="format-dropdown" d="M10 0L5 6 0 0z"/>
<path id="direct-download" d="M11.7 7.3c-.4-.4-1-.4-1.4 0L7 10.6V1c0-.5-.5-1-1-1S5 .5 5 1v9.6L1.7 7.3c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l5 5c.2.2.4.3.7.3.4 0 .5-.1.7-.3l5-5c.4-.4.4-1 0-1.4zM10 15H2c-.5 0-1 .5-1 1s.5 1 1 1h8c.5 0 1-.5 1-1s-.5-1-1-1z"/>
<path id="mobile-gift-ribbon" class="st0" d="M46.3 0C37.4 0 31.1 8.3 28 13.5 24.9 8.3 18.6 0 9.7 0 4.1 0 0 3.5 0 8.2 0 16.6 12.2 22 27.7 22 43.9 22 56 15 56 8.3c0-1.3-.3-2.6-1-3.8C53.5 1.7 50.2 0 46.3 0zM9.6 12.8c-3.1-1.6-3.9-3.1-3.9-4.6 0-1.5 1.5-3.1 4-3.1 6 0 10.8 6.6 13.4 10.9-6.9-.5-11.1-2-13.5-3.2zm37.3-.3c-2.8 1.6-7.4 3-14 3.4C35.5 11.6 40.1 5 46.1 5c2.1 0 4 .9 4 3 0 1.9-1.6 3.6-3.2 4.5z"/>
<path id="grab-app" d="M20.8 25c-.8-.8-2-.8-2.8 0-.8.8-.8 2 0 2.8l7.2 7.2H2a2 2 0 00-2 2c0 1.1.9 2 2 2h23.2L18 46.2c-.8.8-.8 2 0 2.8.8.8 2 .8 2.8 0l10.6-10.6c.3-.3.6-.8.6-1.4 0-.6-.3-1.1-.6-1.4L20.8 25zM77.6 0h-26C46 0 41 4 41 9.5v56C41 71 46 76 51.6 76h26c5.5 0 9.4-5 9.4-10.5v-56C87 4 83.1 0 77.6 0zM84 65.5c0 3.9-2.6 7.5-6.4 7.5h-26c-3.9 0-7.6-3.6-7.6-7.5V56h40v9.5zM84 53H44V17h40v36zm0-39H44V9.5C44 5.6 47.7 3 51.6 3h26C81.4 3 84 5.6 84 9.5V14zM64 67c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.4 3 3 3z"/>
<path id="play-app" d="M1 60c-.2 0-.3 0-.5-.1-.3-.2-.5-.5-.5-.9V1C0 .6.2.3.5.1c.4-.1.8-.1 1.1.1l42 29c.3.2.4.5.4.8s-.2.6-.4.8l-42 29c-.2.2-.4.2-.6.2zM2 2.9v54.2L41.3 30 2 2.9z"/>
<path id="play-app-2" d="M18.55 16L2.97 5.61V26.4L18.55 16zM0 32V0l24 16L0 32z"/>
<g id="grab-app-opensignup" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="collection" transform="translate(-67 -505)" fill="#FFF">
<g id="mweb-phone-icon-outline" transform="translate(67 505)">
<path d="M21.16 3.99v28.02a3 3 0 003 2.99h13.99a3 3 0 003-2.99V3.99a3 3 0 00-3-2.99H24.17a3 3 0 00-3.01 2.99zm-1 0a4 4 0 014-3.99h13.99a4 4 0 014 3.99v28.02a4 4 0 01-4 3.99H24.17a4 4 0 01-4.01-3.99V3.99z" id="Rectangle-1270"/>
<rect id="Rectangle-1271" x="29.41" y="29.73" width="2.5" height="2.5" rx="1.25"/>
<path d="M20.66 8.23h21v-1h-21v1zm0 19h21v-1h-21v1z" id="Combined-Shape"/>
<path d="M.29 18.44c0 .36.31.67.68.67h11.62L8.86 23.3a.72.72 0 000 .99l.36.41c.26.26.68.26.94 0l5.89-6.05a.72.72 0 000-1L9.96 11.3a.66.66 0 00-.94 0l-.36.41a.72.72 0 000 1l3.9 4.43H.96a.69.69 0 00-.67.67v.63z" id="→"/>
</g>
</g>
</g>
<g id="has-app">
<path class="has-app-phone" d="M18 56a2 2 0 002-2c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2zM29 0H7C3.1 0 0 3.1 0 7v48c0 3.9 3.1 7 7 7h22c3.9 0 7-3.1 7-7V7c0-3.9-3.1-7-7-7zm5 55c0 2.8-2.2 5-5 5H7c-2.8 0-5-2.2-5-5v-6h32v6zm0-8H2V12h32v35zm0-37H2V7c0-2.8 2.2-5 5-5h22c2.8 0 5 2.2 5 5v3z"/>
<path class="has-app-confirm" d="M18 18c-6.4 0-11.5 5.1-11.5 11.5S11.6 41 18 41s11.5-5.1 11.5-11.5S24.4 18 18 18zm5.3 9.6l-5.8 5.8c-.3.3-.7.4-1.1.4-.4 0-.8-.1-1.1-.4l-2.6-2.6c-.6-.6-.6-1.5 0-2.1s1.5-.6 2.1 0l1.6 1.6 4.8-4.8c.6-.6 1.5-.6 2.1 0 .6.6.6 1.6 0 2.1z"/>
</g>
<g id="no-app">
<path class="no-app-phone" d="M18 56a2 2 0 002-2c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2zM29 0H7C3.1 0 0 3.1 0 7v48c0 3.9 3.1 7 7 7h22c3.9 0 7-3.1 7-7V7c0-3.9-3.1-7-7-7zm5 55c0 2.8-2.2 5-5 5H7c-2.8 0-5-2.2-5-5v-6h32v6zm0-8H2V12h32v35zm0-37H2V7c0-2.8 2.2-5 5-5h22c2.8 0 5 2.2 5 5v3z"/>
<path class="no-app-bc-logo" d="M14 23L7 36h15l7-13z"/>
</g>
<g id="signup-promo-icon">
<path id="signup-phone-background" d="M25 52H5c-2.8 0-5-2.2-5-5V5c0-2.8 2.2-5 5-5h20c2.8 0 5 2.2 5 5v42c0 2.8-2.2 5-5 5z"/>
<g id="signup-promo-phone">
<path class="signup-phone-icon" d="M25 0H5C2.2 0 0 2.2 0 5v42c0 2.8 2.2 5 5 5h20c2.8 0 5-2.2 5-5V5c0-2.8-2.2-5-5-5zm3 47c0 1.7-1.3 3-3 3H5c-1.7 0-3-1.3-3-3v-6h26v6zm0-8H2V10h26v29zm0-31H2V5c0-1.7 1.3-3 3-3h20c1.7 0 3 1.3 3 3v3zM15 47a2 2 0 002-2c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2z"/>
<path class="signup-bc-logo" d="M11.6 19L5.7 30h12.7l5.9-11z"/>
</g>
</g>
<path id="format-dropdown-selected" d="M8.6.3C8.2-.1 7.5-.1 7 .3L3.4 4 2 2.5c-.4-.4-1.2-.4-1.6 0-.4.4-.4 1.2 0 1.6l2.2 2.2c.2.2.5.3.8.3.3 0 .6-.1.8-.3L8.6 2c.5-.5.5-1.2 0-1.7z"/>
<defs>
<linearGradient id="ribbon-gradient" x1="0" x2="0" y1="0" y2="1">
<stop offset="0%" stop-color="#00BAEF"/>
<stop offset="90%" stop-color="#1DA0C3"/>
</linearGradient>
</defs>
<path id="rarr-ico" d="M5 5L0 9l2 1 6-5-6-5-2 1 5 4z"/>
<path id="larr-ico" d="M5 5L0 9l2 1 6-5-6-5-2 1 5 4z" transform="rotate(-180 4 5)"/>
<path d="M2.57 0L.44 2.13 7.31 9 .43 15.87 2.56 18l9-9z" transform="rotate(-180 7.5 9)" id="larr-onboarding-ico"/>
<g id="rarr-onboarding-ico" transform="translate(3)">
<path id="Fill-2" d="M2.57 0L.44 2.13 7.31 9 .43 15.87 2.56 18l9-9z"/>
</g>
<path d="M0 3h3v3H0V3zm6 0l2-1-2-2-1.5 2.3L3 0 1 2l2 1h1v3h5V3H6zm-5 7h2V7H1v3zm3 0h4V7H4v3z" id="gift-card-icon"/>
<path id="not-shipped" d="M7.9 0L4.75 3.16 1.58 0 0 1.58l3.16 3.17L0 7.9l1.58 1.58 3.16-3.16 3.17 3.16 1.58-1.58-3.16-3.16 3.16-3.17z"/>
<path id="checkmark-shipped" d="M4.66 6.5L1.38 3.37 0 4.8l3.28 3.14 1.18 1.12.26.26 7.6-7.95L10.89 0z"/>
<path fill-rule="evenodd" d="M11.82 21.35a60.6 60.6 0 011.25 1.4 42.86 42.86 0 011.21-1.4 56.68 56.68 0 014.18-4.24c5.95-5.4 8.04-9.93 4.2-13.42-2.69-2.35-5.25-1.9-7.63.34a11.2 11.2 0 00-1.62 1.92l-.46.73-.4-.75a10.42 10.42 0 00-1.5-1.97c-2.28-2.32-4.85-2.78-7.72-.3-3.62 3.7-1.54 8.23 4.22 13.45a69.17 69.17 0 014.27 4.24zm1.21-16.6c.38-.5.82-.99 1.31-1.45 2.72-2.55 5.84-3.1 8.99-.35 4.49 4.07 2.15 9.14-4.2 14.9a55.69 55.69 0 00-5.65 5.99l-.38.49-.4-.48c-.07-.1-.21-.26-.42-.5a68.18 68.18 0 00-5.4-5.5C.74 12.28-1.57 7.24 2.64 2.94 6 .04 9.14.6 11.75 3.26A11.4 11.4 0 0113 4.79l.03-.04z" id="menubar-collection-icon"/>
<path fill-rule="evenodd" d="M14.4.87a1 1 0 011.77.77l-1.1 7.84h6.46a1 1 0 01.74 1.68L9.24 25.2a1 1 0 01-1.72-.85L9 15.56H4.5a1 1 0 01-.77-1.63L14.4.87zm.78.63L4.5 14.57H9a1 1 0 01.98 1.16l-1.47 8.8 13.02-14.05h-6.47a1 1 0 01-.99-1.14l1.11-7.84z" id="menubar-feed-icon"/>
<path d="M21.38 19.44a.13.13 0 01-.12.07H1.13a.12.12 0 01-.11-.07.33.33 0 01-.03-.09l3.27-4.15c.37-.59.57-1.27.57-1.97V7.67C4.83 4.09 7.6 1.1 11 1h.2c1.66 0 3.23.63 4.43 1.8a6.33 6.33 0 011.94 4.58v5.85c0 .7.2 1.38.6 2.01l3.2 4.05c.03.06.02.11 0 .15m-7.45 1.32a2.73 2.73 0 01-5.46 0c0-.09.03-.17.03-.25h5.4c.01.08.03.16.03.25m8.27-2.04L19 14.67a2.66 2.66 0 01-.42-1.44V7.38A7.36 7.36 0 0010.98 0C7.03.11 3.83 3.55 3.83 7.66v5.56c0 .51-.15 1-.39 1.4L.17 18.78c-.22.36-.23.79-.02 1.15.2.36.57.58.98.58H7.5c0 .08-.03.16-.03.25a3.73 3.73 0 007.46 0c0-.09-.02-.17-.03-.25h6.36a1.14 1.14 0 00.94-1.78" id="menubar-messages-icon" fill-rule="evenodd"/>
<path fill-rule="evenodd" d="M11.43 19.7a9.02 9.02 0 008.93-9.1c0-5.03-4-9.1-8.93-9.1a9.02 9.02 0 00-8.93 9.1c0 5.03 4 9.1 8.93 9.1zm6.95-1.9l6 6.87c.44.5-.32 1.16-.76.66l-5.98-6.85a9.78 9.78 0 01-6.21 2.22c-5.49 0-9.93-4.52-9.93-10.1S5.94.5 11.43.5c5.48 0 9.93 4.52 9.93 10.1 0 2.82-1.14 5.37-2.98 7.2z" id="menubar-search-icon"/>
<path d="M10.7 10.47l3.74 4.2c.44.5-.3 1.16-.75.66l-3.73-4.2c-.44-.5.3-1.16.75-.66zM6.6 11.7a5.1 5.1 0 100-10.2 5.1 5.1 0 000 10.2zm0 1A6.1 6.1 0 116.6.5a6.1 6.1 0 010 12.2z" id="menubar-search-input-icon"/>
<g id="menubar-cart-icon" fill-rule="evenodd">
<path d="M21.5 25a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"/>
<circle cx="8.5" cy="23.5" r="1.5" opacity=".9"/>
<path fill-rule="nonzero" d="M4.57 2H.5a.5.5 0 010-1h4.48a.5.5 0 01.5.4l.5 2.7 18.52.18c.31 0 .54.28.5.58l-2.28 13.72a.5.5 0 01-.49.42H8.16a.5.5 0 01-.49-.4L4.57 2zm1.6 3.1L8.57 18h13.24l2.1-12.73L6.17 5.1z"/>
</g>
<g id="menubar-phone-menu-icon">
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 6.25H3V4.75H21V6.25Z" fill="#222222"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 12.75H3V11.25H21V12.75Z" fill="#222222"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 19.75L3 19.75V18.25H12L21 18.25V19.75Z" fill="#222222"/>
</g>
<g id="bandcamp-logo-color-bcaqua">
<path d="M26.62 0h2.42v5.8h.04a3.96 3.96 0 013.28-1.78c3.46 0 5.14 2.73 5.14 6.05C37.5 13.12 36 16 32.76 16c-1.49 0-3.08-.37-3.8-1.87h-.05v1.57h-2.3V0m5.43 6c-2.04 0-3.08 1.6-3.08 4.02 0 2.29 1.12 4 3.08 4 2.2 0 3.04-2.02 3.04-4 0-2.06-1.05-4.02-3.04-4.02" id="b" fill="#333"/>
<path d="M56.26 4.05c-1.44 0-2.7.77-3.42 2.03l-.04-.05V4.36h-2.3v9.68l-1.61.01c-.45 0-.58-.24-.58-.85V7.35c0-2.4-2.25-3.3-4.4-3.3-2.42 0-4.82.86-4.99 3.78h2.42c.11-1.23 1.07-1.8 2.43-1.8.97 0 2.27.24 2.27 1.54 0 1.47-1.55 1.27-3.3 1.6-2.03.25-4.22.7-4.22 3.54 0 2.22 1.78 3.32 3.76 3.32 1.3 0 2.85-.42 3.8-1.38.2 1.03.9 1.38 1.87 1.38.4 0 1.17-.15 4.96-.28v-.03h.02v-6.7c0-1.67 1.04-2.99 2.65-2.99 1.42 0 2.1.77 2.15 2.55v7.14h2.42v-7.8c0-2.55-1.5-3.87-3.88-3.87zM45.9 11.9c0 1.58-1.66 2.15-2.72 2.15-.85 0-2.24-.33-2.24-1.45 0-1.32.94-1.71 1.98-1.89 1.06-.2 2.23-.17 2.98-.68v1.87z" id="an" fill="#333"/>
<path d="M72.62 15.7h-2.29v-1.54h-.04c-.64 1.3-2.02 1.84-3.4 1.84-3.47 0-5.14-2.66-5.14-6.06 0-4.12 2.35-5.92 4.76-5.92 1.38 0 2.9.53 3.65 1.78h.04V0h2.43v15.7m-5.42-1.68c2.16 0 3.08-2.04 3.08-4.02 0-2.5-1.17-4-3.04-4-2.27 0-3.08 2.09-3.08 4.13 0 1.96.93 3.9 3.04 3.9" id="d" fill="#333"/>
<path d="M82.25 8.16c-.19-1.38-1.17-2.13-2.5-2.13-1.26 0-3.02.68-3.02 4.13 0 1.9.8 3.9 2.9 3.9 1.41 0 2.39-.97 2.62-2.6h2.42c-.44 2.95-2.2 4.57-5.03 4.57-3.44 0-5.34-2.53-5.34-5.87 0-3.43 1.81-6.1 5.42-6.1 2.55 0 4.72 1.31 4.95 4.1h-2.41" id="c" fill="#333"/>
<path d="M106.44 5.94c-.5-1.3-1.75-1.89-3.09-1.89-1.74 0-2.65.77-3.37 1.9l-.07-1.59h-2.3v9.68l-1.61.01c-.45 0-.57-.24-.57-.85V7.35c0-2.4-2.26-3.3-4.4-3.3-2.42 0-4.83.86-5 3.78h2.43c.1-1.23 1.06-1.8 2.42-1.8.98 0 2.27.24 2.27 1.54 0 1.47-1.55 1.27-3.3 1.6-2.03.25-4.22.7-4.22 3.54 0 2.22 1.78 3.32 3.76 3.32 1.3 0 2.85-.42 3.8-1.38.2 1.03.9 1.38 1.88 1.38.4 0 1.16-.15 4.92-.28l.05-6.77c0-1.9 1.15-2.95 2.4-2.95 1.47 0 1.93.84 1.93 2.4v7.3h2.43V9.05c0-1.9.7-3.03 2.33-3.03 1.9 0 2 1.25 2 3.06v6.63h2.42V7.88c0-2.77-1.36-3.83-3.67-3.83-1.6 0-2.64.73-3.44 1.9zm-16.15 8.11c-.85 0-2.24-.33-2.24-1.45 0-1.32.94-1.71 1.98-1.89 1.06-.2 2.23-.17 2.98-.68v1.87c0 1.58-1.66 2.15-2.72 2.15z" id="am" fill="#333"/>
<path d="M118.04 4.36V5.9h.04c.68-1.3 2-1.85 3.4-1.85 3.46 0 5.14 2.73 5.14 6.05 0 3.05-1.48 5.93-4.74 5.93-1.4 0-2.9-.53-3.67-1.78h-.05v5.67h-2.42V4.36h2.3zm.04 5.7c0 2.28 1.13 4 3.08 4 2.21 0 3.04-2.03 3.04-4 0-2.07-1.04-4.03-3.04-4.03-2.04 0-3.08 1.6-3.08 4.02z" id="p" fill="#333"/>
<path id="rhomboid" fill="#1DA0C3" d="M0 15.63L8.47 0H26.6l-8.47 15.63z"/>
</g>
<g id="bandcamp-logo-color-white" fill="#FFF">
<path d="M26.62 0h2.42v5.8h.04a3.96 3.96 0 013.28-1.78c3.46 0 5.14 2.73 5.14 6.05C37.5 13.12 36 16 32.76 16c-1.49 0-3.08-.37-3.8-1.87h-.05v1.57h-2.3V0m5.43 6c-2.04 0-3.08 1.6-3.08 4.02 0 2.29 1.12 4 3.08 4 2.2 0 3.04-2.02 3.04-4 0-2.06-1.05-4.02-3.04-4.02" id="b"/>
<path d="M56.26 4.05c-1.44 0-2.7.77-3.42 2.03l-.04-.05V4.36h-2.3v9.68l-1.61.01c-.45 0-.58-.24-.58-.85V7.35c0-2.4-2.25-3.3-4.4-3.3-2.42 0-4.82.86-4.99 3.78h2.42c.11-1.23 1.07-1.8 2.43-1.8.97 0 2.27.24 2.27 1.54 0 1.47-1.55 1.27-3.3 1.6-2.03.25-4.22.7-4.22 3.54 0 2.22 1.78 3.32 3.76 3.32 1.3 0 2.85-.42 3.8-1.38.2 1.03.9 1.38 1.87 1.38.4 0 1.17-.15 4.96-.28v-.03h.02v-6.7c0-1.67 1.04-2.99 2.65-2.99 1.42 0 2.1.77 2.15 2.55v7.14h2.42v-7.8c0-2.55-1.5-3.87-3.88-3.87zM45.9 11.9c0 1.58-1.66 2.15-2.72 2.15-.85 0-2.24-.33-2.24-1.45 0-1.32.94-1.71 1.98-1.89 1.06-.2 2.23-.17 2.98-.68v1.87z" id="an"/>
<path d="M72.62 15.7h-2.29v-1.54h-.04c-.64 1.3-2.02 1.84-3.4 1.84-3.47 0-5.14-2.66-5.14-6.06 0-4.12 2.35-5.92 4.76-5.92 1.38 0 2.9.53 3.65 1.78h.04V0h2.43v15.7m-5.42-1.68c2.16 0 3.08-2.04 3.08-4.02 0-2.5-1.17-4-3.04-4-2.27 0-3.08 2.09-3.08 4.13 0 1.96.93 3.9 3.04 3.9" id="d"/>
<path d="M82.25 8.16c-.19-1.38-1.17-2.13-2.5-2.13-1.26 0-3.02.68-3.02 4.13 0 1.9.8 3.9 2.9 3.9 1.41 0 2.39-.97 2.62-2.6h2.42c-.44 2.95-2.2 4.57-5.03 4.57-3.44 0-5.34-2.53-5.34-5.87 0-3.43 1.81-6.1 5.42-6.1 2.55 0 4.72 1.31 4.95 4.1h-2.41" id="c"/>
<path d="M106.44 5.94c-.5-1.3-1.75-1.89-3.09-1.89-1.74 0-2.65.77-3.37 1.9l-.07-1.59h-2.3v9.68l-1.61.01c-.45 0-.57-.24-.57-.85V7.35c0-2.4-2.26-3.3-4.4-3.3-2.42 0-4.83.86-5 3.78h2.43c.1-1.23 1.06-1.8 2.42-1.8.98 0 2.27.24 2.27 1.54 0 1.47-1.55 1.27-3.3 1.6-2.03.25-4.22.7-4.22 3.54 0 2.22 1.78 3.32 3.76 3.32 1.3 0 2.85-.42 3.8-1.38.2 1.03.9 1.38 1.88 1.38.4 0 1.16-.15 4.92-.28l.05-6.77c0-1.9 1.15-2.95 2.4-2.95 1.47 0 1.93.84 1.93 2.4v7.3h2.43V9.05c0-1.9.7-3.03 2.33-3.03 1.9 0 2 1.25 2 3.06v6.63h2.42V7.88c0-2.77-1.36-3.83-3.67-3.83-1.6 0-2.64.73-3.44 1.9zm-16.15 8.11c-.85 0-2.24-.33-2.24-1.45 0-1.32.94-1.71 1.98-1.89 1.06-.2 2.23-.17 2.98-.68v1.87c0 1.58-1.66 2.15-2.72 2.15z" id="am"/>
<path d="M118.04 4.36V5.9h.04c.68-1.3 2-1.85 3.4-1.85 3.46 0 5.14 2.73 5.14 6.05 0 3.05-1.48 5.93-4.74 5.93-1.4 0-2.9-.53-3.67-1.78h-.05v5.67h-2.42V4.36h2.3zm.04 5.7c0 2.28 1.13 4 3.08 4 2.21 0 3.04-2.03 3.04-4 0-2.07-1.04-4.03-3.04-4.03-2.04 0-3.08 1.6-3.08 4.02z" id="p"/>
<path id="rhomboid" d="M0 15.63L8.47 0H26.6l-8.47 15.63z"/>
</g>
<g id="bandcamp-rhomboid-white">
<path id="rhomboid" fill="#FFF" d="M0 15.63L8.47 0H26.6l-8.47 15.63z"/>
</g>
<g id="mobile-cart-up">
<path fill="#fff" stroke="#eee" d="M5 12L16 1h0l11 11"/>
<path fill="none" id="blocking" stroke="#fff" stroke-width="2" d="M4.5 12H27"/>
</g>
<defs>
<linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="fanAppGradient">
<stop stop-color="#00BAEF" offset="0%"/>
<stop stop-color="#1DA0C3" offset="100%"/>
</linearGradient>
</defs>
<g id="fan-app-icon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="mobileweb-fanartist-02" transform="translate(-86 -385)">
<g id="Group">
<g id="menu" transform="translate(58 39)">
<g id="fan-app-icon" transform="translate(28 346)">
<rect id="bg" fill="#FFF" x="0" y="0" width="23" height="23" rx="3"/>
<path id="tent" fill="url(#fanAppGradient)" d="M4 15.9l4.78-8.8h10.21l-4.77 8.8z"/>
</g>
</g>
</g>
</g>
</g>
<g id="artist-app-icon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="mobileweb-fanartist-02" transform="translate(-86 -334)">
<g id="Group">
<g id="menu" transform="translate(58 39)">
<g id="artist-app-icon" transform="translate(28 295)">
<rect id="bg" fill="#4999AD" x="0" y="0" width="23" height="23" rx="3"/>
<path id="tent" fill="#FFF" d="M4 15.9l4.78-8.8h10.21l-4.77 8.8z"/>
</g>
</g>
</g>
</g>
</g>
<path id="embed-icon" d="M16.9 2.3L22 6.97l-5.1 4.68c-.43.43-1 .43-1.43 0-.43-.43-.4-1.13.02-1.57l3.42-3.1-3.42-3.12a1.12 1.12 0 01-.02-1.56c.43-.43 1-.43 1.43 0zm-6.48 10.76c-.14.63-.62.98-1.2.87-.58-.12-.93-.72-.8-1.35L11.47.88c.14-.62.62-.97 1.2-.86.58.12.93.72.8 1.35l-2.8 10.77-.24.92zM5.1 2.3c.43-.43 1-.43 1.43 0 .43.43.43 1.13 0 1.56L3.1 6.97l3.44 3.11c.43.44.43 1.14 0 1.57-.42.43-1 .43-1.43 0L0 6.97 5.1 2.3z"/>
<path id="email-link" d="M0 2C0 .9.9 0 2 0h14a2 2 0 012 2v8a2 2 0 01-2 2H2a2 2 0 01-2-2V2zm16.06 9l.94-.9-4.7-4.55L17 1.9 16.06 1 9.24 6.47h-.48L1.94 1 1 1.9l4.7 3.65L1 10.09l.94.91 4.7-4.55 2.12 1.82h.48l2.11-1.82 4.7 4.55z"/>
<path id="reddit-share" d="M24 11.78a2.65 2.65 0 00-4.5-1.9 13.7 13.7 0 00-6.97-2.05l1.49-4.66 4.01.94v.05a2.17 2.17 0 004.34 0 2.17 2.17 0 00-4.2-.78l-4.32-1.02a.37.37 0 00-.44.25l-1.66 5.21c-2.83.03-5.4.8-7.3 2.03a2.64 2.64 0 10-3.13 4.2c-.06.28-.09.57-.09.86 0 3.9 4.8 7.09 10.72 7.09s10.72-3.18 10.72-7.1c0-.27-.03-.54-.08-.8A2.63 2.63 0 0024 11.78zM6.78 13.6a1.58 1.58 0 013.16 0 1.58 1.58 0 01-3.16 0zm9.06 4.66c-.8.8-2.05 1.18-3.83 1.18H12c-1.78 0-3.03-.38-3.83-1.18a.37.37 0 010-.52.37.37 0 01.53 0c.65.65 1.73.96 3.3.96H12c1.57 0 2.65-.31 3.3-.96a.37.37 0 01.53 0c.14.14.14.38 0 .52zm-.2-3.1c-.86 0-1.57-.7-1.57-1.57a1.58 1.58 0 013.16 0c0 .87-.71 1.58-1.58 1.58z"/>
<path id="copy-icon" d="M16.95 7.05a1 1 0 010 1.41l-8.48 8.49a1 1 0 11-1.42-1.41l8.49-8.49a1 1 0 011.4 0zm-5.8 10.04A4.2 4.2 0 0110 19.2l-1.66 1.65c-1.56 1.56-3.99 1.67-5.41.24-1.43-1.43-1.33-3.86.23-5.42L4.82 14c.6-.6 1.33-.98 2.09-1.14l1.93-1.94c-1.82-.3-3.83.3-5.31 1.79l-1.66 1.66c-2.35 2.34-2.5 5.98-.36 8.12 2.15 2.15 5.79 1.99 8.12-.35l1.66-1.66a6.14 6.14 0 001.79-5.32l-1.94 1.93zm3.22-15.23L12.7 3.52a6.14 6.14 0 00-1.79 5.32l1.94-1.93c.16-.76.54-1.49 1.14-2.1l1.66-1.65c1.56-1.56 3.99-1.66 5.42-.24 1.43 1.43 1.32 3.86-.24 5.42L19.18 10c-.6.6-1.33.98-2.08 1.14l-1.94 1.94c1.82.3 3.83-.3 5.32-1.78l1.66-1.67c2.34-2.34 2.5-5.97.35-8.12-2.14-2.14-5.78-1.98-8.12.35z"/>
<path id="share-icon" d="M6 17A15.24 15.24 0 0117 5.33V2l7 6.64-7 6.7V12s-6.17-.17-11 5zm12 .14V20H2V8h6.6a17 17 0 012.34-2H0v16h20v-6.77l-2 1.91z"/>
<!--hubs-->
<g transform="translate(-1036 -601)" fill-rule="nonzero" stroke="#323232" id="hub-page-next" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M1052.17 602.15l11.62 10.63-11.62-10.63zm11.83 10.88L1052 624l12-10.97zm-.32-.13l-27.18.13 27.18-.13z" id="Combined-Shape"/>
</g>
<g transform="translate(-1036 -655)" fill-rule="nonzero" stroke="#323232" id="hub-page-prev" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M1052.17 656.15l11.62 10.63-11.62-10.63zm11.83 10.88L1052 678l12-10.97zm-.32-.13l-27.18.13 27.18-.13z" id="Combined-Shape" transform="matrix(-1 0 0 1 2100 0)"/>
</g>
<g transform="translate(-1036 -601)" fill-rule="nonzero" stroke="#FFF" id="hub-page-next-light" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M1052.17 602.15l11.62 10.63-11.62-10.63zm11.83 10.88L1052 624l12-10.97zm-.32-.13l-27.18.13 27.18-.13z" id="Combined-Shape"/>
</g>
<g transform="translate(-1036 -655)" fill-rule="nonzero" stroke="#FFF" id="hub-page-prev-light" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M1052.17 656.15l11.62 10.63-11.62-10.63zm11.83 10.88L1052 678l12-10.97zm-.32-.13l-27.18.13 27.18-.13z" id="Combined-Shape" transform="matrix(-1 0 0 1 2100 0)"/>
</g>
<g id="material-close">
<path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/>
<path d="M0 0h24v24H0z" fill="none"/>
</g>
<g id="material-add">
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/>
</g>
<g id="material-arrow-fwd">
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"/>
</g>
<g id="material-done">
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/>
</g>
<!--<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"></svg>-->
<g id="material-queue">
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M15 6H3v2h12V6zm0 4H3v2h12v-2zM3 16h8v-2H3v2zM17 6v8.18A3 3 0 1019 17V8h3V6h-5z"/>
</g>
<!--<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"></svg>-->
<g id="material-vol-up">
<path d="M3 9v6h4l5 5V4L7 9H3zm13.5 3A4.5 4.5 0 0014 7.97v8.05A4.47 4.47 0 0016.5 12zM14 3.23v2.06a7 7 0 010 13.42v2.06a9 9 0 000-17.54z" id="Shape" fill="#333" fill-rule="nonzero"/>
</g>
<path fill="#333" d="M3 9v6h4l5 5V4L7 9z" id="material-vol-mute"/>
<g id="material-unlock">
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6A5 5 0 007 6h1.9a3.1 3.1 0 016.2 0v2H6a2 2 0 00-2 2v10c0 1.1.9 2 2 2h12a2 2 0 002-2V10a2 2 0 00-2-2zm0 12H6V10h12v10z"/>
</g>
<!--<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 128 128" > <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#material-heart"></use> </svg>-->
<path d="M25.75 36.06C10.4 51.72 18.82 70.11 41.2 90.41a249.17 249.17 0 0115.33 15.21c1.63 1.77 3.09 3.4 4.34 4.84.76.86 1.27 1.48 1.54 1.8l1.44 1.74 1.4-1.8 1.46-1.79A201.31 201.31 0 0185.85 90.4c23.11-21 31.63-39.47 15.27-54.3-11.46-10.04-22.82-8-32.73 1.29a44.91 44.91 0 00-4.78 5.28l-.1.13-.09-.13a41.46 41.46 0 00-4.48-5.45C53.8 32 48.12 29 42.04 29c-5.19 0-10.65 2.19-16.29 7.06z" id="material-heart"/>
<!--<svg width="16px" height="15px" viewBox="0 0 16 15" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">-->
<g id="material-comment">
<path id="ic-comment" d="M14.93 0c.59 0 1.06.48 1.07 1.08v8.57c0 .59-.48 1.06-1.07 1.06H8V15l-4.27-4.29H1.07c-.59 0-1.06-.47-1.07-1.06V1.08C0 .48.48 0 1.07 0h13.86zM1.5 1.5V9.2h2.86l2.14 2.16V9.2h8V1.5h-13z"/>
</g>
<!--<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#material-keyboard-up"></use></svg>-->
<g id="material-keyboard-up">
<path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"/>
<path d="M0 0h24v24H0z" fill="none"/>
</g>
<!--<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#material-keyboard-down"></use></svg>-->
<g id="material-keyboard-down">
<path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/>
<path fill="none" d="M0 0h24v24H0V0z"/>
</g>
<defs>
<linearGradient id="pledge-processing-mask" x1="50%" x2="50%" y1="0%" y2="100%">
<stop offset="0%" stop-color="#F8E71C"/>
<stop offset="100%" stop-color="#4E8E25"/>
</linearGradient>
</defs>
<path d="M50.17 100.08l5.33 4.51c.49.69-.73 1.95-1.5 1.5l-8-7 8-7c.77-.44 1.99.82 1.5 1.5l-5.3 4.49a45 45 0 001.06-89.93l2.12-1.85a47 47 0 01-3.21 93.78zM45.46 6.12L40.1 1.59c-.48-.68.73-1.94 1.5-1.5l8 7-8 7c-.77.45-1.98-.81-1.5-1.5l5.29-4.47a45 45 0 00-1.03 89.9l-2.1 1.84a47 47 0 013.19-93.74zm1.14 71.27v-5.4a22.16 22.16 0 01-12.75-5.57l2.43-3.24c3.24 2.92 6.43 4.7 10.48 5.13v-13.5c-8-1.89-11.5-4.86-11.5-10.47v-.11c0-5.56 4.7-9.61 11.34-9.94v-3.13h3.45v3.24c4.05.38 7.18 1.9 10.32 4.32l-2.33 3.24c-2.59-2.21-5.29-3.4-8.15-3.89v13.29c8.2 1.89 11.66 5.02 11.66 10.47v.11c0 5.78-4.7 9.72-11.5 10.15v5.3H46.6zm.16-26.79V37.91c-4.54.16-7.35 2.76-7.35 6.05v.1c0 3.03 1.4 5.03 7.35 6.54zm3.13 17.88c4.59-.22 7.5-2.76 7.5-6.27v-.1c0-3.2-1.5-5.08-7.5-6.54v12.9z" transform="translate(0 .9)" id="pledge-processing"/>
<!--common icons-->
<g id="help" fill="none" fill-rule="evenodd">
<rect width="15" height="15" fill="#B8B8B8" rx="7.5"/>
<path fill="#FFF" d="M6.57 9.8h1.72v1.7H6.57V9.8zM4.79 6.19c.01-.4.08-.76.2-1.1.14-.32.32-.6.55-.85.23-.24.5-.43.83-.57a3.45 3.45 0 012.4.01c.35.15.63.32.84.54a1.93 1.93 0 01.6 1.37 2.14 2.14 0 01-.93 1.86l-.47.35c-.15.11-.28.24-.4.39-.1.14-.18.33-.2.55v.42H6.7v-.5a2.25 2.25 0 01.54-1.34c.13-.15.27-.28.42-.39.14-.1.28-.22.4-.33.13-.1.23-.23.3-.36a.9.9 0 00.1-.5c0-.33-.07-.58-.24-.74a.94.94 0 00-.69-.24c-.2 0-.36.03-.5.11-.15.08-.27.18-.36.3-.1.14-.16.29-.2.46-.05.17-.07.36-.07.56H4.8z"/>
</g>
<g id="ic-add-video">
<path d="M88 32a8 8 0 018 8v19l24-24v69L96 80v16a8 8 0 01-8 8H16a8 8 0 01-8-8V40a8 8 0 018-8h72zM56 52h-8v12H36v8h12v12h8V72h12v-8H56V52z" id="ic-add-video"/>
</g>
<g id="ic-add-photo">
<path d="M104 8H88a8 8 0 00-8-8H32a8 8 0 00-8 8H8a8 8 0 00-8 8v56a8 8 0 008 8h96a8 8 0 008-8V16a8 8 0 00-8-8zM56 68a24 24 0 110-48 24 24 0 010 48zm4-40h-8v12H40v8h12v12h8V48h12v-8H60V28z" id="ic-add-photo"/>
</g>
<path fill="#1DA0C3" fill-rule="evenodd" d="M8.86 8.26H0L4.14.62H13L8.86 8.26" id="bc-logo-tent"/>
<!--<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">-->
<g id="contextual-dots" stroke="none" fill="none" fill-rule="evenodd">
<g transform="translate(7 17)" fill="#818285">
<circle cx="3" cy="3" r="3"/>
<circle cx="13" cy="3" r="3"/>
<circle cx="23" cy="3" r="3"/>
</g>
<path d="M0 0h40v40H0z"/>
</g>
<!--<svg width="128px" height="128px" viewBox="0 0 128 128" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">-->
<g id="report-flag-icon">
<path fill="none" d="M0 0h128v128H0z"/>
<path d="M34.56 20v95.7h-7.9V20h7.9zm7.78 5.01s9.54-10 19.34 0c21.28 21.72 40.61-.65 40.61-.65v46.58s-19.33 22.37-40.61.65c-9.8-10-19.34 0-19.34 0z"/>
</g>
<!-- <svg id="icon-allow-comment" width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"></svg> -->
<g id="allow-comment-icon">
<polygon points="15.981 3 6.573 13.501 2.708 9.635 2 10.342 6.614 14.956 16.726 3.668"></polygon>
</g>
<!-- <svg class="live-calendar-icon" viewBox="0 0 12 11"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#live-calendar-icon"></use></svg> -->
<g id="live-calendar-icon" fill="none" fill-rule="evenodd">
<g id="live-calendar-icon-stroke" transform="translate(-1033 -482)" stroke-width=".9">
<g id="component/event-card/4-col" transform="translate(744 209.5)">
<g id="Group" transform="translate(289 272)">
<rect id="Rectangle" x=".45" y="2.65" width="10.73" height="8.36" rx="1.8"/>
<path id="Path" d="M2.91.66v3.08M8.72.66v3.08"/>
<path id="Path-4" d="M.83 5.67h10.8"/>
</g>
</g>
</g>
</g>
<!-- <svg class="live-clock-icon" viewBox="0 0 12 11"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#live-clock-icon"></use></svg> -->
<g id="live-clock-icon" fill="none" fill-rule="evenodd">
<g id="live-clock-icon-stroke" transform="translate(-1033 -499)" >
<g id="component/event-card/4-col" transform="translate(744 209.5)">
<g id="icon/clock" transform="translate(289 289)">
<circle id="Oval" cx="6" cy="6.5" r="5.5"/>
<path id="Path-5" d="M6 2.53V7h3.03"/>
</g>
</g>
</g>
</g>
<!-- <svg id="icon-ban" width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"></svg> -->
<g id="ban-user-icon">
<path d="M8.0002,0.0002 C3.5822,0.0002 0.0002,3.5822 0.0002,8.0002 C0.0002,12.4182 3.5822,16.0002 8.0002,16.0002 C12.4182,16.0002 16.0002,12.4182 16.0002,8.0002 C16.0002,3.5822 12.4182,0.0002 8.0002,0.0002 L8.0002,0.0002 Z M8.0002,1.0002 C11.8602,1.0002 15.0002,4.1402 15.0002,8.0002 C15.0002,11.8592 11.8602,15.0002 8.0002,15.0002 C4.1402,15.0002 1.0002,11.8592 1.0002,8.0002 C1.0002,4.1402 4.1402,1.0002 8.0002,1.0002 L8.0002,1.0002 Z M8.7072,8.0002 L11.6472,10.9402 L10.9402,11.6472 L8.0002,8.7072 L5.0592,11.6472 L4.3522,10.9402 L7.2922,8.0002 L4.3522,5.0592 L5.0592,4.3522 L8.0002,7.2932 L10.9402,4.3522 L11.6472,5.0592 L8.7072,8.0002 Z"></path>
</g>
<!-- <svg id="icon-delete-comment" fill-rule="evenodd" width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"></svg> -->
<g id="delete-comment-icon" fill-rule="evenodd">
<path d="M10.5,14.518 L11.5,14.518 L11.5,5.37 L10.5,5.37 L10.5,14.518 Z M6.5,14.518 L7.5,14.518 L7.5,5.37 L6.5,5.37 L6.5,14.518 Z M4.017,16.002 L14.017,16.002 L14.017,3.887 L4.017,3.887 L4.017,16.002 Z M6.464,2.887 L11.536,2.887 L11.536,2 L6.464,2 L6.464,2.887 Z M14.001,2.887 L12.536,2.887 L12.536,1 L5.464,1 L5.464,2.887 L3.999,2.887 L1,2.887 L1,3.887 L3,3.887 L3,15.989 C3,16.541 3.447,16.988 3.999,16.988 L14.001,16.988 C14.553,16.988 15,16.541 15,15.989 L15,3.887 L17,3.887 L17,2.887 L14.001,2.887 Z"></path>
</g>
<!-- <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"></svg> -->
<g id="ic-edit">
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
<path d="m12.02 6.27 1.06-1.07a.56.56 0 0 0 .17-.41c0-.16-.06-.3-.17-.41l-1.36-1.36a.56.56 0 0 0-.4-.17c-.17 0-.31.06-.42.17L9.83 4.08l2.19 2.19zm-7.09 7.08L11.4 6.9 9.2 4.7l-6.45 6.46v2.18h2.18z"/>
</svg>
</g>
<!-- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"> -->
<g id="ic-tooltip">
<path d="M8 15.06a6.55 6.55 0 0 0 5.74-3.28c.61-1.04.92-2.16.92-3.38a6.55 6.55 0 0 0-3.28-5.74A6.55 6.55 0 0 0 8 1.74c-1.2 0-2.33.3-3.36.92-1 .58-1.8 1.38-2.38 2.38a6.52 6.52 0 0 0-.92 3.36c0 1.2.3 2.33.92 3.36A6.55 6.55 0 0 0 8 15.06zm0-1.32a5.2 5.2 0 0 1-2.69-.73 5.18 5.18 0 0 1-1.92-1.92 5.2 5.2 0 0 1 0-5.38A5.18 5.18 0 0 1 5.31 3.8a5.2 5.2 0 0 1 5.38 0c.8.47 1.45 1.11 1.92 1.92a5.2 5.2 0 0 1 0 5.38A5.18 5.18 0 0 1 10.69 13a5.2 5.2 0 0 1-2.69.73zm.66-3.34c0-.33.1-.64.32-.93.11-.16.34-.38.67-.68.33-.3.56-.53.69-.73.2-.3.32-.64.32-1A2.72 2.72 0 0 0 8 4.4a2.72 2.72 0 0 0-2.66 2.66h1.32c0-.37.13-.68.4-.93.26-.26.58-.39.94-.39s.68.13.94.39c.27.25.4.56.4.93 0 .24-.07.46-.2.65-.1.14-.27.3-.5.48l-.6.48a2.19 2.19 0 0 0-.7 1.73h1.32zm0 2v-1.34H7.34v1.34h1.32z" fill="#999"/>
</g>
<!-- <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"> -->
<g id="ic-camera-small">
<path d="M9.21 5.93H7.57v1.65h-.93V5.93H5V5h1.64V3.36h.93V5h1.64v.93zm-2.13 3.1A3.57 3.57 0 0 1 3.53 5.5c0-1.94 1.6-3.54 3.55-3.54 1.93 0 3.54 1.6 3.54 3.54s-1.6 3.54-3.54 3.54zm6.2-7.86h-2.75C10.53.53 10 0 9.36 0H4.68C4.03 0 3.5.53 3.5 1.17H.76a.77.77 0 0 0-.76.76v7.43c0 .4.35.76.76.76h12.46c.4 0 .76-.35.76-.76V1.93c.11-.41-.24-.76-.7-.76z"/>
</g>
<!-- <svg width="326" height="324" xmlns="http://www.w3.org/2000/svg"> -->
<g id="ic-spinny">
<g transform="translate(0 2)" opacity=".99" fill="none" fill-rule="evenodd">
<circle fill="#A4A4A5" cx="161" cy="287" r="35"/>
<circle fill="#606463" cx="161" cy="35" r="35"/>
<circle fill="#D2D2D1" transform="rotate(90 35 161)" cx="35" cy="161" r="35"/>
<circle fill="#7C7F7E" transform="rotate(90 287 161)" cx="287" cy="161" r="35"/>
<circle fill="#BBBAB9" transform="rotate(45 71.9 250.1)" cx="71.9" cy="250.1" r="35"/>
<circle fill="#717474" transform="rotate(45 250.1 71.9)" cx="250.1" cy="71.9" r="35"/>
<circle fill="#DCDCDC" transform="rotate(135 71.9 71.9)" cx="71.9" cy="71.9" r="35"/>
<circle fill="#8D8F8F" transform="rotate(135 250.1 250.1)" cx="250.1" cy="250.1" r="35"/>
</g>
</g>
<!-- <svg class="arrow" viewBox="0 0 24 24"><use href="#discover-arrow"></svg> -->
<path id="discover-arrow" d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/>
<g id="fan-app-icon" fill="none" fill-rule="evenodd">
<rect fill="#FFF" width="23" height="23" rx="3"/>
<path fill="url(#fanAppGradient)" d="M4 15.9l4.78-8.8h10.21l-4.77 8.8z"/>
</g>
<!-- <svg width="22px" height="15px" viewBox="0 0 22 15" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> -->
<g id="view-eyeball-icon" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="adminControls---OFF-AIR-Copy" transform="translate(-823.000000, -743.000000)">
<g id="component/video/sound-check" transform="translate(134.000000, 222.000000)">
<g id="Group" transform="translate(689.000000, 521.000000)">
<g transform="translate(0.000000, 0.000000)" id="Oval">
<circle fill="currentColor" cx="11" cy="7.28" r="3"></circle>
<path d="M11,1 C15.6667595,1 19.5502286,5.64619254 20.7714147,7.28017631 C19.5496534,8.91449561 15.6664139,13.56 11,13.56 C6.33324048,13.56 2.44977141,8.91380746 1.22858526,7.27982369 C2.45034662,5.64550439 6.33358609,1 11,1 Z" stroke="currentColor" stroke-width="2"></path>
</g>
</g>
</g>
</g>
</g>
<path id="check" fill="none" stroke-width="1.5" d="M1.5 6.5l4 5 8-11" />
<g id="two-person-silhouette">
<path d='M12.81 8.64c-.244-.359-.808-.605-1.858-.986-1.046-.38-1.38-.701-1.38-1.388 0-.412.32-.277.46-1.032.058-.313.34-.005.394-.72 0-.285-.154-.357-.154-.357s.078-.42.109-.745c.037-.404-.042-1.579-1.494-1.579S6.971 3.008 7.01 3.413c.03.323.108.744.108.744s-.154.072-.154.357c.054.715.336.407.394.72.14.755.46.62.46 1.032 0 .467-.156.765-.583 1.027 2.284.995 2.24 1.2 2.24 2.09V11H13s-.028-2.12-.19-2.36zm-6.046-.7c-1.308-.518-1.726-.954-1.726-1.888 0-.56.399-.378.574-1.404.072-.426.426-.007.493-.98 0-.387-.192-.484-.192-.484s.098-.573.136-1.014C6.097 1.62 5.676 0 3.859 0 2.044 0 1.782 1.62 1.83 2.17c.039.441.136 1.014.136 1.014s-.192.097-.192.484c.067.973.42.554.493.98.175 1.026.575.843.575 1.404 0 .934-.418 1.37-1.727 1.887C.717 8.097 0 8.213 0 8.8V11h8.821V9.35c0-.536-.745-.892-2.057-1.41z' />
</g>
<path id="read-more-arr" d="M10.815,3.12018899 C10.809,3.11518899 6.58,0.0611889922 6.58,0.0611889922 C6.427,-0.0388110078 6.221,-0.0138110078 6.097,0.124188992 C5.973,0.260188992 5.967,0.467188992 6.083,0.610188992 L7.863,3.00018899 L0.5,3.00018899 C0.224,3.00018899 0,3.22418899 0,3.50018899 C0,3.77618899 0.224,4.00018899 0.5,4.00018899 L7.863,4.00018899 L6.083,6.39018899 C5.967,6.53318899 5.973,6.74018899 6.097,6.87618899 C6.221,7.01418899 6.427,7.03918899 6.58,6.93918899 L10.802,3.89918899 C10.926,3.78818899 11,3.65518899 11,3.50018899 C11,3.34518899 10.926,3.21218899 10.815,3.12018899 Z"></path>
<path id="close-weekly-archive" d="M7.4,6l2.8-2.8c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L6,4.6L3.2,1.8c-0.4-0.4-1-0.4-1.4,0 c-0.4,0.4-0.4,1,0,1.4L4.6,6L1.8,8.8c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0L6,7.4l2.8,2.8c0.4,0.4,1,0.4,1.4,0 c0.4-0.4,0.4-1,0-1.4L7.4,6z"></path>
<path id="nn-view-album" d="M1.43682992,0L0 1.44492059 9.03679561 10.0650366 0.00617548675 18.5439879 1.43065443 20 12 10.0771364z"></path>
<path id="nn-own-this" d="M18.1085095,1.66536531 C16.7611171,0.429117108 15.3262573,-0.0849663045 13.8432411,0.146575233 C12.1400821,0.40973698 10.7946553,1.62150502 9.97698178,2.57215133 C9.22220618,1.60722493 7.97112632,0.38423681 6.31317524,0.0741547518 C4.77610618,-0.210427137 3.24493381,0.32099639 1.70786476,1.71942567 C0.531476234,2.97709402 -0.0414849278,4.41734358 0.00274020481,6.00039409 C0.0725176362,8.52287084 1.68722637,11.252409 4.93728222,14.3481295 L4.93728222,14.3491495 C7.46106312,16.7492254 9.23596511,18.9850803 9.25365516,19.0075204 L10.0379142,19.999987 L10.791707,18.9840603 C10.8084143,18.9616201 12.4820898,16.7186252 14.973439,14.3450695 C18.3561702,11.1198081 20.0013452,8.32804954 20.0003624,5.81169284 C20.0003624,4.25516251 19.3674516,2.86489328 18.1085095,1.66536531"></path>
<path id="nn-wishlisted" d="M18.1081467,1.66537829 C16.7607543,0.429130081 15.3258944,-0.0849533313 13.8428783,0.146588206 C12.1397193,0.409749953 10.7942925,1.621518 9.97661895,2.57216431 C9.22184336,1.6072379 7.97076349,0.384249783 6.31281241,0.074167725 C4.77574336,-0.210414164 3.24457099,0.321009364 1.70750194,1.71943865 C0.531113412,2.977107 -0.0418477507,4.41735656 0.00237738193,6.00040707 C0.0721548134,8.52288381 1.68686354,11.2524219 4.9369194,14.3481425 L4.9369194,14.3491625 C7.4607003,16.7492384 9.23560229,18.9850933 9.25329234,19.0075334 L10.0375514,20 L10.7913442,18.9840733 C10.8080514,18.9616331 12.481727,16.7186382 14.9730762,14.3450825 C18.3558074,11.1198211 20.0009823,8.32806252 19.9999996,5.81170581 C19.9999996,4.25517548 19.3670888,2.86490625 18.1081467,1.66537829"></path>
<path id="nn-add-wishlist" d="M6.26532856,12.8438659 C7.90059563,14.4003455 9.21450913,15.8670674 9.99381609,16.7758637 C10.7485547,15.8548277 12.0251244,14.3840259 13.643685,12.8428459 C16.5574872,10.0634181 18.0355171,7.69911951 18.0345343,5.81216853 C18.0345343,4.83707385 17.6286658,3.97621622 16.793343,3.18165685 C15.9010218,2.36261813 15.0195107,2.02806682 14.1311204,2.16474327 C12.2285501,2.45747566 10.7858986,4.80953457 10.7711576,4.83299396 L9.87981911,6.33643491 L9.07004744,4.78403523 C9.05923738,4.76261579 7.80428783,2.42075662 5.95675052,2.08110544 C5.03494733,1.91178984 4.06302478,2.28714009 3.05965478,3.19797643 C2.31474346,3.99967561 1.93835687,4.91561181 1.96685611,5.94170516 C2.02090641,7.85619543 3.46650608,10.1786751 6.26532856,12.8448859 L6.26532856,12.8438659 Z M10.0370563,20 L9.2528357,19.0075658 C9.23514652,18.9851264 7.46033142,16.7493444 4.93667407,14.3483268 L4.93667407,14.3473068 C1.68677732,11.2516872 0.0731303674,8.52223813 0.00237361922,6.00086363 C-0.0418493484,4.41786474 0.532066498,2.97766215 1.7074147,1.72003482 C3.24440851,0.320631169 4.77452319,-0.209755055 6.31249973,0.07379758 C7.96938691,0.384889499 9.22138826,1.60681776 9.97612691,2.5717127 C10.7927777,1.62211736 12.1391214,0.409368864 13.842197,0.147235672 C15.3221923,-0.0822583664 16.7599301,0.42874836 18.1082393,1.66597622 C19.3671198,2.86444509 19.9990168,4.25568896 19.9999996,5.81216853 C20.0009823,8.32742319 18.3558879,11.1190907 14.9723395,14.3452669 C12.4811123,16.7177253 10.8085014,18.960647 10.7908122,18.9841064 L10.0370563,20 Z"></path>
<path id="bc-daily-expand" d="M9,4H6V1c0-0.6-0.4-1-1-1S4,0.4,4,1v3H1C0.4,4,0,4.4,0,5c0,0.6,0.4,1,1,1h3v3c0,0.6,0.4,1,1,1 s1-0.4,1-1V6h3c0.6,0,1-0.4,1-1C10,4.4,9.6,4,9,4z"></path>
</svg>
<div id="pagedata" data-blob="{"recaptcha_public_key":"6LfhSPgSAAAAAPwto_qzHuwSmjgfrkg35xXXu_8K","invisible_recaptcha_public_key":"6Ld7hz4UAAAAANlndw60vAheGUwN0Mb-qeWD_LHr","templglobals":{"endpoint_mobilized":true,"is_phone":false},"localize_page":true,"locale":"en","languages":{"en":"English","de":"Deutsch","es":"Español","fr":"Français","pt":"Português","ja":"日本語"},"help_center_url":"https://get.bandcamp.help/hc/en-us","env":"prod","sidebar_disco":{"music_grid":true,"discography_real_size":6,"sidebar_max_size":12,"sidebar_collapse_size":3},"user_territory":null,"tralbum_is_promo":null,"embed_info":{"public_embeddable":true,"exclusive_embeddable":false,"item_public":true,"no_track_preorder":false},"fan_follows_label":null,"login_bounce_url":"https://bandcamp.com/login?bounce=https%3A%2F%2Fwitchesbrew024.bandcamp.com%2Falbum%2Fwitches-brew&sig=e651f9301574e96927d8800313398014","cfg":{"mobile_app":true,"gifting":true,"physical_gifting":true,"physical_gifting_zip_regex":true,"tralbum_login":true,"no_flash_uploads":true,"artist_subscriptions":true,"video_sharing":true,"open_signup":true,"stream_buffer_duration_stats":true,"fan_page_2017":true,"header_rework_2018":true,"band_navbar_update_2023":true,"dsa_buy_dialog":true,"single_sign_up":true,"fan_signup_use_captcha":true,"login_use_captcha":true,"mobile_onboarding":true,"gift_cards":true,"menubar_autocomplete_enabled":true,"use_elasticsearch_backed_search":true,"new_search_api_service":true,"search_tracking":true,"order_history":true,"search_discovery_one_filter_desktop_only":true,"search_discovery_one_filter_rollout":true,"community":true},"media_mode_test":false,"lo_querystr":"?action_sig=1f3d10dca281a90afc92c199b8cbeecb&action_url=https%3A%2F%2Fwitchesbrew024.bandcamp.com%2Falbum%2Fwitches-brew&band_id=1392840280&item_id=2721831846&item_type=album","ip_location_country_code":"NL","fan_location_country":null,"show_buy_full_disco":null,"live_event_tickets":{},"buyer_location":{"country_code":"NL","is_eu":true},"signup_params":{"save_card":false,"mailing_list_info":{"email_address":null},"genres":[{"id":10,"name":"electronic","norm_name":"electronic","value":"electronic"},{"id":23,"name":"rock","norm_name":"rock","value":"rock"},{"id":18,"name":"metal","norm_name":"metal","value":"metal"},{"id":2,"name":"alternative","norm_name":"alternative","value":"alternative"},{"id":14,"name":"hip-hop/rap","norm_name":"hip-hop-rap","value":"hip-hop-rap"},{"id":11,"name":"experimental","norm_name":"experimental","value":"experimental"},{"id":20,"name":"punk","norm_name":"punk","value":"punk"},{"id":12,"name":"folk","norm_name":"folk","value":"folk"},{"id":19,"name":"pop","norm_name":"pop","value":"pop"},{"id":3,"name":"ambient","norm_name":"ambient","value":"ambient"},{"id":24,"name":"soundtrack","norm_name":"soundtrack","value":"soundtrack"},{"id":26,"name":"world","norm_name":"world","value":"world"},{"id":15,"name":"jazz","norm_name":"jazz","value":"jazz"},{"id":1,"name":"acoustic","norm_name":"acoustic","value":"acoustic"},{"id":13,"name":"funk","norm_name":"funk","value":"funk"},{"id":21,"name":"r&b/soul","norm_name":"r-b-soul","value":"r-b-soul"},{"id":9,"name":"devotional","norm_name":"devotional","value":"devotional"},{"id":5,"name":"classical","norm_name":"classical","value":"classical"},{"id":22,"name":"reggae","norm_name":"reggae","value":"reggae"},{"id":27,"name":"podcasts","norm_name":"podcasts","value":"podcasts"},{"id":7,"name":"country","norm_name":"country","value":"country"},{"id":25,"name":"spoken word","norm_name":"spoken-word","value":"spoken-word"},{"id":6,"name":"comedy","norm_name":"comedy","value":"comedy"},{"id":4,"name":"blues","norm_name":"blues","value":"blues"},{"id":28,"name":"audiobooks","norm_name":"audiobooks","value":"audiobooks"},{"id":17,"name":"latin","norm_name":"latin","value":"latin"}],"subgenres":{"acoustic":[{"name":"folk","value":"folk","norm_name":"folk"},{"name":"singer-songwriter","value":"singer-songwriter","norm_name":"singer-songwriter"},{"name":"rock","value":"rock","norm_name":"rock"},{"name":"pop","value":"pop","norm_name":"pop"},{"name":"guitar","value":"guitar","norm_name":"guitar"},{"name":"americana","value":"americana","norm_name":"americana"},{"name":"electro-acoustic","value":"electro-acoustic","norm_name":"electro-acoustic"},{"name":"instrumental","value":"instrumental","norm_name":"instrumental"},{"name":"piano","value":"piano","norm_name":"piano"},{"name":"bluegrass","value":"bluegrass","norm_name":"bluegrass"},{"name":"roots","value":"roots","norm_name":"roots"}],"alternative":[{"name":"indie rock","value":"indie-rock","norm_name":"indie-rock"},{"name":"industrial","value":"industrial","norm_name":"industrial"},{"name":"shoegaze","value":"shoegaze","norm_name":"shoegaze"},{"name":"grunge","value":"grunge","norm_name":"grunge"},{"name":"goth","value":"goth","norm_name":"goth"},{"name":"dream pop","value":"dream-pop","norm_name":"dream-pop"},{"name":"emo","value":"emo","norm_name":"emo"},{"name":"math rock","value":"math-rock","norm_name":"math-rock"},{"name":"britpop","value":"britpop","norm_name":"britpop"},{"name":"jangle pop","value":"jangle-pop","norm_name":"jangle-pop"}],"ambient":[{"name":"chill-out","value":"chill-out","norm_name":"chill-out"},{"name":"drone","value":"drone","norm_name":"drone"},{"name":"dark ambient","value":"dark-ambient","norm_name":"dark-ambient"},{"name":"electronic","value":"electronic","norm_name":"electronic"},{"name":"soundscapes","value":"soundscapes","norm_name":"soundscapes"},{"name":"field recordings","value":"field-recordings","norm_name":"field-recordings"},{"name":"atmospheric","value":"atmospheric","norm_name":"atmospheric"},{"name":"meditation","value":"meditation","norm_name":"meditation"},{"name":"noise","value":"noise","norm_name":"noise"},{"name":"new age","value":"new-age","norm_name":"new-age"},{"name":"idm","value":"idm","norm_name":"idm"},{"name":"industrial","value":"industrial","norm_name":"industrial"}],"blues":[{"name":"rhythm & blues","value":"rhythm-blues","norm_name":"rhythm-blues"},{"name":"blues rock","value":"blues-rock","norm_name":"blues-rock"},{"name":"country blues","value":"country-blues","norm_name":"country-blues"},{"name":"boogie-woogie","value":"boogie-woogie","norm_name":"boogie-woogie"},{"name":"delta blues","value":"delta-blues","norm_name":"delta-blues"},{"name":"americana","value":"americana","norm_name":"americana"},{"name":"electric blues","value":"electric-blues","norm_name":"electric-blues"},{"name":"gospel","value":"gospel","norm_name":"gospel"},{"name":"bluegrass","value":"bluegrass","norm_name":"bluegrass"}],"classical":[{"name":"orchestral","value":"orchestral","norm_name":"orchestral"},{"name":"neo-classical","value":"neo-classical","norm_name":"neo-classical"},{"name":"chamber music","value":"chamber-music","norm_name":"chamber-music"},{"name":"classical piano","value":"classical-piano","norm_name":"classical-piano"},{"name":"contemporary classical","value":"contemporary-classical","norm_name":"contemporary-classical"},{"name":"baroque","value":"baroque","norm_name":"baroque"},{"name":"opera","value":"opera","norm_name":"opera"},{"name":"choral","value":"choral","norm_name":"choral"},{"name":"modern classical","value":"modern-classical","norm_name":"modern-classical"},{"name":"avant garde","value":"avant-garde","norm_name":"avant-garde"}],"comedy":[{"name":"improv","value":"improv","norm_name":"improv"},{"name":"stand-up","value":"stand-up","norm_name":"stand-up"}],"country":[{"name":"bluegrass","value":"bluegrass","norm_name":"bluegrass"},{"name":"country rock","value":"country-rock","norm_name":"country-rock"},{"name":"americana","value":"americana","norm_name":"americana"},{"name":"country folk","value":"country-folk","norm_name":"country-folk"},{"name":"alt-country","value":"alt-country","norm_name":"alt-country"},{"name":"country blues","value":"country-blues","norm_name":"country-blues"},{"name":"western","value":"western","norm_name":"western"},{"name":"singer-songwriter","value":"singer-songwriter","norm_name":"singer-songwriter"},{"name":"outlaw","value":"outlaw","norm_name":"outlaw"},{"name":"honky-tonk","value":"honky-tonk","norm_name":"honky-tonk"},{"name":"roots","value":"roots","norm_name":"roots"},{"name":"hillbilly","value":"hillbilly","norm_name":"hillbilly"}],"devotional":[{"name":"christian","value":"christian","norm_name":"christian"},{"name":"gospel","value":"gospel","norm_name":"gospel"},{"name":"meditation","value":"meditation","norm_name":"meditation"},{"name":"spiritual","value":"spiritual","norm_name":"spiritual"},{"name":"worship","value":"worship","norm_name":"worship"},{"name":"inspirational","value":"inspirational","norm_name":"inspirational"}],"electronic":[{"name":"house","value":"house","norm_name":"house"},{"name":"electronica","value":"electronica","norm_name":"electronica"},{"name":"downtempo","value":"downtempo","norm_name":"downtempo"},{"name":"techno","value":"techno","norm_name":"techno"},{"name":"electro","value":"electro","norm_name":"electro"},{"name":"dubstep","value":"dubstep","norm_name":"dubstep"},{"name":"beats","value":"beats","norm_name":"beats"},{"name":"dance","value":"dance","norm_name":"dance"},{"name":"idm","value":"idm","norm_name":"idm"},{"name":"drum & bass","value":"drum-bass","norm_name":"drum-bass"},{"name":"breaks","value":"breaks","norm_name":"breaks"},{"name":"trance","value":"trance","norm_name":"trance"},{"name":"glitch","value":"glitch","norm_name":"glitch"},{"name":"chiptune","value":"chiptune","norm_name":"chiptune"},{"name":"chillwave","value":"chillwave","norm_name":"chillwave"},{"name":"dub","value":"dub","norm_name":"dub"},{"name":"edm","value":"edm","norm_name":"edm"},{"name":"instrumental","value":"instrumental","norm_name":"instrumental"},{"name":"witch house","value":"witch-house","norm_name":"witch-house"},{"name":"garage","value":"garage","norm_name":"garage"},{"name":"juke","value":"juke","norm_name":"juke"},{"name":"footwork","value":"footwork","norm_name":"footwork"},{"name":"vaporwave","value":"vaporwave","norm_name":"vaporwave"},{"name":"synthwave","value":"synthwave","norm_name":"synthwave"}],"experimental":[{"name":"noise","value":"noise","norm_name":"noise"},{"name":"drone","value":"drone","norm_name":"drone"},{"name":"avant garde","value":"avant-garde","norm_name":"avant-garde"},{"name":"experimental rock","value":"experimental-rock","norm_name":"experimental-rock"},{"name":"improvisation","value":"improvisation","norm_name":"improvisation"},{"name":"sound art","value":"sound-art","norm_name":"sound-art"},{"name":"musique concrete","value":"musique-concrete","norm_name":"musique-concrete"}],"folk":[{"name":"singer-songwriter","value":"singer-songwriter","norm_name":"singer-songwriter"},{"name":"folk rock","value":"folk-rock","norm_name":"folk-rock"},{"name":"indie folk","value":"indie-folk","norm_name":"indie-folk"},{"name":"pop folk","value":"pop-folk","norm_name":"pop-folk"},{"name":"traditional","value":"traditional","norm_name":"traditional"},{"name":"experimental folk","value":"experimental-folk","norm_name":"experimental-folk"},{"name":"roots","value":"roots","norm_name":"roots"}],"funk":[{"name":"funk jam","value":"funk-jam","norm_name":"funk-jam"},{"name":"deep funk","value":"deep-funk","norm_name":"deep-funk"},{"name":"funk rock","value":"funk-rock","norm_name":"funk-rock"},{"name":"jazz funk","value":"jazz-funk","norm_name":"jazz-funk"},{"name":"boogie","value":"boogie","norm_name":"boogie"},{"name":"g-funk","value":"g-funk","norm_name":"g-funk"},{"name":"rare groove","value":"rare-groove","norm_name":"rare-groove"},{"name":"electro","value":"electro","norm_name":"electro"},{"name":"go-go","value":"go-go","norm_name":"go-go"}],"hip-hop-rap":[{"name":"rap","value":"rap","norm_name":"rap"},{"name":"underground hip-hop","value":"underground-hip-hop","norm_name":"underground-hip-hop"},{"name":"instrumental hip-hop","value":"instrumental-hip-hop","norm_name":"instrumental-hip-hop"},{"name":"trap","value":"trap","norm_name":"trap"},{"name":"conscious hip-hop","value":"conscious-hip-hop","norm_name":"conscious-hip-hop"},{"name":"boom-bap","value":"boom-bap","norm_name":"boom-bap"},{"name":"beat-tape","value":"beat-tape","norm_name":"beat-tape"},{"name":"hardcore","value":"hardcore","norm_name":"hardcore"},{"name":"grime","value":"grime","norm_name":"grime"}],"jazz":[{"name":"fusion","value":"fusion","norm_name":"fusion"},{"name":"big band","value":"big-band","norm_name":"big-band"},{"name":"nu jazz","value":"nu-jazz","norm_name":"nu-jazz"},{"name":"modern jazz","value":"modern-jazz","norm_name":"modern-jazz"},{"name":"swing","value":"swing","norm_name":"swing"},{"name":"free jazz","value":"free-jazz","norm_name":"free-jazz"},{"name":"soul jazz","value":"soul-jazz","norm_name":"soul-jazz"},{"name":"latin jazz","value":"latin-jazz","norm_name":"latin-jazz"},{"name":"vocal jazz","value":"vocal-jazz","norm_name":"vocal-jazz"},{"name":"bebop","value":"bebop","norm_name":"bebop"},{"name":"spiritual jazz","value":"spiritual-jazz","norm_name":"spiritual-jazz"}],"kids":[{"name":"family music","value":"family-music","norm_name":"family-music"},{"name":"educational","value":"educational","norm_name":"educational"},{"name":"music therapy","value":"music-therapy","norm_name":"music-therapy"},{"name":"lullaby","value":"lullaby","norm_name":"lullaby"},{"name":"baby","value":"baby","norm_name":"baby"}],"latin":[{"name":"brazilian","value":"brazilian","norm_name":"brazilian"},{"name":"cumbia","value":"cumbia","norm_name":"cumbia"},{"name":"tango","value":"tango","norm_name":"tango"},{"name":"latin rock","value":"latin-rock","norm_name":"latin-rock"},{"name":"flamenco","value":"flamenco","norm_name":"flamenco"},{"name":"salsa","value":"salsa","norm_name":"salsa"},{"name":"reggaeton","value":"reggaeton","norm_name":"reggaeton"},{"name":"merengue","value":"merengue","norm_name":"merengue"},{"name":"bolero","value":"bolero","norm_name":"bolero"},{"name":"méxico d.f.","value":"méxico-d.f.","norm_name":"méxico-d.f."},{"name":"bachata","value":"bachata","norm_name":"bachata"}],"metal":[{"name":"hardcore","value":"hardcore","norm_name":"hardcore"},{"name":"black metal","value":"black-metal","norm_name":"black-metal"},{"name":"death metal","value":"death-metal","norm_name":"death-metal"},{"name":"thrash metal","value":"thrash-metal","norm_name":"thrash-metal"},{"name":"grindcore","value":"grindcore","norm_name":"grindcore"},{"name":"doom","value":"doom","norm_name":"doom"},{"name":"post hardcore","value":"post-hardcore","norm_name":"post-hardcore"},{"name":"progressive metal","value":"progressive-metal","norm_name":"progressive-metal"},{"name":"metalcore","value":"metalcore","norm_name":"metalcore"},{"name":"sludge metal","value":"sludge-metal","norm_name":"sludge-metal"},{"name":"heavy metal","value":"heavy-metal","norm_name":"heavy-metal"},{"name":"deathcore","value":"deathcore","norm_name":"deathcore"},{"name":"noise","value":"noise","norm_name":"noise"}],"pop":[{"name":"indie pop","value":"indie-pop","norm_name":"indie-pop"},{"name":"synth pop","value":"synth-pop","norm_name":"synth-pop"},{"name":"power pop","value":"power-pop","norm_name":"power-pop"},{"name":"new wave","value":"new-wave","norm_name":"new-wave"},{"name":"dream pop","value":"dream-pop","norm_name":"dream-pop"},{"name":"noise pop","value":"noise-pop","norm_name":"noise-pop"},{"name":"experimental pop","value":"experimental-pop","norm_name":"experimental-pop"},{"name":"electro pop","value":"electro-pop","norm_name":"electro-pop"},{"name":"adult contemporary","value":"adult-contemporary","norm_name":"adult-contemporary"},{"name":"jangle pop","value":"jangle-pop","norm_name":"jangle-pop"},{"name":"j-pop","value":"j-pop","norm_name":"j-pop"}],"punk":[{"name":"hardcore punk","value":"hardcore-punk","norm_name":"hardcore-punk"},{"name":"garage","value":"garage","norm_name":"garage"},{"name":"pop punk","value":"pop-punk","norm_name":"pop-punk"},{"name":"punk rock","value":"punk-rock","norm_name":"punk-rock"},{"name":"post-punk","value":"post-punk","norm_name":"post-punk"},{"name":"post-hardcore","value":"post-hardcore","norm_name":"post-hardcore"},{"name":"thrash","value":"thrash","norm_name":"thrash"},{"name":"crust punk","value":"crust-punk","norm_name":"crust-punk"},{"name":"folk punk","value":"folk-punk","norm_name":"folk-punk"},{"name":"emo","value":"emo","norm_name":"emo"},{"name":"ska","value":"ska","norm_name":"ska"},{"name":"no wave","value":"no-wave","norm_name":"no-wave"}],"r-b-soul":[{"name":"soul","value":"soul","norm_name":"soul"},{"name":"r&b","value":"r-b","norm_name":"r-b"},{"name":"neo-soul","value":"neo-soul","norm_name":"neo-soul"},{"name":"gospel","value":"gospel","norm_name":"gospel"},{"name":"contemporary r&b","value":"contemporary-r-b","norm_name":"contemporary-r-b"},{"name":"motown","value":"motown","norm_name":"motown"},{"name":"urban","value":"urban","norm_name":"urban"}],"reggae":[{"name":"dub","value":"dub","norm_name":"dub"},{"name":"ska","value":"ska","norm_name":"ska"},{"name":"roots","value":"roots","norm_name":"roots"},{"name":"dancehall","value":"dancehall","norm_name":"dancehall"},{"name":"rocksteady","value":"rocksteady","norm_name":"rocksteady"},{"name":"ragga","value":"ragga","norm_name":"ragga"},{"name":"lovers rock","value":"lovers-rock","norm_name":"lovers-rock"}],"rock":[{"name":"indie","value":"indie","norm_name":"indie"},{"name":"prog rock","value":"prog-rock","norm_name":"prog-rock"},{"name":"post-rock","value":"post-rock","norm_name":"post-rock"},{"name":"rock & roll","value":"rock-roll","norm_name":"rock-roll"},{"name":"psychedelic rock","value":"psychedelic-rock","norm_name":"psychedelic-rock"},{"name":"hard rock","value":"hard-rock","norm_name":"hard-rock"},{"name":"garage rock","value":"garage-rock","norm_name":"garage-rock"},{"name":"surf rock","value":"surf-rock","norm_name":"surf-rock"},{"name":"instrumental","value":"instrumental","norm_name":"instrumental"},{"name":"math rock","value":"math-rock","norm_name":"math-rock"},{"name":"rockabilly","value":"rockabilly","norm_name":"rockabilly"}],"soundtrack":[{"name":"film music","value":"film-music","norm_name":"film-music"},{"name":"video game music","value":"video-game-music","norm_name":"video-game-music"}],"spoken-word":[{"name":"poetry","value":"poetry","norm_name":"poetry"},{"name":"inspirational","value":"inspirational","norm_name":"inspirational"},{"name":"storytelling","value":"storytelling","norm_name":"storytelling"},{"name":"self-help","value":"self-help","norm_name":"self-help"}],"world":[{"name":"latin","value":"latin","norm_name":"latin"},{"name":"roots","value":"roots","norm_name":"roots"},{"name":"african","value":"african","norm_name":"african"},{"name":"tropical","value":"tropical","norm_name":"tropical"},{"name":"tribal","value":"tribal","norm_name":"tribal"},{"name":"brazilian","value":"brazilian","norm_name":"brazilian"},{"name":"celtic","value":"celtic","norm_name":"celtic"},{"name":"world fusion","value":"world-fusion","norm_name":"world-fusion"},{"name":"cumbia","value":"cumbia","norm_name":"cumbia"},{"name":"gypsy","value":"gypsy","norm_name":"gypsy"},{"name":"new age","value":"new-age","norm_name":"new-age"},{"name":"balkan","value":"balkan","norm_name":"balkan"},{"name":"reggaeton","value":"reggaeton","norm_name":"reggaeton"}]},"activation_url":"https://witchesbrew024.bandcamp.com/album/witches-brew","activation_sig":"ahxhnNNAD3GENItTSrIJBHeIws4=","is_phone":false,"isMobile":false},"mobile_app_url":"x-bandcamp://open","platform_app_url":null,"app_store_url":"https://itunes.apple.com/us/app/bandcamp/id706408639?mt=8","play_store_url":"https://play.google.com/store/apps/details?id=com.bandcamp.android","unsupported_device":true,"fan_tralbum_data":null,"album_id":2721831846,"pgload_sample_rate":5,"item_sellers":{"1392840280":{"id":1392840280,"name":"Witches Brew","currency":"EUR","max_price":1000.0,"digital_vat_enabled":true,"is_dsa_trader":false}},"gift_card_balance":null,"limited_checkout":false,"ab_test_tralbum_auth_entrypoints":false,"identities":{"user":null,"ip_country_code":"NL","fan":null,"is_page_band_member":null,"subscribed_to_page_band":null,"bands":[],"partner":false,"is_admin":null,"labels":[],"page_band":null,"active_licenses":[]},"rec_footer":{}}"></div>
<div id="menubar-wrapper" class="
header-rework-2018
header-discover-2023
">
<div id="menubar-vm" class="menubar-outer loading header-discover-2023" data-initial-values="{"any_pro":false,"is_tralbum_page":true,"admin_level":null,"artist_service_active":false,"artist_subscriptions_enabled":false,"active_profile_photo":null,"cart_quantity":null,"discover_root":"https://bandcamp.com/discover","page_path":"/album/witches-brew","is_fan_page":false,"is_download_page":false,"show_add_live_show":null,"show_guide_link":null}">
<div id="menubar"
class="
menubar-2018
out
"
>
<ul id="site-nav" class="menubar-section horizontal" data-test="site-nav">
<li class="bclogo white" data-test="mb-bandcamp-logo">
<a href="https://bandcamp.com/?from=menubar_logo_logged_out">
<svg width="108px" height="17px" viewBox="0 0 127 20"><use xlink:href="#bandcamp-logo-color-white"></svg>
</a>
</li>
<li class="bclogo aqua" data-test="mb-bandcamp-logo">
<a href="https://bandcamp.com/?from=menubar_logo_logged_out">
<svg width="108px" height="17px" viewBox="0 0 127 20"><use xlink:href="#bandcamp-logo-color-bcaqua"></svg>
</a>
</li>
<!-- ko if: showBandControls() || showLimitedAccessControls() -->
<li class="menubar-item hoverable hidden-while-loading add-menu" data-test="mb-add">
<a class="menubar-add-link">+ add</a>
<ul class="menu hidden-while-loading">
<!-- ko if: showBandControls() || showLimitedAccessControls() -->
<ol data-bind="css: {'page-band-links': pageBand.isLabel()}">
<li class="submenu-item" data-test="mb-add-album"><a data-bind="attr: {href: pageBand.trackpipeLocalUrl() + '/edit_album'}, click: addAlbumClick">album</a></li>
<li class="submenu-item" data-test="mb-add-track"><a data-bind="attr: {href: pageBand.trackpipeLocalUrl() + '/edit_track'}, click: addTrackClick">track</a></li>
<li class="submenu-item"data-test="mb-add-merch"><a id="menubar-add-merch-link" data-bind="attr: {href: pageBand.trackpipeLocalUrl() + '/edit_merch'}, click: addMerchClick"><span class="add-music">merch</span></a></li>
<li class="submenu-item" data-test="mb-add-listening-party"><a data-bind="attr: {href: pageBand.trackpipeLocalUrl() + '/edit_listening_party'}, click: addListeningPartyClick">listening party</a></li>
</ol>
<!-- /ko -->
<!-- ko if: showBandControls() && pageBand.isLabel() -->
<ol>
<li class="ui-widget-content ui-menu-divider"></li>
<li class="submenu-item"><a data-bind="click: addNewArtist">new artist</a></li>
<li class="submenu-item"><a data-bind="click: addExistingArtist">existing artist</a></li>
</ol>
<!-- /ko -->
</ul>
</li>
<!-- /ko -->
<!-- ko if: showBandControls() || showLimitedAccessControls() -->
<li class="menubar-item hoverable hidden-while-loading" data-test="mb-stats">
<a data-bind="attr: {href: statsLinkHref2018}">stats</a>
</li>
<!-- /ko -->
<!-- ko ifnot: showBandControls() || showLimitedAccessControls() -->
<!-- ko ifnot: showMobileAutocomplete() -->
<li id="main-search-container" class="search extended menubar-item " data-test="mb-search-box">
<form aria-label="autocomplete search" class="menubar-search signup-tooltip-parent" action="/search" method="get" data-tooltip-id="s" aria-busy="false">
<input tabindex="0" aria-autocomplete="list" class="dismiss-tooltip-alt search-bar" type="text" name="q" placeholder="Search for artist, album, or track" autocomplete="off" maxlength="2048">
<div role="progressbar" class="loading-icon" id="search-loading-icon" aria-busy="false">
<svg aria-label="loading icon" class="search-spinner" width="15" height="16" viewBox="-1 -1 16 16">
<use href="#search-spinner"></use>
</svg>
</div>
<div aria-label="clear search" class="clear-autocomplete" >×</div>
</input>
<input type="hidden" class="selected-filter" name="item_type" value="" />
<button type="submit" tabindex="-1" aria-label="submit for full search page" class="menubar-search-icon"><svg width="15" height="16" viewBox="0 0 15 16"><use href="#menubar-search-input-icon" /></svg></button>
<ul role="listbox" class="genre-list" aria-busy="false"></ul>
<ul class="filter-list" aria-busy="false"></ul>
<ul role="listbox" class="search-autocomplete" aria-busy="false">
<li class="simple results-see-all">
<a tabindex="-1" aria-label="visit full-search page">
<span>See all results</span>
<span><svg class="arrow" viewBox="0 0 24 24"><use href="#discover-arrow"></svg></span>
</a>
</li>
<li class="simple results-tags">
<a tabindex="-1" >
<span class="msg"></span>
<span><svg class="arrow" viewBox="0 0 24 24"><use href="#discover-arrow"></svg></span>
</a>
</li>
<li class="simple results-genre">
<a tabindex="-1">
<span class="msg"></span>
<span><svg class="arrow" viewBox="0 0 24 24"><use href="#discover-arrow"></svg></span>
</a>
</li>
<li aria-label="no matching results" class="autocomplete-no-results" >
<p class="noresults-header">No matching results</p>
<p class="noresults-text">Try a different filter or a new search keyword.</p>
<div class="tumbleweed">
<img loading="lazy" src="/img/search/tumbleweed-emptystate-lightbg.gif"/>
</div>
</li>
</ul>
<li class="simple mobile-results-tags no-show">
<a>
<span class="msg"></span>
<span><svg class="arrow" viewBox="0 0 24 24"><use href="#discover-arrow"></svg></span>
</a>
</li>
<div class="mobile-placeholder">
<p>Search all Bandcamp artists, tracks, and albums</p>
</div>
<template id="autocomplete-results-item"><li class="result-item">
<a tabindex="-1">
<span class="result-art"><img></span>
<span class="result-info">
<div class="result-title"><strong></strong></div>
<cite></cite>
<div class="result-type"></div>
</span>
</a>
</li></template>
<div class="signup-tooltip-outer search-tooltip-outer header-2018"></div>
</form>
<div aria-label="cancel search" class="cancel-autocomplete" >cancel</div>
</li>
<!-- /ko -->
<!-- /ko -->
</ul>
<ul id="user-nav" class="menubar-section horizontal">
<!-- ko if: user() -->
<!-- ko if: partner() -->
<li class="menubar-item hoverable hidden-while-loading">
<a href="https://bandcamp.com/partner">partner</a>
</li>
<!-- /ko -->
<!-- ko if: showBandControls() || showLimitedAccessControls() -->
<!-- ko ifnot: showMobileAutocomplete() -->
<!-- ko if: altSearch() -->
<li id="alt-search-container" class="search extended menubar-item hidden-while-loading" data-bind="visible: altSearch()">
<form aria-label="autocomplete search" class="menubar-search signup-tooltip-parent" action="/search" method="get" data-tooltip-id="s" aria-busy="false">
<input tabindex="0" aria-autocomplete="list" class="dismiss-tooltip-alt search-bar" type="text" name="q" placeholder="Search for artist, album, or track" autocomplete="off" maxlength="2048">
<div role="progressbar" class="loading-icon" id="search-loading-icon" aria-busy="false">
<svg aria-label="loading icon" class="search-spinner" width="15" height="16" viewBox="-1 -1 16 16">
<use href="#search-spinner"></use>
</svg>
</div>
<div aria-label="clear search" class="clear-autocomplete" >×</div>
</input>
<input type="hidden" class="selected-filter" name="item_type" value="" />
<button type="submit" tabindex="-1" aria-label="submit for full search page" class="menubar-search-icon"><svg width="15" height="16" viewBox="0 0 15 16"><use href="#menubar-search-input-icon" /></svg></button>
<ul role="listbox" class="genre-list" aria-busy="false"></ul>
<ul class="filter-list" aria-busy="false"></ul>
<ul role="listbox" class="search-autocomplete" aria-busy="false">
<li class="simple results-see-all">
<a tabindex="-1" aria-label="visit full-search page">
<span>See all results</span>
<span><svg class="arrow" viewBox="0 0 24 24"><use href="#discover-arrow"></svg></span>
</a>
</li>
<li class="simple results-tags">
<a tabindex="-1" >
<span class="msg"></span>
<span><svg class="arrow" viewBox="0 0 24 24"><use href="#discover-arrow"></svg></span>
</a>
</li>
<li class="simple results-genre">
<a tabindex="-1">
<span class="msg"></span>
<span><svg class="arrow" viewBox="0 0 24 24"><use href="#discover-arrow"></svg></span>
</a>
</li>
<li aria-label="no matching results" class="autocomplete-no-results" >
<p class="noresults-header">No matching results</p>
<p class="noresults-text">Try a different filter or a new search keyword.</p>
<div class="tumbleweed">
<img loading="lazy" src="/img/search/tumbleweed-emptystate-lightbg.gif"/>
</div>
</li>
</ul>
<li class="simple mobile-results-tags no-show">
<a>
<span class="msg"></span>
<span><svg class="arrow" viewBox="0 0 24 24"><use href="#discover-arrow"></svg></span>
</a>
</li>
<div class="mobile-placeholder">
<p>Search all Bandcamp artists, tracks, and albums</p>
</div>
<template id="autocomplete-results-item"><li class="result-item">
<a tabindex="-1">
<span class="result-art"><img></span>
<span class="result-info">
<div class="result-title"><strong></strong></div>
<cite></cite>
<div class="result-type"></div>
</span>
</a>
</li></template>
<div class="signup-tooltip-outer search-tooltip-outer header-2018"></div>
</form>
<div aria-label="cancel search" class="cancel-autocomplete" >cancel</div>
</li>
<!-- /ko -->
<li class="you-autocomplete-me menubar-item hidden-while-loading hoverable" data-bind="click: showAltSearch, visible: !altSearch()">
<a><svg width="26px" height="26px" viewBox="0 0 26 26" class="svg-icon"><use xlink:href="#menubar-search-icon"></svg></a>
</li>
<!-- /ko -->
<!-- /ko --> <!-- claire minimized search for artist -->
<!-- ko if: (fan() && !fan().private) -->
<li id="feed-main" class="signup-tooltip-parent menubar-item hoverable hidden-while-loading" data-tooltip-id="f" data-test="mb-feed">
<a href="" title="feed">
<svg width="26px" height="26px" viewBox="0 0 26 26" class="svg-icon"><use xlink:href="#menubar-feed-icon"></svg>
</a>
<div class="signup-tooltip-outer feed-tooltip-outer header-2018"></div>
</li>
<li id="collection-main" class="menubar-item hoverable signup-tooltip-parent hidden-while-loading" data-tooltip-id="c" data-test="mb-collection">
<a href="" title="collection">
<svg width="26" height="26" viewBox="0 0 26 26" class="svg-icon"><use xlink:href="#menubar-collection-icon"></svg>
</a>
<div class="signup-tooltip-outer collection-tooltip-outer header-2018"></div>
</li>
<!-- /ko -->
<li class="menubar-item hoverable hidden-while-loading" data-test="user-menu">
<a>
<div data-bind="with: artistsMenu">
<!-- Fan only profile pic -->
<!-- ko if: $parent.loggedInFanPhoto() -->
<div class="userpic hidden-while-loading">
<img src="https://f4.bcbits.com/img/blank.gif" data-bind="src_image: {image_id: $parent.loggedInFanPhoto(), format: 'art_embedded_player'}"
>
</div>
<!-- /ko -->
<!-- ko ifnot: $parent.loggedInFanPhoto() -->
<div class="userpic ">
<div class="no-image-placeholder"></div>
</div>
<!-- /ko -->
</div>
</a>
<ul class="menu user-menu hidden-while-loading" data-bind="with: artistsMenu, css: { label: (artistsMenu.loggedInLabelMemberBands().length > 0 || artistsMenu.linkedNonLabelMemberBands().length > 1) }">
<ol class="user-menu-wrapper">
<!-- ARTIST -->
<!-- ko if: bmgr.bands().length >= 1 && loggedInBand() -->
<li class="submenu-item">
<a data-bind="attr: { href: loggedInBand().trackpipeLocalUrl()}" class="name">
<strong class="menu-bandname" data-bind="text: optionsLoggedInBand().title, css: { long: !optionsLoggedInBand().showPro}">artists</strong>
<div data-bind="visible: optionsLoggedInBand().showPro" class="menubar-badge-pro round3 hidden-while-loading">PRO</div>
<div class="view-site">view site</div>
</a>
</li>
<li class="submenu-item">
<a data-bind="
attr: {href: 'https://bandcamp.com/profile?from=menubar&id=' + loggedInBand().id},
css: {admin: optionsLoggedInBand().adminAccess}"
>
<span>edit profile</span>
</a>
</li>
<li class="submenu-item">
<a data-bind="
attr: {href: 'https://bandcamp.com/tools?from=menubar&id=' + loggedInBand().id},
css: {admin: optionsLoggedInBand().adminAccess}"
>
<span>tools</span>
</a>
</li>
<li class="ui-menu-item submenu-item">
<!-- ko ifnot: loggedInBand().hasService() -->
<a data-bind="attr: { href: 'https://bandcamp.com/subscriptions?band_id=' + loggedInBand().id + '&from=menubar'}">subscription</a>
<!-- /ko -->
<!-- ko if: loggedInBand().hasService() -->
<a data-bind="attr: { href: loggedInBand().trackpipeLocalUrl() + '/' + loggedInBand().serviceUrlFragment() + '?from=menubar'}">subscription</a>
<!-- /ko -->
</li>
<!-- /ko -->
<!-- FAN -->
<!-- ko if: ($parent.fan() && !$parent.fan().private) -->
<li class="submenu-item">
<a href="" class="name">
<strong class="menu-bandname long" data-test="fan-username"></strong>
<div class="view-collection" data-test="submenu-item-view-collection">view collection</div>
</a>
</li>
<li class="submenu-item"><a href=""><span data-test="submenu-item-purchases">purchases</span></a></li>
<!-- /ko -->
<li class="ui-widget-content ui-menu-divider first"></li>
<!-- LABEL ARTISTS -->
<!-- ko if: loggedInLabelMemberBands() && loggedInLabelMemberBands().length > 0 -->
<li class="menu-switch ui-menu-item submenu-item ui-state-disabled" data-bind="visible: !showLinkedBands()">
<span data-bind="attr: {href: loggedInBand().trackpipeLocalUrl() + '/artists?from=menubar_artist_dropdown'}, text: loggedInLabelMemberBandsCountStr()"></span>
</li>
<ol class="label-artist-menu no-pro-badges ui-state-disabled ui-menu-item" data-bind="visible: !showLinkedBands()" data-test="label-artists">
<input type="text" class="artist-filter-text" data-test="artist-filter-text" data-bind="textInput: labelMemberBandsSearchTerm, visible: loggedInLabelMemberBands().length > 10" placeholder="Search all artists">
<!-- ko foreach: filteredLoggedInLabelMemberBands() -->
<li class="label-member-band submenu-item" data-bind="template: {
'name': 'band-menuitem-template-options'
}"></li>
<!-- /ko -->
<!-- ko if: filteredLoggedInLabelMemberBands().length == 0 -->
<li class="no-results submenu-item">no results</li>
<!-- /ko -->
</ol>
<li class="ui-widget-content ui-menu-divider" data-bind="visible: !showLinkedBands()"></li>
<!-- /ko -->
<!-- CONNECTED ACCOUNTS -->
<!-- ko if: linkedNonLabelMemberBands().length > 1 -->
<ol class="linked-accounts-wrapper">
<li class="menu-switch ui-menu-item submenu-item linked-accounts-menu ui-state-disabled" data-bind="click: () => showLinkedBands(!showLinkedBands())" data-test="linked-accounts-header">
<span data-bind="text: loggedInLinkedBandsCountStr()"></span><div data-bind="css: { 'arrow-down': showLinkedBands(), 'arrow-right' : !showLinkedBands() }"></div>
</li>
<ol class="linked-accounts-menu-content" data-bind="visible: showLinkedBands()" data-test="linked-accounts">
<!-- ko foreach: linkedNonLabelMemberBands() -->
<li class="submenu-item" data-bind="template: {
'name': 'band-menuitem-template'
},
css: {
'hidden': ($data.id == $root.artistsMenu.loggedInBand().id)
}"></li>
<!-- /ko -->
</ol>
</ol>
<li class="ui-widget-content ui-menu-divider"></li>
<!-- /ko -->
<!-- ALL USERS -->
<ol class="all-user-option">
<li class="submenu-item"><a href="https://bandcamp.com/settings?from=menubar" data-test="submenu-item-settings">settings</a></li>
<li class="submenu-item"><a href="https://get.bandcamp.help" data-test="submenu-item-help">help</a></li>
<li class="submenu-item"><a class="logout-action" href="https://bandcamp.com/logout" data-test="submenu-item-logout">log out</a></li>
</ol>
</ol>
</ul>
</li>
<!-- /ko -->
<!-- ko ifnot: user() -->
<li data-bind="visible: hasCart" class="menubar-item hoverable cart-wrapper hidden-while-loading svg-icon" data-test="mb-cart">
<a href="https://bandcamp.com/cart" data-bind="click: goCart" title="cart">