forked from Skywalker787/firm_cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcachemap.txt
1647 lines (1647 loc) · 167 KB
/
cachemap.txt
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
Generated via: for each in `ls *sig*`; do echo ---------; md5 $each; grep $each V* -r; strings V*/* | grep $each; done > cachemap.txt
---------
MD5 (wm100_0305_v34.11.00.21_20161010.pro.fw.sig) = ae7b12a944e67add75cd2c4d3d24624d
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="0305" version="34.11.00.21" type="" group="ac" size="55072" md5="ae7b12a944e67add75cd2c4d3d24624d">wm100_0305_v34.11.00.21_20161010.pro.fw.sig</module>
<module id="0305" version="34.11.00.21" type="" group="ac" size="55072" md5="ae7b12a944e67add75cd2c4d3d24624d">wm100_0305_v34.11.00.21_20161010.pro.fw.sig</module>
---------
MD5 (wm100_0306_v03.02.34.25_20170527.pro.fw.sig) = 8b3a583c4728e8f882b4f292a1c8b1a2
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
<module id="0306" version="03.02.34.25" type="" group="ac" size="1561120" md5="8b3a583c4728e8f882b4f292a1c8b1a2">wm100_0306_v03.02.34.25_20170527.pro.fw.sig</module>
---------
MD5 (wm100_0306_v03.02.37.20_20170615.pro.fw.sig) = 65f55c9eb416e57ba5f1904fd5b91e4c
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="0306" version="03.02.37.20" type="" group="ac" size="1569824" md5="65f55c9eb416e57ba5f1904fd5b91e4c">wm100_0306_v03.02.37.20_20170615.pro.fw.sig</module>
---------
MD5 (wm100_0400_v00.00.01.16_20170517.pro.fw.sig) = b520be939d89f6fb703070168f56fe32
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
<module id="0400" version="00.00.01.16" type="" group="ac" size="93984" md5="b520be939d89f6fb703070168f56fe32">wm100_0400_v00.00.01.16_20170517.pro.fw.sig</module>
---------
MD5 (wm100_0400_v01.00.01.20_20170531.pro.fw.sig) = f1f48c74462e2e05adfc64f079c977dc
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="0400" version="01.00.01.20" type="" group="ac" size="94016" md5="f1f48c74462e2e05adfc64f079c977dc">wm100_0400_v01.00.01.20_20170531.pro.fw.sig</module>
---------
MD5 (wm100_0801_v00.00.06.42_20170530.pro.fw.sig) = 0d692987f3199e49c60d7c9efa2af8fb
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
<module id="0801" version="00.00.06.42" type="" group="ac" size="65877632" md5="0d692987f3199e49c60d7c9efa2af8fb">wm100_0801_v00.00.06.42_20170530.pro.fw.sig</module>
---------
MD5 (wm100_0801_v00.00.06.59_20170614.pro.fw.sig) = 43e1b6665074007c1eeccdb7e8d3ec82
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="0801" version="00.00.06.59" type="" group="ac" size="65930624" md5="43e1b6665074007c1eeccdb7e8d3ec82">wm100_0801_v00.00.06.59_20170614.pro.fw.sig</module>
---------
MD5 (wm100_0802_v00.04.11.30_20170519.pro.fw.sig) = 909cdb7d2c1119f6206cfef93626c8b1
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
<module id="0802" version="00.04.11.30" type="" group="ac" size="5736192" md5="909cdb7d2c1119f6206cfef93626c8b1">wm100_0802_v00.04.11.30_20170519.pro.fw.sig</module>
---------
MD5 (wm100_0802_v00.04.11.38_20170613.pro.fw.sig) = cb46b63b80b8921aa9776fdd4061846c
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="0802" version="00.04.11.38" type="" group="ac" size="5751296" md5="cb46b63b80b8921aa9776fdd4061846c">wm100_0802_v00.04.11.38_20170613.pro.fw.sig</module>
---------
MD5 (wm100_0805_v01.01.01.27_20170528.pro.fw.sig) = c61bb849d8fe0b4798a5acd615b8a72e
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
<module id="0805" version="01.01.01.27" type="" group="ac" size="19937760" md5="c61bb849d8fe0b4798a5acd615b8a72e">wm100_0805_v01.01.01.27_20170528.pro.fw.sig</module>
---------
MD5 (wm100_0805_v01.01.01.38_20170615.pro.fw.sig) = 704a09ba9107094be6f6a155b3915ff0
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="0805" version="01.01.01.38" type="" group="ac" size="20173280" md5="704a09ba9107094be6f6a155b3915ff0">wm100_0805_v01.01.01.38_20170615.pro.fw.sig</module>
---------
MD5 (wm100_0905_v00.00.01.04_20170301.pro.fw.sig) = f32a2c31dfa37ca56e7bffb5f21d8811
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
<module id="0905" version="00.00.01.04" type="" group="ac" size="92096" md5="f32a2c31dfa37ca56e7bffb5f21d8811">wm100_0905_v00.00.01.04_20170301.pro.fw.sig</module>
---------
MD5 (wm100_0905_v01.00.01.04_20170602.pro.fw.sig) = b320c1d99b2329ce95ff55040df71576
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="0905" version="01.00.01.04" type="" group="ac" size="2939360" md5="b320c1d99b2329ce95ff55040df71576">wm100_0905_v01.00.01.04_20170602.pro.fw.sig</module>
---------
MD5 (wm100_1100_v01.00.00.60_20170502.pro.fw.sig) = d6556a93beb45fc6927cda157af72e1d
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="1100" version="01.00.00.60" type="" group="ac" size="82688" md5="d6556a93beb45fc6927cda157af72e1d">wm100_1100_v01.00.00.60_20170502.pro.fw.sig</module>
<module id="1100" version="01.00.00.60" type="" group="ac" size="82688" md5="d6556a93beb45fc6927cda157af72e1d">wm100_1100_v01.00.00.60_20170502.pro.fw.sig</module>
---------
MD5 (wm100_1200_v01.09.00.00_20170428.pro.fw.sig) = 277d7dd372906f1533206c47a29084cd
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="277d7dd372906f1533206c47a29084cd">wm100_1200_v01.09.00.00_20170428.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="277d7dd372906f1533206c47a29084cd">wm100_1200_v01.09.00.00_20170428.pro.fw.sig</module>
---------
MD5 (wm100_1201_v01.09.00.00_20170428.pro.fw.sig) = 6170a30864186a9430d00269f34ae3f9
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="6170a30864186a9430d00269f34ae3f9">wm100_1201_v01.09.00.00_20170428.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="6170a30864186a9430d00269f34ae3f9">wm100_1201_v01.09.00.00_20170428.pro.fw.sig</module>
---------
MD5 (wm100_1202_v01.09.00.00_20170428.pro.fw.sig) = 63cb1cd05d4a3ddb5c75c3dbc3f4c06c
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="63cb1cd05d4a3ddb5c75c3dbc3f4c06c">wm100_1202_v01.09.00.00_20170428.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="63cb1cd05d4a3ddb5c75c3dbc3f4c06c">wm100_1202_v01.09.00.00_20170428.pro.fw.sig</module>
---------
MD5 (wm100_1203_v01.09.00.00_20170428.pro.fw.sig) = 3033d05d839ce0acd0f70c7c3fed9f1d
Binary file V01.00.0300_Spark_dji_system/wm100a.cfg.sig matches
Binary file V01.00.0400_Spark_dji_system/wm100a.cfg.sig matches
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="3033d05d839ce0acd0f70c7c3fed9f1d">wm100_1203_v01.09.00.00_20170428.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="3033d05d839ce0acd0f70c7c3fed9f1d">wm100_1203_v01.09.00.00_20170428.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.00.55.69_20161215.pro.fw.sig) = 8f72ba727e89e3a7186e4a35561790a5
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.00.55.69" type="" group="ac" size="15196800" md5="8f72ba727e89e3a7186e4a35561790a5">wm220_0100_v02.00.55.69_20161215.pro.fw.sig</module>
<module id="0100" version="02.00.55.69" type="" group="ac" size="15196800" md5="8f72ba727e89e3a7186e4a35561790a5">wm220_0100_v02.00.55.69_20161215.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.01.55.93_20170120.pro.fw.sig) = 620c22872b9ab773c66c2be1626568ea
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.01.55.93" type="" group="ac" size="15183616" md5="620c22872b9ab773c66c2be1626568ea">wm220_0100_v02.01.55.93_20170120.pro.fw.sig</module>
<module id="0100" version="02.01.55.93" type="" group="ac" size="15183616" md5="620c22872b9ab773c66c2be1626568ea">wm220_0100_v02.01.55.93_20170120.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.02.56.21_20170228.pro.fw.sig) = 9771133d4720d7fa41293f336a992b06
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.02.56.21" type="" group="ac" size="15180736" md5="9771133d4720d7fa41293f336a992b06">wm220_0100_v02.02.56.21_20170228.pro.fw.sig</module>
<module id="0100" version="02.02.56.21" type="" group="ac" size="15180736" md5="9771133d4720d7fa41293f336a992b06">wm220_0100_v02.02.56.21_20170228.pro.fw.sig</module>
<module id="0100" version="02.02.56.21" type="" group="ac" size="15180736" md5="9771133d4720d7fa41293f336a992b06">wm220_0100_v02.02.56.21_20170228.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.02.56.29_20170317.pro.fw.sig) = 314644f86b5ecd475c7a0c570693256b
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.02.56.29" type="" group="ac" size="15180832" md5="314644f86b5ecd475c7a0c570693256b">wm220_0100_v02.02.56.29_20170317.pro.fw.sig</module>
<module id="0100" version="02.02.56.29" type="" group="ac" size="15180832" md5="314644f86b5ecd475c7a0c570693256b">wm220_0100_v02.02.56.29_20170317.pro.fw.sig</module>
<module id="0100" version="02.02.56.29" type="" group="ac" size="15180832" md5="314644f86b5ecd475c7a0c570693256b">wm220_0100_v02.02.56.29_20170317.pro.fw.sig</module>
<module id="0100" version="02.02.56.29" type="" group="ac" size="15180832" md5="314644f86b5ecd475c7a0c570693256b">wm220_0100_v02.02.56.29_20170317.pro.fw.sig</module>
<module id="0100" version="02.02.56.29" type="" group="ac" size="15180832" md5="314644f86b5ecd475c7a0c570693256b">wm220_0100_v02.02.56.29_20170317.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.03.56.42_20170525.pro.fw.sig) = 3da24ca86323fa95695d1a5e37556e34
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.03.56.42" type="" group="ac" size="15197856" md5="3da24ca86323fa95695d1a5e37556e34">wm220_0100_v02.03.56.42_20170525.pro.fw.sig</module>
<module id="0100" version="02.03.56.42" type="" group="ac" size="15197856" md5="3da24ca86323fa95695d1a5e37556e34">wm220_0100_v02.03.56.42_20170525.pro.fw.sig</module>
<module id="0100" version="02.03.56.42" type="" group="ac" size="15197856" md5="3da24ca86323fa95695d1a5e37556e34">wm220_0100_v02.03.56.42_20170525.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.03.56.43_20170615.pro.fw.sig) = d2f427f10112f8b2d56c4c74e2b7f524
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.03.56.43" type="" group="ac" size="15196736" md5="d2f427f10112f8b2d56c4c74e2b7f524">wm220_0100_v02.03.56.43_20170615.pro.fw.sig</module>
<module id="0100" version="02.03.56.43" type="" group="ac" size="15196736" md5="d2f427f10112f8b2d56c4c74e2b7f524">wm220_0100_v02.03.56.43_20170615.pro.fw.sig</module>
<module id="0100" version="02.03.56.43" type="" group="ac" size="15196736" md5="d2f427f10112f8b2d56c4c74e2b7f524">wm220_0100_v02.03.56.43_20170615.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.04.03.85_20161222_ca02.pro.fw.sig) = 4c490d2c11d478bf92fdf82bc29fef6d
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.04.03.85" type="ca02" group="ac" size="37745920" md5="4c490d2c11d478bf92fdf82bc29fef6d">wm220_0100_v02.04.03.85_20161222_ca02.pro.fw.sig</module>
<module id="0100" version="02.04.03.85" type="ca02" group="ac" size="37745920" md5="4c490d2c11d478bf92fdf82bc29fef6d">wm220_0100_v02.04.03.85_20161222_ca02.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.05.04.34_20170209_ca02.pro.fw.sig) = ea1fa2d3987c792f561a2e546bd835d4
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.05.04.34" type="ca02" group="ac" size="37480832" md5="ea1fa2d3987c792f561a2e546bd835d4">wm220_0100_v02.05.04.34_20170209_ca02.pro.fw.sig</module>
<module id="0100" version="02.05.04.34" type="ca02" group="ac" size="37480832" md5="ea1fa2d3987c792f561a2e546bd835d4">wm220_0100_v02.05.04.34_20170209_ca02.pro.fw.sig</module>
<module id="0100" version="02.05.04.34" type="ca02" group="ac" size="37480832" md5="ea1fa2d3987c792f561a2e546bd835d4">wm220_0100_v02.05.04.34_20170209_ca02.pro.fw.sig</module>
<module id="0100" version="02.05.04.34" type="ca02" group="ac" size="37480832" md5="ea1fa2d3987c792f561a2e546bd835d4">wm220_0100_v02.05.04.34_20170209_ca02.pro.fw.sig</module>
<module id="0100" version="02.05.04.34" type="ca02" group="ac" size="37480832" md5="ea1fa2d3987c792f561a2e546bd835d4">wm220_0100_v02.05.04.34_20170209_ca02.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.06.04.84_20170324_ca02.pro.fw.sig) = c0fb136c054e9105cff3f0cfc2b4c740
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.06.04.84" type="ca02" group="ac" size="37489024" md5="c0fb136c054e9105cff3f0cfc2b4c740">wm220_0100_v02.06.04.84_20170324_ca02.pro.fw.sig</module>
<module id="0100" version="02.06.04.84" type="ca02" group="ac" size="37489024" md5="c0fb136c054e9105cff3f0cfc2b4c740">wm220_0100_v02.06.04.84_20170324_ca02.pro.fw.sig</module>
<module id="0100" version="02.06.04.84" type="ca02" group="ac" size="37489024" md5="c0fb136c054e9105cff3f0cfc2b4c740">wm220_0100_v02.06.04.84_20170324_ca02.pro.fw.sig</module>
<module id="0100" version="02.06.04.84" type="ca02" group="ac" size="37489024" md5="c0fb136c054e9105cff3f0cfc2b4c740">wm220_0100_v02.06.04.84_20170324_ca02.pro.fw.sig</module>
<module id="0100" version="02.06.04.84" type="ca02" group="ac" size="37489024" md5="c0fb136c054e9105cff3f0cfc2b4c740">wm220_0100_v02.06.04.84_20170324_ca02.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.07.04.98_20170520_ca02.pro.fw.sig) = b32b15a65987df6b6a0e862d4f280982
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.07.04.98" type="ca02" group="ac" size="37697952" md5="b32b15a65987df6b6a0e862d4f280982">wm220_0100_v02.07.04.98_20170520_ca02.pro.fw.sig</module>
<module id="0100" version="02.07.04.98" type="ca02" group="ac" size="37697952" md5="b32b15a65987df6b6a0e862d4f280982">wm220_0100_v02.07.04.98_20170520_ca02.pro.fw.sig</module>
<module id="0100" version="02.07.04.98" type="ca02" group="ac" size="37697952" md5="b32b15a65987df6b6a0e862d4f280982">wm220_0100_v02.07.04.98_20170520_ca02.pro.fw.sig</module>
---------
MD5 (wm220_0100_v02.07.04.99_20170613_ca02.pro.fw.sig) = 990cb85ebeb8771faf22e55ba0337ed5
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0100" version="02.07.04.99" type="ca02" group="ac" size="37697952" md5="990cb85ebeb8771faf22e55ba0337ed5">wm220_0100_v02.07.04.99_20170613_ca02.pro.fw.sig</module>
<module id="0100" version="02.07.04.99" type="ca02" group="ac" size="37697952" md5="990cb85ebeb8771faf22e55ba0337ed5">wm220_0100_v02.07.04.99_20170613_ca02.pro.fw.sig</module>
<module id="0100" version="02.07.04.99" type="ca02" group="ac" size="37697952" md5="990cb85ebeb8771faf22e55ba0337ed5">wm220_0100_v02.07.04.99_20170613_ca02.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.00.55.69_20161215.pro.fw.sig) = cff95060e9d6e24e48e790e9e8928b81
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.00.55.69" type="" group="ac" size="196544" md5="cff95060e9d6e24e48e790e9e8928b81">wm220_0101_v02.00.55.69_20161215.pro.fw.sig</module>
<module id="0101" version="02.00.55.69" type="" group="ac" size="196544" md5="cff95060e9d6e24e48e790e9e8928b81">wm220_0101_v02.00.55.69_20161215.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.01.55.93_20170120.pro.fw.sig) = fdcfc4622217fbab99aa0b82921561cd
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.01.55.93" type="" group="ac" size="196576" md5="fdcfc4622217fbab99aa0b82921561cd">wm220_0101_v02.01.55.93_20170120.pro.fw.sig</module>
<module id="0101" version="02.01.55.93" type="" group="ac" size="196576" md5="fdcfc4622217fbab99aa0b82921561cd">wm220_0101_v02.01.55.93_20170120.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.02.56.21_20170228.pro.fw.sig) = 0ba2dc61895d0b6945626491bd033a28
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.02.56.21" type="" group="ac" size="196576" md5="0ba2dc61895d0b6945626491bd033a28">wm220_0101_v02.02.56.21_20170228.pro.fw.sig</module>
<module id="0101" version="02.02.56.21" type="" group="ac" size="196576" md5="0ba2dc61895d0b6945626491bd033a28">wm220_0101_v02.02.56.21_20170228.pro.fw.sig</module>
<module id="0101" version="02.02.56.21" type="" group="ac" size="196576" md5="0ba2dc61895d0b6945626491bd033a28">wm220_0101_v02.02.56.21_20170228.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.02.56.29_20170317.pro.fw.sig) = 4c877d5b5c7e90ac70bd7873dfb31395
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.02.56.29" type="" group="ac" size="196544" md5="4c877d5b5c7e90ac70bd7873dfb31395">wm220_0101_v02.02.56.29_20170317.pro.fw.sig</module>
<module id="0101" version="02.02.56.29" type="" group="ac" size="196544" md5="4c877d5b5c7e90ac70bd7873dfb31395">wm220_0101_v02.02.56.29_20170317.pro.fw.sig</module>
<module id="0101" version="02.02.56.29" type="" group="ac" size="196544" md5="4c877d5b5c7e90ac70bd7873dfb31395">wm220_0101_v02.02.56.29_20170317.pro.fw.sig</module>
<module id="0101" version="02.02.56.29" type="" group="ac" size="196544" md5="4c877d5b5c7e90ac70bd7873dfb31395">wm220_0101_v02.02.56.29_20170317.pro.fw.sig</module>
<module id="0101" version="02.02.56.29" type="" group="ac" size="196544" md5="4c877d5b5c7e90ac70bd7873dfb31395">wm220_0101_v02.02.56.29_20170317.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.03.56.42_20170525.pro.fw.sig) = 0269a28cb02dca8d3d6d6f571b4f8fa0
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.03.56.42" type="" group="ac" size="196512" md5="0269a28cb02dca8d3d6d6f571b4f8fa0">wm220_0101_v02.03.56.42_20170525.pro.fw.sig</module>
<module id="0101" version="02.03.56.42" type="" group="ac" size="196512" md5="0269a28cb02dca8d3d6d6f571b4f8fa0">wm220_0101_v02.03.56.42_20170525.pro.fw.sig</module>
<module id="0101" version="02.03.56.42" type="" group="ac" size="196512" md5="0269a28cb02dca8d3d6d6f571b4f8fa0">wm220_0101_v02.03.56.42_20170525.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.03.56.43_20170615.pro.fw.sig) = 0a63f46aeee98722fec6c7332196ae5e
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.03.56.43" type="" group="ac" size="196544" md5="0a63f46aeee98722fec6c7332196ae5e">wm220_0101_v02.03.56.43_20170615.pro.fw.sig</module>
<module id="0101" version="02.03.56.43" type="" group="ac" size="196544" md5="0a63f46aeee98722fec6c7332196ae5e">wm220_0101_v02.03.56.43_20170615.pro.fw.sig</module>
<module id="0101" version="02.03.56.43" type="" group="ac" size="196544" md5="0a63f46aeee98722fec6c7332196ae5e">wm220_0101_v02.03.56.43_20170615.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.04.03.85_20161222_ca02.pro.fw.sig) = 7150033a80893bd4551bb7a98ebbb511
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.04.03.85" type="ca02" group="ac" size="60128" md5="7150033a80893bd4551bb7a98ebbb511">wm220_0101_v02.04.03.85_20161222_ca02.pro.fw.sig</module>
<module id="0101" version="02.04.03.85" type="ca02" group="ac" size="60128" md5="7150033a80893bd4551bb7a98ebbb511">wm220_0101_v02.04.03.85_20161222_ca02.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.05.04.34_20170209_ca02.pro.fw.sig) = 8ecb557c234ad537a4b1d8b0d23fff26
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.05.04.34" type="ca02" group="ac" size="60128" md5="8ecb557c234ad537a4b1d8b0d23fff26">wm220_0101_v02.05.04.34_20170209_ca02.pro.fw.sig</module>
<module id="0101" version="02.05.04.34" type="ca02" group="ac" size="60128" md5="8ecb557c234ad537a4b1d8b0d23fff26">wm220_0101_v02.05.04.34_20170209_ca02.pro.fw.sig</module>
<module id="0101" version="02.05.04.34" type="ca02" group="ac" size="60128" md5="8ecb557c234ad537a4b1d8b0d23fff26">wm220_0101_v02.05.04.34_20170209_ca02.pro.fw.sig</module>
<module id="0101" version="02.05.04.34" type="ca02" group="ac" size="60128" md5="8ecb557c234ad537a4b1d8b0d23fff26">wm220_0101_v02.05.04.34_20170209_ca02.pro.fw.sig</module>
<module id="0101" version="02.05.04.34" type="ca02" group="ac" size="60128" md5="8ecb557c234ad537a4b1d8b0d23fff26">wm220_0101_v02.05.04.34_20170209_ca02.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.06.04.84_20170324_ca02.pro.fw.sig) = 6e829f457d00ab3dee6c092ca4e796c7
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.06.04.84" type="ca02" group="ac" size="60128" md5="6e829f457d00ab3dee6c092ca4e796c7">wm220_0101_v02.06.04.84_20170324_ca02.pro.fw.sig</module>
<module id="0101" version="02.06.04.84" type="ca02" group="ac" size="60128" md5="6e829f457d00ab3dee6c092ca4e796c7">wm220_0101_v02.06.04.84_20170324_ca02.pro.fw.sig</module>
<module id="0101" version="02.06.04.84" type="ca02" group="ac" size="60128" md5="6e829f457d00ab3dee6c092ca4e796c7">wm220_0101_v02.06.04.84_20170324_ca02.pro.fw.sig</module>
<module id="0101" version="02.06.04.84" type="ca02" group="ac" size="60128" md5="6e829f457d00ab3dee6c092ca4e796c7">wm220_0101_v02.06.04.84_20170324_ca02.pro.fw.sig</module>
<module id="0101" version="02.06.04.84" type="ca02" group="ac" size="60128" md5="6e829f457d00ab3dee6c092ca4e796c7">wm220_0101_v02.06.04.84_20170324_ca02.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.07.04.98_20170520_ca02.pro.fw.sig) = ea28b92e89376b1f0d591c3c6a6b210e
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.07.04.98" type="ca02" group="ac" size="60128" md5="ea28b92e89376b1f0d591c3c6a6b210e">wm220_0101_v02.07.04.98_20170520_ca02.pro.fw.sig</module>
<module id="0101" version="02.07.04.98" type="ca02" group="ac" size="60128" md5="ea28b92e89376b1f0d591c3c6a6b210e">wm220_0101_v02.07.04.98_20170520_ca02.pro.fw.sig</module>
<module id="0101" version="02.07.04.98" type="ca02" group="ac" size="60128" md5="ea28b92e89376b1f0d591c3c6a6b210e">wm220_0101_v02.07.04.98_20170520_ca02.pro.fw.sig</module>
---------
MD5 (wm220_0101_v02.07.04.99_20170613_ca02.pro.fw.sig) = 70614bc2a2fb4ae0f35660dce008d97f
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0101" version="02.07.04.99" type="ca02" group="ac" size="60128" md5="70614bc2a2fb4ae0f35660dce008d97f">wm220_0101_v02.07.04.99_20170613_ca02.pro.fw.sig</module>
<module id="0101" version="02.07.04.99" type="ca02" group="ac" size="60128" md5="70614bc2a2fb4ae0f35660dce008d97f">wm220_0101_v02.07.04.99_20170613_ca02.pro.fw.sig</module>
<module id="0101" version="02.07.04.99" type="ca02" group="ac" size="60128" md5="70614bc2a2fb4ae0f35660dce008d97f">wm220_0101_v02.07.04.99_20170613_ca02.pro.fw.sig</module>
---------
MD5 (wm220_0305_v34.04.00.23_20161122.pro.fw.sig) = c6fabddc843a0d9e6a6dd8f3c367add4
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
<module id="0305" version="34.04.00.23" type="" group="ac" size="55072" md5="c6fabddc843a0d9e6a6dd8f3c367add4">wm220_0305_v34.04.00.23_20161122.pro.fw.sig</module>
---------
MD5 (wm220_0306_v03.02.13.12_20161209.pro.fw.sig) = 00c163103ac73e87924655a62a10484d
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0306" version="03.02.13.12" type="" group="ac" size="1576480" md5="00c163103ac73e87924655a62a10484d">wm220_0306_v03.02.13.12_20161209.pro.fw.sig</module>
<module id="0306" version="03.02.13.12" type="" group="ac" size="1576480" md5="00c163103ac73e87924655a62a10484d">wm220_0306_v03.02.13.12_20161209.pro.fw.sig</module>
---------
MD5 (wm220_0306_v03.02.13.16_20170112.pro.fw.sig) = 4371f8caf0e17c79fc3158d5f76e5737
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0306" version="03.02.13.16" type="" group="ac" size="1576480" md5="4371f8caf0e17c79fc3158d5f76e5737">wm220_0306_v03.02.13.16_20170112.pro.fw.sig</module>
<module id="0306" version="03.02.13.16" type="" group="ac" size="1576480" md5="4371f8caf0e17c79fc3158d5f76e5737">wm220_0306_v03.02.13.16_20170112.pro.fw.sig</module>
---------
MD5 (wm220_0306_v03.02.21.19_20170301.pro.fw.sig) = 06ac667d3d2cfd885702dca0a33b8284
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
<module id="0306" version="03.02.21.19" type="" group="ac" size="1520672" md5="06ac667d3d2cfd885702dca0a33b8284">wm220_0306_v03.02.21.19_20170301.pro.fw.sig</module>
---------
MD5 (wm220_0306_v03.02.21.31_20170402.pro.fw.sig) = ce8e53632786ca555fcbe7c483d71309
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0306" version="03.02.21.31" type="" group="ac" size="1520416" md5="ce8e53632786ca555fcbe7c483d71309">wm220_0306_v03.02.21.31_20170402.pro.fw.sig</module>
<module id="0306" version="03.02.21.31" type="" group="ac" size="1520416" md5="ce8e53632786ca555fcbe7c483d71309">wm220_0306_v03.02.21.31_20170402.pro.fw.sig</module>
---------
MD5 (wm220_0306_v03.02.30.13_20170405.pro.fw.sig) = 61df5e5a394c00cc50e04044597ba22d
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0306" version="03.02.30.13" type="" group="ac" size="1537056" md5="61df5e5a394c00cc50e04044597ba22d">wm220_0306_v03.02.30.13_20170405.pro.fw.sig</module>
<module id="0306" version="03.02.30.13" type="" group="ac" size="1537056" md5="61df5e5a394c00cc50e04044597ba22d">wm220_0306_v03.02.30.13_20170405.pro.fw.sig</module>
<module id="0306" version="03.02.30.13" type="" group="ac" size="1537056" md5="61df5e5a394c00cc50e04044597ba22d">wm220_0306_v03.02.30.13_20170405.pro.fw.sig</module>
<module id="0306" version="03.02.30.13" type="" group="ac" size="1537056" md5="61df5e5a394c00cc50e04044597ba22d">wm220_0306_v03.02.30.13_20170405.pro.fw.sig</module>
<module id="0306" version="03.02.30.13" type="" group="ac" size="1537056" md5="61df5e5a394c00cc50e04044597ba22d">wm220_0306_v03.02.30.13_20170405.pro.fw.sig</module>
---------
MD5 (wm220_0306_v03.02.35.05_20170525.pro.fw.sig) = de52c171a97b6735d5f8fa867b426f35
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0306" version="03.02.35.05" type="" group="ac" size="1554720" md5="de52c171a97b6735d5f8fa867b426f35">wm220_0306_v03.02.35.05_20170525.pro.fw.sig</module>
<module id="0306" version="03.02.35.05" type="" group="ac" size="1554720" md5="de52c171a97b6735d5f8fa867b426f35">wm220_0306_v03.02.35.05_20170525.pro.fw.sig</module>
<module id="0306" version="03.02.35.05" type="" group="ac" size="1554720" md5="de52c171a97b6735d5f8fa867b426f35">wm220_0306_v03.02.35.05_20170525.pro.fw.sig</module>
<module id="0306" version="03.02.35.05" type="" group="ac" size="1554720" md5="de52c171a97b6735d5f8fa867b426f35">wm220_0306_v03.02.35.05_20170525.pro.fw.sig</module>
<module id="0306" version="03.02.35.05" type="" group="ac" size="1554720" md5="de52c171a97b6735d5f8fa867b426f35">wm220_0306_v03.02.35.05_20170525.pro.fw.sig</module>
<module id="0306" version="03.02.35.05" type="" group="ac" size="1554720" md5="de52c171a97b6735d5f8fa867b426f35">wm220_0306_v03.02.35.05_20170525.pro.fw.sig</module>
---------
MD5 (wm220_0400_v01.50.11.91_20161217.pro.fw.sig) = 257ec18d7a0755d084647088ec284710
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0400" version="01.50.11.91" type="" group="ac" size="100416" md5="257ec18d7a0755d084647088ec284710">wm220_0400_v01.50.11.91_20161217.pro.fw.sig</module>
<module id="0400" version="01.50.11.91" type="" group="ac" size="100416" md5="257ec18d7a0755d084647088ec284710">wm220_0400_v01.50.11.91_20161217.pro.fw.sig</module>
---------
MD5 (wm220_0400_v01.50.11.93_20170116.pro.fw.sig) = 947ba404517e3e9f2bcc47a80ff02d75
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0400" version="01.50.11.93" type="" group="ac" size="100256" md5="947ba404517e3e9f2bcc47a80ff02d75">wm220_0400_v01.50.11.93_20170116.pro.fw.sig</module>
<module id="0400" version="01.50.11.93" type="" group="ac" size="100256" md5="947ba404517e3e9f2bcc47a80ff02d75">wm220_0400_v01.50.11.93_20170116.pro.fw.sig</module>
---------
MD5 (wm220_0400_v01.50.11.94_20170217.pro.fw.sig) = 5add4474ca258367be7fbf6f9f3f4b04
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0400" version="01.50.11.94" type="" group="ac" size="100064" md5="5add4474ca258367be7fbf6f9f3f4b04">wm220_0400_v01.50.11.94_20170217.pro.fw.sig</module>
<module id="0400" version="01.50.11.94" type="" group="ac" size="100064" md5="5add4474ca258367be7fbf6f9f3f4b04">wm220_0400_v01.50.11.94_20170217.pro.fw.sig</module>
<module id="0400" version="01.50.11.94" type="" group="ac" size="100064" md5="5add4474ca258367be7fbf6f9f3f4b04">wm220_0400_v01.50.11.94_20170217.pro.fw.sig</module>
---------
MD5 (wm220_0400_v01.50.11.99_20170407.pro.fw.sig) = a9cd17fa3fbfc37d12f27158f5e83121
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0400" version="01.50.11.99" type="" group="ac" size="91584" md5="a9cd17fa3fbfc37d12f27158f5e83121">wm220_0400_v01.50.11.99_20170407.pro.fw.sig</module>
<module id="0400" version="01.50.11.99" type="" group="ac" size="91584" md5="a9cd17fa3fbfc37d12f27158f5e83121">wm220_0400_v01.50.11.99_20170407.pro.fw.sig</module>
---------
MD5 (wm220_0400_v01.50.12.01_20170414.pro.fw.sig) = ee50707d32802cb540a6ade646f1ee35
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0400" version="01.50.12.01" type="" group="ac" size="91584" md5="ee50707d32802cb540a6ade646f1ee35">wm220_0400_v01.50.12.01_20170414.pro.fw.sig</module>
<module id="0400" version="01.50.12.01" type="" group="ac" size="91584" md5="ee50707d32802cb540a6ade646f1ee35">wm220_0400_v01.50.12.01_20170414.pro.fw.sig</module>
<module id="0400" version="01.50.12.01" type="" group="ac" size="91584" md5="ee50707d32802cb540a6ade646f1ee35">wm220_0400_v01.50.12.01_20170414.pro.fw.sig</module>
---------
MD5 (wm220_0400_v01.50.12.05_20170523.pro.fw.sig) = 2bb6df2b17fdae49c366f07a00cc28cc
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0400" version="01.50.12.05" type="" group="ac" size="93408" md5="2bb6df2b17fdae49c366f07a00cc28cc">wm220_0400_v01.50.12.05_20170523.pro.fw.sig</module>
<module id="0400" version="01.50.12.05" type="" group="ac" size="93408" md5="2bb6df2b17fdae49c366f07a00cc28cc">wm220_0400_v01.50.12.05_20170523.pro.fw.sig</module>
<module id="0400" version="01.50.12.05" type="" group="ac" size="93408" md5="2bb6df2b17fdae49c366f07a00cc28cc">wm220_0400_v01.50.12.05_20170523.pro.fw.sig</module>
<module id="0400" version="01.50.12.05" type="" group="ac" size="93408" md5="2bb6df2b17fdae49c366f07a00cc28cc">wm220_0400_v01.50.12.05_20170523.pro.fw.sig</module>
<module id="0400" version="01.50.12.05" type="" group="ac" size="93408" md5="2bb6df2b17fdae49c366f07a00cc28cc">wm220_0400_v01.50.12.05_20170523.pro.fw.sig</module>
<module id="0400" version="01.50.12.05" type="" group="ac" size="93408" md5="2bb6df2b17fdae49c366f07a00cc28cc">wm220_0400_v01.50.12.05_20170523.pro.fw.sig</module>
---------
MD5 (wm220_0600_v00.00.01.27_20161017.pro.fw.sig) = 2f80ec7ebe0c7b02f356f15471e14bea
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
<module id="0600" version="00.00.01.27" type="" group="rc" size="38944" md5="2f80ec7ebe0c7b02f356f15471e14bea">wm220_0600_v00.00.01.27_20161017.pro.fw.sig</module>
---------
MD5 (wm220_0601_v00.00.03.04_20170329.pro.fw.sig) = 31d9ba179ac8c8f22b5e7079258bbfc0
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0601" version="00.00.03.04" type="" group="gl" size="22176" md5="31d9ba179ac8c8f22b5e7079258bbfc0">wm220_0601_v00.00.03.04_20170329.pro.fw.sig</module>
<module id="0601" version="00.00.03.04" type="" group="gl" size="22176" md5="31d9ba179ac8c8f22b5e7079258bbfc0">wm220_0601_v00.00.03.04_20170329.pro.fw.sig</module>
<module id="0601" version="00.00.03.04" type="" group="gl" size="22176" md5="31d9ba179ac8c8f22b5e7079258bbfc0">wm220_0601_v00.00.03.04_20170329.pro.fw.sig</module>
<module id="0601" version="00.00.03.04" type="" group="gl" size="22176" md5="31d9ba179ac8c8f22b5e7079258bbfc0">wm220_0601_v00.00.03.04_20170329.pro.fw.sig</module>
<module id="0601" version="00.00.03.04" type="" group="gl" size="22176" md5="31d9ba179ac8c8f22b5e7079258bbfc0">wm220_0601_v00.00.03.04_20170329.pro.fw.sig</module>
<module id="0601" version="00.00.03.04" type="" group="gl" size="22176" md5="31d9ba179ac8c8f22b5e7079258bbfc0">wm220_0601_v00.00.03.04_20170329.pro.fw.sig</module>
<module id="0601" version="00.00.03.04" type="" group="gl" size="22176" md5="31d9ba179ac8c8f22b5e7079258bbfc0">wm220_0601_v00.00.03.04_20170329.pro.fw.sig</module>
<module id="0601" version="00.00.03.04" type="" group="gl" size="22176" md5="31d9ba179ac8c8f22b5e7079258bbfc0">wm220_0601_v00.00.03.04_20170329.pro.fw.sig</module>
---------
MD5 (wm220_0601_v00.00.03.05_20170527.pro.fw.sig) = 75f16f8552f8919b5de288303382500f
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0601" version="00.00.03.05" type="" group="gl" size="22208" md5="75f16f8552f8919b5de288303382500f">wm220_0601_v00.00.03.05_20170527.pro.fw.sig</module>
<module id="0601" version="00.00.03.05" type="" group="gl" size="22208" md5="75f16f8552f8919b5de288303382500f">wm220_0601_v00.00.03.05_20170527.pro.fw.sig</module>
<module id="0601" version="00.00.03.05" type="" group="gl" size="22208" md5="75f16f8552f8919b5de288303382500f">wm220_0601_v00.00.03.05_20170527.pro.fw.sig</module>
---------
MD5 (wm220_0603_v00.00.06.07_20170314.pro.fw.sig) = afe9d32ba93a118a3fefbb2ce4b3850a
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0603" version="00.00.06.07" type="" group="gl" size="19872" md5="afe9d32ba93a118a3fefbb2ce4b3850a">wm220_0603_v00.00.06.07_20170314.pro.fw.sig</module>
<module id="0603" version="00.00.06.07" type="" group="gl" size="19872" md5="afe9d32ba93a118a3fefbb2ce4b3850a">wm220_0603_v00.00.06.07_20170314.pro.fw.sig</module>
<module id="0603" version="00.00.06.07" type="" group="gl" size="19872" md5="afe9d32ba93a118a3fefbb2ce4b3850a">wm220_0603_v00.00.06.07_20170314.pro.fw.sig</module>
<module id="0603" version="00.00.06.07" type="" group="gl" size="19872" md5="afe9d32ba93a118a3fefbb2ce4b3850a">wm220_0603_v00.00.06.07_20170314.pro.fw.sig</module>
<module id="0603" version="00.00.06.07" type="" group="gl" size="19872" md5="afe9d32ba93a118a3fefbb2ce4b3850a">wm220_0603_v00.00.06.07_20170314.pro.fw.sig</module>
<module id="0603" version="00.00.06.07" type="" group="gl" size="19872" md5="afe9d32ba93a118a3fefbb2ce4b3850a">wm220_0603_v00.00.06.07_20170314.pro.fw.sig</module>
<module id="0603" version="00.00.06.07" type="" group="gl" size="19872" md5="afe9d32ba93a118a3fefbb2ce4b3850a">wm220_0603_v00.00.06.07_20170314.pro.fw.sig</module>
<module id="0603" version="00.00.06.07" type="" group="gl" size="19872" md5="afe9d32ba93a118a3fefbb2ce4b3850a">wm220_0603_v00.00.06.07_20170314.pro.fw.sig</module>
---------
MD5 (wm220_0603_v00.00.06.08_20170519.pro.fw.sig) = e1d2e415ae193b8f05b684ef42308a37
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0603" version="00.00.06.08" type="" group="gl" size="19936" md5="e1d2e415ae193b8f05b684ef42308a37">wm220_0603_v00.00.06.08_20170519.pro.fw.sig</module>
<module id="0603" version="00.00.06.08" type="" group="gl" size="19936" md5="e1d2e415ae193b8f05b684ef42308a37">wm220_0603_v00.00.06.08_20170519.pro.fw.sig</module>
<module id="0603" version="00.00.06.08" type="" group="gl" size="19936" md5="e1d2e415ae193b8f05b684ef42308a37">wm220_0603_v00.00.06.08_20170519.pro.fw.sig</module>
---------
MD5 (wm220_0801_v01.03.12.04_20161222.pro.fw.sig) = 48b4a0f7497088275ae1214e8f970e97
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0801" version="01.03.12.04" type="" group="ac" size="55738816" md5="48b4a0f7497088275ae1214e8f970e97">wm220_0801_v01.03.12.04_20161222.pro.fw.sig</module>
<module id="0801" version="01.03.12.04" type="" group="ac" size="55738816" md5="48b4a0f7497088275ae1214e8f970e97">wm220_0801_v01.03.12.04_20161222.pro.fw.sig</module>
---------
MD5 (wm220_0801_v01.04.17.03_20170120.pro.fw.sig) = e0566f2fd5c14ddf7aa234b94ef503d4
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0801" version="01.04.17.03" type="" group="ac" size="55786112" md5="e0566f2fd5c14ddf7aa234b94ef503d4">wm220_0801_v01.04.17.03_20170120.pro.fw.sig</module>
<module id="0801" version="01.04.17.03" type="" group="ac" size="55786112" md5="e0566f2fd5c14ddf7aa234b94ef503d4">wm220_0801_v01.04.17.03_20170120.pro.fw.sig</module>
---------
MD5 (wm220_0801_v01.05.00.08_20170227.pro.fw.sig) = 01b724fdc4cd6d03ac23be3828403f06
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0801" version="01.05.00.08" type="" group="ac" size="56614944" md5="01b724fdc4cd6d03ac23be3828403f06">wm220_0801_v01.05.00.08_20170227.pro.fw.sig</module>
<module id="0801" version="01.05.00.08" type="" group="ac" size="56614944" md5="01b724fdc4cd6d03ac23be3828403f06">wm220_0801_v01.05.00.08_20170227.pro.fw.sig</module>
<module id="0801" version="01.05.00.08" type="" group="ac" size="56614944" md5="01b724fdc4cd6d03ac23be3828403f06">wm220_0801_v01.05.00.08_20170227.pro.fw.sig</module>
---------
MD5 (wm220_0801_v01.05.00.20_20170331.pro.fw.sig) = a79d46134779a73cb7cc4ae687f8e6a4
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0801" version="01.05.00.20" type="" group="ac" size="41515328" md5="a79d46134779a73cb7cc4ae687f8e6a4">wm220_0801_v01.05.00.20_20170331.pro.fw.sig</module>
<module id="0801" version="01.05.00.20" type="" group="ac" size="41515328" md5="a79d46134779a73cb7cc4ae687f8e6a4">wm220_0801_v01.05.00.20_20170331.pro.fw.sig</module>
<module id="0801" version="01.05.00.20" type="" group="ac" size="41515328" md5="a79d46134779a73cb7cc4ae687f8e6a4">wm220_0801_v01.05.00.20_20170331.pro.fw.sig</module>
<module id="0801" version="01.05.00.20" type="" group="ac" size="41515328" md5="a79d46134779a73cb7cc4ae687f8e6a4">wm220_0801_v01.05.00.20_20170331.pro.fw.sig</module>
<module id="0801" version="01.05.00.20" type="" group="ac" size="41515328" md5="a79d46134779a73cb7cc4ae687f8e6a4">wm220_0801_v01.05.00.20_20170331.pro.fw.sig</module>
---------
MD5 (wm220_0801_v01.05.01.07_20170601.pro.fw.sig) = d78c07b087fc65a5ef3eb59aed3fe281
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0801" version="01.05.01.07" type="" group="ac" size="41528320" md5="d78c07b087fc65a5ef3eb59aed3fe281">wm220_0801_v01.05.01.07_20170601.pro.fw.sig</module>
<module id="0801" version="01.05.01.07" type="" group="ac" size="41528320" md5="d78c07b087fc65a5ef3eb59aed3fe281">wm220_0801_v01.05.01.07_20170601.pro.fw.sig</module>
<module id="0801" version="01.05.01.07" type="" group="ac" size="41528320" md5="d78c07b087fc65a5ef3eb59aed3fe281">wm220_0801_v01.05.01.07_20170601.pro.fw.sig</module>
---------
MD5 (wm220_0801_v01.05.02.08_20170619.pro.fw.sig) = 797f3b4cec7cb749066b8311ab9408de
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0801" version="01.05.02.08" type="" group="ac" size="41527680" md5="797f3b4cec7cb749066b8311ab9408de">wm220_0801_v01.05.02.08_20170619.pro.fw.sig</module>
<module id="0801" version="01.05.02.08" type="" group="ac" size="41527680" md5="797f3b4cec7cb749066b8311ab9408de">wm220_0801_v01.05.02.08_20170619.pro.fw.sig</module>
<module id="0801" version="01.05.02.08" type="" group="ac" size="41527680" md5="797f3b4cec7cb749066b8311ab9408de">wm220_0801_v01.05.02.08_20170619.pro.fw.sig</module>
---------
MD5 (wm220_0802_v01.00.03.05_20161130.pro.fw.sig) = ab0841872c6ccaf9723a02cba41ae983
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0802" version="01.00.03.05" type="" group="ac" size="7772608" md5="ab0841872c6ccaf9723a02cba41ae983">wm220_0802_v01.00.03.05_20161130.pro.fw.sig</module>
<module id="0802" version="01.00.03.05" type="" group="ac" size="7772608" md5="ab0841872c6ccaf9723a02cba41ae983">wm220_0802_v01.00.03.05_20161130.pro.fw.sig</module>
---------
MD5 (wm220_0802_v01.00.03.08_20170116.pro.fw.sig) = a946c3e153ae232fa2f96141524ba7f9
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0802" version="01.00.03.08" type="" group="ac" size="5320416" md5="a946c3e153ae232fa2f96141524ba7f9">wm220_0802_v01.00.03.08_20170116.pro.fw.sig</module>
<module id="0802" version="01.00.03.08" type="" group="ac" size="5320416" md5="a946c3e153ae232fa2f96141524ba7f9">wm220_0802_v01.00.03.08_20170116.pro.fw.sig</module>
<module id="0802" version="01.00.03.08" type="" group="ac" size="5320416" md5="a946c3e153ae232fa2f96141524ba7f9">wm220_0802_v01.00.03.08_20170116.pro.fw.sig</module>
<module id="0802" version="01.00.03.08" type="" group="ac" size="5320416" md5="a946c3e153ae232fa2f96141524ba7f9">wm220_0802_v01.00.03.08_20170116.pro.fw.sig</module>
<module id="0802" version="01.00.03.08" type="" group="ac" size="5320416" md5="a946c3e153ae232fa2f96141524ba7f9">wm220_0802_v01.00.03.08_20170116.pro.fw.sig</module>
<module id="0802" version="01.00.03.08" type="" group="ac" size="5320416" md5="a946c3e153ae232fa2f96141524ba7f9">wm220_0802_v01.00.03.08_20170116.pro.fw.sig</module>
<module id="0802" version="01.00.03.08" type="" group="ac" size="5320416" md5="a946c3e153ae232fa2f96141524ba7f9">wm220_0802_v01.00.03.08_20170116.pro.fw.sig</module>
<module id="0802" version="01.00.03.08" type="" group="ac" size="5320416" md5="a946c3e153ae232fa2f96141524ba7f9">wm220_0802_v01.00.03.08_20170116.pro.fw.sig</module>
<module id="0802" version="01.00.03.08" type="" group="ac" size="5320416" md5="a946c3e153ae232fa2f96141524ba7f9">wm220_0802_v01.00.03.08_20170116.pro.fw.sig</module>
<module id="0802" version="01.00.03.08" type="" group="ac" size="5320416" md5="a946c3e153ae232fa2f96141524ba7f9">wm220_0802_v01.00.03.08_20170116.pro.fw.sig</module>
---------
MD5 (wm220_0802_v01.01.00.01_20170519.pro.fw.sig) = ec9f0466a683db8a3b36a7f23abbbed3
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0802" version="01.01.00.01" type="" group="ac" size="6397248" md5="ec9f0466a683db8a3b36a7f23abbbed3">wm220_0802_v01.01.00.01_20170519.pro.fw.sig</module>
<module id="0802" version="01.01.00.01" type="" group="ac" size="6397248" md5="ec9f0466a683db8a3b36a7f23abbbed3">wm220_0802_v01.01.00.01_20170519.pro.fw.sig</module>
<module id="0802" version="01.01.00.01" type="" group="ac" size="6397248" md5="ec9f0466a683db8a3b36a7f23abbbed3">wm220_0802_v01.01.00.01_20170519.pro.fw.sig</module>
<module id="0802" version="01.01.00.01" type="" group="ac" size="6397248" md5="ec9f0466a683db8a3b36a7f23abbbed3">wm220_0802_v01.01.00.01_20170519.pro.fw.sig</module>
<module id="0802" version="01.01.00.01" type="" group="ac" size="6397248" md5="ec9f0466a683db8a3b36a7f23abbbed3">wm220_0802_v01.01.00.01_20170519.pro.fw.sig</module>
<module id="0802" version="01.01.00.01" type="" group="ac" size="6397248" md5="ec9f0466a683db8a3b36a7f23abbbed3">wm220_0802_v01.01.00.01_20170519.pro.fw.sig</module>
---------
MD5 (wm220_0803_v00.00.04.06_20160621.pro.fw.sig) = 549d2cd141e8afff330596c790cf67aa
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0803" version="00.00.04.06" type="" group="ac" size="43488" md5="549d2cd141e8afff330596c790cf67aa">wm220_0803_v00.00.04.06_20160621.pro.fw.sig</module>
<module id="0803" version="00.00.04.06" type="" group="ac" size="43488" md5="549d2cd141e8afff330596c790cf67aa">wm220_0803_v00.00.04.06_20160621.pro.fw.sig</module>
<module id="0803" version="00.00.04.06" type="" group="ac" size="43488" md5="549d2cd141e8afff330596c790cf67aa">wm220_0803_v00.00.04.06_20160621.pro.fw.sig</module>
<module id="0803" version="00.00.04.06" type="" group="ac" size="43488" md5="549d2cd141e8afff330596c790cf67aa">wm220_0803_v00.00.04.06_20160621.pro.fw.sig</module>
<module id="0803" version="00.00.04.06" type="" group="ac" size="43488" md5="549d2cd141e8afff330596c790cf67aa">wm220_0803_v00.00.04.06_20160621.pro.fw.sig</module>
<module id="0803" version="00.00.04.06" type="" group="ac" size="43488" md5="549d2cd141e8afff330596c790cf67aa">wm220_0803_v00.00.04.06_20160621.pro.fw.sig</module>
<module id="0803" version="00.00.04.06" type="" group="ac" size="43488" md5="549d2cd141e8afff330596c790cf67aa">wm220_0803_v00.00.04.06_20160621.pro.fw.sig</module>
---------
MD5 (wm220_0803_v00.00.04.08_20170314.pro.fw.sig) = 31065bb04b6a1062a7cbf0409455dc97
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
<module id="0803" version="00.00.04.08" type="" group="ac" size="43488" md5="31065bb04b6a1062a7cbf0409455dc97">wm220_0803_v00.00.04.08_20170314.pro.fw.sig</module>
---------
MD5 (wm220_0804_v01.00.00.04_20161107.pro.fw.sig) = aec2b905969c43284a076d7165b37340
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0804" version="01.00.00.04" type="" group="ac" size="26048" md5="aec2b905969c43284a076d7165b37340">wm220_0804_v01.00.00.04_20161107.pro.fw.sig</module>
<module id="0804" version="01.00.00.04" type="" group="ac" size="26048" md5="aec2b905969c43284a076d7165b37340">wm220_0804_v01.00.00.04_20161107.pro.fw.sig</module>
---------
MD5 (wm220_0804_v01.00.00.08_20170113.pro.fw.sig) = 0d7186a5caea88c82a4a78b9a8f0447c
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
<module id="0804" version="01.00.00.08" type="" group="ac" size="26432" md5="0d7186a5caea88c82a4a78b9a8f0447c">wm220_0804_v01.00.00.08_20170113.pro.fw.sig</module>
---------
MD5 (wm220_0805_v01.01.00.68_20161216.pro.fw.sig) = c00b0164e7c936bfb0c2ccede3bfffac
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0805" version="01.01.00.68" type="" group="ac" size="2796000" md5="c00b0164e7c936bfb0c2ccede3bfffac">wm220_0805_v01.01.00.68_20161216.pro.fw.sig</module>
<module id="0805" version="01.01.00.68" type="" group="ac" size="2796000" md5="c00b0164e7c936bfb0c2ccede3bfffac">wm220_0805_v01.01.00.68_20161216.pro.fw.sig</module>
---------
MD5 (wm220_0805_v01.01.00.71_20161227.pro.fw.sig) = 8ef3d1d412a0e6b65542654ed8cf7c94
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0805" version="01.01.00.71" type="" group="ac" size="2796000" md5="8ef3d1d412a0e6b65542654ed8cf7c94">wm220_0805_v01.01.00.71_20161227.pro.fw.sig</module>
<module id="0805" version="01.01.00.71" type="" group="ac" size="2796000" md5="8ef3d1d412a0e6b65542654ed8cf7c94">wm220_0805_v01.01.00.71_20161227.pro.fw.sig</module>
---------
MD5 (wm220_0805_v01.01.00.78_20170221.pro.fw.sig) = a9ddb290151e9f59ebe1d286625a11f0
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0805" version="01.01.00.78" type="" group="ac" size="2990560" md5="a9ddb290151e9f59ebe1d286625a11f0">wm220_0805_v01.01.00.78_20170221.pro.fw.sig</module>
<module id="0805" version="01.01.00.78" type="" group="ac" size="2990560" md5="a9ddb290151e9f59ebe1d286625a11f0">wm220_0805_v01.01.00.78_20170221.pro.fw.sig</module>
<module id="0805" version="01.01.00.78" type="" group="ac" size="2990560" md5="a9ddb290151e9f59ebe1d286625a11f0">wm220_0805_v01.01.00.78_20170221.pro.fw.sig</module>
---------
MD5 (wm220_0805_v01.01.00.85_20170406.pro.fw.sig) = 96a69d18b49e3f13e38761bc0a225c27
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0805" version="01.01.00.85" type="" group="ac" size="3041760" md5="96a69d18b49e3f13e38761bc0a225c27">wm220_0805_v01.01.00.85_20170406.pro.fw.sig</module>
<module id="0805" version="01.01.00.85" type="" group="ac" size="3041760" md5="96a69d18b49e3f13e38761bc0a225c27">wm220_0805_v01.01.00.85_20170406.pro.fw.sig</module>
---------
MD5 (wm220_0805_v01.01.00.87_20170427.pro.fw.sig) = 6fa120e403c383118b35d95bd9f85d88
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0805" version="01.01.00.87" type="" group="ac" size="3052000" md5="6fa120e403c383118b35d95bd9f85d88">wm220_0805_v01.01.00.87_20170427.pro.fw.sig</module>
<module id="0805" version="01.01.00.87" type="" group="ac" size="3052000" md5="6fa120e403c383118b35d95bd9f85d88">wm220_0805_v01.01.00.87_20170427.pro.fw.sig</module>
<module id="0805" version="01.01.00.87" type="" group="ac" size="3052000" md5="6fa120e403c383118b35d95bd9f85d88">wm220_0805_v01.01.00.87_20170427.pro.fw.sig</module>
---------
MD5 (wm220_0805_v01.01.00.92_20170523.pro.fw.sig) = 414b309fd107092e3a3579075e3deca6
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0805" version="01.01.00.92" type="" group="ac" size="2570720" md5="414b309fd107092e3a3579075e3deca6">wm220_0805_v01.01.00.92_20170523.pro.fw.sig</module>
<module id="0805" version="01.01.00.92" type="" group="ac" size="2570720" md5="414b309fd107092e3a3579075e3deca6">wm220_0805_v01.01.00.92_20170523.pro.fw.sig</module>
<module id="0805" version="01.01.00.92" type="" group="ac" size="2570720" md5="414b309fd107092e3a3579075e3deca6">wm220_0805_v01.01.00.92_20170523.pro.fw.sig</module>
---------
MD5 (wm220_0805_v01.01.00.94_20170614.pro.fw.sig) = 08e4d672014de67b79d216d89be221d6
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0805" version="01.01.00.94" type="" group="ac" size="2570720" md5="08e4d672014de67b79d216d89be221d6">wm220_0805_v01.01.00.94_20170614.pro.fw.sig</module>
<module id="0805" version="01.01.00.94" type="" group="ac" size="2570720" md5="08e4d672014de67b79d216d89be221d6">wm220_0805_v01.01.00.94_20170614.pro.fw.sig</module>
<module id="0805" version="01.01.00.94" type="" group="ac" size="2570720" md5="08e4d672014de67b79d216d89be221d6">wm220_0805_v01.01.00.94_20170614.pro.fw.sig</module>
---------
MD5 (wm220_0905_v00.00.01.04_20170301.pro.fw.sig) = 221c6661b5c60afb04fa32335815f470
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0905" version="00.00.01.04" type="" group="ac" size="92096" md5="221c6661b5c60afb04fa32335815f470">wm220_0905_v00.00.01.04_20170301.pro.fw.sig</module>
<module id="0905" version="00.00.01.04" type="" group="ac" size="92096" md5="221c6661b5c60afb04fa32335815f470">wm220_0905_v00.00.01.04_20170301.pro.fw.sig</module>
<module id="0905" version="00.00.01.04" type="" group="ac" size="92096" md5="221c6661b5c60afb04fa32335815f470">wm220_0905_v00.00.01.04_20170301.pro.fw.sig</module>
<module id="0905" version="00.00.01.04" type="" group="ac" size="92096" md5="221c6661b5c60afb04fa32335815f470">wm220_0905_v00.00.01.04_20170301.pro.fw.sig</module>
<module id="0905" version="00.00.01.04" type="" group="ac" size="92096" md5="221c6661b5c60afb04fa32335815f470">wm220_0905_v00.00.01.04_20170301.pro.fw.sig</module>
<module id="0905" version="00.00.01.04" type="" group="ac" size="92096" md5="221c6661b5c60afb04fa32335815f470">wm220_0905_v00.00.01.04_20170301.pro.fw.sig</module>
<module id="0905" version="00.00.01.04" type="" group="ac" size="92096" md5="221c6661b5c60afb04fa32335815f470">wm220_0905_v00.00.01.04_20170301.pro.fw.sig</module>
<module id="0905" version="00.00.01.04" type="" group="ac" size="92096" md5="221c6661b5c60afb04fa32335815f470">wm220_0905_v00.00.01.04_20170301.pro.fw.sig</module>
---------
MD5 (wm220_0905_v01.00.01.04_20170527.pro.fw.sig) = c29b7bcfd612ffa6996840678dcc4c86
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0905" version="01.00.01.04" type="" group="ac" size="1463296" md5="c29b7bcfd612ffa6996840678dcc4c86">wm220_0905_v01.00.01.04_20170527.pro.fw.sig</module>
<module id="0905" version="01.00.01.04" type="" group="ac" size="1463296" md5="c29b7bcfd612ffa6996840678dcc4c86">wm220_0905_v01.00.01.04_20170527.pro.fw.sig</module>
<module id="0905" version="01.00.01.04" type="" group="ac" size="1463296" md5="c29b7bcfd612ffa6996840678dcc4c86">wm220_0905_v01.00.01.04_20170527.pro.fw.sig</module>
<module id="0905" version="01.00.01.04" type="" group="ac" size="1463296" md5="c29b7bcfd612ffa6996840678dcc4c86">wm220_0905_v01.00.01.04_20170527.pro.fw.sig</module>
<module id="0905" version="01.00.01.04" type="" group="ac" size="1463296" md5="c29b7bcfd612ffa6996840678dcc4c86">wm220_0905_v01.00.01.04_20170527.pro.fw.sig</module>
<module id="0905" version="01.00.01.04" type="" group="ac" size="1463296" md5="c29b7bcfd612ffa6996840678dcc4c86">wm220_0905_v01.00.01.04_20170527.pro.fw.sig</module>
---------
MD5 (wm220_0907_v43.97.02.02_20161209.pro.fw.sig) = 176753d36cdf390721172f4bfc04e94b
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0907" version="43.97.02.02" type="" group="ac" size="1598336" md5="176753d36cdf390721172f4bfc04e94b">wm220_0907_v43.97.02.02_20161209.pro.fw.sig</module>
<module id="0907" version="43.97.02.02" type="" group="ac" size="1598336" md5="176753d36cdf390721172f4bfc04e94b">wm220_0907_v43.97.02.02_20161209.pro.fw.sig</module>
---------
MD5 (wm220_0907_v43.97.02.05_20170111.pro.fw.sig) = 7e9212b9ec68ca8e9600be28a9a69cd3
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0907" version="43.97.02.05" type="" group="ac" size="4183936" md5="7e9212b9ec68ca8e9600be28a9a69cd3">wm220_0907_v43.97.02.05_20170111.pro.fw.sig</module>
<module id="0907" version="43.97.02.05" type="" group="ac" size="4183936" md5="7e9212b9ec68ca8e9600be28a9a69cd3">wm220_0907_v43.97.02.05_20170111.pro.fw.sig</module>
<module id="0907" version="43.97.02.05" type="" group="ac" size="4183936" md5="7e9212b9ec68ca8e9600be28a9a69cd3">wm220_0907_v43.97.02.05_20170111.pro.fw.sig</module>
<module id="0907" version="43.97.02.05" type="" group="ac" size="4183936" md5="7e9212b9ec68ca8e9600be28a9a69cd3">wm220_0907_v43.97.02.05_20170111.pro.fw.sig</module>
<module id="0907" version="43.97.02.05" type="" group="ac" size="4183936" md5="7e9212b9ec68ca8e9600be28a9a69cd3">wm220_0907_v43.97.02.05_20170111.pro.fw.sig</module>
---------
MD5 (wm220_0907_v47.26.02.08_20170309.pro.fw.sig) = 0adfd2e97b6a73b05dc20b7b5edbe836
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0907" version="47.26.02.08" type="" group="ac" size="4142464" md5="0adfd2e97b6a73b05dc20b7b5edbe836">wm220_0907_v47.26.02.08_20170309.pro.fw.sig</module>
<module id="0907" version="47.26.02.08" type="" group="ac" size="4142464" md5="0adfd2e97b6a73b05dc20b7b5edbe836">wm220_0907_v47.26.02.08_20170309.pro.fw.sig</module>
---------
MD5 (wm220_0907_v47.26.02.11_20170419.pro.fw.sig) = 4c393f76d69db509098a561f3fed6c30
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0907" version="47.26.02.11" type="" group="ac" size="4142592" md5="4c393f76d69db509098a561f3fed6c30">wm220_0907_v47.26.02.11_20170419.pro.fw.sig</module>
<module id="0907" version="47.26.02.11" type="" group="ac" size="4142592" md5="4c393f76d69db509098a561f3fed6c30">wm220_0907_v47.26.02.11_20170419.pro.fw.sig</module>
<module id="0907" version="47.26.02.11" type="" group="ac" size="4142592" md5="4c393f76d69db509098a561f3fed6c30">wm220_0907_v47.26.02.11_20170419.pro.fw.sig</module>
---------
MD5 (wm220_0907_v47.26.02.12_20170519.pro.fw.sig) = d5b505aa4f76bdde40e001d80e81186b
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0907" version="47.26.02.12" type="" group="ac" size="4143488" md5="d5b505aa4f76bdde40e001d80e81186b">wm220_0907_v47.26.02.12_20170519.pro.fw.sig</module>
<module id="0907" version="47.26.02.12" type="" group="ac" size="4143488" md5="d5b505aa4f76bdde40e001d80e81186b">wm220_0907_v47.26.02.12_20170519.pro.fw.sig</module>
<module id="0907" version="47.26.02.12" type="" group="ac" size="4143488" md5="d5b505aa4f76bdde40e001d80e81186b">wm220_0907_v47.26.02.12_20170519.pro.fw.sig</module>
---------
MD5 (wm220_0907_v47.26.02.14_20170613.pro.fw.sig) = 81cfd406bf77522b83e20721bac493bd
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="0907" version="47.26.02.14" type="" group="ac" size="4143744" md5="81cfd406bf77522b83e20721bac493bd">wm220_0907_v47.26.02.14_20170613.pro.fw.sig</module>
<module id="0907" version="47.26.02.14" type="" group="ac" size="4143744" md5="81cfd406bf77522b83e20721bac493bd">wm220_0907_v47.26.02.14_20170613.pro.fw.sig</module>
<module id="0907" version="47.26.02.14" type="" group="ac" size="4143744" md5="81cfd406bf77522b83e20721bac493bd">wm220_0907_v47.26.02.14_20170613.pro.fw.sig</module>
---------
MD5 (wm220_1100_v01.00.07.24_20161206.pro.fw.sig) = 25c48c458c4a39d0bb556a3c9085b073
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
<module id="1100" version="01.00.07.24" type="" group="ac" size="28416" md5="25c48c458c4a39d0bb556a3c9085b073">wm220_1100_v01.00.07.24_20161206.pro.fw.sig</module>
---------
MD5 (wm220_1100_v01.00.07.31_20170516.pro.fw.sig) = 10b64526c2a0252718e7862c60a95a34
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="1100" version="01.00.07.31" type="" group="ac" size="28416" md5="10b64526c2a0252718e7862c60a95a34">wm220_1100_v01.00.07.31_20170516.pro.fw.sig</module>
<module id="1100" version="01.00.07.31" type="" group="ac" size="28416" md5="10b64526c2a0252718e7862c60a95a34">wm220_1100_v01.00.07.31_20170516.pro.fw.sig</module>
<module id="1100" version="01.00.07.31" type="" group="ac" size="28416" md5="10b64526c2a0252718e7862c60a95a34">wm220_1100_v01.00.07.31_20170516.pro.fw.sig</module>
<module id="1100" version="01.00.07.31" type="" group="ac" size="28416" md5="10b64526c2a0252718e7862c60a95a34">wm220_1100_v01.00.07.31_20170516.pro.fw.sig</module>
<module id="1100" version="01.00.07.31" type="" group="ac" size="28416" md5="10b64526c2a0252718e7862c60a95a34">wm220_1100_v01.00.07.31_20170516.pro.fw.sig</module>
<module id="1100" version="01.00.07.31" type="" group="ac" size="28416" md5="10b64526c2a0252718e7862c60a95a34">wm220_1100_v01.00.07.31_20170516.pro.fw.sig</module>
---------
MD5 (wm220_1200_v01.08.00.01_20160705.pro.fw.sig) = 10c7d185ddd41b2005bae0fba6aa332a
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="1200" version="01.08.00.01" type="" group="ac" size="20768" md5="10c7d185ddd41b2005bae0fba6aa332a">wm220_1200_v01.08.00.01_20160705.pro.fw.sig</module>
<module id="1200" version="01.08.00.01" type="" group="ac" size="20768" md5="10c7d185ddd41b2005bae0fba6aa332a">wm220_1200_v01.08.00.01_20160705.pro.fw.sig</module>
---------
MD5 (wm220_1200_v01.09.00.00_20161204.pro.fw.sig) = f8b0eb9ce619161a7a356a080d58915e
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1200" version="01.09.00.00" type="" group="ac" size="20768" md5="f8b0eb9ce619161a7a356a080d58915e">wm220_1200_v01.09.00.00_20161204.pro.fw.sig</module>
---------
MD5 (wm220_1201_v01.08.00.01_20160705.pro.fw.sig) = 07f47b970ce7ff20d20f853ab72c6caf
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="1201" version="01.08.00.01" type="" group="ac" size="20768" md5="07f47b970ce7ff20d20f853ab72c6caf">wm220_1201_v01.08.00.01_20160705.pro.fw.sig</module>
<module id="1201" version="01.08.00.01" type="" group="ac" size="20768" md5="07f47b970ce7ff20d20f853ab72c6caf">wm220_1201_v01.08.00.01_20160705.pro.fw.sig</module>
---------
MD5 (wm220_1201_v01.09.00.00_20161204.pro.fw.sig) = e0615c4437c221741cd88ec045750668
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1201" version="01.09.00.00" type="" group="ac" size="20768" md5="e0615c4437c221741cd88ec045750668">wm220_1201_v01.09.00.00_20161204.pro.fw.sig</module>
---------
MD5 (wm220_1202_v01.08.00.01_20160705.pro.fw.sig) = c4bbc87abee6550adae92bc096fe7553
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="1202" version="01.08.00.01" type="" group="ac" size="20768" md5="c4bbc87abee6550adae92bc096fe7553">wm220_1202_v01.08.00.01_20160705.pro.fw.sig</module>
<module id="1202" version="01.08.00.01" type="" group="ac" size="20768" md5="c4bbc87abee6550adae92bc096fe7553">wm220_1202_v01.08.00.01_20160705.pro.fw.sig</module>
---------
MD5 (wm220_1202_v01.09.00.00_20161204.pro.fw.sig) = 38dc6ef9da92998658ae942ecaae8839
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1202" version="01.09.00.00" type="" group="ac" size="20768" md5="38dc6ef9da92998658ae942ecaae8839">wm220_1202_v01.09.00.00_20161204.pro.fw.sig</module>
---------
MD5 (wm220_1203_v01.08.00.01_20160705.pro.fw.sig) = 999ef2b2a2f27829d6b1935fca84eca0
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0200_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="1203" version="01.08.00.01" type="" group="ac" size="20768" md5="999ef2b2a2f27829d6b1935fca84eca0">wm220_1203_v01.08.00.01_20160705.pro.fw.sig</module>
<module id="1203" version="01.08.00.01" type="" group="ac" size="20768" md5="999ef2b2a2f27829d6b1935fca84eca0">wm220_1203_v01.08.00.01_20160705.pro.fw.sig</module>
---------
MD5 (wm220_1203_v01.09.00.00_20161204.pro.fw.sig) = 104466fbeec76684683c9f9233999977
Binary file V01.03.0400_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0400_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0500_Mavic_dji_system/01.03.0500.cfg.sig matches
Binary file V01.03.0550_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0550_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0600_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0600_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0700_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0700_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0700_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0800_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0800_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0800_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
Binary file V01.03.0900_Goggles_dji_system/wm220_gl.cfg.sig matches
Binary file V01.03.0900_Mavic_dji_system/wm220.cfg.sig matches
Binary file V01.03.0900_RC_Mavic_dji_system/wm220_rc.cfg.sig matches
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
<module id="1203" version="01.09.00.00" type="" group="ac" size="20768" md5="104466fbeec76684683c9f9233999977">wm220_1203_v01.09.00.00_20161204.pro.fw.sig</module>
---------
MD5 (wm220_1301_v01.03.12.04_20161222.pro.fw.sig) = 1d2b0e13cd5a13c586907bfc3daf10a3
Binary file V01.03.0200_Mavic_dji_system/wm220.cfg.sig matches