-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAssets.json
4386 lines (4386 loc) · 177 KB
/
Assets.json
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
[
{
"md5": "2e3fc9e83bcdc6ec60b20d38363cefea",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Server.json"
},
{
"md5": "c4446652c8e10d8341db0b8d423d381b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/39.mscv"
},
{
"md5": "71941105f2cbb487d83e39ad74a854d1",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/5.mscv"
},
{
"md5": "392c9bad6489b1edb126770b0e808182",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/15.mscv"
},
{
"md5": "44ecfcec5dad99f68c62aefb1ca86828",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/42.mscv"
},
{
"md5": "47af5fbe5c8d80471cdd65e1cd09b43d",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/54.mscv"
},
{
"md5": "1c93014654078eaa3cbda31074ce2026",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/23.mscv"
},
{
"md5": "066aa18692aa27ce26e786d6c58614c2",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/35.mscv"
},
{
"md5": "6739325554343e969636b9a0e1d32aa0",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/9.mscv"
},
{
"md5": "d1ec19307dfebeb7db4347dfef6926fa",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/19.mscv"
},
{
"md5": "dca4992c2061c13d9772b9f147cf6798",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/18.mscv"
},
{
"md5": "a2b87044b9ef19567896b64e12a8cf01",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/8.mscv"
},
{
"md5": "d42ef694df72b96f212e04d36ad2e413",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/34.mscv"
},
{
"md5": "18cdbc81bf556611b3d6ed923b851f03",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/22.mscv"
},
{
"md5": "d478bb39d29d30825eed2d7608cfbde3",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/55.mscv"
},
{
"md5": "5cbd24ea5cf9e726a4a09df86025ba48",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/43.mscv"
},
{
"md5": "1e594db4c822280f3d689418edae383e",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/14.mscv"
},
{
"md5": "d3ebc9624adb3d269e004d85cf6d834d",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/4.mscv"
},
{
"md5": "77bd6fb45509e58516ffd3029e7ddadc",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/38.mscv"
},
{
"md5": "b0b5d07fde8f06648ed9e1351c899f24",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/25.mscv"
},
{
"md5": "c39be81eda24c1ee7e6b84ad9fa75392",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/33.mscv"
},
{
"md5": "44393d00c2b019ef4f6068dd15c0779b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/48.mscv"
},
{
"md5": "010604689d1746367b8fd0e5d9eb1daf",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/29.mscv"
},
{
"md5": "d0843c088d83cead1b7b4420f1d8e4a0",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/3.mscv"
},
{
"md5": "431aa0060caca56284a02772c12a6139",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/13.mscv"
},
{
"md5": "c2cf51b0ad3017f14dcec9c8cb4536ef",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/44.mscv"
},
{
"md5": "3e5baa6f132cc0dcec395fd113be21f0",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/52.mscv"
},
{
"md5": "efea12c533e8a2a2004e4dd7923572eb",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/53.mscv"
},
{
"md5": "597224c3744c7d4bb8cef4b3829a99a0",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/45.mscv"
},
{
"md5": "45143a719f322a61b44e594f5accfdb9",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/12.mscv"
},
{
"md5": "a9b897509af47afff4a9e4e7828541ed",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/2.mscv"
},
{
"md5": "ca32209a38ff09f1024e6b593a1842e5",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/28.mscv"
},
{
"md5": "579de1938b40f5a7a2cb7c3414d74096",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/49.mscv"
},
{
"md5": "a114543751e2cc35f74935ef00ceb0d5",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/32.mscv"
},
{
"md5": "3c8a6097efad808e9f1bcda3b0f67e38",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/24.mscv"
},
{
"md5": "8d9e2c970e332aa4712db0f8efdde14a",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/31.mscv"
},
{
"md5": "7644e944e1ff81950b7af09eca7592cc",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/27.mscv"
},
{
"md5": "ca4e8173ec585042d8295dd756fe6d9f",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/50.mscv"
},
{
"md5": "a5f5a5a237111d4796fec8213293f783",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/46.mscv"
},
{
"md5": "bd3437a79e1c1e2de6e7c72d285fe8fc",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/11.mscv"
},
{
"md5": "488231bc576f16d105d9f9a2710c05d3",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/1.mscv"
},
{
"md5": "33c86448cb150c485f198924e0c0db78",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/0.mscv"
},
{
"md5": "114b085869bd4dece28f6e959977b0c8",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/10.mscv"
},
{
"md5": "5fffb53362266a2e271cf1c115c512c7",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/47.mscv"
},
{
"md5": "999f8e43234a53691e1a557d218374c6",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/51.mscv"
},
{
"md5": "162fdd4fe85795d31dfb10caac86ec56",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/26.mscv"
},
{
"md5": "a5a7584dacb69e3ce423036885d96ec7",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/30.mscv"
},
{
"md5": "4d8e28d520a9c8693e304ef0a9ef0d9a",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/56.mscv"
},
{
"md5": "b4431a9d178a17b4dc5b2f0da9af4304",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/Vehicle.mscv"
},
{
"md5": "81ae0236d68c1d156b63195e5ee7e1c3",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/40.mscv"
},
{
"md5": "ee075f3c3e3a272db0c5a9e920cf6089",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/17.mscv"
},
{
"md5": "80f623ccf7fc328ad41c4fbdf95d4972",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/7.mscv"
},
{
"md5": "189341a9b0e790ab398e2ea86271407f",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/37.mscv"
},
{
"md5": "b2446c1b511dfe7d80dbdbb9df7e937f",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/21.mscv"
},
{
"md5": "c6b67f9c6b1a18fc92e62e0b88ceb935",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/20.mscv"
},
{
"md5": "88be9e3054184dd5b3e68e3d931cfb35",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/36.mscv"
},
{
"md5": "75a8cf303363c0eb374c688611768580",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/6.mscv"
},
{
"md5": "97a5b242e6820e48252e5b315a17ad7a",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/16.mscv"
},
{
"md5": "6fa399626ff21bf5d9e5d897f4030382",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/se/41.mscv"
},
{
"md5": "bc7378fb01f7378722b3afc6404bda16",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/78.mscv"
},
{
"md5": "806e687274f36c367bc8439376b74a20",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/39.mscv"
},
{
"md5": "a18a8e158aef6595287541232e3d086a",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/81.mscv"
},
{
"md5": "16e7c6a9d86c8b536112d1baad7c5ab6",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/5.mscv"
},
{
"md5": "af39366c04d69e9be3d644f74d3cdc6f",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/15.mscv"
},
{
"md5": "0cf880f18e059319b66a617050c20117",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/42.mscv"
},
{
"md5": "d3a28c5f6cc8fb406c82d320e7e3c45c",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/54.mscv"
},
{
"md5": "98bc371e4b4658aecaaa2d9262cc7e80",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/74.mscv"
},
{
"md5": "add5a66a1c57c5f62fae93db4a76673b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/23.mscv"
},
{
"md5": "5e66a61b7c2a76b8a737d35520b18d0b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/35.mscv"
},
{
"md5": "280412b51f337e5f4143de907a9848c4",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/62.mscv"
},
{
"md5": "5fc27c8988828aa28ba9770b9b8d3d70",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/9.mscv"
},
{
"md5": "155c996abae44a051ffa4d1df7b53369",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/19.mscv"
},
{
"md5": "d09b2553a0c9aab870c58e17dcf5d572",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/58.mscv"
},
{
"md5": "8de0e4b8756b8d2d5bf5887d584e9826",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/59.mscv"
},
{
"md5": "287f0cbdfd030c47a5e09d62ee9763a9",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/18.mscv"
},
{
"md5": "5513e371a91a82b5a9c8b3c57760b792",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/63.mscv"
},
{
"md5": "cd40c19a914680dc821064d7d5d5d668",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/8.mscv"
},
{
"md5": "51b73f2cb638edf85c98cf2913a1f7cc",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/34.mscv"
},
{
"md5": "7445be4ff009ed42097cded49ee1c3cf",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/22.mscv"
},
{
"md5": "a05c70d06cabd08e037577300f7c7409",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/75.mscv"
},
{
"md5": "4b4323b2ae9bd4a93e46243113622234",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/55.mscv"
},
{
"md5": "f77eb69a95f8331d2ceeb41811ea3453",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/43.mscv"
},
{
"md5": "d22a19776409cc491d562298bd4c1cc2",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/14.mscv"
},
{
"md5": "2f296d298fd52d2feb159f4ba1b3cc59",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/4.mscv"
},
{
"md5": "4c2ade163808cbe8a51b3fd8bb5ab91c",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/80.mscv"
},
{
"md5": "8ad4dca4f8878f6f7fa7877c9e8f226e",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/38.mscv"
},
{
"md5": "edfa5ae43064649a4022d2b77fac2bbe",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/79.mscv"
},
{
"md5": "d867a9d0655336d9e609bd90c66a1ae5",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/72.mscv"
},
{
"md5": "7fc754967c47aebf43312508b33cdacc",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/25.mscv"
},
{
"md5": "a37be3ab5f0fd800cb57327f5c4a8177",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/33.mscv"
},
{
"md5": "de64bc9eb5fc5fa20daf666569235988",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/64.mscv"
},
{
"md5": "868d5515a38b58e28990015582d5e335",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/48.mscv"
},
{
"md5": "4df42aef324146989fa73c84e48af39e",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/29.mscv"
},
{
"md5": "2a8e384f9cb8b5a2be8dc34b9ac1dc7d",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/68.mscv"
},
{
"md5": "68b76d83d809c1ef3df8fe2b84057053",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/87.mscv"
},
{
"md5": "fd3d57986bf2a8d6cf75a050de2ff3f3",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/3.mscv"
},
{
"md5": "fc203065e7d2b6e50346051f0ddf385e",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/13.mscv"
},
{
"md5": "605ef79cbb43e583bd93d04088bd4f02",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/44.mscv"
},
{
"md5": "f98cd2d7f824c608929b53deee50b25d",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/52.mscv"
},
{
"md5": "27bd57c98e962eff2ae29fddd921d83d",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/53.mscv"
},
{
"md5": "c132605abb5a79c93821f3bfad8bd99b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/45.mscv"
},
{
"md5": "54d232ed764cc51f36274e7da2e53ece",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/12.mscv"
},
{
"md5": "a13a5f578605290d7e757d09419fbb05",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/69.mscv"
},
{
"md5": "7be22b8560aad56244fcb6e2b44db5cf",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/2.mscv"
},
{
"md5": "d8e431b8e0c3dbc0d95da28ff701cd69",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/86.mscv"
},
{
"md5": "6d49bced92fda06d95e57967b8b5a6d6",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/28.mscv"
},
{
"md5": "ea939facc120e056d1d2399dc9edc3f4",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/90.mscv"
},
{
"md5": "c2eaa1aaefdecd6eb5252c45a925d4e0",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/49.mscv"
},
{
"md5": "ea9d060e5a9134ba6d68b79f73c4a65c",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/65.mscv"
},
{
"md5": "19c6eefb095be84d6b42e025944b5f43",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/32.mscv"
},
{
"md5": "7c676a395b698a17c6e81ae98b72fa21",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/24.mscv"
},
{
"md5": "24730b7406a1f2e00919b59d4b4ae29b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/73.mscv"
},
{
"md5": "646e00a4a8054768d074049fc42fc29c",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/89.mscv"
},
{
"md5": "2a1266ed94b6ef90b4b0395a9dfc0846",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/66.mscv"
},
{
"md5": "fa5383566ffe667aea4b684851f6c97b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/31.mscv"
},
{
"md5": "21726925c6fe0654619be524b5177b53",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/27.mscv"
},
{
"md5": "7f698a38067ff89ab7e9e3755958386d",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/70.mscv"
},
{
"md5": "4896057baf8b38a738d9682008bd054a",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/50.mscv"
},
{
"md5": "df169bb50f7244833b1cc13b56ee2f62",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/46.mscv"
},
{
"md5": "128221c67302f752c78e458e3ba3ac8e",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/11.mscv"
},
{
"md5": "cd803a01304f2dbe04461c0386872e1e",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/1.mscv"
},
{
"md5": "3981214c03e2a37be6ec3cbaf7699cb8",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/85.mscv"
},
{
"md5": "ac6bb8609c1139db967a168dc9080158",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/84.mscv"
},
{
"md5": "bb093dfb36fe2bdeb80de1d58f102add",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/0.mscv"
},
{
"md5": "991cf2ee543892f888a641e31fb1e815",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/10.mscv"
},
{
"md5": "65165a1109758ffa20d4ebd81d24425d",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/47.mscv"
},
{
"md5": "617c0c96167ac160b6278803c8311c47",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/51.mscv"
},
{
"md5": "75f40fd754cc688e150384f6274dfcca",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/71.mscv"
},
{
"md5": "49c674059af2b7dd784fdbc08ce90831",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/26.mscv"
},
{
"md5": "d7a94da180a615a55d6124cb85abcdf5",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/30.mscv"
},
{
"md5": "049b9a3777f64e9bc6e9fc0381c33439",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/88.mscv"
},
{
"md5": "d387b205eb862b6f601a0f523f3f0412",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/67.mscv"
},
{
"md5": "2dee379252eee0f40530ee6875fea1f1",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/56.mscv"
},
{
"md5": "3ead2de804ee1f1b25df264fca325dc4",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/Vehicle.mscv"
},
{
"md5": "6adde0aaf23afa6b1d9558cbd665e75a",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/40.mscv"
},
{
"md5": "6cc6299ae2c5ee66a986257c33979b2b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/17.mscv"
},
{
"md5": "d615527715038c221af9a15604b3f6a7",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/7.mscv"
},
{
"md5": "d8bb70702a68d222e9039bd6747218d0",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/83.mscv"
},
{
"md5": "47f47a1ac0c058d89f346eeccec7d741",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/60.mscv"
},
{
"md5": "318980ccf2ac3c1dd631ae6097d7be23",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/37.mscv"
},
{
"md5": "ef3f93b27b503a57e3594361d93c878a",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/21.mscv"
},
{
"md5": "a1634ad4e30f4ae198a93886711b5898",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/76.mscv"
},
{
"md5": "c7978888169d17e0c632b5ad3a3435d9",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/77.mscv"
},
{
"md5": "34153cbd75a43e559d2e1a32414103f3",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/20.mscv"
},
{
"md5": "64a809c37379747b3c1c3c4af3e80ea7",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/36.mscv"
},
{
"md5": "81ef80a5e122b11942c7bde7d75930f1",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/61.mscv"
},
{
"md5": "0a300f703dceedb126c87ce950e4aa0e",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/82.mscv"
},
{
"md5": "028b4323dc88cc6e41feccde96901e21",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/6.mscv"
},
{
"md5": "9444a67e4e85a037e8e82ec2d6b778ae",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/16.mscv"
},
{
"md5": "6015d362f4e039c3961580f08c4c9c42",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/41.mscv"
},
{
"md5": "710845875f8536d562e99a7085cef392",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/pl/57.mscv"
},
{
"md5": "85e1ed2f20f465b137349c79ac444ae6",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/78.mscv"
},
{
"md5": "8a03e71f312342ebb613f675b4b92461",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/97.mscv"
},
{
"md5": "fcb6c8d0658e8ca9c35f1472e28def02",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/39.mscv"
},
{
"md5": "a4fbc9b5aca5dd02da4581e777783623",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/81.mscv"
},
{
"md5": "5036b15df6a6334042adf514cbc94871",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/5.mscv"
},
{
"md5": "f7bb2087c9d63689211060753d12b185",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/15.mscv"
},
{
"md5": "aef272e1a5d0b81fc31135f64bbe6f30",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/42.mscv"
},
{
"md5": "2aece0e1fee914c6ae5cd92761918840",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/54.mscv"
},
{
"md5": "8590b4440fa10bfbe4e3560814a2dfbb",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/74.mscv"
},
{
"md5": "a247728b8642a39e36d67e31e60f37f5",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/23.mscv"
},
{
"md5": "75313fa37e0b273c7a5508df61061450",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/35.mscv"
},
{
"md5": "c64efd8652eadfb4a3532a03f7f10941",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/62.mscv"
},
{
"md5": "a0a6aa8a2306e5aab08d2e23421c03a4",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/9.mscv"
},
{
"md5": "7d83623c0fa827d4519a3795355a9976",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/19.mscv"
},
{
"md5": "cff1387b4a998add2ed877d65cfd4f2f",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/100.mscv"
},
{
"md5": "92091e696d24a5270f1fd89d7f41f41b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/58.mscv"
},
{
"md5": "43afc20ce4e80cf2fef795fdef94fc63",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/101.mscv"
},
{
"md5": "70c648974a1f0ad1add69559a441f257",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/59.mscv"
},
{
"md5": "857dea105338b4cf463aa7eb3e23f7da",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/18.mscv"
},
{
"md5": "2bb958f83e8106e3f74b0330b3c66e20",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/63.mscv"
},
{
"md5": "4a5ea83a826695f4d4ad25507b9e2c06",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/8.mscv"
},
{
"md5": "2724e3ee7a9fe15bdcfc2c6918dfdc55",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/34.mscv"
},
{
"md5": "a12c2d57c412a75b619263db95d8dfa2",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/22.mscv"
},
{
"md5": "44e341c2ef02fb2d7269cddfc2c7a3e6",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/75.mscv"
},
{
"md5": "27974507dc584f6b5e8e3e79e51ff15b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/55.mscv"
},
{
"md5": "aa15425a16aa21d14a007730c5c2ded0",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/43.mscv"
},
{
"md5": "7fefab2a7a434fc6cd4b3dc5b5183808",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/14.mscv"
},
{
"md5": "3eec0e32130f415fcd114d2319b69b79",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/4.mscv"
},
{
"md5": "51bc9a31ceb0afed71e46772a69ce64b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/80.mscv"
},
{
"md5": "9573030ff7f0621ead9f389e32215505",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/38.mscv"
},
{
"md5": "a111a3f04de8a04077265a2774d289cd",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/79.mscv"
},
{
"md5": "6fd1546597837c11cb11eed287f8cbc4",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/96.mscv"
},
{
"md5": "0d9738aedeba4ad3e7224619b8441ee0",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/72.mscv"
},
{
"md5": "8529b3ff4c48bfe27424683298e7a7bd",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/25.mscv"
},
{
"md5": "9c715104f135412e1b6803d118cf2e94",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/33.mscv"
},
{
"md5": "e1aba5c72eb391abdcf1c8012d5adebe",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/64.mscv"
},
{
"md5": "e5d14eda9607ebe3d2c25f0a255c0d8c",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/48.mscv"
},
{
"md5": "ad1d40d06c9be2397e272a43e0b74313",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/106.mscv"
},
{
"md5": "990e7049a783d637b6e5f686a54782f7",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/91.mscv"
},
{
"md5": "0edff404406127a198ea8324fdf04fc5",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/29.mscv"
},
{
"md5": "6b471d04e37445d768b9b61571ab9fa2",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/68.mscv"
},
{
"md5": "1e5d6ab5ee599fbf7b9dc25ff7f0d2fa",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/87.mscv"
},
{
"md5": "66a508a34614b5603d9ca23df3f753ca",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/3.mscv"
},
{
"md5": "bb54aac3bdfd997d12d7e299a1ca2b73",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/13.mscv"
},
{
"md5": "cfdb6ef53e24a9318b070ac0fb62b7c6",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/44.mscv"
},
{
"md5": "1f611c67894a2f2185671c2e3860e60c",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/52.mscv"
},
{
"md5": "93889fbf5eac0e67a22f6e7c7c1f60eb",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/53.mscv"
},
{
"md5": "0d8891bf8138b38408b8621766b98a51",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/45.mscv"
},
{
"md5": "6fd318444dd9a3b0c198b4dad596802d",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/12.mscv"
},
{
"md5": "eccdf801ff9824d60875c871adc63ae2",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/69.mscv"
},
{
"md5": "c7ab51a4a9466d35dc4884d9fe883faf",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/2.mscv"
},
{
"md5": "cc64d51acb73066cb428eaf2a7458c91",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/86.mscv"
},
{
"md5": "991c29a5c4043c3b346b23ad6126efb4",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/28.mscv"
},
{
"md5": "a345995254f9738479b816e83208e828",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/90.mscv"
},
{
"md5": "10e005b8648200aae1f0f236a9eb3aa3",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/107.mscv"
},
{
"md5": "9a3bc02d4bc441665b578915c620d015",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/49.mscv"
},
{
"md5": "54ed3a1130f0c9cbba2db3cd61e978a5",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/65.mscv"
},
{
"md5": "b9fced96abfaba31e78a031589b09bea",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/32.mscv"
},
{
"md5": "b594e8c7d74f8f7932b698b72bc54363",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/24.mscv"
},
{
"md5": "7a5c9d771f560ab71ad45371bd3cf737",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/73.mscv"
},
{
"md5": "20c64ad497bb98de02033841afcb36fc",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/104.mscv"
},
{
"md5": "24922ab4be298e1818d52e29f6078541",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/89.mscv"
},
{
"md5": "d3a0c42c18a6a53f907a6634432db9f5",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/66.mscv"
},
{
"md5": "3b2b01cbbdc6054adf5b9e23278ab590",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/31.mscv"
},
{
"md5": "1107c7b8d70f854507fd705faa704a11",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/27.mscv"
},
{
"md5": "db31642ca0a78bdd9c5d434e119c9e14",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/70.mscv"
},
{
"md5": "778b07a5d26aa784370cf2ec87f1cbb8",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/50.mscv"
},
{
"md5": "ad37bf48ec960819920712683fc2a1af",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/108.mscv"
},
{
"md5": "d42ed9170db724665e6671024ada0bea",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/46.mscv"
},
{
"md5": "d94e37414ab033389ff4d57588a777a8",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/11.mscv"
},
{
"md5": "24746d90e38c88ea57842c30fe56ff84",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/1.mscv"
},
{
"md5": "b824ade19585cf9740af464dbf21ae47",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/85.mscv"
},
{
"md5": "a3347683de3c2e7e4c3f00eee110a858",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/93.mscv"
},
{
"md5": "3697dab75380b65b51f402ead4ae90eb",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/92.mscv"
},
{
"md5": "10b892cff67c8abbeefa07bb1d1ec51c",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/84.mscv"
},
{
"md5": "b090e93cb19a08c0aa1e2161cc403d99",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/0.mscv"
},
{
"md5": "aa3ae005e403e6848b7e4ab0fe0fe514",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/10.mscv"
},
{
"md5": "ba1ca6884e532aa9635618b006d5dc28",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/47.mscv"
},
{
"md5": "2322ab891f62912b63264f73eedbcf93",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/51.mscv"
},
{
"md5": "cae1231fa555b8c70f1bb735935e30e2",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/109.mscv"
},
{
"md5": "fb566333acbee0a009739b5dd1c5c1c6",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/71.mscv"
},
{
"md5": "d62fff8d50148a5f9910c84ec093144c",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/26.mscv"
},
{
"md5": "fd342f1a7836260546643990bebb329d",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/30.mscv"
},
{
"md5": "a24a12bbdde9f90151a9d1fdb78e5eb8",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/88.mscv"
},
{
"md5": "b43114be94816a85ee9fc4900f7733a8",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/67.mscv"
},
{
"md5": "127720fc4551cacdae829f408aac03b2",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/105.mscv"
},
{
"md5": "a9802c24d8a187b4f8ab1095bf433755",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/56.mscv"
},
{
"md5": "89fa81bdbdb73a96c79cfb77e6edd780",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/Vehicle.mscv"
},
{
"md5": "811511a6ac4b9fc19458541ea1e7cb1e",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/40.mscv"
},
{
"md5": "beba9a100352c446c36980dc41c4f8d3",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/17.mscv"
},
{
"md5": "432e2c2141053c444e98b4f3a9d8b1d1",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/7.mscv"
},
{
"md5": "3acfe1e4bdcb058c9c6e407b86ef3e4c",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/83.mscv"
},
{
"md5": "e0cba3db9ce40cedb0e7cac7c456fb8b",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/95.mscv"
},
{
"md5": "989995a3d89ce1bc21eca3dfc4f24abb",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/102.mscv"
},
{
"md5": "a94e01077a37fa38387a4a34ea56bf33",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/60.mscv"
},
{
"md5": "d26e9433e73a524d9b17490ed0b9cdb4",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/37.mscv"
},
{
"md5": "07f12c06193f283dea25e725d69b0e12",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/21.mscv"
},
{
"md5": "b2f42a4af90f802020c349bcc0696689",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/99.mscv"
},
{
"md5": "cefea82e0d3d50ff1f4de3cfa1bbe6c8",
"url": "https://raw.githubusercontent.com/cfHxqA/Mission-Chief.Bot/master/Assets/Vehicle/us/76.mscv"