hidamari 0.1.0

HIDAMARI mdp controler
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
<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">

    <style type="text/css"><!--

div.carousel-indicators
{
}

div.carousel-indicators button,
div.carousel-indicators button.active
{
    width: 10em;
    margin: 10px;
}

a.carousel-control-prev, a.carousel-control-next
{
    width: 7%;
}

.carousel-control-next,
.carousel-control-prev
{
    filter: invert(100%);
}

.x_min-vh-90 { min-height:90vh!important }
.x_vh-40 { height:40vh!important }

.x_break-word
{
    overflow-wrap: break-word;
}

.x_controler
{
    width:85vw;
}

.x_controler
{
    width:85vw;
}

.x_liblist
{
    max-height:74vh!important;
}

.x_playlist
{
    max-height:78vh!important;
}

.x_slider
{
}

.x_overflow-hidden
{
    height:1.4em;
}

.x_volbadge
{
    min-width:4.5em!important;
}

.x_time_1, .x_time_2, .x_time_3
{
    min-height:1.5em!important;
}

.x_player_title_1, .x_player_title_2, .x_player_title_3
{
}

.x_liblist_folder_item,
.x_liblist_file_item_desc,
.x_playlist_item_desc
{
    cursor : pointer;
}

.dropdown-item-checked::before {
  position: absolute;
  left: .4rem;
  content: '✓';
  font-weight: 600;
}

.x_flush
{
    filter : contrast(1.3) brightness(1.3);
}

.x_select
{
    filter : contrast(1.2) brightness(1.2);
}

.x_position
{
    height : 0.5rem;
    cursor : pointer;
}

.x_canvas
{
    position: relative;
    min-height:50vh!important;
    width:90vw;
}

.x_canvas-inner
{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.x_canvas-item
{
    position: relative;
    display: none;
    align-items: center;
    width: 100%;
    min-height:49vh!important;
    backface-visibility: hidden;
    perspective: 1000px;
}

.x_canvas-item-inner
{
    min-height:49vh!important;
}

.x_canvas-item-inner-item
{
    height : 39vh;
}

.x_canvas-item.active
{
    display: block;
}

.x_canvas-indicators
{
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;

    /*
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    */

    height:24px;
}

.x_canvas-indicator
{
    opacity:0.5;
}

.x_canvas-indicator.active
{
    opacity:1.0;
}


--></style>

    <title>Hidamari</title>
</head>
<body class="bg-secondary">

    <div class="pos-f-t">

        <div class="collapse " id="navbarToggleExternalContent">
            <div class="bg-dark text-white px-4 py-2">

                <h6 class="mt-2">Other music source</h6>
                <div class="container-fluid">

                    <div class="input-group input-group-sm my-2">

                        <div class="input-group-prepend">
                            <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">URL</button>

                            <div class="dropdown-menu x_url_list">
                                <a class="dropdown-item" href="#"></a>
                            </div>
                        </div>

                        <input type="text" class="form-control x_url" >

                        <div class="input-group-append">
                            <button class="btn btn-primary x_url_add" type="button">Add</button>
                        </div>
                    </div>

                    <div class="alert alert-danger alert-dismissible fade show x_url_add_err_m" role="alert" >
                        <strong>Error </strong>Could not add this URL. <strong>[<span class="x_url_add_err_url"></span>]</strong> [<span class="x_url_add_err_msg"></span>]
                        <button type="button" class="close" data-dismiss="alert" aria-label="Close">
                            <span aria-hidden="true">&times;</span>
                        </button>
                    </div>

                    <div>
                        <button class="btn btn-primary btn-sm mr-2 mb-1 x_aux_in_add_m"  type="button">AUX-IN</button>
                        <button class="btn btn-primary btn-sm mr-2 mb-1 x_bt_in_add_m"   type="button">BT-IN</button>
                        <button class="btn btn-primary btn-sm mr-2 mb-1 x_testsound_add" type="button">Test Sound</button>
                    </div>
                </div>

                <h6 class="mt-2">Outputs</h6>
                <div class="container-fluid d-flex flex-row flex-wrap">

                    <div class="input-group input-group-sm flex-nowrap w-auto mr-1 mb-1 x_output_m" >
                        <div class="input-group-prepend">
                            <label class="input-group-text" style="width:18em;">
                                <span class="x_output_type"></span>
                                <span class="mx-1">:</span>
                                <span class="x_output_name font-weight-bold"></span>
                                <a class="font-weight-bold ml-2 x_output_link" href="#" target="_blank">[Link]</a>
                            </label>
                        </div>
                        <div class="input-group-append">
                            <div class="input-group-text bg-white " >
                                <div class="custom-control custom-switch mx-2 x_output_input">
                                    <input type="checkbox" class="custom-control-input shadow x_output_input" id="x_output_input" >
                                    <label class="custom-control-label x_output_input" for="x_output_input"></label>
                                </div>
                            </div>
                        </div>
                    </div>

                </div>

                <h6 class="mt-2">Change Theme</h6>
                <div class="container-fluid">

                    <div class="input-group input-group-sm">

                        <div class="input-group-prepend">
                            <label class="input-group-text" for="x_st_theme">Theme</label>
                        </div>

                        <select class="custom-select x_st_themes" id="x_st_themes">
                            <option value="_default" >Default</option>
                        </select>

                        <div class="input-group-append">
                            <button class="btn btn-primary x_st_theme_apply" type="button">Apply</button>
                        </div>

                    </div>
                </div>

                <h6 class="mt-4">Settings
                    <button class="btn btn-primary btn-sm x_setting_go" type="button">Go.</button>
                </h6>

            </div>
        </div>

        <nav class="navbar navbar-dark bg-dark">
            <a class="navbar-brand mr-auto" href="/">
<svg height="30"
   viewBox="0 0 54 16"
   fill="white"
   xmlns="http://www.w3.org/2000/svg"
>
  <path
     style="stroke-width:0.367797"
     d="m 7.1496241,9.0417593 q 0,1.3518557 -0.1860351,2.5300777 0,0.124024 -0.2728516,0.198438 -0.2356445,0 -0.5084961,-0.0124 -0.1984375,-0.02481 -0.2604492,-0.173633 -0.086816,-0.855762 -0.024805,-2.4928713 -0.7193359,0.012402 -1.5750976,0.1240234 -0.049609,0.359668 -0.1488281,0.8309569 -0.322461,1.810742 -0.5581055,2.331641 -0.012402,0.124023 -0.434082,0.09922 -0.3472656,-0.03721 -0.359668,-0.248047 0,-0.669727 0.1860352,-2.4308597 l 0.049609,-0.4464844 q -0.3100586,0 -0.6821289,0.074414 -0.2108399,0 -0.3100586,-0.2852539 0,-0.2480469 -0.037207,-0.434082 0.024805,-0.074414 0,-0.1240235 Q 2.0522609,8.3596304 2.3747219,8.3100211 2.7839992,8.2480093 3.2304836,8.1984 3.3669093,7.3798453 3.5529445,6.6605094 3.5901515,6.4744742 4.11105,6.5612906 4.619546,6.6109 4.6071437,6.8341422 q -0.012402,0.5457031 -0.1240234,1.265039 0.5953125,-0.037207 1.265039,-0.062012 0.074414,0 0.1860352,-0.012402 0.024805,-0.3348633 0.049609,-0.6945313 0.074414,-1.227832 0.1240235,-1.8479492 0.037207,-0.1364257 0.2852539,-0.1860351 0.2480468,-0.037207 0.4960937,0.012402 0.2232422,0.024805 0.2480469,0.1736328 0.024805,0.2728516 0.037207,1.227832 0,0.5084961 -0.012402,1.2774414 L 8.6379054,7.9503531 Q 8.7867335,7.7271109 9.1339991,7.7767203 9.4688624,7.7891226 9.6424952,7.8883414 9.778921,7.9131461 9.778921,8.4712515 9.8781397,8.4092398 9.9897608,8.3596304 10.585073,8.0247672 11.155581,7.8635367 q 0.148828,-0.037207 0.297656,0.1736328 0.148828,0.1736328 0.198438,0.5084961 0.03721,0.2728516 -0.08682,0.3720703 -0.384472,0.1984375 -1.016992,0.434082 -0.421679,0.1240235 -0.8805661,0.2728516 0,0.3844725 -0.062012,0.8309575 -0.012402,0.58291 -0.099219,1.128613 -0.012402,0.173633 0.1860352,0.186035 1.1906254,-0.09922 2.2076174,-0.384473 0.297656,-0.111621 0.359668,0.161231 0.03721,0.16123 0.04961,0.359668 -0.0124,0.06201 -0.0124,0.173633 0,0.210839 -0.396875,0.421679 -0.942578,0.21084 -2.2200198,0.260449 -0.049609,-0.0248 -0.1612304,0 -0.086816,-0.0248 -0.1984375,0 -0.5457032,-0.0248 -0.756543,-0.173632 -0.1736328,-0.21084 -0.1860352,-0.830957 0,-0.620118 0.024805,-1.364258 0.037207,-0.7317385 0.086816,-1.1658205 0,-0.2108399 -0.1984375,-0.1860352 z M 8.5386866,3.5847282 Q 6.0582179,3.5599235 2.52355,3.9692008 q -0.2108399,0 -0.3100586,-0.2852539 Q 2.1886867,3.361486 2.1762844,3.1258415 2.2010891,2.9025993 2.52355,2.8529899 4.11105,2.6421501 5.9465968,2.5801383 7.7697413,2.5429313 8.8859522,2.4933219 9.022378,2.3196891 9.2828272,2.3196891 h 0.099219 q 0.3348633,0.012402 0.5084961,0.1116211 0.1364259,0.024805 0.1364259,0.5333008 0.843359,-0.4092773 1.451074,-0.5333008 0.148828,-0.037207 0.285254,0.1860352 0.136426,0.1984375 0.173633,0.5208984 0.03721,0.2728516 -0.111621,0.3720703 -0.42168,0.1736328 -1.091407,0.396875 Q 10.349429,3.9940055 9.9153467,4.1180289 9.9029444,4.5397086 9.8285303,5.0234 9.8037257,5.6311149 9.7045069,6.176818 9.6921046,6.3504508 9.8905421,6.3628531 10.473452,6.2884391 10.957144,6.1272086 11.2548,6.0155875 11.316812,6.2884391 q 0.07441,0.2480468 0.03721,0.5333007 0,0.2108399 -0.396875,0.4216797 Q 10.448648,7.3426383 9.7169093,7.3550406 8.9975733,7.367443 8.7619288,7.1814078 8.588296,6.970568 8.5758936,6.3504508 q 0,-0.6325195 0.049609,-1.3890625 0.062012,-0.7441406 0.1116211,-1.190625 0,-0.2108398 -0.1984375,-0.1860351 z M 5.4505031,4.5273063 Q 5.7109523,5.0234 5.5373195,5.1598258 4.9916164,5.4822867 4.0614406,5.9039664 3.2180812,6.251232 2.920425,6.3256461 2.7964015,6.3380484 2.5483547,6.0031852 2.3747219,5.6311149 2.52355,5.4946891 2.7839992,5.2838492 3.5529445,4.8249625 4.3218898,4.3784782 4.9916164,4.0684196 5.1776515,3.9940055 5.4505031,4.5273063 Z m 5.2585939,6.3499997 q -0.248047,-0.186035 -0.558106,-0.384472 -0.08682,-0.07442 -0.04961,-0.26045 0.06201,-0.186035 0.186035,-0.37207 0.111621,-0.1736328 0.223242,-0.1364258 0.63252,0.062012 1.252637,0.5333008 0.111621,0.04961 0.03721,0.310059 -0.02481,0.198437 -0.248047,0.446484 -0.16123,0.198437 -0.322461,0.16123 -0.198437,-0.09922 -0.520898,-0.297656 z m 0.06201,-5.419824 q -0.198437,-0.1488281 -0.421679,-0.3224609 -0.08682,-0.074414 -0.04961,-0.2604492 0.06201,-0.1860352 0.186036,-0.3720703 0.111621,-0.1736328 0.223242,-0.1364258 0.520898,0.062012 1.00459,0.434082 0.111621,0.049609 0.04961,0.3100586 -0.04961,0.1984375 -0.272852,0.4464844 -0.16123,0.1736328 -0.322461,0.1488281 -0.136425,-0.074414 -0.396875,-0.2480469 z" />
  <path
     style="stroke-width:0.367797"
     d="m 18.373745,12.303576 q 0.03721,-1.413867 0.186035,-2.9021487 0,-0.1488281 -0.16123,-0.1364258 -0.384473,0 -0.84336,0.024805 -0.384472,0 -0.942578,0.086816 -0.347265,0 -0.843359,0.1364258 -0.08682,0.086816 -0.42168,0.1240234 -0.421679,0 -0.483691,-0.1984375 -0.08682,-0.8929687 -0.235645,-3.212207 -0.08682,-2.3068359 -0.04961,-2.9145507 0.02481,-0.2232422 0.533301,-0.2356445 0.520898,-0.024805 0.545703,0.1984375 0.111621,0.7193359 0.186035,3.1253906 0.03721,1.3518554 0.02481,2.1828124 0.706933,-0.1364258 1.215429,-0.1240234 0,-0.4092773 -0.0248,-1.0790039 h -0.63252 q -0.136426,0 -0.186035,-0.359668 0,-0.3596679 0.124023,-0.3844726 0.223243,-0.062012 0.706934,-0.1240235 V 5.7303336 q -0.04961,0 -0.16123,0.012402 -0.136426,0 -0.508497,-0.012402 -0.173632,0 -0.210839,-0.4960937 0,-0.4836914 0.210839,-0.4712891 l 0.744141,-0.086816 q 0.02481,-0.4464844 0.08682,-0.8805664 -0.16123,0 -0.297656,0.037207 -0.248047,0.012402 -0.632519,0.074414 -0.124024,0.012402 -0.235645,-0.434082 -0.04961,-0.4712891 0.111621,-0.4960938 0.396875,-0.074414 0.644922,-0.1116211 0.260449,-0.037207 0.63252,-0.1612304 0.37207,-0.1364258 0.905371,-0.1736328 0.520898,-0.037207 0.992187,0 0.223242,0.012402 0.223242,0.5953125 0,0.5333007 -0.235644,0.5581054 -0.434082,0 -0.731738,0.024805 -0.124024,0 -0.372071,0.012402 V 4.626525 h 0.84336 q 0.148828,0 0.173632,0.396875 0,0.3472656 -0.148828,0.4216797 -0.508496,0.062012 -0.880566,0.1612305 0,0.3472656 -0.02481,0.8061523 0.409278,-0.024805 0.84336,-0.012402 0.111621,0 0.136425,0.3844726 0.02481,0.3472656 -0.111621,0.4216797 -0.421679,0.024805 -0.917773,0.099219 -0.02481,0.6821289 -0.124024,1.1286133 0.297657,0 0.657325,0.037207 0.07441,-0.2232422 0.322461,-0.2232422 0.248046,0 0.5333,0.086817 0.285254,0.049609 0.248047,0.4960937 0,0.4588867 -0.0248,1.1038086 -0.0124,0.5705079 -0.124024,1.1286129 -0.04961,0.496094 -0.223242,1.240235 -0.0248,0.16123 -0.136426,0.248047 -0.173633,0.09922 -0.756543,0.0248 -0.16123,-0.03721 -0.148828,-0.272851 z m -4.167187,-1.463477 q 0.111621,-0.322461 0.260449,-0.632519 0.03721,-0.09922 0.186035,-0.08682 0.148828,0 0.310059,0.07441 0.148828,0.02481 0.148828,0.148828 0,0.235645 -0.03721,0.644922 -0.0124,0.347266 -0.161231,0.669727 -0.0124,0.08682 -0.248047,0.111621 -0.173632,0 -0.421679,-0.124024 -0.161231,-0.111621 -0.198438,-0.210839 0.03721,-0.285254 0.161231,-0.595313 z m 2.282031,0.21084 q 0,-0.248047 0.04961,-0.471289 0,-0.07441 0.124024,-0.124023 0.111621,-0.03721 0.260449,-0.02481 0.136426,0 0.148828,0.07441 0.07441,0.136426 0.16123,0.434082 0.07442,0.21084 0.07442,0.483691 0,0.08682 -0.186036,0.161231 -0.16123,0.0248 -0.396875,0.0248 -0.198437,-0.0248 -0.235644,-0.148828 z m -0.285254,-0.124023 q 0,0.198437 -0.06201,0.446484 0,0.08682 -0.16123,0.136426 -0.124024,0 -0.322461,0.0124 -0.124024,-0.02481 -0.173633,-0.09922 l -0.08682,-0.434082 q -0.0124,-0.260449 -0.0124,-0.483691 0,-0.111621 0.198438,-0.148828 0.186035,-0.03721 0.409277,0.0124 0.21084,0.0124 0.223242,0.161231 0,0.124023 -0.0124,0.396875 z m 1.971973,-0.458887 q 0,0.16123 -0.03721,0.409277 0,0.04961 -0.136426,0.124024 -0.09922,0.0124 -0.297656,0.03721 -0.124024,0 -0.161231,-0.07441 -0.173633,-0.396875 -0.198437,-0.818555 0,-0.111621 0.186035,-0.1736329 0.173633,-0.037207 0.396875,-0.012402 0.223242,0 0.235644,0.1488282 0.02481,0.124023 0.0124,0.359668 z m 3.286621,-7.1313477 q 0.07441,0.3844726 0.136425,0.8061523 0.02481,0.086816 -0.148828,0.2232422 -0.136426,0.062012 -0.384472,0.1364258 -0.173633,0.012402 -0.26045,-0.049609 -0.16123,-0.2604492 -0.409277,-0.6821289 -0.16123,-0.4092773 -0.285254,-0.79375 -0.0124,-0.1736328 0.21084,-0.3100586 0.248047,-0.111621 0.570508,-0.1612304 0.322461,-0.024805 0.384472,0.1364258 0.111622,0.2480468 0.186036,0.6945312 z m 0.781347,-0.024805 q 0,-0.2976562 0.03721,-0.5829101 0,-0.1364258 0.186035,-0.1984375 0.186036,-0.037207 0.396875,-0.049609 0.223243,0 0.248047,0.099219 0.111621,0.1984375 0.198438,0.5457032 0.07441,0.2852539 0.09922,0.6077148 0,0.1240234 -0.248047,0.2356445 -0.235645,0.049609 -0.558106,0.049609 -0.272851,-0.024805 -0.334863,-0.1860352 0,-0.2108398 -0.0248,-0.5208984 z m 2.939356,0.1488281 q -0.173633,0.3100586 -0.409278,0.6449219 -0.0248,0.086816 -0.248047,0.062012 -0.136425,-0.037207 -0.347265,-0.1364258 -0.136426,-0.099219 -0.148828,-0.1984375 0.03721,-0.7317382 0.434082,-1.4634765 0.06201,-0.074414 0.198437,-0.086816 0.06201,0.012402 0.136426,0.012402 0.260449,0.024805 0.496094,0.2480469 0.248047,0.1364258 0.186035,0.3348633 -0.06201,0.2108398 -0.297656,0.5829101 z m -0.58291,5.1717773 q -0.21084,-1.3766601 -0.372071,-2.7905273 0,-0.1488281 -0.136426,-0.1612305 -0.235644,0 -0.520898,0.024805 -0.09922,0 -0.285254,0.024805 0,0.2480469 0.03721,0.7689453 0.223242,0 0.483692,0.012402 0.148828,0 0.148828,0.4588868 0,0.4216796 -0.161231,0.4836914 -0.198437,0 -0.434082,0.024805 0,0.3472657 0.0248,0.8557618 0.223242,-0.037207 0.496094,-0.074414 0.173632,-0.037207 0.260449,0.1240234 0.09922,0.1240235 0.136426,0.3844727 0.03721,0.1984375 -0.07441,0.2976562 -0.08682,0.024805 -0.322461,0.1116211 -0.21084,0 -0.471289,0.062012 V 9.860314 q 0.297656,-0.037207 0.781347,-0.074414 0.818555,-0.074414 1.389063,-0.074414 0.173632,0 0.186035,0.5581051 0,0.508496 -0.198438,0.558106 -0.768945,0.04961 -1.314648,0.111621 -0.347266,0 -0.868164,0.03721 0,0.843359 -0.09922,1.661914 0,0.09922 -0.198437,0.16123 -0.173633,-0.0248 -0.396875,0.0124 -0.161231,-0.02481 -0.21084,-0.148828 -0.08682,-0.558106 -0.161231,-1.649512 -0.285254,0 -0.694531,0.02481 -0.756543,0.0124 -1.37666,0 -0.124023,0 -0.161231,-0.409278 0,-0.409277 0.161231,-0.409277 0.669726,-0.02481 1.562695,-0.09922 0.260449,-0.0248 0.508496,-0.06201 V 9.3270132 q -0.16123,0 -0.359668,0.012402 -0.496093,0 -1.004589,-0.086816 -0.496094,-0.074414 -0.694532,-0.2728516 -0.136425,-0.1860351 -0.136425,-0.5953125 0,-0.2480468 0.03721,-0.9549804 0.03721,-0.7069336 0.124023,-1.2402344 0.07441,-0.5208984 0.16123,-0.8805664 0.03721,-0.1860351 0.508497,-0.1984375 0.483691,0 0.458886,0.1984375 0,0.4588867 -0.03721,0.9549805 0,0.4216797 -0.08682,1.0790039 -0.0124,0.5829101 -0.06201,0.79375 0,0.062012 0.0124,0.1736328 0.0248,0.024805 0.136426,0.086816 l 0.942578,0.037207 V 7.5038687 q -0.285254,0 -0.409277,-0.012402 -0.16123,0 -0.198438,-0.4216797 0,-0.4092773 0.161231,-0.4464844 0.136426,-0.037207 0.446484,-0.062012 0,-0.4092773 0.0124,-0.7193359 -0.06201,0 -0.198438,0.037207 -0.248047,0.012402 -0.359668,-0.3100586 -0.0124,-0.1488281 -0.0248,-0.2852539 0,-0.1116211 0.272851,-0.1984375 0.558106,-0.1116211 0.892969,-0.1488281 0.334863,0 0.694531,-0.037207 0.359668,0 0.719336,-0.012402 0.07441,-0.1860351 0.285254,-0.2232421 0.21084,-0.037207 0.37207,-0.024805 0.148828,0 0.297656,0.3348632 0.111622,0.4340821 0.21084,0.9921875 0.07441,0.4960938 0.111621,1.2154297 0.03721,0.6449219 -0.0124,1.4510742 0,0.1984375 -0.148828,0.2852539 -0.09922,0.024805 -0.297656,0.074414 -0.124024,0 -0.310059,-0.012402 -0.09922,-0.037207 -0.235644,-0.3472656 z" />
  <path
     style="stroke-width:0.367797"
     d="m 31.234975,7.3922476 q -1.810742,0 -3.311425,-0.074414 -0.161231,0 -0.198438,-0.4712891 0,-0.4836914 0.248047,-0.471289 l 2.058789,-0.086816 q 0.744141,-0.024805 1.885156,-0.1612305 0.03721,-0.5829101 0.08682,-1.1162109 0.0248,-0.1860352 0.545703,-0.1860352 0.520898,0 0.533301,0.1860352 l 0.08682,0.9921875 q 0.620117,-0.062012 1.141016,-0.099219 0.917773,-0.062012 3.063378,0 0.21084,0 0.235645,0.6077148 0,0.5705079 -0.248047,0.5953125 -1.21543,0.1240235 -1.823144,0.1612305 -0.533301,0 -1.513086,0.049609 -0.310059,0 -0.79375,0.024805 v 1.0541992 h 0.06201 q 2.331641,-0.074414 3.001368,0.024805 0.186035,0 0.210839,0.4216796 0.02481,0.3844727 -0.148828,0.4464844 -0.830957,0.1364258 -3.150195,0.3348633 -0.0248,2.4060545 -0.198438,3.1377925 -0.0124,0.09922 -0.409277,0.161231 -0.347265,-0.02481 -0.409277,-0.186035 -0.136426,-0.855762 -0.260449,-3.0509768 -1.550293,0.024805 -3.063379,0 -0.09922,0 -0.161231,-0.4588867 0,-0.434082 0.136426,-0.4712891 1.451074,-0.2108398 3.063379,-0.2976562 V 7.3798453 q -0.285254,0 -0.669727,0.012402 z M 33.80226,4.2668571 q -0.905371,0.012402 -3.013769,0.037207 0.03721,0.5457031 0.0124,0.79375 0,0.1240234 -0.434082,0.2356445 -0.384472,0.049609 -0.483691,-0.1364258 -0.06201,-0.2604492 -0.248047,-0.905371 -0.95498,-0.024805 -1.835547,-0.086817 -0.136426,0 -0.186035,-0.434082 0.02481,-0.4464843 0.235645,-0.434082 l 1.599902,-0.062012 q -0.04961,-0.4092774 -0.09922,-0.7813477 0,-0.2108398 0.570508,-0.2976562 0.148828,0 0.260449,-0.024805 0.334863,0 0.37207,0.1488281 0.07442,0.359668 0.148829,0.9053711 0.545703,-0.037207 1.227832,-0.099219 1.227832,-0.1364258 2.158007,-0.1860352 0.06201,0 0.136426,-0.012402 0.03721,-0.322461 0.111621,-0.5953125 0.02481,-0.1364258 0.359668,-0.1488282 0.111621,0 0.272852,0.024805 0.58291,0.049609 0.58291,0.2976563 0,0.1612304 -0.04961,0.4092773 0.669726,0 1.599902,0.062012 0.21084,0 0.198437,0.5581055 0,0.5084961 -0.21084,0.5457031 -1.203027,0.1240234 -1.810742,0.1488281 -0.136425,0.719336 -0.260449,0.9797852 -0.0124,0.1240234 -0.483691,0.1240234 -0.396875,-0.037207 -0.42168,-0.2728515 V 4.2420524 q -0.124023,0 -0.310059,0.024805 z m 1.525489,7.5034179 q -0.235645,-0.297656 -0.483692,-0.620117 -0.04961,-0.111621 0.02481,-0.285254 0.111621,-0.186035 0.285254,-0.334863 0.173633,-0.148829 0.272851,-0.07441 0.731739,0.248046 1.277442,0.905371 0.111621,0.09922 -0.03721,0.384472 -0.124024,0.235645 -0.446485,0.446485 -0.248046,0.16123 -0.421679,0.07441 -0.198438,-0.186035 -0.471289,-0.496094 z m -6.263184,-0.868164 q 0.334863,-0.248047 0.669727,-0.458887 0.111621,-0.07441 0.285254,0.03721 0.173632,0.09922 0.310058,0.310059 0.136426,0.16123 0.06201,0.285254 -0.310059,0.657324 -1.041797,1.252636 -0.124023,0.06201 -0.384473,-0.07441 -0.198437,-0.173632 -0.409277,-0.471289 -0.136426,-0.297656 -0.04961,-0.434082 0.21084,-0.21084 0.558105,-0.446484 z" />
  <path
     style="stroke-width:0.367797"
     d="m 47.233998,7.007775 q 0.520898,0 0.5333,0.1984375 0.06201,0.7317383 -0.0124,1.8355468 -0.04961,1.0169927 -0.148828,1.3394527 -0.0124,0.124024 -0.409277,0.161231 -0.347266,0 -0.409278,-0.186035 -0.04961,-0.3720706 -0.111621,-1.364258 -0.0124,-1.0045899 0.0124,-1.7983399 0.02481,-0.1860351 0.545704,-0.1860351 z M 46.787513,4.3908805 q -0.905371,0.012402 -2.790527,0.037207 -0.09922,0 -0.260449,-0.012402 0.0248,0.3100586 0.0124,0.4836914 0,0.1240234 -0.434082,0.2356445 -0.384473,0.049609 -0.483691,-0.1364258 -0.04961,-0.1860351 -0.173633,-0.5953125 -1.016992,-0.024805 -1.95957,-0.099219 -0.136426,0 -0.186036,-0.434082 0.02481,-0.4464844 0.235645,-0.4340821 l 1.699121,-0.062012 q -0.04961,-0.396875 -0.09922,-0.7317382 0,-0.2108399 0.570508,-0.2976563 0.58291,-0.074414 0.63252,0.1240234 0.07441,0.3472657 0.136425,0.8681641 l 1.203028,-0.086816 2.195214,-0.1860352 q 0.03721,0 0.124024,-0.012402 0.03721,-0.4092773 0.124023,-0.7689453 0.02481,-0.1364258 0.347266,-0.1488281 0.136426,0.012402 0.285254,0.024805 0.58291,0.049609 0.58291,0.2852539 0,0.2356445 -0.06201,0.6077148 0.706934,0 1.661914,0.074414 0.186035,0 0.198438,0.5581054 0,0.5084961 -0.21084,0.5457031 -1.21543,0.1240235 -1.823145,0.1364258 h -0.06201 q -0.124024,0.6945313 -0.235645,0.9425781 -0.0124,0.1240235 -0.483691,0.1240235 -0.396875,-0.037207 -0.434082,-0.2604493 0,-0.2604492 0.0124,-0.7937499 -0.124023,0 -0.322461,0.012402 z m 2.716113,1.227832 q 0.520899,0.012402 0.520899,0.2356445 0.06201,1.513086 -0.173633,3.6834961 -0.198437,2.0959959 -0.409277,2.7037109 -0.0124,0.124023 -0.42168,0.136426 -0.347266,0 -0.384473,-0.21084 -0.04961,-0.768945 -0.0124,-2.778125 0.07441,-2.0091797 0.334863,-3.6214844 0.03721,-0.1860351 0.545703,-0.1488281 z m -5.469433,4.3904295 q 0.09922,1.351856 0.02481,2.517676 0,0.124023 -0.235645,0.21084 -0.198437,0 -0.458887,0.0248 -0.198437,-0.0248 -0.260449,-0.148828 -0.124023,-0.545703 -0.260449,-1.699121 l -0.04961,0.04961 q -0.79375,0.644921 -1.413868,0.95498 -0.16123,0.06201 -0.483691,-0.37207 -0.272852,-0.471289 -0.06201,-0.63252 0.297657,-0.21084 0.607715,-0.396875 0.297656,-0.186035 0.657324,-0.421679 l 0.644922,-0.4588872 q 0,-0.2480468 -0.0248,-0.4836914 -0.756543,0.024805 -1.513086,0.062012 -0.124024,0 -0.186036,-0.5208984 -0.0124,-0.4836914 0.136426,-0.5457031 0.706934,-0.1116211 1.488281,-0.2108398 l -0.06201,-1.0666016 q -0.347266,0.012402 -0.595313,0.099219 -0.384472,0.024805 -0.892968,0.1364257 -0.136426,0.012402 -0.272852,-0.4588867 -0.04961,-0.4836914 0.09922,-0.5208984 l 0.917773,-0.1860352 q 0.37207,-0.062012 0.905371,-0.2480468 1.190625,-0.4340821 2.666504,-0.2976563 0.248047,0 0.260449,0.6077149 0,0.5705078 -0.223242,0.5953125 -0.644922,0.024805 -1.041797,0.099219 -0.198437,0 -0.644922,0.049609 0.03721,0.2728515 0.09922,0.9549804 v 0.1488282 q 1.178223,-0.074414 1.525488,-0.024805 0.223243,0 0.26045,0.4588867 0.03721,0.4588867 -0.148829,0.5208984 -0.421679,0.062012 -1.53789,0.2232422 0.03721,0.4216797 0.07441,0.979785 z m 0.917773,1.153418 q -0.210839,-0.297656 -0.458886,-0.58291 -0.06201,-0.09922 0.0124,-0.272852 0.09922,-0.148828 0.260449,-0.3100582 0.148828,-0.1364258 0.248047,-0.074414 0.285254,0.086816 0.63252,0.3348633 0.359668,0.198438 0.607714,0.496094 0.111622,0.08682 -0.03721,0.359668 -0.09922,0.21084 -0.409277,0.434082 -0.235644,0.16123 -0.396875,0.07441 -0.173633,-0.173633 -0.458887,-0.458887 z" />
</svg>
                <small>Hidamari</small>
            </a>

            <div class="mr-4 text-danger x_ajax_state_err ">
<svg class="bi bi-emoji-dizzy" height="32" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
  <path fill-rule="evenodd" d="M9.146 5.146a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708.708l-.647.646.647.646a.5.5 0 0 1-.708.708l-.646-.647-.646.647a.5.5 0 1 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 0-.708zm-5 0a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 1 1 .708.708l-.647.646.647.646a.5.5 0 1 1-.708.708L5.5 7.207l-.646.647a.5.5 0 1 1-.708-.708l.647-.646-.647-.646a.5.5 0 0 1 0-.708z"/>
  <path d="M10 11a2 2 0 1 1-4 0 2 2 0 0 1 4 0z"/>
</svg>
            </div>

            <div class="mr-4 spinner-border text-light x_ajax_state ">
                <span class="sr-only">Loading...</span>
            </div>

            <button class="navbar-toggler x_navbar_toggler" type="button" data-toggle="collapse"
                data-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent"
                aria-expanded="false" aria-label="Toggle navigation">
                <span class="navbar-toggler-icon"></span>
            </button>
        </nav>
    </div>

    <div class="container-fluid px-0">

        <div id="carousel" class="carousel slide" data-ride="carousel" data-interval="false">

            <div class="carousel-indicators">
                <button type="button" class="btn btn-outline-dark rounded-pill" data-target="#carousel" data-slide-to="0">Playlist</button>
                <button type="button" class="btn btn-outline-dark rounded-pill active" data-target="#carousel" data-slide-to="1">player</button>
                <button type="button" class="btn btn-outline-dark rounded-pill" data-target="#carousel" data-slide-to="2">Library</button>
            </div>

            <div class="carousel-inner" role="listbox">
                <div class="carousel-item">
                    <div class="d-flex flex-column align-items-center x_min-vh-90">

                        <div class="p-1 mt-1 bg-white rounded d-flex align-items-center justify-content-end x_controler">

                            <div class="dropdown x_playlist_dropdown">
                                <button class="btn btn-sm btn-primary dropdown-toggle shadow rounded-pill ml-2" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" >

<svg class="bi bi-three-dots" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M3 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/>
</svg>

                                </button>
                              <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
                                <a class="dropdown-item x_repeat" href="#">
<svg class="bi bi-arrow-repeat" width="20" height="20"  viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M2.854 7.146a.5.5 0 0 0-.708 0l-2 2a.5.5 0 1 0 .708.708L2.5 8.207l1.646 1.647a.5.5 0 0 0 .708-.708l-2-2zm13-1a.5.5 0 0 0-.708 0L13.5 7.793l-1.646-1.647a.5.5 0 0 0-.708.708l2 2a.5.5 0 0 0 .708 0l2-2a.5.5 0 0 0 0-.708z"/>
  <path fill-rule="evenodd" d="M8 3a4.995 4.995 0 0 0-4.192 2.273.5.5 0 0 1-.837-.546A6 6 0 0 1 14 8a.5.5 0 0 1-1.001 0 5 5 0 0 0-5-5zM2.5 7.5A.5.5 0 0 1 3 8a5 5 0 0 0 9.192 2.727.5.5 0 1 1 .837.546A6 6 0 0 1 2 8a.5.5 0 0 1 .501-.5z"/>
</svg>
                                    Repeat
                                </a>
                                <a class="dropdown-item x_single" href="#">
<svg class="bi bi-arrow-clockwise" width="20" height="20"  viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M3.17 6.706a5 5 0 0 1 7.103-3.16.5.5 0 1 0 .454-.892A6 6 0 1 0 13.455 5.5a.5.5 0 0 0-.91.417 5 5 0 1 1-9.375.789z"/>
  <path fill-rule="evenodd" d="M8.147.146a.5.5 0 0 1 .707 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 1 1-.707-.708L10.293 3 8.147.854a.5.5 0 0 1 0-.708z"/>
</svg>
                                    Single
                                </a>
                                <a class="dropdown-item x_random" href="#">
<svg class="bi bi-shuffle" width="20" height="20"  viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M12.646 1.146a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 0 1-.708-.708L14.793 4l-2.147-2.146a.5.5 0 0 1 0-.708zm0 8a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 0 1-.708-.708L14.793 12l-2.147-2.146a.5.5 0 0 1 0-.708z"/>
  <path fill-rule="evenodd" d="M0 4a.5.5 0 0 1 .5-.5h2c3.053 0 4.564 2.258 5.856 4.226l.08.123c.636.97 1.224 1.865 1.932 2.539.718.682 1.538 1.112 2.632 1.112h2a.5.5 0 0 1 0 1h-2c-1.406 0-2.461-.57-3.321-1.388-.795-.755-1.441-1.742-2.055-2.679l-.105-.159C6.186 6.242 4.947 4.5 2.5 4.5h-2A.5.5 0 0 1 0 4z"/>
  <path fill-rule="evenodd" d="M0 12a.5.5 0 0 0 .5.5h2c3.053 0 4.564-2.258 5.856-4.226l.08-.123c.636-.97 1.224-1.865 1.932-2.539C11.086 4.93 11.906 4.5 13 4.5h2a.5.5 0 0 0 0-1h-2c-1.406 0-2.461.57-3.321 1.388-.795.755-1.441 1.742-2.055 2.679l-.105.159C6.186 9.758 4.947 11.5 2.5 11.5h-2a.5.5 0 0 0-.5.5z"/>
</svg>
                                    Shuffle
                                </a>

                                <a class="dropdown-item x_consume" href="#">
<svg class="bi bi-box-arrow-down" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M4.646 11.646a.5.5 0 0 1 .708 0L8 14.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z"/>
  <path fill-rule="evenodd" d="M8 4.5a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-1 0V5a.5.5 0 0 1 .5-.5z"/>
  <path fill-rule="evenodd" d="M2.5 2A1.5 1.5 0 0 1 4 .5h8A1.5 1.5 0 0 1 13.5 2v7a1.5 1.5 0 0 1-1.5 1.5h-1.5a.5.5 0 0 1 0-1H12a.5.5 0 0 0 .5-.5V2a.5.5 0 0 0-.5-.5H4a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .5.5h1.5a.5.5 0 0 1 0 1H4A1.5 1.5 0 0 1 2.5 9V2z"/>
</svg>
                                    Consume
                                </a>

                                <div class="dropdown-divider"></div>

                                <a class="dropdown-item x_playlist_save" href="#">
<svg class="bi bi-music-note-list" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path d="M12 13c0 1.105-1.12 2-2.5 2S7 14.105 7 13s1.12-2 2.5-2 2.5.895 2.5 2z"/>
  <path fill-rule="evenodd" d="M12 3v10h-1V3h1z"/>
  <path d="M11 2.82a1 1 0 0 1 .804-.98l3-.6A1 1 0 0 1 16 2.22V4l-5 1V2.82z"/>
  <path fill-rule="evenodd" d="M0 11.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5zm0-4A.5.5 0 0 1 .5 7H8a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5zm0-4A.5.5 0 0 1 .5 3H8a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5z"/>
</svg>

                                    Playlist Save/Load
                                </a>

                              </div>
                            </div>

                            <button class="btn btn-sm btn-primary shadow rounded-pill ml-auto x_playlist_check_all" >
<svg class="bi bi-check2-all" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M12.354 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z"/>
  <path d="M6.25 8.043l-.896-.897a.5.5 0 1 0-.708.708l.897.896.707-.707zm1 2.414l.896.897a.5.5 0 0 0 .708 0l7-7a.5.5 0 0 0-.708-.708L8.5 10.293l-.543-.543-.707.707z"/>
</svg>
                            </button>

                            <button class="btn btn-sm btn-primary shadow rounded-pill ml-2 x_playlist_up" >
    <svg class="bi bi-chevron-bar-up" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
      <path fill-rule="evenodd" d="M3.646 11.854a.5.5 0 0 0 .708 0L8 8.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708zM2.4 5.2c0 .22.18.4.4.4h10.4a.4.4 0 0 0 0-.8H2.8a.4.4 0 0 0-.4.4z"/>
    </svg>
                            </button>

                            <button class="btn btn-sm btn-primary shadow rounded-pill ml-2 x_playlist_down" >
    <svg class="bi bi-chevron-bar-down" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
      <path fill-rule="evenodd" d="M3.646 4.146a.5.5 0 0 1 .708 0L8 7.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708zM1 11.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5z"/>
    </svg>
                            </button>

                            <button class="btn btn-sm btn-primary shadow rounded-pill ml-2 x_playlist_remove" >
                                <svg class="bi bi-trash-fill" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                                  <path fill-rule="evenodd" d="M2.5 1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1H3v9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V4h.5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1H2.5zm3 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5zM8 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5zm3 .5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0v-7z"/>
                                </svg>
                            </button>

                        </div>

                        <div class="overflow-auto flex-grow-1 x_controler x_playlist">

                            <hr class="x_hr mb-5" />

                            <div class="m-1 d-flex border border-info bg-info text-white rounded-lg align-items-center x_playlist_item" >
                                <div class="h5 mx-2 x_playlist_item_pos x_playlist_item_desc">
                                    0.
                                </div>
                                <div class="flex-grow-1 mx-1">
                                    <div class="h6 m-0 text-wrap x_break-word x_playlist_item_title_1 x_playlist_item_desc">Title</div>
                                    <div class="d-flex align-items-end">
                                        <div class="flex-grow-1 font-weight-light text-wrap x_break-word x_playlist_item_title_2">Title</div>
                                        <div class="h6 mx-2 text-monospace x_playlist_item_time">00:00</div>
                                    </div>
                                </div>
                                <div class="ml-2 p-1 d-flex w-auto" >
                                    <button class="btn btn-sm btn-primary shadow rounded-pill x_playlist_item_select" >
<svg class="bi bi-check-circle-fill x_playlist_item_select_on"width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/>
</svg>

<svg class="bi bi-circle x_playlist_item_select_off" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
</svg>
                                    </button>

                                    <button class="ml-2 btn btn-sm btn-primary shadow rounded-pill x_playlist_item_play" >
<svg class="bi bi-play" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M10.804 8L5 4.633v6.734L10.804 8zm.792-.696a.802.802 0 0 1 0 1.392l-6.363 3.692C4.713 12.69 4 12.345 4 11.692V4.308c0-.653.713-.998 1.233-.696l6.363 3.692z"/>
</svg>
                                    </button>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>

                <div class="carousel-item active">
                    <div class="d-flex flex-column align-items-center x_min-vh-90" >

                        <div class="h3 overflow-hidden p-1 m-1 x_overflow-hidden x_player_title_1" ></div>
                        <div class="h5 overflow-hidden p-1 m-1 x_overflow-hidden x_player_title_2" ></div>

                        <div class="bg-dark rounded-lg x_canvas" >

                            <div class="x_canvas-indicators">
                                <button type="button" class="btn btn-light mx-2 rounded-pill x_canvas-indicator active" data-slide-to="0""></button>
                                <button type="button" class="btn btn-light mx-2 rounded-pill x_canvas-indicator "       data-slide-to="1"></button>
                                <button type="button" class="btn btn-light mx-2 rounded-pill x_canvas-indicator "       data-slide-to="2"></button>
                                <button type="button" class="btn btn-light mx-2 rounded-pill x_canvas-indicator "       data-slide-to="3"></button>
                            </div>

                          <div class="x_canvas-inner">
                            <div class="x_canvas-item rounded-lg active">
                              <canvas class="p-2 x_canvas_0"></canvas>
                            </div>
                            <div class="x_canvas-item rounded-lg">
                              <canvas class="p-2 x_canvas_1"></canvas>
                            </div>
                            <div class="x_canvas-item rounded-lg">
                              <canvas class="p-2 x_canvas_2"></canvas>
                            </div>
                            <div class="x_canvas-item rounded-lg">
                              <canvas class="p-2 x_canvas_3"></canvas>
                            </div>
                          </div>

                        </div>

                        <div class="overflow-hidden p-1 m-1 x_overflow-hidden x_player_title_3"></div>

                        <div class="p-1 d-flex align-items-center justify-content-around x_controler x_play_controler">
                            <button class="btn btn-primary shadow rounded-pill x_prev" >
                                <svg class="bi bi-skip-start-fill" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                                  <path fill-rule="evenodd" d="M4.5 3.5A.5.5 0 0 0 4 4v8a.5.5 0 0 0 1 0V4a.5.5 0 0 0-.5-.5z"/>
                                  <path d="M4.903 8.697l6.364 3.692c.54.313 1.232-.066 1.232-.697V4.308c0-.63-.692-1.01-1.232-.696L4.903 7.304a.802.802 0 0 0 0 1.393z"/>
                                </svg>
                            </button>
                            <button class="btn btn-primary shadow rounded-pill x_play" >

                                <svg class="bi bi-pause-fill x_play_pause" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                                  <path d="M5.5 3.5A1.5 1.5 0 0 1 7 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5zm5 0A1.5 1.5 0 0 1 12 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5z"/>
                                </svg>

                                <svg class="bi bi-play-fill x_play_play" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                                  <path d="M11.596 8.697l-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
                                </svg>

                            </button>
                            <button class="btn btn-primary shadow rounded-pill x_next" >

                                <svg class="bi bi-skip-end-fill" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                                  <path fill-rule="evenodd" d="M12 3.5a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5z"/>
                                  <path d="M11.596 8.697l-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
                                </svg>

                            </button>

                            <div class="text-primary d-flex align-items-center">

                                <div class="custom-control custom-switch">
                                  <input type="checkbox" class="custom-control-input shadow x_volmut" id="x_volmut" checked="checked">
                                  <label class="custom-control-label" for="x_volmut">
                                  </label>
                                </div>

                                <div class="badge badge-light x_volbadge">
                                <svg class="bi bi-volume-up-fill x_volicon_high" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                                  <path d="M11.536 14.01A8.473 8.473 0 0 0 14.026 8a8.473 8.473 0 0 0-2.49-6.01l-.708.707A7.476 7.476 0 0 1 13.025 8c0 2.071-.84 3.946-2.197 5.303l.708.707z"/>
                                  <path d="M10.121 12.596A6.48 6.48 0 0 0 12.025 8a6.48 6.48 0 0 0-1.904-4.596l-.707.707A5.483 5.483 0 0 1 11.025 8a5.483 5.483 0 0 1-1.61 3.89l.706.706z"/>
                                  <path d="M8.707 11.182A4.486 4.486 0 0 0 10.025 8a4.486 4.486 0 0 0-1.318-3.182L8 5.525A3.489 3.489 0 0 1 9.025 8 3.49 3.49 0 0 1 8 10.475l.707.707z"/>
                                  <path fill-rule="evenodd" d="M6.717 3.55A.5.5 0 0 1 7 4v8a.5.5 0 0 1-.812.39L3.825 10.5H1.5A.5.5 0 0 1 1 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06z"/>
                                </svg>
                                    <svg class="bi bi-volume-down-fill x_volicon_low" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                                      <path fill-rule="evenodd" d="M8.717 3.55A.5.5 0 0 1 9 4v8a.5.5 0 0 1-.812.39L5.825 10.5H3.5A.5.5 0 0 1 3 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06z"/>
                                      <path d="M10.707 11.182A4.486 4.486 0 0 0 12.025 8a4.486 4.486 0 0 0-1.318-3.182L10 5.525A3.489 3.489 0 0 1 11.025 8c0 .966-.392 1.841-1.025 2.475l.707.707z"/>
                                    </svg>
                                    <svg class="bi bi-volume-mute-fill x_volicon_mut" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                                      <path fill-rule="evenodd" d="M6.717 3.55A.5.5 0 0 1 7 4v8a.5.5 0 0 1-.812.39L3.825 10.5H1.5A.5.5 0 0 1 1 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06zm7.137 1.596a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708l4-4a.5.5 0 0 1 .708 0z"/>
                                      <path fill-rule="evenodd" d="M9.146 5.146a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0z"/>
                                    </svg>

                                    <span class="x_volval">100</span>
                                </div>

                            </div>

                            <button class="btn btn-primary shadow x_volup" >

                                <svg class="bi bi-plus" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                                  <path fill-rule="evenodd" d="M8 3.5a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5H4a.5.5 0 0 1 0-1h3.5V4a.5.5 0 0 1 .5-.5z"/>
                                  <path fill-rule="evenodd" d="M7.5 8a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1H8.5V12a.5.5 0 0 1-1 0V8z"/>
                                </svg>

                            </button>

                            <button class="btn btn-primary shadow x_voldw" >
                                <svg class="bi bi-dash" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                                  <path fill-rule="evenodd" d="M3.5 8a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 0 1H4a.5.5 0 0 1-.5-.5z"/>
                                </svg>
                            </button>

                        </div>

                        <div class="d-flex align-items-center justify-content-around p-1 mt-1 x_controler">
                            <div class="badge badge-light text-monospace x_time_t">00:00</div>

                            <div class="progress flex-fill mx-1 x_position">
                                <div class="progress-bar x_position_bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="transition:none;"></div>
                            </div>
                            <div>
                                <div class="badge badge-light text-monospace x_time_r">00:00</div>
                                <div class="badge badge-light text-monospace x_time_d">00:00</div>
                            </div>
                        </div>
                    </div>
                </div>

                <div class="carousel-item">
                    <div class="d-flex flex-column align-items-center x_min-vh-90">

                        <div class="p-1 m-0 d-flex align-items-center justify-content-start x_controler">

                            <div class="w-100 p-0 m-0">
                                <nav class="w-100 p-0 m-0 aria-label="breadcrumb">
                                  <ol class="breadcrumb m-0 x_library_bc">
                                    <li class="breadcrumb-item"><a href="#">Home</a></li>
                                    <li class="breadcrumb-item"><a href="#">Next</a></li>
                                  </ol>
                                </nav>
                            </div>

                        </div>
                        <div class="p-1 m-0 x_controler">

                            <div class="p-1 rounded bg-white d-flex align-items-center justify-content-start ">

                                <button class="btn btn-sm btn-primary shadow rounded-pill ml-2 x_dir_up" >
    <svg class="bi bi-arrow-left" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
      <path fill-rule="evenodd" d="M5.854 4.646a.5.5 0 0 1 0 .708L3.207 8l2.647 2.646a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 0 1 .708 0z"/>
      <path fill-rule="evenodd" d="M2.5 8a.5.5 0 0 1 .5-.5h10.5a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"/>
    </svg>
                                </button>

                                <button class="btn btn-sm btn-primary shadow rounded-pill ml-2 x_dir_home" >
    <svg class="bi bi-house-door" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
      <path fill-rule="evenodd" d="M7.646 1.146a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 .146.354v7a.5.5 0 0 1-.5.5H9.5a.5.5 0 0 1-.5-.5v-4H7v4a.5.5 0 0 1-.5.5H2a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .146-.354l6-6zM2.5 7.707V14H6v-4a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v4h3.5V7.707L8 2.207l-5.5 5.5z"/>
      <path fill-rule="evenodd" d="M13 2.5V6l-2-2V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5z"/>
    </svg>
                                </button>

                                <button class="btn btn-sm btn-primary shadow rounded-pill ml-2 x_dir_refresh" >
    <svg class="bi bi-bootstrap-reboot" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
      <path fill-rule="evenodd" d="M1.161 8a6.84 6.84 0 1 0 6.842-6.84.58.58 0 0 1 0-1.16 8 8 0 1 1-6.556 3.412l-.663-.577a.58.58 0 0 1 .227-.997l2.52-.69a.58.58 0 0 1 .728.633l-.332 2.592a.58.58 0 0 1-.956.364l-.643-.56A6.812 6.812 0 0 0 1.16 8zm5.48-.079V5.277h1.57c.881 0 1.416.499 1.416 1.32 0 .84-.504 1.324-1.386 1.324h-1.6zm0 3.75V8.843h1.57l1.498 2.828h1.314L9.377 8.665c.897-.3 1.427-1.106 1.427-2.1 0-1.37-.943-2.246-2.456-2.246H5.5v7.352h1.141z"/>
    </svg>
                                </button>

                                <button class="btn btn-sm btn-primary shadow rounded-pill ml-auto x_liblist_dir_addall" >
    <svg class="bi bi-folder-plus" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
      <path fill-rule="evenodd" d="M9.828 4H2.19a1 1 0 0 0-.996 1.09l.637 7a1 1 0 0 0 .995.91H9v1H2.826a2 2 0 0 1-1.991-1.819l-.637-7a1.99 1.99 0 0 1 .342-1.31L.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3h3.982a2 2 0 0 1 1.992 2.181L15.546 8H14.54l.265-2.91A1 1 0 0 0 13.81 4H9.828zm-2.95-1.707L7.587 3H2.19c-.24 0-.47.042-.684.12L1.5 2.98a1 1 0 0 1 1-.98h3.672a1 1 0 0 1 .707.293z"/>
      <path fill-rule="evenodd" d="M13.5 10a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1H13v-1.5a.5.5 0 0 1 .5-.5z"/>
      <path fill-rule="evenodd" d="M13 12.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0v-2z"/>
    </svg>
                                </button>

                                <button class="btn btn-sm btn-primary shadow rounded-pill ml-2 x_liblist_dir_addall_play" >
<svg class="bi bi-collection-play" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M14.5 13.5h-13A.5.5 0 0 1 1 13V6a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5zm-13 1A1.5 1.5 0 0 1 0 13V6a1.5 1.5 0 0 1 1.5-1.5h13A1.5 1.5 0 0 1 16 6v7a1.5 1.5 0 0 1-1.5 1.5h-13zM2 3a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 0-1h-11A.5.5 0 0 0 2 3zm2-2a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7A.5.5 0 0 0 4 1z"/>
  <path fill-rule="evenodd" d="M6.258 6.563a.5.5 0 0 1 .507.013l4 2.5a.5.5 0 0 1 0 .848l-4 2.5A.5.5 0 0 1 6 12V7a.5.5 0 0 1 .258-.437z"/>
</svg>
                                </button>

                            </div>
                        </div>

                        <div class="overflow-auto flex-grow-1 x_controler x_liblist">

                            <hr class="x_hr mb-5" />

                            <div class="m-1 d-flex border border-warning bg-warning rounded-lg align-items-center x_liblist_folder_item" >
                                <div class="h5 mx-2">
<svg class="bi bi-folder" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path d="M9.828 4a3 3 0 0 1-2.12-.879l-.83-.828A1 1 0 0 0 6.173 2H2.5a1 1 0 0 0-1 .981L1.546 4h-1L.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3v1z"/>
  <path fill-rule="evenodd" d="M13.81 4H2.19a1 1 0 0 0-.996 1.09l.637 7a1 1 0 0 0 .995.91h10.348a1 1 0 0 0 .995-.91l.637-7A1 1 0 0 0 13.81 4zM2.19 3A2 2 0 0 0 .198 5.181l.637 7A2 2 0 0 0 2.826 14h10.348a2 2 0 0 0 1.991-1.819l.637-7A2 2 0 0 0 13.81 3H2.19z"/>
</svg>
                                </div>
                                <div class="flex-grow-1 mx-1">
                                    <div class="h6 text-wrap x_break-word x_liblist_folder_item_title_1">Title</div>
                                </div>
                            </div>

                            <div class="m-1 d-flex border border-success bg-success text-white rounded-lg align-items-center x_liblist_file_item" >
                                <div class="h5 mx-2 x_liblist_file_item_desc">
<svg class="bi bi-music-note" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path d="M9 13c0 1.105-1.12 2-2.5 2S4 14.105 4 13s1.12-2 2.5-2 2.5.895 2.5 2z"/>
  <path fill-rule="evenodd" d="M9 3v10H8V3h1z"/>
  <path d="M8 2.82a1 1 0 0 1 .804-.98l3-.6A1 1 0 0 1 13 2.22V4L8 5V2.82z"/>
</svg>
                                </div>
                                <div class="flex-grow-1 mx-1">
                                    <div class="h6 m-0 text-wrap x_break-word x_liblist_file_item_title_1 x_liblist_file_item_desc">Title</div>
                                    <div class="d-flex align-items-end">
                                        <div class="flex-grow-1 font-weight-light text-wrap x_break-word x_liblist_file_item_title_2">Title</div>
                                        <div class="h6 mx-2 text-monospace x_liblist_file_item_time">00:00</div>
                                    </div>
                                </div>
                                <div class="ml-2 p-1 d-flex w-auto" >
                                    <button class="btn btn-sm btn-primary shadow rounded-pill x_liblist_file_item_add">
<svg class="bi bi-plus-circle" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M8 3.5a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5H4a.5.5 0 0 1 0-1h3.5V4a.5.5 0 0 1 .5-.5z"/>
  <path fill-rule="evenodd" d="M7.5 8a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1H8.5V12a.5.5 0 0 1-1 0V8z"/>
  <path fill-rule="evenodd" d="M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
</svg>
                                    </button>

                                    <button class="ml-2 btn btn-sm btn-primary shadow rounded-pill x_liblist_file_item_play" >
<svg class="bi bi-play" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M10.804 8L5 4.633v6.734L10.804 8zm.792-.696a.802.802 0 0 1 0 1.392l-6.363 3.692C4.713 12.69 4 12.345 4 11.692V4.308c0-.653.713-.998 1.233-.696l6.363 3.692z"/>
</svg>
                                    </button>
                                </div>
                            </div>

                        </div>
                    </div>
                </div>
            </div>

            <a class="carousel-control-prev" href="#carousel" role="button" data-slide="prev">
                <span class="carousel-control-prev-icon" aria-hidden="true"></span>
                <span class="sr-only">Previous</span>
            </a>

            <a class="carousel-control-next" href="#carousel" role="button" data-slide="next">
                <span class="carousel-control-next-icon" aria-hidden="true"></span>
                <span class="sr-only">Next</span>
            </a>

        </div>
    </div>

    <div class="modal fade" tabindex="-1" role="dialog" id="x_item_desc">
      <div class="modal-dialog modal-dialog-centered">
        <div class="modal-content">
          <div class="modal-header">
            <h5 class="modal-title">Modal title</h5>
            <button type="button" class="close" data-dismiss="modal" aria-label="Close">
              <span aria-hidden="true">&times;</span>
            </button>
          </div>
          <div class="modal-body">
            <div class="img-thumbnail rounded-lg my-2 mx-auto d-flex justify-content-center">
                <svg class="bi bi-music-note-beamed w-50 h-50 x_arbumart_default" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                  <path d="M6 13c0 1.105-1.12 2-2.5 2S1 14.105 1 13c0-1.104 1.12-2 2.5-2s2.5.896 2.5 2zm9-2c0 1.105-1.12 2-2.5 2s-2.5-.895-2.5-2 1.12-2 2.5-2 2.5.895 2.5 2z"/>
                  <path fill-rule="evenodd" d="M14 11V2h1v9h-1zM6 3v10H5V3h1z"/>
                  <path d="M5 2.905a1 1 0 0 1 .9-.995l8-.8a1 1 0 0 1 1.1.995V3L5 4V2.905z"/>
                </svg>
                <img class="w-75 d-none x_arbumart" >
            </div>
            <table class="table table-sm table-striped">
            <tbody>
                <tr>
                  <td class="x_col_k text-right" >Artist</td>
                  <td >:</td>
                  <td class="x_col_v font-weight-bold" >Hoge</td>
                </tr>
            </tbody>
            </table>
          </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
          </div>
        </div>
      </div>
    </div>

    <div class="modal fade" tabindex="-1" role="dialog" id="x_playlist_save_dialog">
      <div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">
        <div class="modal-content">
          <div class="modal-header">
            <h5 class="modal-title">Playlist Save/Load</h5>
            <button type="button" class="close" data-dismiss="modal" aria-label="Close">
              <span aria-hidden="true">&times;</span>
            </button>
          </div>

        <div class="modal-body">
            <h6>Save playlist</h6>

            <div class="input-group input-group-sm my-2">

                <div class="input-group-prepend">
                    <span class="input-group-text" >name:</span>
                </div>

                <input type="text" class="form-control x_playlist_save_name" >

                <div class="input-group-append">
                    <button class="btn btn-primary x_playlist_save_save" type="button">Save</button>
                </div>
            </div>

            <div class="d-flex mt-4  align-items-center justify-content-end">
                <h6 >Saved playlists</h6>

                <button class="btn btn-sm btn-primary shadow rounded-pill ml-auto mr-2 x_playlist_saved_remove" >
                    <svg class="bi bi-trash-fill" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                      <path fill-rule="evenodd" d="M2.5 1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1H3v9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V4h.5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1H2.5zm3 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5zM8 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5zm3 .5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0v-7z"/>
                    </svg>
                </button>
            </div>

            <div class="mt-1 overflow-auto x_vh-40">
                <table class="table table-sm table-striped w-100">
                <tbody>
                    <tr class="x_playlist_saved_z">
                      <td class="align-middle x_playlist_saved_icon" style="width:20px;" >
<svg class="bi bi-music-note-list" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path d="M12 13c0 1.105-1.12 2-2.5 2S7 14.105 7 13s1.12-2 2.5-2 2.5.895 2.5 2z"/>
  <path fill-rule="evenodd" d="M12 3v10h-1V3h1z"/>
  <path d="M11 2.82a1 1 0 0 1 .804-.98l3-.6A1 1 0 0 1 16 2.22V4l-5 1V2.82z"/>
  <path fill-rule="evenodd" d="M0 11.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5zm0-4A.5.5 0 0 1 .5 7H8a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5zm0-4A.5.5 0 0 1 .5 3H8a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5z"/>
</svg>
                      </td>
                      <td class="align-middle x_break-word x_playlist_saved_name" >name</td>
                      <td class="align-middle text-right x_playlist_saved_btn" nowrap >
                        <button class="btn btn-sm btn-primary shadow rounded-pill ml-2 x_playlist_saved_load" >

<svg class="bi bi-collection-play" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M14.5 13.5h-13A.5.5 0 0 1 1 13V6a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5zm-13 1A1.5 1.5 0 0 1 0 13V6a1.5 1.5 0 0 1 1.5-1.5h13A1.5 1.5 0 0 1 16 6v7a1.5 1.5 0 0 1-1.5 1.5h-13zM2 3a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 0-1h-11A.5.5 0 0 0 2 3zm2-2a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7A.5.5 0 0 0 4 1z"/>
  <path fill-rule="evenodd" d="M6.258 6.563a.5.5 0 0 1 .507.013l4 2.5a.5.5 0 0 1 0 .848l-4 2.5A.5.5 0 0 1 6 12V7a.5.5 0 0 1 .258-.437z"/>
</svg>
                        </button>

                        <button class="btn btn-sm btn-primary shadow rounded-pill ml-2 x_playlist_saved_select" >
<svg class="bi bi-check-circle-fill x_playlist_saved_select_on" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/>
</svg>

<svg class="bi bi-circle x_playlist_saved_select_off" width="20" height="20" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path fill-rule="evenodd" d="M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
</svg>
                        </button>
                      </td>
                    </tr>
                </tbody>
                </table>
            </div>
        </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
          </div>
        </div>
      </div>
    </div>

    <div class="modal fade" data-backdrop="static" tabindex="-1" role="dialog" id="x_bt_notice">
      <div class="modal-dialog modal-sm modal-dialog-centered">
        <div class="modal-content">
          <div class="modal-header">
            <h5 class="modal-title text-body">Bluetooth Pairing</h5>
            <button type="button" class="close" data-dismiss="modal" aria-label="Close">
              <span aria-hidden="true">&times;</span>
            </button>
          </div>
          <div class="modal-body text-body">
            <p class="x_bt_notice_title"></p>
            <p class="x_bt_notice_msg"></p>
            <p class="x_bt_notice_dev"></p>
            <p class="pl-4 x_bt_notice_dev_source">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-mic-fill" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path d="M5 3a3 3 0 0 1 6 0v5a3 3 0 0 1-6 0V3z"/>
  <path fill-rule="evenodd" d="M3.5 6.5A.5.5 0 0 1 4 7v1a4 4 0 0 0 8 0V7a.5.5 0 0 1 1 0v1a5 5 0 0 1-4.5 4.975V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 .5-.5z"/>
</svg>
source
            </p>
            <p class="pl-4 x_bt_notice_dev_sink">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-volume-up-fill" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  <path d="M11.536 14.01A8.473 8.473 0 0 0 14.026 8a8.473 8.473 0 0 0-2.49-6.01l-.708.707A7.476 7.476 0 0 1 13.025 8c0 2.071-.84 3.946-2.197 5.303l.708.707z"/>
  <path d="M10.121 12.596A6.48 6.48 0 0 0 12.025 8a6.48 6.48 0 0 0-1.904-4.596l-.707.707A5.483 5.483 0 0 1 11.025 8a5.483 5.483 0 0 1-1.61 3.89l.706.706z"/>
  <path d="M8.707 11.182A4.486 4.486 0 0 0 10.025 8a4.486 4.486 0 0 0-1.318-3.182L8 5.525A3.489 3.489 0 0 1 9.025 8 3.49 3.49 0 0 1 8 10.475l.707.707z"/>
  <path fill-rule="evenodd" d="M6.717 3.55A.5.5 0 0 1 7 4v8a.5.5 0 0 1-.812.39L3.825 10.5H1.5A.5.5 0 0 1 1 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06z"/>
</svg> sink
            </p>

          </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-secondary x_bt_notice_cancel " data-dismiss="modal">Cancel</button>
            <button type="button" class="btn btn-primary   x_bt_notice_apply"   data-dismiss="modal">Apply</button>
            <button type="button" class="btn btn-secondary x_bt_notice_close"   data-dismiss="modal">Close</button>
          </div>
        </div>
      </div>
    </div>


    <script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>

    <script src="/common/hidamari.js"></script>
    <script src="/common/hidamari_anime.js"></script>
    <script src="/theme/main.js"></script>

</body>
</html>