-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvertcsv.htm
1077 lines (1077 loc) · 62.9 KB
/
convertcsv.htm
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
<table class="table table-bordered table-hover table-condensed">
<thead><tr><th title="Field #1">packages/name</th>
<th title="Field #2">packages/maintainer</th>
<th title="Field #3">packages/websiteURL</th>
<th title="Field #4">packages/email</th>
<th title="Field #5">packages/help/online</th>
<th title="Field #6">packages/platforms/0/category</th>
<th title="Field #7">packages/platforms/0/name</th>
<th title="Field #8">packages/platforms/0/url</th>
<th title="Field #9">packages/platforms/0/checksum</th>
<th title="Field #10">packages/platforms/0/help/online</th>
<th title="Field #11">packages/platforms/0/version</th>
<th title="Field #12">packages/platforms/0/architecture</th>
<th title="Field #13">packages/platforms/0/archiveFileName</th>
<th title="Field #14">packages/platforms/0/boards/0/name</th>
<th title="Field #15">packages/platforms/0/toolsDependencies/0/packager</th>
<th title="Field #16">packages/platforms/0/toolsDependencies/0/version</th>
<th title="Field #17">packages/platforms/0/toolsDependencies/0/name</th>
<th title="Field #18">packages/platforms/0/toolsDependencies/1/packager</th>
<th title="Field #19">packages/platforms/0/toolsDependencies/1/version</th>
<th title="Field #20">packages/platforms/0/toolsDependencies/1/name</th>
<th title="Field #21">packages/platforms/0/toolsDependencies/2/packager</th>
<th title="Field #22">packages/platforms/0/toolsDependencies/2/version</th>
<th title="Field #23">packages/platforms/0/toolsDependencies/2/name</th>
<th title="Field #24">packages/platforms/0/size</th>
<th title="Field #25">packages/tools/0/version</th>
<th title="Field #26">packages/tools/0/name</th>
<th title="Field #27">packages/tools/0/systems/0/url</th>
<th title="Field #28">packages/tools/0/systems/0/checksum</th>
<th title="Field #29">packages/tools/0/systems/0/host</th>
<th title="Field #30">packages/tools/0/systems/0/archiveFileName</th>
<th title="Field #31">packages/tools/0/systems/0/size</th>
<th title="Field #32">packages/tools/0/systems/1/url</th>
<th title="Field #33">packages/tools/0/systems/1/checksum</th>
<th title="Field #34">packages/tools/0/systems/1/host</th>
<th title="Field #35">packages/tools/0/systems/1/archiveFileName</th>
<th title="Field #36">packages/tools/0/systems/1/size</th>
<th title="Field #37">packages/tools/0/systems/2/url</th>
<th title="Field #38">packages/tools/0/systems/2/checksum</th>
<th title="Field #39">packages/tools/0/systems/2/host</th>
<th title="Field #40">packages/tools/0/systems/2/archiveFileName</th>
<th title="Field #41">packages/tools/0/systems/2/size</th>
<th title="Field #42">packages/tools/0/systems/3/url</th>
<th title="Field #43">packages/tools/0/systems/3/checksum</th>
<th title="Field #44">packages/tools/0/systems/3/host</th>
<th title="Field #45">packages/tools/0/systems/3/archiveFileName</th>
<th title="Field #46">packages/tools/0/systems/3/size</th>
<th title="Field #47">packages/tools/0/systems/4/url</th>
<th title="Field #48">packages/tools/0/systems/4/checksum</th>
<th title="Field #49">packages/tools/0/systems/4/host</th>
<th title="Field #50">packages/tools/0/systems/4/archiveFileName</th>
<th title="Field #51">packages/tools/0/systems/4/size</th>
<th title="Field #52">packages/tools/0/systems/5/url</th>
<th title="Field #53">packages/tools/0/systems/5/checksum</th>
<th title="Field #54">packages/tools/0/systems/5/host</th>
<th title="Field #55">packages/tools/0/systems/5/archiveFileName</th>
<th title="Field #56">packages/tools/0/systems/5/size</th>
<th title="Field #57">packages/tools/1/version</th>
<th title="Field #58">packages/tools/1/name</th>
<th title="Field #59">packages/tools/1/systems/0/url</th>
<th title="Field #60">packages/tools/1/systems/0/checksum</th>
<th title="Field #61">packages/tools/1/systems/0/host</th>
<th title="Field #62">packages/tools/1/systems/0/archiveFileName</th>
<th title="Field #63">packages/tools/1/systems/0/size</th>
<th title="Field #64">packages/tools/1/systems/1/url</th>
<th title="Field #65">packages/tools/1/systems/1/checksum</th>
<th title="Field #66">packages/tools/1/systems/1/host</th>
<th title="Field #67">packages/tools/1/systems/1/archiveFileName</th>
<th title="Field #68">packages/tools/1/systems/1/size</th>
<th title="Field #69">packages/tools/1/systems/2/url</th>
<th title="Field #70">packages/tools/1/systems/2/checksum</th>
<th title="Field #71">packages/tools/1/systems/2/host</th>
<th title="Field #72">packages/tools/1/systems/2/archiveFileName</th>
<th title="Field #73">packages/tools/1/systems/2/size</th>
<th title="Field #74">packages/tools/1/systems/3/url</th>
<th title="Field #75">packages/tools/1/systems/3/checksum</th>
<th title="Field #76">packages/tools/1/systems/3/host</th>
<th title="Field #77">packages/tools/1/systems/3/archiveFileName</th>
<th title="Field #78">packages/tools/1/systems/3/size</th>
<th title="Field #79">packages/tools/1/systems/4/url</th>
<th title="Field #80">packages/tools/1/systems/4/checksum</th>
<th title="Field #81">packages/tools/1/systems/4/host</th>
<th title="Field #82">packages/tools/1/systems/4/archiveFileName</th>
<th title="Field #83">packages/tools/1/systems/4/size</th>
<th title="Field #84">packages/tools/1/systems/5/url</th>
<th title="Field #85">packages/tools/1/systems/5/checksum</th>
<th title="Field #86">packages/tools/1/systems/5/host</th>
<th title="Field #87">packages/tools/1/systems/5/archiveFileName</th>
<th title="Field #88">packages/tools/1/systems/5/size</th>
<th title="Field #89">packages/tools/2/version</th>
<th title="Field #90">packages/tools/2/name</th>
<th title="Field #91">packages/tools/2/systems/0/url</th>
<th title="Field #92">packages/tools/2/systems/0/checksum</th>
<th title="Field #93">packages/tools/2/systems/0/host</th>
<th title="Field #94">packages/tools/2/systems/0/archiveFileName</th>
<th title="Field #95">packages/tools/2/systems/0/size</th>
<th title="Field #96">packages/tools/2/systems/1/url</th>
<th title="Field #97">packages/tools/2/systems/1/checksum</th>
<th title="Field #98">packages/tools/2/systems/1/host</th>
<th title="Field #99">packages/tools/2/systems/1/archiveFileName</th>
<th title="Field #100">packages/tools/2/systems/1/size</th>
<th title="Field #101">packages/tools/2/systems/2/url</th>
<th title="Field #102">packages/tools/2/systems/2/checksum</th>
<th title="Field #103">packages/tools/2/systems/2/host</th>
<th title="Field #104">packages/tools/2/systems/2/archiveFileName</th>
<th title="Field #105">packages/tools/2/systems/2/size</th>
<th title="Field #106">packages/tools/2/systems/3/url</th>
<th title="Field #107">packages/tools/2/systems/3/checksum</th>
<th title="Field #108">packages/tools/2/systems/3/host</th>
<th title="Field #109">packages/tools/2/systems/3/archiveFileName</th>
<th title="Field #110">packages/tools/2/systems/3/size</th>
<th title="Field #111">packages/tools/2/systems/4/url</th>
<th title="Field #112">packages/tools/2/systems/4/checksum</th>
<th title="Field #113">packages/tools/2/systems/4/host</th>
<th title="Field #114">packages/tools/2/systems/4/archiveFileName</th>
<th title="Field #115">packages/tools/2/systems/4/size</th>
<th title="Field #116">packages/tools/2/systems/5/url</th>
<th title="Field #117">packages/tools/2/systems/5/checksum</th>
<th title="Field #118">packages/tools/2/systems/5/host</th>
<th title="Field #119">packages/tools/2/systems/5/archiveFileName</th>
<th title="Field #120">packages/tools/2/systems/5/size</th>
<th title="Field #121">packages/tools/2/systems/6/url</th>
<th title="Field #122">packages/tools/2/systems/6/checksum</th>
<th title="Field #123">packages/tools/2/systems/6/host</th>
<th title="Field #124">packages/tools/2/systems/6/archiveFileName</th>
<th title="Field #125">packages/tools/2/systems/6/size</th>
<th title="Field #126">packages/tools/3/version</th>
<th title="Field #127">packages/tools/3/name</th>
<th title="Field #128">packages/tools/3/systems/0/url</th>
<th title="Field #129">packages/tools/3/systems/0/checksum</th>
<th title="Field #130">packages/tools/3/systems/0/host</th>
<th title="Field #131">packages/tools/3/systems/0/archiveFileName</th>
<th title="Field #132">packages/tools/3/systems/0/size</th>
<th title="Field #133">packages/tools/3/systems/1/url</th>
<th title="Field #134">packages/tools/3/systems/1/checksum</th>
<th title="Field #135">packages/tools/3/systems/1/host</th>
<th title="Field #136">packages/tools/3/systems/1/archiveFileName</th>
<th title="Field #137">packages/tools/3/systems/1/size</th>
<th title="Field #138">packages/tools/3/systems/2/url</th>
<th title="Field #139">packages/tools/3/systems/2/checksum</th>
<th title="Field #140">packages/tools/3/systems/2/host</th>
<th title="Field #141">packages/tools/3/systems/2/archiveFileName</th>
<th title="Field #142">packages/tools/3/systems/2/size</th>
<th title="Field #143">packages/tools/3/systems/3/url</th>
<th title="Field #144">packages/tools/3/systems/3/checksum</th>
<th title="Field #145">packages/tools/3/systems/3/host</th>
<th title="Field #146">packages/tools/3/systems/3/archiveFileName</th>
<th title="Field #147">packages/tools/3/systems/3/size</th>
<th title="Field #148">packages/tools/3/systems/4/url</th>
<th title="Field #149">packages/tools/3/systems/4/checksum</th>
<th title="Field #150">packages/tools/3/systems/4/host</th>
<th title="Field #151">packages/tools/3/systems/4/archiveFileName</th>
<th title="Field #152">packages/tools/3/systems/4/size</th>
<th title="Field #153">packages/tools/4/version</th>
<th title="Field #154">packages/tools/4/name</th>
<th title="Field #155">packages/tools/4/systems/0/url</th>
<th title="Field #156">packages/tools/4/systems/0/checksum</th>
<th title="Field #157">packages/tools/4/systems/0/host</th>
<th title="Field #158">packages/tools/4/systems/0/archiveFileName</th>
<th title="Field #159">packages/tools/4/systems/0/size</th>
<th title="Field #160">packages/tools/4/systems/1/url</th>
<th title="Field #161">packages/tools/4/systems/1/checksum</th>
<th title="Field #162">packages/tools/4/systems/1/host</th>
<th title="Field #163">packages/tools/4/systems/1/archiveFileName</th>
<th title="Field #164">packages/tools/4/systems/1/size</th>
<th title="Field #165">packages/tools/4/systems/2/url</th>
<th title="Field #166">packages/tools/4/systems/2/checksum</th>
<th title="Field #167">packages/tools/4/systems/2/host</th>
<th title="Field #168">packages/tools/4/systems/2/archiveFileName</th>
<th title="Field #169">packages/tools/4/systems/2/size</th>
<th title="Field #170">packages/tools/4/systems/3/url</th>
<th title="Field #171">packages/tools/4/systems/3/checksum</th>
<th title="Field #172">packages/tools/4/systems/3/host</th>
<th title="Field #173">packages/tools/4/systems/3/archiveFileName</th>
<th title="Field #174">packages/tools/4/systems/3/size</th>
<th title="Field #175">packages/tools/4/systems/4/url</th>
<th title="Field #176">packages/tools/4/systems/4/checksum</th>
<th title="Field #177">packages/tools/4/systems/4/host</th>
<th title="Field #178">packages/tools/4/systems/4/archiveFileName</th>
<th title="Field #179">packages/tools/4/systems/4/size</th>
<th title="Field #180">packages/tools/4/systems/5/url</th>
<th title="Field #181">packages/tools/4/systems/5/checksum</th>
<th title="Field #182">packages/tools/4/systems/5/host</th>
<th title="Field #183">packages/tools/4/systems/5/archiveFileName</th>
<th title="Field #184">packages/tools/4/systems/5/size</th>
<th title="Field #185">packages/tools/5/version</th>
<th title="Field #186">packages/tools/5/name</th>
<th title="Field #187">packages/tools/5/systems/0/url</th>
<th title="Field #188">packages/tools/5/systems/0/checksum</th>
<th title="Field #189">packages/tools/5/systems/0/host</th>
<th title="Field #190">packages/tools/5/systems/0/archiveFileName</th>
<th title="Field #191">packages/tools/5/systems/0/size</th>
<th title="Field #192">packages/tools/5/systems/1/url</th>
<th title="Field #193">packages/tools/5/systems/1/checksum</th>
<th title="Field #194">packages/tools/5/systems/1/host</th>
<th title="Field #195">packages/tools/5/systems/1/archiveFileName</th>
<th title="Field #196">packages/tools/5/systems/1/size</th>
<th title="Field #197">packages/tools/5/systems/2/url</th>
<th title="Field #198">packages/tools/5/systems/2/checksum</th>
<th title="Field #199">packages/tools/5/systems/2/host</th>
<th title="Field #200">packages/tools/5/systems/2/archiveFileName</th>
<th title="Field #201">packages/tools/5/systems/2/size</th>
<th title="Field #202">packages/tools/5/systems/3/url</th>
<th title="Field #203">packages/tools/5/systems/3/checksum</th>
<th title="Field #204">packages/tools/5/systems/3/host</th>
<th title="Field #205">packages/tools/5/systems/3/archiveFileName</th>
<th title="Field #206">packages/tools/5/systems/3/size</th>
<th title="Field #207">packages/tools/5/systems/4/url</th>
<th title="Field #208">packages/tools/5/systems/4/checksum</th>
<th title="Field #209">packages/tools/5/systems/4/host</th>
<th title="Field #210">packages/tools/5/systems/4/archiveFileName</th>
<th title="Field #211">packages/tools/5/systems/4/size</th>
<th title="Field #212">packages/tools/5/systems/5/url</th>
<th title="Field #213">packages/tools/5/systems/5/checksum</th>
<th title="Field #214">packages/tools/5/systems/5/host</th>
<th title="Field #215">packages/tools/5/systems/5/archiveFileName</th>
<th title="Field #216">packages/tools/5/systems/5/size</th>
<th title="Field #217">packages/tools/6/version</th>
<th title="Field #218">packages/tools/6/name</th>
<th title="Field #219">packages/tools/6/systems/0/url</th>
<th title="Field #220">packages/tools/6/systems/0/checksum</th>
<th title="Field #221">packages/tools/6/systems/0/host</th>
<th title="Field #222">packages/tools/6/systems/0/archiveFileName</th>
<th title="Field #223">packages/tools/6/systems/0/size</th>
<th title="Field #224">packages/tools/6/systems/1/url</th>
<th title="Field #225">packages/tools/6/systems/1/checksum</th>
<th title="Field #226">packages/tools/6/systems/1/host</th>
<th title="Field #227">packages/tools/6/systems/1/archiveFileName</th>
<th title="Field #228">packages/tools/6/systems/1/size</th>
<th title="Field #229">packages/tools/6/systems/2/url</th>
<th title="Field #230">packages/tools/6/systems/2/checksum</th>
<th title="Field #231">packages/tools/6/systems/2/host</th>
<th title="Field #232">packages/tools/6/systems/2/archiveFileName</th>
<th title="Field #233">packages/tools/6/systems/2/size</th>
<th title="Field #234">packages/tools/6/systems/3/url</th>
<th title="Field #235">packages/tools/6/systems/3/checksum</th>
<th title="Field #236">packages/tools/6/systems/3/host</th>
<th title="Field #237">packages/tools/6/systems/3/archiveFileName</th>
<th title="Field #238">packages/tools/6/systems/3/size</th>
<th title="Field #239">packages/tools/6/systems/4/url</th>
<th title="Field #240">packages/tools/6/systems/4/checksum</th>
<th title="Field #241">packages/tools/6/systems/4/host</th>
<th title="Field #242">packages/tools/6/systems/4/archiveFileName</th>
<th title="Field #243">packages/tools/6/systems/4/size</th>
<th title="Field #244">packages/tools/6/systems/5/url</th>
<th title="Field #245">packages/tools/6/systems/5/checksum</th>
<th title="Field #246">packages/tools/6/systems/5/host</th>
<th title="Field #247">packages/tools/6/systems/5/archiveFileName</th>
<th title="Field #248">packages/tools/6/systems/5/size</th>
<th title="Field #249">packages/tools/6/systems/6/url</th>
<th title="Field #250">packages/tools/6/systems/6/checksum</th>
<th title="Field #251">packages/tools/6/systems/6/host</th>
<th title="Field #252">packages/tools/6/systems/6/archiveFileName</th>
<th title="Field #253">packages/tools/6/systems/6/size</th>
<th title="Field #254">packages/tools/7/version</th>
<th title="Field #255">packages/tools/7/name</th>
<th title="Field #256">packages/tools/7/systems/0/url</th>
<th title="Field #257">packages/tools/7/systems/0/checksum</th>
<th title="Field #258">packages/tools/7/systems/0/host</th>
<th title="Field #259">packages/tools/7/systems/0/archiveFileName</th>
<th title="Field #260">packages/tools/7/systems/0/size</th>
<th title="Field #261">packages/tools/7/systems/1/url</th>
<th title="Field #262">packages/tools/7/systems/1/checksum</th>
<th title="Field #263">packages/tools/7/systems/1/host</th>
<th title="Field #264">packages/tools/7/systems/1/archiveFileName</th>
<th title="Field #265">packages/tools/7/systems/1/size</th>
<th title="Field #266">packages/tools/7/systems/2/url</th>
<th title="Field #267">packages/tools/7/systems/2/checksum</th>
<th title="Field #268">packages/tools/7/systems/2/host</th>
<th title="Field #269">packages/tools/7/systems/2/archiveFileName</th>
<th title="Field #270">packages/tools/7/systems/2/size</th>
<th title="Field #271">packages/tools/7/systems/3/url</th>
<th title="Field #272">packages/tools/7/systems/3/checksum</th>
<th title="Field #273">packages/tools/7/systems/3/host</th>
<th title="Field #274">packages/tools/7/systems/3/archiveFileName</th>
<th title="Field #275">packages/tools/7/systems/3/size</th>
<th title="Field #276">packages/tools/7/systems/4/url</th>
<th title="Field #277">packages/tools/7/systems/4/checksum</th>
<th title="Field #278">packages/tools/7/systems/4/host</th>
<th title="Field #279">packages/tools/7/systems/4/archiveFileName</th>
<th title="Field #280">packages/tools/7/systems/4/size</th>
<th title="Field #281">packages/tools/7/systems/5/url</th>
<th title="Field #282">packages/tools/7/systems/5/checksum</th>
<th title="Field #283">packages/tools/7/systems/5/host</th>
<th title="Field #284">packages/tools/7/systems/5/archiveFileName</th>
<th title="Field #285">packages/tools/7/systems/5/size</th>
<th title="Field #286">packages/tools/8/version</th>
<th title="Field #287">packages/tools/8/name</th>
<th title="Field #288">packages/tools/8/systems/0/url</th>
<th title="Field #289">packages/tools/8/systems/0/checksum</th>
<th title="Field #290">packages/tools/8/systems/0/host</th>
<th title="Field #291">packages/tools/8/systems/0/archiveFileName</th>
<th title="Field #292">packages/tools/8/systems/0/size</th>
<th title="Field #293">packages/tools/8/systems/1/url</th>
<th title="Field #294">packages/tools/8/systems/1/checksum</th>
<th title="Field #295">packages/tools/8/systems/1/host</th>
<th title="Field #296">packages/tools/8/systems/1/archiveFileName</th>
<th title="Field #297">packages/tools/8/systems/1/size</th>
<th title="Field #298">packages/tools/8/systems/2/url</th>
<th title="Field #299">packages/tools/8/systems/2/checksum</th>
<th title="Field #300">packages/tools/8/systems/2/host</th>
<th title="Field #301">packages/tools/8/systems/2/archiveFileName</th>
<th title="Field #302">packages/tools/8/systems/2/size</th>
<th title="Field #303">packages/tools/8/systems/3/url</th>
<th title="Field #304">packages/tools/8/systems/3/checksum</th>
<th title="Field #305">packages/tools/8/systems/3/host</th>
<th title="Field #306">packages/tools/8/systems/3/archiveFileName</th>
<th title="Field #307">packages/tools/8/systems/3/size</th>
<th title="Field #308">packages/tools/8/systems/4/url</th>
<th title="Field #309">packages/tools/8/systems/4/checksum</th>
<th title="Field #310">packages/tools/8/systems/4/host</th>
<th title="Field #311">packages/tools/8/systems/4/archiveFileName</th>
<th title="Field #312">packages/tools/8/systems/4/size</th>
<th title="Field #313">packages/tools/8/systems/5/url</th>
<th title="Field #314">packages/tools/8/systems/5/checksum</th>
<th title="Field #315">packages/tools/8/systems/5/host</th>
<th title="Field #316">packages/tools/8/systems/5/archiveFileName</th>
<th title="Field #317">packages/tools/8/systems/5/size</th>
<th title="Field #318">packages/tools/9/version</th>
<th title="Field #319">packages/tools/9/name</th>
<th title="Field #320">packages/tools/9/systems/0/url</th>
<th title="Field #321">packages/tools/9/systems/0/checksum</th>
<th title="Field #322">packages/tools/9/systems/0/host</th>
<th title="Field #323">packages/tools/9/systems/0/archiveFileName</th>
<th title="Field #324">packages/tools/9/systems/0/size</th>
<th title="Field #325">packages/tools/9/systems/1/url</th>
<th title="Field #326">packages/tools/9/systems/1/checksum</th>
<th title="Field #327">packages/tools/9/systems/1/host</th>
<th title="Field #328">packages/tools/9/systems/1/archiveFileName</th>
<th title="Field #329">packages/tools/9/systems/1/size</th>
<th title="Field #330">packages/tools/9/systems/2/url</th>
<th title="Field #331">packages/tools/9/systems/2/checksum</th>
<th title="Field #332">packages/tools/9/systems/2/host</th>
<th title="Field #333">packages/tools/9/systems/2/archiveFileName</th>
<th title="Field #334">packages/tools/9/systems/2/size</th>
<th title="Field #335">packages/tools/9/systems/3/url</th>
<th title="Field #336">packages/tools/9/systems/3/checksum</th>
<th title="Field #337">packages/tools/9/systems/3/host</th>
<th title="Field #338">packages/tools/9/systems/3/archiveFileName</th>
<th title="Field #339">packages/tools/9/systems/3/size</th>
<th title="Field #340">packages/tools/9/systems/4/url</th>
<th title="Field #341">packages/tools/9/systems/4/checksum</th>
<th title="Field #342">packages/tools/9/systems/4/host</th>
<th title="Field #343">packages/tools/9/systems/4/archiveFileName</th>
<th title="Field #344">packages/tools/9/systems/4/size</th>
<th title="Field #345">packages/tools/9/systems/5/url</th>
<th title="Field #346">packages/tools/9/systems/5/checksum</th>
<th title="Field #347">packages/tools/9/systems/5/host</th>
<th title="Field #348">packages/tools/9/systems/5/archiveFileName</th>
<th title="Field #349">packages/tools/9/systems/5/size</th>
<th title="Field #350">packages/tools/10/version</th>
<th title="Field #351">packages/tools/10/name</th>
<th title="Field #352">packages/tools/10/systems/0/url</th>
<th title="Field #353">packages/tools/10/systems/0/checksum</th>
<th title="Field #354">packages/tools/10/systems/0/host</th>
<th title="Field #355">packages/tools/10/systems/0/archiveFileName</th>
<th title="Field #356">packages/tools/10/systems/0/size</th>
<th title="Field #357">packages/tools/10/systems/1/url</th>
<th title="Field #358">packages/tools/10/systems/1/checksum</th>
<th title="Field #359">packages/tools/10/systems/1/host</th>
<th title="Field #360">packages/tools/10/systems/1/archiveFileName</th>
<th title="Field #361">packages/tools/10/systems/1/size</th>
<th title="Field #362">packages/tools/10/systems/2/url</th>
<th title="Field #363">packages/tools/10/systems/2/checksum</th>
<th title="Field #364">packages/tools/10/systems/2/host</th>
<th title="Field #365">packages/tools/10/systems/2/archiveFileName</th>
<th title="Field #366">packages/tools/10/systems/2/size</th>
<th title="Field #367">packages/tools/10/systems/3/url</th>
<th title="Field #368">packages/tools/10/systems/3/checksum</th>
<th title="Field #369">packages/tools/10/systems/3/host</th>
<th title="Field #370">packages/tools/10/systems/3/archiveFileName</th>
<th title="Field #371">packages/tools/10/systems/3/size</th>
<th title="Field #372">packages/tools/10/systems/4/url</th>
<th title="Field #373">packages/tools/10/systems/4/checksum</th>
<th title="Field #374">packages/tools/10/systems/4/host</th>
<th title="Field #375">packages/tools/10/systems/4/archiveFileName</th>
<th title="Field #376">packages/tools/10/systems/4/size</th>
<th title="Field #377">packages/tools/11/version</th>
<th title="Field #378">packages/tools/11/name</th>
<th title="Field #379">packages/tools/11/systems/0/url</th>
<th title="Field #380">packages/tools/11/systems/0/checksum</th>
<th title="Field #381">packages/tools/11/systems/0/host</th>
<th title="Field #382">packages/tools/11/systems/0/archiveFileName</th>
<th title="Field #383">packages/tools/11/systems/0/size</th>
<th title="Field #384">packages/tools/11/systems/1/url</th>
<th title="Field #385">packages/tools/11/systems/1/checksum</th>
<th title="Field #386">packages/tools/11/systems/1/host</th>
<th title="Field #387">packages/tools/11/systems/1/archiveFileName</th>
<th title="Field #388">packages/tools/11/systems/1/size</th>
<th title="Field #389">packages/tools/11/systems/2/url</th>
<th title="Field #390">packages/tools/11/systems/2/checksum</th>
<th title="Field #391">packages/tools/11/systems/2/host</th>
<th title="Field #392">packages/tools/11/systems/2/archiveFileName</th>
<th title="Field #393">packages/tools/11/systems/2/size</th>
<th title="Field #394">packages/tools/11/systems/3/url</th>
<th title="Field #395">packages/tools/11/systems/3/checksum</th>
<th title="Field #396">packages/tools/11/systems/3/host</th>
<th title="Field #397">packages/tools/11/systems/3/archiveFileName</th>
<th title="Field #398">packages/tools/11/systems/3/size</th>
<th title="Field #399">packages/tools/11/systems/4/url</th>
<th title="Field #400">packages/tools/11/systems/4/checksum</th>
<th title="Field #401">packages/tools/11/systems/4/host</th>
<th title="Field #402">packages/tools/11/systems/4/archiveFileName</th>
<th title="Field #403">packages/tools/11/systems/4/size</th>
<th title="Field #404">packages/tools/12/version</th>
<th title="Field #405">packages/tools/12/name</th>
<th title="Field #406">packages/tools/12/systems/0/url</th>
<th title="Field #407">packages/tools/12/systems/0/checksum</th>
<th title="Field #408">packages/tools/12/systems/0/host</th>
<th title="Field #409">packages/tools/12/systems/0/archiveFileName</th>
<th title="Field #410">packages/tools/12/systems/0/size</th>
<th title="Field #411">packages/tools/12/systems/1/url</th>
<th title="Field #412">packages/tools/12/systems/1/checksum</th>
<th title="Field #413">packages/tools/12/systems/1/host</th>
<th title="Field #414">packages/tools/12/systems/1/archiveFileName</th>
<th title="Field #415">packages/tools/12/systems/1/size</th>
<th title="Field #416">packages/tools/12/systems/2/url</th>
<th title="Field #417">packages/tools/12/systems/2/checksum</th>
<th title="Field #418">packages/tools/12/systems/2/host</th>
<th title="Field #419">packages/tools/12/systems/2/archiveFileName</th>
<th title="Field #420">packages/tools/12/systems/2/size</th>
<th title="Field #421">packages/tools/12/systems/3/url</th>
<th title="Field #422">packages/tools/12/systems/3/checksum</th>
<th title="Field #423">packages/tools/12/systems/3/host</th>
<th title="Field #424">packages/tools/12/systems/3/archiveFileName</th>
<th title="Field #425">packages/tools/12/systems/3/size</th>
<th title="Field #426">packages/tools/12/systems/4/url</th>
<th title="Field #427">packages/tools/12/systems/4/checksum</th>
<th title="Field #428">packages/tools/12/systems/4/host</th>
<th title="Field #429">packages/tools/12/systems/4/archiveFileName</th>
<th title="Field #430">packages/tools/12/systems/4/size</th>
<th title="Field #431">packages/tools/12/systems/5/url</th>
<th title="Field #432">packages/tools/12/systems/5/checksum</th>
<th title="Field #433">packages/tools/12/systems/5/host</th>
<th title="Field #434">packages/tools/12/systems/5/archiveFileName</th>
<th title="Field #435">packages/tools/12/systems/5/size</th>
<th title="Field #436">packages/tools/13/version</th>
<th title="Field #437">packages/tools/13/name</th>
<th title="Field #438">packages/tools/13/systems/0/url</th>
<th title="Field #439">packages/tools/13/systems/0/checksum</th>
<th title="Field #440">packages/tools/13/systems/0/host</th>
<th title="Field #441">packages/tools/13/systems/0/archiveFileName</th>
<th title="Field #442">packages/tools/13/systems/0/size</th>
<th title="Field #443">packages/tools/13/systems/1/url</th>
<th title="Field #444">packages/tools/13/systems/1/checksum</th>
<th title="Field #445">packages/tools/13/systems/1/host</th>
<th title="Field #446">packages/tools/13/systems/1/archiveFileName</th>
<th title="Field #447">packages/tools/13/systems/1/size</th>
<th title="Field #448">packages/tools/13/systems/2/url</th>
<th title="Field #449">packages/tools/13/systems/2/checksum</th>
<th title="Field #450">packages/tools/13/systems/2/host</th>
<th title="Field #451">packages/tools/13/systems/2/archiveFileName</th>
<th title="Field #452">packages/tools/13/systems/2/size</th>
<th title="Field #453">packages/tools/13/systems/3/url</th>
<th title="Field #454">packages/tools/13/systems/3/checksum</th>
<th title="Field #455">packages/tools/13/systems/3/host</th>
<th title="Field #456">packages/tools/13/systems/3/archiveFileName</th>
<th title="Field #457">packages/tools/13/systems/3/size</th>
<th title="Field #458">packages/tools/13/systems/4/url</th>
<th title="Field #459">packages/tools/13/systems/4/checksum</th>
<th title="Field #460">packages/tools/13/systems/4/host</th>
<th title="Field #461">packages/tools/13/systems/4/archiveFileName</th>
<th title="Field #462">packages/tools/13/systems/4/size</th>
<th title="Field #463">packages/tools/13/systems/5/url</th>
<th title="Field #464">packages/tools/13/systems/5/checksum</th>
<th title="Field #465">packages/tools/13/systems/5/host</th>
<th title="Field #466">packages/tools/13/systems/5/archiveFileName</th>
<th title="Field #467">packages/tools/13/systems/5/size</th>
<th title="Field #468">packages/tools/14/version</th>
<th title="Field #469">packages/tools/14/name</th>
<th title="Field #470">packages/tools/14/systems/0/url</th>
<th title="Field #471">packages/tools/14/systems/0/checksum</th>
<th title="Field #472">packages/tools/14/systems/0/host</th>
<th title="Field #473">packages/tools/14/systems/0/archiveFileName</th>
<th title="Field #474">packages/tools/14/systems/0/size</th>
<th title="Field #475">packages/tools/14/systems/1/url</th>
<th title="Field #476">packages/tools/14/systems/1/checksum</th>
<th title="Field #477">packages/tools/14/systems/1/host</th>
<th title="Field #478">packages/tools/14/systems/1/archiveFileName</th>
<th title="Field #479">packages/tools/14/systems/1/size</th>
<th title="Field #480">packages/tools/14/systems/2/url</th>
<th title="Field #481">packages/tools/14/systems/2/checksum</th>
<th title="Field #482">packages/tools/14/systems/2/host</th>
<th title="Field #483">packages/tools/14/systems/2/archiveFileName</th>
<th title="Field #484">packages/tools/14/systems/2/size</th>
<th title="Field #485">packages/tools/14/systems/3/url</th>
<th title="Field #486">packages/tools/14/systems/3/checksum</th>
<th title="Field #487">packages/tools/14/systems/3/host</th>
<th title="Field #488">packages/tools/14/systems/3/archiveFileName</th>
<th title="Field #489">packages/tools/14/systems/3/size</th>
<th title="Field #490">packages/tools/14/systems/4/url</th>
<th title="Field #491">packages/tools/14/systems/4/checksum</th>
<th title="Field #492">packages/tools/14/systems/4/host</th>
<th title="Field #493">packages/tools/14/systems/4/archiveFileName</th>
<th title="Field #494">packages/tools/14/systems/4/size</th>
<th title="Field #495">packages/tools/14/systems/5/url</th>
<th title="Field #496">packages/tools/14/systems/5/checksum</th>
<th title="Field #497">packages/tools/14/systems/5/host</th>
<th title="Field #498">packages/tools/14/systems/5/archiveFileName</th>
<th title="Field #499">packages/tools/14/systems/5/size</th>
<th title="Field #500">packages/tools/14/systems/6/url</th>
<th title="Field #501">packages/tools/14/systems/6/checksum</th>
<th title="Field #502">packages/tools/14/systems/6/host</th>
<th title="Field #503">packages/tools/14/systems/6/archiveFileName</th>
<th title="Field #504">packages/tools/14/systems/6/size</th>
<th title="Field #505">packages/tools/15/version</th>
<th title="Field #506">packages/tools/15/name</th>
<th title="Field #507">packages/tools/15/systems/0/url</th>
<th title="Field #508">packages/tools/15/systems/0/checksum</th>
<th title="Field #509">packages/tools/15/systems/0/host</th>
<th title="Field #510">packages/tools/15/systems/0/archiveFileName</th>
<th title="Field #511">packages/tools/15/systems/0/size</th>
<th title="Field #512">packages/tools/15/systems/1/url</th>
<th title="Field #513">packages/tools/15/systems/1/checksum</th>
<th title="Field #514">packages/tools/15/systems/1/host</th>
<th title="Field #515">packages/tools/15/systems/1/archiveFileName</th>
<th title="Field #516">packages/tools/15/systems/1/size</th>
<th title="Field #517">packages/tools/15/systems/2/url</th>
<th title="Field #518">packages/tools/15/systems/2/checksum</th>
<th title="Field #519">packages/tools/15/systems/2/host</th>
<th title="Field #520">packages/tools/15/systems/2/archiveFileName</th>
<th title="Field #521">packages/tools/15/systems/2/size</th>
<th title="Field #522">packages/tools/15/systems/3/url</th>
<th title="Field #523">packages/tools/15/systems/3/checksum</th>
<th title="Field #524">packages/tools/15/systems/3/host</th>
<th title="Field #525">packages/tools/15/systems/3/archiveFileName</th>
<th title="Field #526">packages/tools/15/systems/3/size</th>
<th title="Field #527">packages/tools/15/systems/4/url</th>
<th title="Field #528">packages/tools/15/systems/4/checksum</th>
<th title="Field #529">packages/tools/15/systems/4/host</th>
<th title="Field #530">packages/tools/15/systems/4/archiveFileName</th>
<th title="Field #531">packages/tools/15/systems/4/size</th>
<th title="Field #532">packages/tools/15/systems/5/url</th>
<th title="Field #533">packages/tools/15/systems/5/checksum</th>
<th title="Field #534">packages/tools/15/systems/5/host</th>
<th title="Field #535">packages/tools/15/systems/5/archiveFileName</th>
<th title="Field #536">packages/tools/15/systems/5/size</th>
</tr></thead>
<tbody><tr>
<td>ArduCAM_ESP8266_UNO</td>
<td>ArduCAM</td>
<td>http://arducam.com</td>
<td>admin@arducam.com</td>
<td>https://github.com/ArduCAM/ArduCAM_ESP8266_UNO</td>
<td>ESP8266</td>
<td>ArduCAM_ESP8266_UNO</td>
<td>https://github.com/ArduCAM/ArduCAM_ESP8266_UNO/releases/download/V2.0.4/ArduCAM_ESP8266_UNO.zip</td>
<td>SHA-256:2B9514BC37FD277284EDD44BEDA2CC7BC50F5683157A92DB03B65AB89D6E8ED3</td>
<td>https://github.com/ArduCAM/ArduCAM_ESP8266_UNO</td>
<td>2.2.4</td>
<td>ArduCAM_ESP8266_UNO</td>
<td>ArduCAM_ESP8266_UNO.zip</td>
<td>ArduCAM ESP8266 UNO</td>
<td>ArduCAM_ESP8266_UNO</td>
<td>0.4.8</td>
<td>esptool</td>
<td>ArduCAM_ESP8266_UNO</td>
<td>1.20.0-26-gb404fb9-2</td>
<td>xtensa-lx106-elf-gcc</td>
<td>ArduCAM_ESP8266_UNO</td>
<td>0.1.2</td>
<td>mkspiffs</td>
<td align="right">22659072</td>
<td>1.20.0-26-gb404fb9-2</td>
<td>xtensa-lx106-elf-gcc</td>
<td>https://github.com/esp8266/Arduino/releases/download/2.3.0/win32-xtensa-lx106-elf-gb404fb9-2.tar.gz</td>
<td>SHA-256:10476b9c11a7a90f40883413ddfb409f505b20692e316c4e597c4c175b4be09c</td>
<td>i686-mingw32</td>
<td>win32-xtensa-lx106-elf-gb404fb9-2.tar.gz</td>
<td align="right">153527527</td>
<td>https://github.com/esp8266/Arduino/releases/download/2.3.0/osx-xtensa-lx106-elf-gb404fb9-2.tar.gz</td>
<td>SHA-256:0cf150193997bd1355e0f49d3d49711730035257bc1aee1eaaad619e56b9e4e6</td>
<td>x86_64-apple-darwin</td>
<td>osx-xtensa-lx106-elf-gb404fb9-2.tar.gz</td>
<td align="right">35385382</td>
<td>https://github.com/esp8266/Arduino/releases/download/2.3.0/osx-xtensa-lx106-elf-gb404fb9-2.tar.gz</td>
<td>SHA-256:0cf150193997bd1355e0f49d3d49711730035257bc1aee1eaaad619e56b9e4e6</td>
<td>i386-apple-darwin</td>
<td>osx-xtensa-lx106-elf-gb404fb9-2.tar.gz</td>
<td align="right">35385382</td>
<td>https://github.com/esp8266/Arduino/releases/download/2.3.0/linux64-xtensa-lx106-elf-gb404fb9.tgz</td>
<td>SHA-256:46f057fbd8b320889a26167daf325038912096d09940b2a95489db92431473b7</td>
<td>x86_64-pc-linux-gnu</td>
<td>linux64-xtensa-lx106-elf-gb404fb9.tar.gz</td>
<td align="right">30262903</td>
<td>https://github.com/esp8266/Arduino/releases/download/2.3.0/linux32-xtensa-lx106-elf.tar.gz</td>
<td>SHA-256:b24817819f0078fb05895a640e806e0aca9aa96b47b80d2390ac8e2d9ddc955a</td>
<td>i686-pc-linux-gnu</td>
<td>linux32-xtensa-lx106-elf.tar.gz</td>
<td align="right">32734156</td>
<td>https://github.com/esp8266/Arduino/releases/download/2.3.0/linuxarm-xtensa-lx106-elf-g46f160f-2.tar.gz</td>
<td>SHA-256:f693946288f2ffa17288ef75ae16fa08573993f2b0a2a5e6bc35a68dc6087443</td>
<td>arm-linux-gnueabihf</td>
<td>linuxarm-xtensa-lx106-elf-g46f160f-2.tar.gz</td>
<td align="right">34938475</td>
<td>2.5.0-2-59d892c8</td>
<td>xtensa-lx106-elf-gcc</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/aarch64-linux-gnu.xtensa-lx106-elf-59d892c8.tar.gz</td>
<td>SHA-256:9280f0b9eb90599465aebe4c922c42dd3673b3922a25d7c3eb93f7e59b11e5bb</td>
<td>aarch64-linux-gnu</td>
<td>aarch64-linux-gnu.xtensa-lx106-elf-59d892c8.tar.gz</td>
<td align="right">40559372</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/arm-linux-gnueabihf.xtensa-lx106-elf-59d892c8.tar.gz</td>
<td>SHA-256:bb895d65609a7b81d34b6325612be4dc02c306270c2f58004e6a44b121ff6f07</td>
<td>arm-linux-gnueabihf</td>
<td>arm-linux-gnueabihf.xtensa-lx106-elf-59d892c8.tar.gz</td>
<td align="right">36479776</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/i686-w64-mingw32.xtensa-lx106-elf-59d892c8.zip</td>
<td>SHA-256:92f6b77b1c08b3fe5b19cea6d7b5bbc483e495a1deaa57d4e78408cd3b840490</td>
<td>i686-mingw32</td>
<td>i686-w64-mingw32.xtensa-lx106-elf-59d892c8.zip</td>
<td align="right">71639049</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/x86_64-apple-darwin14.xtensa-lx106-elf-59d892c8.tar.gz</td>
<td>SHA-256:984e4f0dfd03cee57c8091e029c4242bc70d8c437f3285e6da6001598d259380</td>
<td>x86_64-apple-darwin</td>
<td>x86_64-apple-darwin14.xtensa-lx106-elf-59d892c8.tar.gz</td>
<td align="right">44251448</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/x86_64-linux-gnu.xtensa-lx106-elf-59d892c8.tar.gz</td>
<td>SHA-256:cd3f1d67cc14ea5e2389126090041d081cd28257b8fb4cd97fb1ab0f8c0ea369</td>
<td>x86_64-pc-linux-gnu</td>
<td>x86_64-linux-gnu.xtensa-lx106-elf-59d892c8.tar.gz</td>
<td align="right">43226595</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/x86_64-w64-mingw32.xtensa-lx106-elf-59d892c8.zip</td>
<td>SHA-256:f0d737781adba1d99bdf4f0d13cb2515eb706d657c06eb985296fbf986fc4f02</td>
<td>x86_64-mingw32</td>
<td>x86_64-w64-mingw32.xtensa-lx106-elf-59d892c8.zip</td>
<td align="right">75922562</td>
<td>2.5.0-3-20ed2b9</td>
<td>xtensa-lx106-elf-gcc</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/aarch64-linux-gnu.xtensa-lx106-elf-20ed2b9c.tar.gz</td>
<td>SHA-256:2192512ff6e33d4126722b2bfea02c1d8293b0a90094f84a9ac494d5fcaa0f45</td>
<td>aarch64-linux-gnu</td>
<td>aarch64-linux-gnu.xtensa-lx106-elf-20ed2b9c.tar.gz</td>
<td align="right">40974297</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/arm-linux-gnueabihf.xtensa-lx106-elf-20ed2b9c.tar.gz</td>
<td>SHA-256:861c4ab7f6f04344f7ee656d90288e6904d7efac83ffe4835b66df3eba35b0a0</td>
<td>arm-linux-gnueabihf</td>
<td>arm-linux-gnueabihf.xtensa-lx106-elf-20ed2b9c.tar.gz</td>
<td align="right">37013753</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/i686-w64-mingw32.xtensa-lx106-elf-20ed2b9c.zip</td>
<td>SHA-256:38b9ccc3b286546b026fb8a29fb2bd8fdab32c4711816a1a3cb0f11250b5c541</td>
<td>i686-mingw32</td>
<td>i686-w64-mingw32.xtensa-lx106-elf-20ed2b9c.zip</td>
<td align="right">44935132</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/i686-linux-gnu.xtensa-lx106-elf-1f24aeae.tar.gz</td>
<td>SHA-256:96b106fbc814155e92d1805d3227d36096b88d3d54cfcd885804a0e9cf5631d7</td>
<td>i686-pc-linux-gnu</td>
<td>i686-linux-gnu.xtensa-lx106-elf-1f24aeae.tar.gz</td>
<td align="right">42500158</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/x86_64-apple-darwin14.xtensa-lx106-elf-20ed2b9c.tar.gz</td>
<td>SHA-256:fd29ae844915fb2dd800d99ad7967be0e890601c18b80555efbc4eca2dd808c2</td>
<td>x86_64-apple-darwin</td>
<td>x86_64-apple-darwin14.xtensa-lx106-elf-20ed2b9c.tar.gz</td>
<td align="right">44378513</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/x86_64-linux-gnu.xtensa-lx106-elf-20ed2b9c.tar.gz</td>
<td>SHA-256:039f87e2d881b6488a0be8c7fda86cacb1d38502a236cc6768a2dbc2a20ca9cd</td>
<td>x86_64-pc-linux-gnu</td>
<td>x86_64-linux-gnu.xtensa-lx106-elf-20ed2b9c.tar.gz</td>
<td align="right">43778575</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/x86_64-w64-mingw32.xtensa-lx106-elf-20ed2b9c.zip</td>
<td>SHA-256:cc8c19a458129e49ec195d9438a53c6ce2c1287a04ea1ea22b81dcc65db511a8</td>
<td>x86_64-mingw32</td>
<td>x86_64-w64-mingw32.xtensa-lx106-elf-20ed2b9c.zip</td>
<td align="right">48635537</td>
<td>1.20.0-26-gb404fb9</td>
<td>xtensa-lx106-elf-gcc</td>
<td>http://arduino.esp8266.com/win32-xtensa-lx106-elf-gb404fb9.tar.gz</td>
<td>SHA-256:1561ec85cc58cab35cc48bfdb0d0087809f89c043112a2c36b54251a13bf781f</td>
<td>i686-mingw32</td>
<td>win32-xtensa-lx106-elf-gb404fb9.tar.gz</td>
<td align="right">153807368</td>
<td>http://arduino.esp8266.com/osx-xtensa-lx106-elf-gb404fb9-2.tar.gz</td>
<td>SHA-256:0cf150193997bd1355e0f49d3d49711730035257bc1aee1eaaad619e56b9e4e6</td>
<td>x86_64-apple-darwin</td>
<td>osx-xtensa-lx106-elf-gb404fb9-2.tar.gz</td>
<td align="right">35385382</td>
<td>http://arduino.esp8266.com/osx-xtensa-lx106-elf-gb404fb9-2.tar.gz</td>
<td>SHA-256:0cf150193997bd1355e0f49d3d49711730035257bc1aee1eaaad619e56b9e4e6</td>
<td>i386-apple-darwin</td>
<td>osx-xtensa-lx106-elf-gb404fb9-2.tar.gz</td>
<td align="right">35385382</td>
<td>http://arduino.esp8266.com/linux64-xtensa-lx106-elf-gb404fb9.tar.gz</td>
<td>SHA-256:46f057fbd8b320889a26167daf325038912096d09940b2a95489db92431473b7</td>
<td>x86_64-pc-linux-gnu</td>
<td>linux64-xtensa-lx106-elf-gb404fb9.tar.gz</td>
<td align="right">30262903</td>
<td>http://arduino.esp8266.com/linux32-xtensa-lx106-elf.tar.gz</td>
<td>SHA-256:b24817819f0078fb05895a640e806e0aca9aa96b47b80d2390ac8e2d9ddc955a</td>
<td>i686-pc-linux-gnu</td>
<td>linux32-xtensa-lx106-elf.tar.gz</td>
<td align="right">32734156</td>
<td>0.4.13</td>
<td>esptool</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.13/esptool-0.4.13-win32.zip</td>
<td>SHA-256:17c1035aacd8f6dbfbc04ed899f5db0ceba60820592705a9c6011476ab8d1687</td>
<td>i686-mingw32</td>
<td>esptool-0.4.13-win32.zip</td>
<td align="right">16660</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.13/esptool-0.4.13-osx.tar.gz</td>
<td>SHA-256:a24a973c3b2671992a8b66f4e7c9ffd24065972f241469f45e94a0a66d118d23</td>
<td>x86_64-apple-darwin</td>
<td>esptool-0.4.13-osx.tar.gz</td>
<td align="right">32362</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.13/esptool-0.4.13-osx.tar.gz</td>
<td>SHA-256:a24a973c3b2671992a8b66f4e7c9ffd24065972f241469f45e94a0a66d118d23</td>
<td>i386-apple-darwin</td>
<td>esptool-0.4.13-osx.tar.gz</td>
<td align="right">32362</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.13/esptool-0.4.13-linux64.tar.gz</td>
<td>SHA-256:3c35f366ffdaa1328b1e96e28c9a97f60c98109095ccc18352fb5615e582a786</td>
<td>x86_64-pc-linux-gnu</td>
<td>esptool-0.4.13-linux64.tar.gz</td>
<td align="right">15743</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.13/esptool-0.4.13-linux32.tar.gz</td>
<td>SHA-256:041f661a41a2efb40c89fc34acf0059bbb5e1eb1c050efaa69af677f79c966fb</td>
<td>i686-pc-linux-gnu</td>
<td>esptool-0.4.13-linux32.tar.gz</td>
<td align="right">14884</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.13/esptool-0.4.13-linux-armhf.tar.gz</td>
<td>SHA-256:3a627e2678e0c317122543883ae8a00e82149769414b9d5733f23526fb28a423</td>
<td>arm-linux-gnueabihf</td>
<td>esptool-0.4.13-linux-armhf.tar.gz</td>
<td align="right">13259</td>
<td>0.4.12</td>
<td>esptool</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.12/esptool-0.4.12-win32.zip</td>
<td>SHA-256:f47b3bcf7c29c7a184859bbea68c9d468cf3346ca41e202ed60a0a49d987f223</td>
<td>i686-mingw32</td>
<td>esptool-0.4.12-win32.zip</td>
<td align="right">16537</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.12/esptool-0.4.12-osx.tar.gz</td>
<td>SHA-256:8232a70611768dca49321f488e3ada29648e28aa83a6d826fcbb871aed4a9c08</td>
<td>x86_64-apple-darwin</td>
<td>esptool-0.4.12-osx.tar.gz</td>
<td align="right">31981</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.12/esptool-0.4.12-osx.tar.gz</td>
<td>SHA-256:8232a70611768dca49321f488e3ada29648e28aa83a6d826fcbb871aed4a9c08</td>
<td>i386-apple-darwin</td>
<td>esptool-0.4.12-osx.tar.gz</td>
<td align="right">31981</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.12/esptool-0.4.12-linux64.tar.gz</td>
<td>SHA-256:f7ca7666557139bda7b2130022623a004a30d20ea47e1612b9b365783f00d8cb</td>
<td>x86_64-pc-linux-gnu</td>
<td>esptool-0.4.12-linux64.tar.gz</td>
<td align="right">15542</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.12/esptool-0.4.12-linux32.tar.gz</td>
<td>SHA-256:2d9970c8574908c35656e35f433082aeb7d79c1967067d7d2cff83f5ed2acbaa</td>
<td>i686-pc-linux-gnu</td>
<td>esptool-0.4.12-linux32.tar.gz</td>
<td align="right">14668</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.12/esptool-0.4.12-linux-armhf.tar.gz</td>
<td>SHA-256:2ab4784c10020cdfc467175fe8885db702e7dd95fa5bdc428ec549257eae1a0e</td>
<td>arm-linux-gnueabihf</td>
<td>esptool-0.4.12-linux-armhf.tar.gz</td>
<td align="right">13097</td>
<td>2.5.0-3-20ed2b9</td>
<td>esptool</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/aarch64-linux-gnu.esptool-f80ae31.tar.gz</td>
<td>SHA-256:888425ff1e33a97ea155b6f128de6b578c34468895ba9b4acd1e4f28608d917a</td>
<td>aarch64-linux-gnu</td>
<td>aarch64-linux-gnu.esptool-f80ae31.tar.gz</td>
<td align="right">14681</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/arm-linux-gnueabihf.esptool-f80ae31.tar.gz</td>
<td>SHA-256:71c878ac6a21ee69dcd615cd28f2dccd29a87079e0b3069eba625089d89e5058</td>
<td>arm-linux-gnueabihf</td>
<td>arm-linux-gnueabihf.esptool-f80ae31.tar.gz</td>
<td align="right">13873</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/i686-w64-mingw32.esptool-f80ae31.zip</td>
<td>SHA-256:e30f25a19a78635000401b083b479e111d591bac20cfd89b1bfdf36a60e9ee20</td>
<td>i686-mingw32</td>
<td>i686-w64-mingw32.esptool-f80ae31.zip</td>
<td align="right">16466</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/i686-linux-gnu.esptool-f80ae31.tar.gz</td>
<td>SHA-256:fe632f4602d02b6a9425c5bf95074095cb6d3c57912168a0f6b796fddd8ce991</td>
<td>i686-pc-linux-gnu</td>
<td>i686-linux-gnu.esptool-f80ae31.tar.gz</td>
<td align="right">16543</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/x86_64-apple-darwin14.esptool-f80ae31.tar.gz</td>
<td>SHA-256:0f51e487706a476b0b87299a769282ad65623774770655168a79d1748d2506e7</td>
<td>x86_64-apple-darwin</td>
<td>x86_64-apple-darwin14.esptool-f80ae31.tar.gz</td>
<td align="right">15003</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/x86_64-linux-gnu.esptool-f80ae31.tar.gz</td>
<td>SHA-256:bded1dca953377838b6086a9bcd40a1dc5286ba5f69f2372c22a1d1819baad24</td>
<td>x86_64-pc-linux-gnu</td>
<td>x86_64-linux-gnu.esptool-f80ae31.tar.gz</td>
<td align="right">16526</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-3/x86_64-w64-mingw32.esptool-f80ae31.zip</td>
<td>SHA-256:d6d5976fde82d07e93d5a01f38bbb4f84a7796187ff0541ee62650041791d0e8</td>
<td>x86_64-mingw32</td>
<td>x86_64-w64-mingw32.esptool-f80ae31.zip</td>
<td align="right">19724</td>
<td>0.4.9</td>
<td>esptool</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.9/esptool-0.4.9-win32.zip</td>
<td>SHA-256:9c4162cedf05fcb09fd829bfb90e34ae12458365980d79525a072ff5ca44751c</td>
<td>i686-mingw32</td>
<td>esptool-0.4.9-win32.zip</td>
<td align="right">32436</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.9/esptool-0.4.9-osx.tar.gz</td>
<td>SHA-256:57938b473765723a7e6602d55973017b7719bda69bdcff4250b24fcbf7a399f5</td>
<td>x86_64-apple-darwin</td>
<td>esptool-0.4.9-osx.tar.gz</td>
<td align="right">29310</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.9/esptool-0.4.9-osx.tar.gz</td>
<td>SHA-256:57938b473765723a7e6602d55973017b7719bda69bdcff4250b24fcbf7a399f5</td>
<td>i386-apple-darwin</td>
<td>esptool-0.4.9-osx.tar.gz</td>
<td align="right">29310</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.9/esptool-0.4.9-linux64.tar.gz</td>
<td>SHA-256:fab9d1be8a648bea6728ad5c9d18ce972508187700cf90baf1897ac9cdf4db15</td>
<td>x86_64-pc-linux-gnu</td>
<td>esptool-0.4.9-linux64.tar.gz</td>
<td align="right">15564</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.9/esptool-0.4.9-linux32.tar.gz</td>
<td>SHA-256:bc4444d73d59be74608be5e1431353a0a9ae9e308e99c76a271d68a6ae145b7b</td>
<td>i686-pc-linux-gnu</td>
<td>esptool-0.4.9-linux32.tar.gz</td>
<td align="right">15984</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.9/esptool-0.4.9-linux-armhf.tar.gz</td>
<td>SHA-256:d0364492599d90b8305125f8212de5be05397e4efde2fc7d0ed3676bb7018164</td>
<td>arm-linux-gnueabihf</td>
<td>esptool-0.4.9-linux-armhf.tar.gz</td>
<td align="right">13763</td>
<td>0.4.8</td>
<td>esptool</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.8/esptool-0.4.8-win32.zip</td>
<td>SHA-256:8d09cb0df6234c2a0562389ceedd11482b44a3f538695f9a4df80f9f10411ece</td>
<td>i686-mingw32</td>
<td>esptool-0.4.8-win32.zip</td>
<td align="right">32192</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.8/esptool-0.4.8-osx.tar.gz</td>
<td>SHA-256:2bcbf19934543fb06c505b2a595b68a76e4cab8e3d8968a4d1802195c87126cf</td>
<td>x86_64-apple-darwin</td>
<td>esptool-0.4.8-osx.tar.gz</td>
<td align="right">28798</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.8/esptool-0.4.8-osx.tar.gz</td>
<td>SHA-256:2bcbf19934543fb06c505b2a595b68a76e4cab8e3d8968a4d1802195c87126cf</td>
<td>i386-apple-darwin</td>
<td>esptool-0.4.8-osx.tar.gz</td>
<td align="right">28798</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.8/esptool-0.4.8-linux64.tar.gz</td>
<td>SHA-256:1cd9a6014bbbc37ba6dc249f4fc027f0ca9bbc6dd0e203ebc7d146dfd78a6e78</td>
<td>x86_64-pc-linux-gnu</td>
<td>esptool-0.4.8-linux64.tar.gz</td>
<td align="right">15479</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.8/esptool-0.4.8-linux32.tar.gz</td>
<td>SHA-256:b0d6e71e6f41d4ed7e167bb4b3f4f0b1b3e49d69af50ab7fbe952cbfed83f164</td>
<td>i686-pc-linux-gnu</td>
<td>esptool-0.4.8-linux32.tar.gz</td>
<td align="right">15444</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.8/esptool-0.4.8-linux-armhf.tar.gz</td>
<td>SHA-256:e9c4dfb81781610556a6af0377c8efc7cde359e0e2cda2fd48e0a32bae10f506</td>
<td>arm-linux-gnueabihf</td>
<td>esptool-0.4.8-linux-armhf.tar.gz</td>
<td align="right">13630</td>
<td>2.5.0-2-59d892c8</td>
<td>esptool</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/aarch64-linux-gnu-esptool-f80ae31.tar.gz</td>
<td>SHA-256:ad283d6048fbcd691966c1a50af8668127b94750c874743973ca5b0ec73bd901</td>
<td>aarch64-linux-gnu</td>
<td>aarch64-linux-gnu-esptool-f80ae31.tar.gz</td>
<td align="right">14897</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/arm-linux-gnueabihf-esptool-f80ae31.tar.gz</td>
<td>SHA-256:d6b1e8f622e9971f9b384a949c656bbdd61357d01fac06e28958ee3dae2a0c44</td>
<td>arm-linux-gnueabihf</td>
<td>arm-linux-gnueabihf-esptool-f80ae31.tar.gz</td>
<td align="right">14154</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/i686-w64-mingw32-esptool-f80ae31.zip</td>
<td>SHA-256:50505b7399ade238af717e106d81a0288237edf5d3757944077db21906697f18</td>
<td>i686-mingw32</td>
<td>i686-w64-mingw32-esptool-f80ae31.zip</td>
<td align="right">16825</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/x86_64-apple-darwin14-esptool-f80ae31.tar.gz</td>
<td>SHA-256:13797f744a239f21349f7ed931f003fe602af07192f1a3bd47e4d2b23f877e31</td>
<td>x86_64-apple-darwin</td>
<td>x86_64-apple-darwin14-esptool-f80ae31.tar.gz</td>
<td align="right">15291</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/x86_64-linux-gnu-esptool-f80ae31.tar.gz</td>
<td>SHA-256:f5b8226275201f628200ea6bc63fcd3bc7d5650ab620d5693c9b22cf2e80e6d5</td>
<td>x86_64-pc-linux-gnu</td>
<td>x86_64-linux-gnu-esptool-f80ae31.tar.gz</td>
<td align="right">16733</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/x86_64-w64-mingw32-esptool-f80ae31.zip</td>
<td>SHA-256:4b9494b18ad70a1751ed70b15a909ae1e4720a6e5306986d020aaf0adfdac246</td>
<td>x86_64-mingw32</td>
<td>x86_64-w64-mingw32-esptool-f80ae31.zip</td>
<td align="right">20083</td>
<td>0.4.5</td>
<td>esptool</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.5/esptool-0.4.5-win32.zip</td>
<td>SHA-256:1b0a7d254e74942d820a09281aa5dc2af1c8314ae5ee1a5abb0653d0580e531b</td>
<td>i686-mingw32</td>
<td>esptool-0.4.5-win32.zip</td>
<td align="right">17408</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.5/esptool-0.4.5-osx.tar.gz</td>
<td>SHA-256:924d31c64f4bb9f748e70806dafbabb15e5eb80afcdde33715f3ec884be1652d</td>
<td>x86_64-apple-darwin</td>
<td>esptool-0.4.5-osx.tar.gz</td>
<td align="right">11359</td>
<td>http://arduino.esp8266.com/esptool-0.4.5-1-gfaa5794-osx.tar.gz</td>
<td>SHA-256:722142071f6cf4d8c02dea42497a747e06abf583d86137a6a256b7db71dc61f6</td>
<td>i386-apple-darwin</td>
<td>esptool-0.4.5-1-gfaa5794-osx.tar.gz</td>
<td align="right">20751</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.5/esptool-0.4.5-linux64.tar.gz</td>
<td>SHA-256:4ce799e13fbd89f8a8f08a08db77dc3b1362c4486306fe1b3801dee80cfa3203</td>
<td>x86_64-pc-linux-gnu</td>
<td>esptool-0.4.5-linux64.tar.gz</td>
<td align="right">12789</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.5/esptool-0.4.5-linux32.tar.gz</td>
<td>SHA-256:a7a2c3200786d7396e8cafca1b9aefe56db8ec1dab5e9163d4a19358232a7d87</td>
<td>i686-pc-linux-gnu</td>
<td>esptool-0.4.5-linux32.tar.gz</td>
<td align="right">12055</td>
<td>0.4.6</td>
<td>esptool</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.6/esptool-0.4.6-win32.zip</td>
<td>SHA-256:0248bf78514a3195f583e29218ca7828a66e13c6e5545a078f1c1257033e4927</td>
<td>i686-mingw32</td>
<td>esptool-0.4.6-win32.zip</td>
<td align="right">17481</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.6/esptool-0.4.6-osx.tar.gz</td>
<td>SHA-256:0fe87ba7e29ee90a9fc72492aada8c0796f9e8f8a1c594b6b26cee2610d09bb3</td>
<td>x86_64-apple-darwin</td>
<td>esptool-0.4.6-osx.tar.gz</td>
<td align="right">20926</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.6/esptool-0.4.6-osx.tar.gz</td>
<td>SHA-256:0fe87ba7e29ee90a9fc72492aada8c0796f9e8f8a1c594b6b26cee2610d09bb3</td>
<td>i386-apple-darwin</td>
<td>esptool-0.4.6-osx.tar.gz</td>
<td align="right">20926</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.6/esptool-0.4.6-linux64.tar.gz</td>
<td>SHA-256:f9f456e9a42bb2597126c513cb8865f923fb978865d4838b9623d322216b74d0</td>
<td>x86_64-pc-linux-gnu</td>
<td>esptool-0.4.6-linux64.tar.gz</td>
<td align="right">12885</td>
<td>https://github.com/igrr/esptool-ck/releases/download/0.4.6/esptool-0.4.6-linux32.tar.gz</td>
<td>SHA-256:85275ca03a82bfc456f5a84e86962ca1e470ea2e168829c38ca29ee668831d93</td>
<td>i686-pc-linux-gnu</td>
<td>esptool-0.4.6-linux32.tar.gz</td>
<td align="right">13417</td>
<td>2.5.0-2-59d892c8</td>
<td>mkspiffs</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/aarch64-linux-gnu-mkspiffs-7fefeac.tar.gz</td>
<td>SHA-256:75cb633aa517874d86bdadb2303b27d99d7bac96f63bd3b9d41c5e9706fa4ce1</td>
<td>aarch64-linux-gnu</td>
<td>aarch64-linux-gnu-mkspiffs-7fefeac.tar.gz</td>
<td align="right">52195</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/arm-linux-gnueabihf-mkspiffs-7fefeac.tar.gz</td>
<td>SHA-256:0b41eb7c684d36f69f62a6106b79088815ea51c2a5bf05ce8a1537feb38d8633</td>
<td>arm-linux-gnueabihf</td>
<td>arm-linux-gnueabihf-mkspiffs-7fefeac.tar.gz</td>
<td align="right">45178</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/i686-w64-mingw32-mkspiffs-7fefeac.zip</td>
<td>SHA-256:5948986955116dfadcaf55f053c7d1280bc3e5b46dcaaa7a3110e42703d68b93</td>
<td>i686-mingw32</td>
<td>i686-w64-mingw32-mkspiffs-7fefeac.zip</td>
<td align="right">339004</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/x86_64-apple-darwin14-mkspiffs-7fefeac.tar.gz</td>
<td>SHA-256:0b8c91789a861dc28d7f43393418b29b5afd9db7edc65bf07c5b68dce9f2ad7e</td>
<td>x86_64-apple-darwin</td>
<td>x86_64-apple-darwin14-mkspiffs-7fefeac.tar.gz</td>
<td align="right">369685</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/x86_64-linux-gnu-mkspiffs-7fefeac.tar.gz</td>
<td>SHA-256:3077946047cb540d734c51ddcc1b2f83164018e4b9c6de34562749f247f36d7c</td>
<td>x86_64-pc-linux-gnu</td>
<td>x86_64-linux-gnu-mkspiffs-7fefeac.tar.gz</td>
<td align="right">53504</td>
<td>https://github.com/earlephilhower/esp-quick-toolchain/releases/download/2.5.0-2/x86_64-w64-mingw32-mkspiffs-7fefeac.zip</td>
<td>SHA-256:75c767efe58b2738eae03c558d5c1de7b49cf3a169f8e4b54752b809cd13b40c</td>
<td>x86_64-mingw32</td>
<td>x86_64-w64-mingw32-mkspiffs-7fefeac.zip</td>
<td align="right">351165</td>
<td>0.1.2</td>
<td>mkspiffs</td>
<td>https://github.com/igrr/mkspiffs/releases/download/0.1.2/mkspiffs-0.1.2-windows.zip</td>
<td>SHA-256:0a29119b8458b61a877408f7995e4944623a712e0d313a2c2f76af9ab55cc9f2</td>
<td>i686-mingw32</td>
<td>mkspiffs-0.1.2-windows.zip</td>
<td>230802</td>
<td>https://github.com/igrr/mkspiffs/releases/download/0.1.2/mkspiffs-0.1.2-osx.tar.gz</td>
<td>SHA-256:df656fae21a41c1269ea50cb53752dcaf6a4e1437255f3a9fb50b4025549b58e</td>
<td>x86_64-apple-darwin</td>
<td>mkspiffs-0.1.2-osx.tar.gz</td>
<td align="right">115091</td>
<td>https://github.com/igrr/mkspiffs/releases/download/0.1.2/mkspiffs-0.1.2-osx.tar.gz</td>
<td>SHA-256:df656fae21a41c1269ea50cb53752dcaf6a4e1437255f3a9fb50b4025549b58e</td>
<td>i386-apple-darwin</td>
<td>mkspiffs-0.1.2-osx.tar.gz</td>
<td align="right">115091</td>
<td>https://github.com/igrr/mkspiffs/releases/download/0.1.2/mkspiffs-0.1.2-linux64.tar.gz</td>
<td>SHA-256:1a1dd81b51daf74c382db71b42251757ca4136e8762107e69feaa8617bac315f</td>
<td>x86_64-pc-linux-gnu</td>
<td>mkspiffs-0.1.2-linux64.tar.gz</td>
<td align="right">46281</td>
<td>https://github.com/igrr/mkspiffs/releases/download/0.1.2/mkspiffs-0.1.2-linux32.tar.gz</td>
<td>SHA-256:e990d545dfcae308aabaac5fa9e1db734cc2b08167969e7eedac88bd0839667c</td>
<td>i686-pc-linux-gnu</td>
<td>mkspiffs-0.1.2-linux32.tar.gz</td>