-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
924 lines (899 loc) · 30.9 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
* {
padding: 0;
margin: 0;
}
body {
font-family: sans-serif;
text-rendering: optimizespeed;
background-color: #ffffff;
}
a {
color: #006ed3;
text-decoration: none;
}
a:hover,
h1 a:hover {
color: #319cff;
}
header,
#summary {
padding-left: 5%;
padding-right: 5%;
}
th:first-child,
td:first-child {
width: 5%;
}
th:last-child,
td:last-child {
width: 5%;
}
header {
padding-top: 25px;
padding-bottom: 15px;
background-color: #f2f2f2;
}
h1 {
font-size: 20px;
font-weight: normal;
white-space: nowrap;
overflow-x: hidden;
text-overflow: ellipsis;
color: #999;
}
h1 a {
color: #000;
margin: 0 4px;
}
h1 a:hover {
text-decoration: underline;
}
h1 a:first-child {
margin: 0;
}
main {
display: block;
}
.meta {
font-size: 12px;
font-family: Verdana, sans-serif;
border-bottom: 1px solid #9c9c9c;
padding-top: 10px;
padding-bottom: 10px;
}
.meta-item {
margin-right: 1em;
}
#filter {
padding: 4px;
border: 1px solid #ccc;
}
table {
width: 100%;
border-collapse: collapse;
}
tr {
border-bottom: 1px dashed #dadada;
}
tbody tr:hover {
background-color: #ffffec;
}
th,
td {
text-align: left;
padding: 10px 0;
}
th {
padding-top: 15px;
padding-bottom: 15px;
font-size: 16px;
white-space: nowrap;
}
th a {
color: black;
}
th svg {
vertical-align: middle;
}
td {
white-space: nowrap;
font-size: 14px;
}
td:nth-child(2) {
width: 80%;
}
td:nth-child(3) {
padding: 0 20px 0 20px;
}
th:nth-child(4),
td:nth-child(4) {
text-align: right;
}
td:nth-child(2) svg {
position: absolute;
}
td .name {
margin-left: 1.75em;
word-break: break-all;
overflow-wrap: break-word;
white-space: pre-wrap;
}
td .goup {
margin-left: 1.75em;
padding: 0;
word-break: break-all;
overflow-wrap: break-word;
white-space: pre-wrap;
}
.icon {
margin-right: 5px;
}
tr.clickable {
cursor: pointer;
}
tr.clickable a {
display: block;
}
@media (max-width: 600px) {
* {
font-size: 1.06rem;
}
.hideable {
display: none;
}
td:nth-child(2) {
width: auto;
}
th:nth-child(3),
td:nth-child(3) {
padding-right: 5%;
text-align: right;
}
h1 {
color: #000;
}
h1 a {
margin: 0;
}
#filter {
max-width: 100px;
}
}
</style>
</head>
<body>
<svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
height="0"
width="0"
style="position: absolute"
>
<defs>
<!-- Go-up -->
<g id="go-up">
<path
d="M10,9V5L3,12L10,19V14.9C15,14.9 18.5,16.5 21,20C20,15 17,10 10,9Z"
fill="#696969"
/>
</g>
<!-- Folder -->
<g id="folder" fill-rule="nonzero" fill="none">
<path
d="M285.22 37.55h-142.6L110.9 0H31.7C14.25 0 0 16.9 0 37.55v75.1h316.92V75.1c0-20.65-14.26-37.55-31.7-37.55z"
fill="#FFA000"
/>
<path
d="M285.22 36H31.7C14.25 36 0 50.28 0 67.74v158.7c0 17.47 14.26 31.75 31.7 31.75H285.2c17.44 0 31.7-14.3 31.7-31.75V67.75c0-17.47-14.26-31.75-31.7-31.75z"
fill="#FFCA28"
/>
</g>
<g
id="folder-shortcut"
stroke="none"
stroke-width="1"
fill="none"
fill-rule="evenodd"
>
<g id="folder-shortcut-group" fill-rule="nonzero">
<g id="folder-shortcut-shape">
<path
d="M285.224876,37.5486902 L142.612438,37.5486902 L110.920785,0 L31.6916529,0 C14.2612438,0 0,16.8969106 0,37.5486902 L0,112.646071 L316.916529,112.646071 L316.916529,75.0973805 C316.916529,54.4456008 302.655285,37.5486902 285.224876,37.5486902 Z"
id="Shape"
fill="#FFA000"
></path>
<path
d="M285.224876,36 L31.6916529,36 C14.2612438,36 0,50.2838568 0,67.7419039 L0,226.451424 C0,243.909471 14.2612438,258.193328 31.6916529,258.193328 L285.224876,258.193328 C302.655285,258.193328 316.916529,243.909471 316.916529,226.451424 L316.916529,67.7419039 C316.916529,50.2838568 302.655285,36 285.224876,36 Z"
id="Shape"
fill="#FFCA28"
></path>
</g>
<path
d="M126.154134,250.559184 C126.850974,251.883673 127.300549,253.006122 127.772602,254.106122 C128.469442,255.206122 128.919016,256.104082 129.638335,257.002041 C130.559962,258.326531 131.728855,259 133.100057,259 C134.493737,259 135.415364,258.55102 136.112204,257.67551 C136.809044,257.002041 137.258619,255.902041 137.258619,254.577551 C137.258619,253.904082 137.258619,252.804082 137.033832,251.457143 C136.786566,249.908163 136.561779,249.032653 136.561779,248.583673 C136.089726,242.814286 135.864939,237.920408 135.864939,233.273469 C135.864939,225.057143 136.786566,217.514286 138.180246,210.846939 C139.798713,204.202041 141.889234,198.634694 144.429328,193.763265 C147.216689,188.869388 150.678411,184.873469 154.836973,181.326531 C158.995535,177.779592 163.626149,174.883673 168.481552,172.661224 C173.336954,170.438776 179.113983,168.665306 185.587852,167.340816 C192.061722,166.218367 198.760378,165.342857 205.481514,164.669388 C212.18017,164.220408 219.598146,163.995918 228.162535,163.995918 L246.055591,163.995918 L246.055591,195.514286 C246.055591,197.736735 246.752431,199.510204 248.370899,201.059184 C250.214153,202.608163 252.079886,203.506122 254.372715,203.506122 C256.463236,203.506122 258.531277,202.608163 260.172223,201.059184 L326.102289,137.797959 C327.720757,136.24898 328.642384,134.47551 328.642384,132.253061 C328.642384,130.030612 327.720757,128.257143 326.102289,126.708163 L260.172223,63.4469388 C258.553756,61.8979592 256.463236,61 254.395194,61 C252.079886,61 250.236632,61.8979592 248.393377,63.4469388 C246.77491,64.9959184 246.07807,66.7693878 246.07807,68.9918367 L246.07807,100.510204 L228.162535,100.510204 C166.863084,100.510204 129.166282,117.167347 115.274437,150.459184 C110.666301,161.54898 108.350993,175.310204 108.350993,191.742857 C108.350993,205.279592 113.903236,223.912245 124.760454,247.438776 C125.00772,248.112245 125.457294,249.010204 126.154134,250.559184 Z"
id="Shape"
fill="#FFFFFF"
transform="translate(218.496689, 160.000000) scale(-1, 1) translate(-218.496689, -160.000000) "
></path>
</g>
</g>
<!-- File -->
<g
id="file"
stroke="#000"
stroke-width="25"
fill="#FFF"
fill-rule="evenodd"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M13 24.12v274.76c0 6.16 5.87 11.12 13.17 11.12H239c7.3 0 13.17-4.96 13.17-11.12V136.15S132.6 13 128.37 13H26.17C18.87 13 13 17.96 13 24.12z"
/>
<path
d="M129.37 13L129 113.9c0 10.58 7.26 19.1 16.27 19.1H249L129.37 13z"
/>
</g>
<g
id="file-shortcut"
stroke="none"
stroke-width="1"
fill="none"
fill-rule="evenodd"
>
<g
id="file-shortcut-group"
transform="translate(13.000000, 13.000000)"
>
<g
id="file-shortcut-shape"
stroke="#000000"
stroke-width="25"
fill="#FFFFFF"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M0,11.1214886 L0,285.878477 C0,292.039924 5.87498876,296.999983 13.1728373,296.999983 L225.997983,296.999983 C233.295974,296.999983 239.17082,292.039942 239.17082,285.878477 L239.17082,123.145388 C239.17082,123.145388 119.58541,2.84217094e-14 115.369423,2.84217094e-14 L13.1728576,2.84217094e-14 C5.87500907,-1.71479982e-05 0,4.96022995 0,11.1214886 Z"
id="rect1171"
></path>
<path
d="M116.37005,0 L116,100.904964 C116,111.483663 123.258008,120 132.273377,120 L236,120 L116.37005,0 L116.37005,0 Z"
id="rect1794"
></path>
</g>
<path
d="M47.803141,294.093878 C48.4999811,295.177551 48.9495553,296.095918 49.4216083,296.995918 C50.1184484,297.895918 50.5680227,298.630612 51.2873415,299.365306 C52.2089688,300.44898 53.3778619,301 54.7490634,301 C56.1427436,301 57.0643709,300.632653 57.761211,299.916327 C58.4580511,299.365306 58.9076254,298.465306 58.9076254,297.381633 C58.9076254,296.830612 58.9076254,295.930612 58.6828382,294.828571 C58.4355724,293.561224 58.2107852,292.844898 58.2107852,292.477551 C57.7387323,287.757143 57.5139451,283.753061 57.5139451,279.95102 C57.5139451,273.228571 58.4355724,267.057143 59.8292526,261.602041 C61.44772,256.165306 63.5382403,251.610204 66.0783349,247.62449 C68.8656954,243.620408 72.3274172,240.35102 76.4859792,237.44898 C80.6445412,234.546939 85.2751561,232.177551 90.1305582,230.359184 C94.9859603,228.540816 100.76299,227.089796 107.236859,226.006122 C113.710728,225.087755 120.409385,224.371429 127.13052,223.820408 C133.829177,223.453061 141.247152,223.269388 149.811542,223.269388 L167.704598,223.269388 L167.704598,249.057143 C167.704598,250.87551 168.401438,252.326531 170.019905,253.593878 C171.86316,254.861224 173.728893,255.595918 176.021722,255.595918 C178.112242,255.595918 180.180284,254.861224 181.82123,253.593878 L247.751296,201.834694 C249.369763,200.567347 250.291391,199.116327 250.291391,197.297959 C250.291391,195.479592 249.369763,194.028571 247.751296,192.761224 L181.82123,141.002041 C180.202763,139.734694 178.112242,139 176.044201,139 C173.728893,139 171.885639,139.734694 170.042384,141.002041 C168.423917,142.269388 167.727077,143.720408 167.727077,145.538776 L167.727077,171.326531 L149.811542,171.326531 C88.5120908,171.326531 50.8152886,184.955102 36.9234437,212.193878 C32.3153075,221.267347 30,232.526531 30,245.971429 C30,257.046939 35.5522422,272.291837 46.4094607,291.540816 C46.6567266,292.091837 47.1063009,292.826531 47.803141,294.093878 Z"
id="Shape-Copy"
fill="#000000"
fill-rule="nonzero"
transform="translate(140.145695, 220.000000) scale(-1, 1) translate(-140.145695, -220.000000) "
></path>
</g>
</g>
</defs>
</svg>
<header>
<h1></h1>
</header>
<main>
<div class="listing">
<table aria-describedby="summary">
<thead>
<tr>
<th></th>
<th>Name</th>
<th>Size</th>
<th class="hideable">Modified</th>
<th class="hideable"></th>
</tr>
</thead>
<tbody>
<tr class="clickable">
<td></td>
<td>
<a href=".."
><svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 24 24"
>
<use xlink:href="#go-up"></use>
</svg>
<span class="goup">..</span></a
>
</td>
<td>—</td>
<td class="hideable">—</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href=".git/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">.git</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href=".vscode/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">.vscode</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="Documentation/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">Documentation</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="Final%20Report%20SP2_files/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">Final Report SP2_files</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="NEW-Implementations/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">NEW-Implementations</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="Triggered-Guitar-Effects-Platform/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">Triggered-Guitar-Effects-Platform</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="css/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">css</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="guitar-delay/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">guitar-delay</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="image/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">image</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="images/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">images</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="js/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">js</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="node_modules/">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#folder"></use>
</svg>
<span class="name">node_modules</span>
</a>
</td>
<td data-order="-1">—</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:19"
>Fri Jul 30 01:10:19 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="DTW.Java">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">DTW.Java</span>
</a>
</td>
<td data-order="58708">57 KB</td>
<td class="hideable">
<time datetime="2021-07-30T00:35:15"
>Fri Jul 30 00:35:15 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="README.html">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">README.html</span>
</a>
</td>
<td data-order="203656">198 KB</td>
<td class="hideable">
<time datetime="2021-07-30T01:10:55"
>Fri Jul 30 01:10:55 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="README.md">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">README.md</span>
</a>
</td>
<td data-order="142396">139 KB</td>
<td class="hideable">
<time datetime="2021-07-30T00:35:15"
>Fri Jul 30 00:35:15 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="SR%20Project%20II%20Presentation.gif">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">SR Project II Presentation.gif</span>
</a>
</td>
<td data-order="27963017">26 MB</td>
<td class="hideable">
<time datetime="2021-07-30T00:35:18"
>Fri Jul 30 00:35:18 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="SR%20Project%20II%20Presentation.pdf">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">SR Project II Presentation.pdf</span>
</a>
</td>
<td data-order="1062023">1 MB</td>
<td class="hideable">
<time datetime="2021-07-30T00:35:18"
>Fri Jul 30 00:35:18 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="blueprint.md">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">blueprint.md</span>
</a>
</td>
<td data-order="128756">125 KB</td>
<td class="hideable">
<time datetime="2021-07-30T00:35:15"
>Fri Jul 30 00:35:15 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="directory.html">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">directory.html</span>
</a>
</td>
<td data-order="599">599 bytes</td>
<td class="hideable">
<time datetime="2021-07-29T23:52:26"
>Thu Jul 29 23:52:26 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="dirhtml.py">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">dirhtml.py</span>
</a>
</td>
<td data-order="17586">17 KB</td>
<td class="hideable">
<time datetime="2021-07-30T01:09:53"
>Fri Jul 30 01:09:53 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="left.html">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">left.html</span>
</a>
</td>
<td data-order="17667">17 KB</td>
<td class="hideable">
<time datetime="2021-07-30T00:30:23"
>Fri Jul 30 00:30:23 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="package-lock.json">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">package-lock.json</span>
</a>
</td>
<td data-order="437">437 bytes</td>
<td class="hideable">
<time datetime="2021-07-30T00:35:15"
>Fri Jul 30 00:35:15 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="propritary-algorithm-Bryan-Guner-PSEUDOCODE.md">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name"
>propritary-algorithm-Bryan-Guner-PSEUDOCODE.md</span
>
</a>
</td>
<td data-order="6141">5 KB</td>
<td class="hideable">
<time datetime="2021-07-30T00:35:15"
>Fri Jul 30 00:35:15 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="renovate.json">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">renovate.json</span>
</a>
</td>
<td data-order="32">32 bytes</td>
<td class="hideable">
<time datetime="2021-07-30T00:35:15"
>Fri Jul 30 00:35:15 2021</time
>
</td>
<td class="hideable"></td>
</tr>
<tr class="file">
<td></td>
<td>
<a href="right.html">
<svg
width="1.5em"
height="1em"
version="1.1"
viewBox="0 0 265 323"
>
<use xlink:href="#file"></use>
</svg>
<span class="name">right.html</span>
</a>
</td>
<td data-order="17643">17 KB</td>
<td class="hideable">
<time datetime="2021-07-30T00:30:25"
>Fri Jul 30 00:30:25 2021</time
>
</td>
<td class="hideable"></td>
</tr>
</tbody>
</table>
</div>
</main>
</body>
</html>