-
Notifications
You must be signed in to change notification settings - Fork 259
/
ammunitions.json
4104 lines (4104 loc) · 140 KB
/
ammunitions.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
{
"authors": [
"Bryan BAUMGARTNER, Theotime CHAPIER-MALDAGUE"
],
"category": "firearm",
"description": "Common ammunitions galaxy",
"name": "Ammunitions",
"source": "https://ammo.com/",
"type": "ammunitions",
"uuid": "e7394838-65a9-4b8a-b484-b8c4c7cf49c3",
"values": [
{
"meta": {
"caliber": "22 LR Ammo",
"description": "50 Rounds of 38 Grain CPHP Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 22 LR Ammo"
},
"uuid": "dfa2eeeb-6b66-422d-b146-94ce51de90a1",
"value": "Fiocchi 22 LR Ammo - 50 Rounds of 38 Grain CPHP Ammunition"
},
{
"meta": {
"caliber": "12 Gauge Ammo",
"description": "250 Rounds of 2",
"manufacturer": "Fiocchi",
"name": "Fiocchi 12 Gauge Ammo"
},
"uuid": "129e7ee1-9949-4d86-a27e-623d8e5bdde0",
"value": "Fiocchi 12 Gauge Ammo - 250 Rounds of 2"
},
{
"meta": {
"caliber": "White Rino 12 Gauge Ammo",
"description": "250 Rounds of 2",
"manufacturer": "Fiocchi",
"name": "Fiocchi White Rino 12 Gauge Ammo"
},
"uuid": "8cdd69f1-fc2d-4112-b22c-a0f2a553ebef",
"value": "Fiocchi White Rino 12 Gauge Ammo - 250 Rounds of 2"
},
{
"meta": {
"caliber": "12 Gauge Ammo",
"description": "250 Rounds of 1 oz. #8 Shot (Lead) Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 12 Gauge Ammo"
},
"uuid": "7a6d4f9b-a496-4984-8553-9dc442cbd697",
"value": "Fiocchi 12 Gauge Ammo #8 - 250 Rounds of 1 oz. #8 Shot (Lead) Ammunition"
},
{
"meta": {
"caliber": "12 Gauge Ammo",
"description": "250 Rounds of 1 oz. #7",
"manufacturer": "Fiocchi",
"name": "Fiocchi 12 Gauge Ammo"
},
"uuid": "4ed5d254-5b79-4e75-a3d3-f8b08aba7931",
"value": "Fiocchi 12 Gauge Ammo #7 - 250 Rounds of 1 oz. #7"
},
{
"meta": {
"caliber": "Target Shooting Dynamics 12 Gauge Ammo",
"description": "250 Rounds of 1 oz. #7",
"manufacturer": "Fiocchi",
"name": "Fiocchi Target Shooting Dynamics 12 Gauge Ammo"
},
"uuid": "791dbf51-277c-47e2-bdf8-ae6d2310455e",
"value": "Fiocchi Target Shooting Dynamics 12 Gauge Ammo - 250 Rounds of 1 oz. #7"
},
{
"meta": {
"caliber": "Shooting Dynamics 12 Gauge Ammo",
"description": "250 Rounds of 1 oz. #7",
"manufacturer": "Fiocchi",
"name": "Fiocchi Shooting Dynamics 12 Gauge Ammo"
},
"uuid": "efa6ada4-01f2-4bfb-83b2-236431da42ef",
"value": "Fiocchi Shooting Dynamics 12 Gauge Ammo - 250 Rounds of 1 oz. #7"
},
{
"meta": {
"caliber": "12 ga Ammo",
"description": "250 Rounds of 7/8 oz. #8 Shot (Lead) Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 12 ga Ammo"
},
"uuid": "a47b3aa0-604c-4c27-938b-c9aed2724309",
"value": "Fiocchi 12 ga Ammo - 250 Rounds of 7/8 oz. #8 Shot (Lead) Ammunition"
},
{
"meta": {
"caliber": "Game & Target 12 Gauge Ammo",
"description": "250 Rounds of 1 oz. #7",
"manufacturer": "Fiocchi",
"name": "Fiocchi Game & Target 12 Gauge Ammo"
},
"uuid": "be9c5168-ef28-42b2-afc0-4785ae662692",
"value": "Fiocchi Game & Target 12 Gauge Ammo - 250 Rounds of 1 oz. #7"
},
{
"meta": {
"caliber": "Game and Target 12 Gauge Ammo",
"description": "250 Rounds of 2",
"manufacturer": "Fiocchi",
"name": "Fiocchi Game and Target 12 Gauge Ammo"
},
"uuid": "5a88755e-162b-4530-964d-c90f5bb008e7",
"value": "Fiocchi Game and Target 12 Gauge Ammo - 250 Rounds of 2"
},
{
"meta": {
"caliber": "Shooting Dynamics 12 Gauge Ammo",
"description": "250 Rounds of 1",
"manufacturer": "Fiocchi",
"name": "Fiocchi Shooting Dynamics 12 Gauge Ammo"
},
"uuid": "cc73e325-e63e-4f1d-93e1-6e98e826f259",
"value": "Fiocchi Shooting Dynamics 12 Gauge Ammo - 250 Rounds of 1"
},
{
"meta": {
"caliber": "9mm Ammo",
"description": "50 Rounds of 115 Grain FMJ Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 9mm Ammo"
},
"uuid": "0e3c37e6-e99e-4a99-b077-60e63d001779",
"value": "Fiocchi 9mm Ammo - 50 Rounds of 115 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "22 WMR Ammo",
"description": "50 Rounds of 40 Grain JSP Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 22 WMR Ammo"
},
"uuid": "5238491b-dfcb-4d3d-a3bf-fd549787064a",
"value": "Fiocchi 22 WMR Ammo - 50 Rounds of 40 Grain JSP Ammunition"
},
{
"meta": {
"caliber": "9mm Ammo",
"description": "1000 Rounds of 115 Grain JHP Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 9mm Ammo"
},
"uuid": "91d7bd54-25ca-442a-b299-2d692074490b",
"value": "Fiocchi 9mm Ammo - 1000 Rounds of 115 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "12 Gauge Ammo",
"description": "250 Rounds of 1",
"manufacturer": "Fiocchi",
"name": "Fiocchi 12 Gauge Ammo"
},
"uuid": "38b19e83-e294-4201-8398-9d53de5a743c",
"value": "Fiocchi 12 Gauge Ammo - 250 Rounds of 1"
},
{
"meta": {
"caliber": "20 Gauge Ammo",
"description": "250 Rounds of 7/8 oz. #7",
"manufacturer": "Fiocchi",
"name": "Fiocchi 20 Gauge Ammo"
},
"uuid": "1c117edd-f667-4177-aa4b-4faa02301531",
"value": "Fiocchi 20 Gauge Ammo - 250 Rounds of 7/8 oz. #7"
},
{
"meta": {
"caliber": "32 ACP Ammo",
"description": "1000 Rounds of 73 Grain FMJ Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 32 ACP Ammo"
},
"uuid": "b89a7b36-3397-4062-81e3-5ee227cfae37",
"value": "Fiocchi 32 ACP Ammo - 1000 Rounds of 73 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Crusher 12 Gauge Ammo",
"description": "250 Rounds of 2",
"manufacturer": "Fiocchi",
"name": "Fiocchi Crusher 12 Gauge Ammo"
},
"uuid": "341ff464-cb79-4682-baea-31e772242db9",
"value": "Fiocchi Crusher 12 Gauge Ammo - 250 Rounds of 2"
},
{
"meta": {
"caliber": "9mm Ammo",
"description": "1000 Rounds of 124 Grain JHP Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 9mm Ammo"
},
"uuid": "bd139cdd-1721-48e5-bd74-11fbd45d4b63",
"value": "Fiocchi 9mm Ammo - 1000 Rounds of 124 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "12 Gauge Ammo",
"description": "250 Rounds of 1 oz. #8 Shot (Lead) Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 12 Gauge Ammo"
},
"uuid": "d296737c-a57a-496f-8600-e401447093b3",
"value": "Fiocchi 12 Gauge Ammo - 250 Rounds of 1 oz. #8 Shot (Lead) Ammunition"
},
{
"meta": {
"caliber": "9mm Ammo",
"description": "50 Rounds of 115 Grain JHP Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 9mm Ammo"
},
"uuid": "679942e4-1259-48ae-81b9-21f082dda9f8",
"value": "Fiocchi 9mm Ammo - 50 Rounds of 115 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "38 Special Ammo",
"description": "1000 Rounds of 130 Grain FMJ Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 38 Special Ammo"
},
"uuid": "cbafe0a0-fc7e-4b0d-b9df-adc6d2492162",
"value": "Fiocchi 38 Special Ammo - 1000 Rounds of 130 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "380 ACP Ammo",
"description": "1000 Rounds of 90 Grain JHP Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 380 ACP Ammo"
},
"uuid": "40fcc5e7-4192-4de1-8391-067652f365db",
"value": "Fiocchi 380 ACP Ammo - 1000 Rounds of 90 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "40 cal Ammo",
"description": "1000 Rounds of 180 Grain JHP Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 40 cal Ammo"
},
"uuid": "38654b57-f257-4974-896e-5b88faf19691",
"value": "Fiocchi 40 cal Ammo - 1000 Rounds of 180 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "12 ga Ammo",
"description": "250 Rounds of 1",
"manufacturer": "Fiocchi",
"name": "Fiocchi 12 ga Ammo"
},
"uuid": "8efd68e1-ce0f-49c1-8381-ead7d4b65292",
"value": "Fiocchi 12 ga Ammo - 250 Rounds of 1"
},
{
"meta": {
"caliber": "Steel Dove 12 Gauge Ammo",
"description": "250 Rounds of 1",
"manufacturer": "Fiocchi",
"name": "Fiocchi Steel Dove 12 Gauge Ammo"
},
"uuid": "49dc6f94-a4b9-42f8-b7a5-6ab6ffd923ec",
"value": "Fiocchi Steel Dove 12 Gauge Ammo - 250 Rounds of 1"
},
{
"meta": {
"caliber": "12 ga Ammo",
"description": "25 Rounds of 7/8 oz. #8 Shot (Lead) Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 12 ga Ammo"
},
"uuid": "be867394-f748-4df4-985f-55d508a034eb",
"value": "Fiocchi 12 ga Ammo - 25 Rounds of 7/8 oz. #8 Shot (Lead) Ammunition"
},
{
"meta": {
"caliber": "9mm Makarov Ammo",
"description": "50 Rounds of 95 Grain FMJ Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 9mm Makarov Ammo"
},
"uuid": "9e797fa4-814b-429c-9cd7-2c60f5fe1e05",
"value": "Fiocchi 9mm Makarov Ammo - 50 Rounds of 95 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "28 Gauge Ammo",
"description": "250 Rounds of 3/4 oz. #9 Shot Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 28 Gauge Ammo"
},
"uuid": "127aba60-dcd3-4db4-8070-0aede6b7b268",
"value": "Fiocchi 28 Gauge Ammo - 250 Rounds of 3/4 oz. #9 Shot Ammunition"
},
{
"meta": {
"caliber": "20 Gauge Ammo",
"description": "250 Rounds of 7/8 oz. #8 Shot Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 20 Gauge Ammo"
},
"uuid": "944f2541-31b8-4762-83f3-d55564a82e3c",
"value": "Fiocchi 20 Gauge Ammo - 250 Rounds of 7/8 oz. #8 Shot Ammunition"
},
{
"meta": {
"caliber": "38 Super Ammo",
"description": "50 Rounds of 129 Grain FMJ Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 38 Super Ammo"
},
"uuid": "17ba544b-d30c-4bb8-b961-1efaf313d5c5",
"value": "Fiocchi 38 Super Ammo - 50 Rounds of 129 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Target Shooting Dynamics 12 Gauge Ammo",
"description": "25 Rounds of 1 oz. #7",
"manufacturer": "Fiocchi",
"name": "Fiocchi Target Shooting Dynamics 12 Gauge Ammo"
},
"uuid": "0078326e-c918-4de2-9e17-0ecb659d1a03",
"value": "Fiocchi Target Shooting Dynamics 12 Gauge Ammo - 25 Rounds of 1 oz. #7"
},
{
"meta": {
"caliber": "20 Gauge Ammo",
"description": "25 Rounds of 7/8 oz. #8 Shot (Lead) Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 20 Gauge Ammo"
},
"uuid": "953ca65b-e348-4809-b5a6-4c9c733372d4",
"value": "Fiocchi 20 Gauge Ammo - 25 Rounds of 7/8 oz. #8 Shot (Lead) Ammunition"
},
{
"meta": {
"caliber": "380 ACP Ammo",
"description": "50 Rounds of 90 Grain JHP Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 380 ACP Ammo"
},
"uuid": "d4ab0ed7-a6d5-4513-860f-3fcad993de8e",
"value": "Fiocchi 380 ACP Ammo - 50 Rounds of 90 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "32 ACP Ammo",
"description": "50 Rounds of 73 Grain FMJ Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 32 ACP Ammo"
},
"uuid": "071f8158-7e5e-4dd7-8680-45e50958777f",
"value": "Fiocchi 32 ACP Ammo - 50 Rounds of 73 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "9mm Ammo",
"description": "50 Rounds of 124 Grain JHP Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 9mm Ammo"
},
"uuid": "a9f5bdd6-9fc7-44d0-8c94-45198f035648",
"value": "Fiocchi 9mm Ammo - 50 Rounds of 124 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "16 Gauge Ammo",
"description": "25 Rounds of 1 oz. #8 Shot (Lead) Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 16 Gauge Ammo"
},
"uuid": "cb50e37f-da5d-49bb-a715-363ccd01924a",
"value": "Fiocchi 16 Gauge Ammo - 25 Rounds of 1 oz. #8 Shot (Lead) Ammunition"
},
{
"meta": {
"caliber": "25 ACP Ammo",
"description": "50 Rounds of 50 Grain FMJ Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 25 ACP Ammo"
},
"uuid": "cc690df4-29e7-4085-ab58-a912af40215d",
"value": "Fiocchi 25 ACP Ammo - 50 Rounds of 50 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "38 Special Ammo",
"description": "50 Rounds of 130 Grain FMJ Ammunition",
"manufacturer": "Fiocchi",
"name": "Fiocchi 38 Special Ammo"
},
"uuid": "e5c289e1-cac4-41c5-8fd4-b43a91a2cdec",
"value": "Fiocchi 38 Special Ammo - 50 Rounds of 130 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Partizan 7.62x54r Ammo",
"description": "15 Rounds of 182 Grain FMJ Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 7.62x54r Ammo"
},
"uuid": "eb70631d-6de2-4864-839f-b536cbc4d391",
"value": "Prvi Partizan 7.62x54r Ammo - 15 Rounds of 182 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Partizan 5.56x45 Ammo",
"description": "20 Rounds of 55 Grain FMJBT M193 Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 5.56x45 Ammo"
},
"uuid": "442a2b6c-10f9-474f-b641-25c104ff2d4b",
"value": "Prvi Partizan 5.56x45 Ammo - 20 Rounds of 55 Grain FMJBT M193 Ammunition"
},
{
"meta": {
"caliber": "Partizan 223 Rem Ammo",
"description": "20 Rounds of 75 Grain HPBT Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 223 Rem Ammo"
},
"uuid": "88f38d8d-79e1-4917-886a-f4f285b6d436",
"value": "Prvi Partizan 223 Rem Ammo - 20 Rounds of 75 Grain HPBT Ammunition"
},
{
"meta": {
"caliber": "Partizan 223 Rem Ammo",
"description": "20 Rounds of 55 Grain SP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 223 Rem Ammo"
},
"uuid": "1108201e-ffd4-4f34-bb1d-5f3d6a14dae8",
"value": "Prvi Partizan 223 Rem Ammo - 20 Rounds of 55 Grain SP Ammunition"
},
{
"meta": {
"caliber": "Partizan 7.62x51 Ammo",
"description": "20 Rounds of 145 Grain FMJBT Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 7.62x51 Ammo"
},
"uuid": "a86a2dd3-0cb8-4368-b846-312f979a643d",
"value": "Prvi Partizan 7.62x51 Ammo - 20 Rounds of 145 Grain FMJBT Ammunition"
},
{
"meta": {
"caliber": "Partizan 9mm Ammo",
"description": "50 Rounds of 124 Grain FMJ Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 9mm Ammo"
},
"uuid": "9b27a1bd-186b-4e82-b4c2-6f11d0574cea",
"value": "Prvi Partizan 9mm Ammo - 50 Rounds of 124 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Partizan 308 Win Ammo",
"description": "20 Rounds of 165 Grain PSP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 308 Win Ammo"
},
"uuid": "63e95f09-b35a-419c-bdde-3b85cc69471c",
"value": "Prvi Partizan 308 Win Ammo - 20 Rounds of 165 Grain PSP Ammunition"
},
{
"meta": {
"caliber": "Partizan 243 Win Ammo",
"description": "20 Rounds of 100 Grain SP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 243 Win Ammo"
},
"uuid": "67512a84-29e8-487a-8dad-99ed02488467",
"value": "Prvi Partizan 243 Win Ammo - 20 Rounds of 100 Grain SP Ammunition"
},
{
"meta": {
"caliber": "Partizan 308 Win Ammo",
"description": "20 Rounds of 150 Grain SP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 308 Win Ammo"
},
"uuid": "33ece5e5-28db-4828-9bd4-1a483f8c2d9f",
"value": "Prvi Partizan 308 Win Ammo - 20 Rounds of 150 Grain SP Ammunition"
},
{
"meta": {
"caliber": "Partizan 308 Win Ammo",
"description": "20 Rounds of 180 Grain SP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 308 Win Ammo"
},
"uuid": "7647855e-bdba-443c-ab4b-255170f70667",
"value": "Prvi Partizan 308 Win Ammo - 20 Rounds of 180 Grain SP Ammunition"
},
{
"meta": {
"caliber": "Partizan 308 Win Ammo",
"description": "20 Rounds of 168 Grain HPBT Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 308 Win Ammo"
},
"uuid": "f11bedaf-de12-43d5-b63b-b0c9ef2970f4",
"value": "Prvi Partizan 308 Win Ammo - 20 Rounds of 168 Grain HPBT Ammunition"
},
{
"meta": {
"caliber": "Partizan 38 Super +P Ammo",
"description": "50 Rounds of 130 Grain FMJ Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 38 Super +P Ammo"
},
"uuid": "2b674b96-8804-4bda-8abc-ba60bca7573b",
"value": "Prvi Partizan 38 Super +P Ammo - 50 Rounds of 130 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Partizan 9mm Ammo",
"description": "50 Rounds of 115 Grain JHP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 9mm Ammo"
},
"uuid": "cba7c111-41bb-4165-a2b4-b05e197a83f5",
"value": "Prvi Partizan 9mm Ammo - 50 Rounds of 115 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "Partizan 45 ACP Ammo",
"description": "50 Rounds of 185 Grain JHP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 45 ACP Ammo"
},
"uuid": "f782960c-d857-4de8-aad8-cf54e7565231",
"value": "Prvi Partizan 45 ACP Ammo - 50 Rounds of 185 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "Partizan 9mm Ammo",
"description": "50 Rounds of 147 Grain JHP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 9mm Ammo"
},
"uuid": "874777f3-8eb4-4d57-a66e-99f37b18b815",
"value": "Prvi Partizan 9mm Ammo - 50 Rounds of 147 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "Partizan 30",
"description": "30 Ammo",
"manufacturer": "Prvi",
"name": "Prvi Partizan 30"
},
"uuid": "aff9fcaa-83f3-4ea7-8de9-9f75470f2af0",
"value": "Prvi Partizan 30 - 30 Ammo"
},
{
"meta": {
"caliber": "Partizan 32 ACP Ammo",
"description": "50 Rounds of 71 Grain JHP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 32 ACP Ammo"
},
"uuid": "3e79febb-0c38-4bc6-915c-7f3d43b697f3",
"value": "Prvi Partizan 32 ACP Ammo - 50 Rounds of 71 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "Partizan 375 H&H Magnum Ammo",
"description": "10 Rounds of 300 Grain SP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 375 H&H Magnum Ammo"
},
"uuid": "161940df-a860-485f-b716-dc1ce5ea9342",
"value": "Prvi Partizan 375 H&H Magnum Ammo - 10 Rounds of 300 Grain SP Ammunition"
},
{
"meta": {
"caliber": "Partizan 9.3x62mm Ammo",
"description": "20 Rounds of 285 Grain SP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 9.3x62mm Ammo"
},
"uuid": "9fd839d7-cec0-4d51-95e8-6dd2de203ea3",
"value": "Prvi Partizan 9.3x62mm Ammo - 20 Rounds of 285 Grain SP Ammunition"
},
{
"meta": {
"caliber": "Partizan 25",
"description": "06 Ammo",
"manufacturer": "Prvi",
"name": "Prvi Partizan 25"
},
"uuid": "be59aa0c-0f2a-4210-806e-f8b28a004f0a",
"value": "Prvi Partizan 25 - 06 Ammo"
},
{
"meta": {
"caliber": "Partizan 38 S&W Ammo",
"description": "50 Rounds of 145 Grain LRN Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 38 S&W Ammo"
},
"uuid": "ae61bb17-c181-443f-9668-70a68bb02fa1",
"value": "Prvi Partizan 38 S&W Ammo - 50 Rounds of 145 Grain LRN Ammunition"
},
{
"meta": {
"caliber": "Partizan 357 SIG Ammo",
"description": "50 Rounds of 125 Grain FMJ Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 357 SIG Ammo"
},
"uuid": "2d2833f4-3d2a-4eb8-9abf-76bbc986ef17",
"value": "Prvi Partizan 357 SIG Ammo - 50 Rounds of 125 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Partizan 30 Carbine Ammo",
"description": "50 Rounds of 110 Grain SP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 30 Carbine Ammo"
},
"uuid": "de0490a3-4308-40b6-8d93-c95c1275e493",
"value": "Prvi Partizan 30 Carbine Ammo - 50 Rounds of 110 Grain SP Ammunition"
},
{
"meta": {
"caliber": "Partizan 38 Super +P Ammo",
"description": "500 Rounds of 130 Grain FMJ Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 38 Super +P Ammo"
},
"uuid": "a7459732-ab94-4fd7-ba09-c3507473f207",
"value": "Prvi Partizan 38 Super +P Ammo - 500 Rounds of 130 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Partizan 9mm Ammo",
"description": "1000 Rounds of 124 Grain FMJ Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 9mm Ammo"
},
"uuid": "3fd4c001-f48d-4a28-986b-6a152376f2fe",
"value": "Prvi Partizan 9mm Ammo - 1000 Rounds of 124 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Partizan 5.56x45 Ammo",
"description": "1000 Rounds of 55 Grain FMJBT M193 Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 5.56x45 Ammo"
},
"uuid": "11e7c5b4-9230-44a9-bb5b-3586e183b071",
"value": "Prvi Partizan 5.56x45 Ammo - 1000 Rounds of 55 Grain FMJBT M193 Ammunition"
},
{
"meta": {
"caliber": "Partizan 300 AAC Blackout Ammo",
"description": "500 Rounds of 125 Grain FMJ Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 300 AAC Blackout Ammo"
},
"uuid": "a2cd18b1-5790-4475-b55b-e4fd4c50c58c",
"value": "Prvi Partizan 300 AAC Blackout Ammo - 500 Rounds of 125 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Partizan 9mm Ammo",
"description": "1000 Rounds of 115 Grain JHP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 9mm Ammo"
},
"uuid": "5163c843-dd13-4efe-89a5-2a267ddd767e",
"value": "Prvi Partizan 9mm Ammo - 1000 Rounds of 115 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "Partizan 7.62x39 Ammo",
"description": "840 Rounds of 123 Grain FMJ Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 7.62x39 Ammo"
},
"uuid": "60277133-0b99-434e-ad1b-1d5875d38217",
"value": "Prvi Partizan 7.62x39 Ammo - 840 Rounds of 123 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Partizan 32 ACP Ammo",
"description": "1000 Rounds of 71 Grain FMJ Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 32 ACP Ammo"
},
"uuid": "bb8f52a5-8776-4795-977b-d225d9e721ae",
"value": "Prvi Partizan 32 ACP Ammo - 1000 Rounds of 71 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "Partizan 32 ACP Ammo",
"description": "1000 Rounds of 71 Grain JHP Ammunition",
"manufacturer": "Prvi",
"name": "Prvi Partizan 32 ACP Ammo"
},
"uuid": "293fcb49-1140-4f7c-a86e-ee09ac0fd077",
"value": "Prvi Partizan 32 ACP Ammo - 1000 Rounds of 71 Grain JHP Ammunition"
},
{
"meta": {
"caliber": "22 LR Ammo",
"description": "50 Rounds of 40 Grain CPRN Ammunition",
"manufacturer": "Aguila",
"name": "Aguila 22 LR Ammo"
},
"uuid": "a1daff2a-9f3d-406c-9d5c-07d159f6acfb",
"value": "Aguila 22 LR Ammo - 50 Rounds of 40 Grain CPRN Ammunition"
},
{
"meta": {
"caliber": "SuperExtra 22 LR Ammo",
"description": "50 Rounds of 40 Grain LRN Ammunition",
"manufacturer": "Aguila",
"name": "Aguila SuperExtra 22 LR Ammo"
},
"uuid": "5d71e13c-8b5f-45e7-b63c-d59d1b3fe0d5",
"value": "Aguila SuperExtra 22 LR Ammo - 50 Rounds of 40 Grain LRN Ammunition"
},
{
"meta": {
"caliber": "Super Extra 22 LR Ammo",
"description": "50 Rounds of 38 Grain CPHP Ammunition",
"manufacturer": "Aguila",
"name": "Aguila Super Extra 22 LR Ammo"
},
"uuid": "8bf184a7-8840-46c5-99cd-2fc6c244d5e9",
"value": "Aguila Super Extra 22 LR Ammo - 50 Rounds of 38 Grain CPHP Ammunition"
},
{
"meta": {
"caliber": "Minishell 12 Gauge Ammo",
"description": "20 Rounds of 7/8 oz. Slug Ammunition",
"manufacturer": "Aguila",
"name": "Aguila Minishell 12 Gauge Ammo"
},
"uuid": "41bcfaea-67d2-4b9a-8120-98aa9a0211cb",
"value": "Aguila Minishell 12 Gauge Ammo - 20 Rounds of 7/8 oz. Slug Ammunition"
},
{
"meta": {
"caliber": "6.5 Creedmoor Ammo",
"description": "20 Rounds of 140 Grain FMJBT Ammunition",
"manufacturer": "Aguila",
"name": "Aguila 6.5 Creedmoor Ammo"
},
"uuid": "3f339ce0-2810-4df0-bf0d-f3ab992aade7",
"value": "Aguila 6.5 Creedmoor Ammo - 20 Rounds of 140 Grain FMJBT Ammunition"
},
{
"meta": {
"caliber": "38 Super Ammo",
"description": "50 Rounds of 130 Grain FMJ Ammunition",
"manufacturer": "Aguila",
"name": "Aguila 38 Super Ammo"
},
"uuid": "51fb57ae-a8c8-4274-ac74-92e5341bb2c9",
"value": "Aguila 38 Super Ammo - 50 Rounds of 130 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "32 ACP Ammo",
"description": "50 Rounds of 71 Grain FMJ Ammunition",
"manufacturer": "Aguila",
"name": "Aguila 32 ACP Ammo"
},
"uuid": "d7d21d7f-3a09-45f5-b5c3-64d6490b19bf",
"value": "Aguila 32 ACP Ammo - 50 Rounds of 71 Grain FMJ Ammunition"
},
{
"meta": {
"caliber": "22 LR Ammo",
"description": "250 Rounds of 40 Grain CPRN Ammunition",
"manufacturer": "Aguila",
"name": "Aguila 22 LR Ammo"
},
"uuid": "a10b303a-c447-42f1-89b1-61ae8b59c8f2",
"value": "Aguila 22 LR Ammo - 250 Rounds of 40 Grain CPRN Ammunition"
},
{
"meta": {
"caliber": "22 LR Ammo",
"description": "250 Rounds of 38 Grain CPHP Ammunition",
"manufacturer": "Aguila",
"name": "Aguila 22 LR Ammo"
},
"uuid": "4d0a0197-55de-4f32-ba5c-eb41249f3437",
"value": "Aguila 22 LR Ammo - 250 Rounds of 38 Grain CPHP Ammunition"
},
{
"meta": {
"caliber": "22 LR Ammo",
"description": "500 Rounds of 40 Grain CPRN Ammunition",
"manufacturer": "Aguila",
"name": "Aguila 22 LR Ammo"
},
"uuid": "0137c871-0d09-4b8a-880c-d8bfea297857",
"value": "Aguila 22 LR Ammo - 500 Rounds of 40 Grain CPRN Ammunition"
},
{
"meta": {
"caliber": "22 LR Ammo",
"description": "500 Rounds of 38 Grain CPHP Ammunition",
"manufacturer": "Aguila",
"name": "Aguila 22 LR Ammo"
},
"uuid": "66a8786b-8b6b-4551-afcf-395fb9389601",
"value": "Aguila 22 LR Ammo - 500 Rounds of 38 Grain CPHP Ammunition"
},
{
"meta": {
"caliber": "Super Extra 22 LR Ammo",
"description": "2000 Rounds of 40 Grain CPRN Ammunition",
"manufacturer": "Aguila",
"name": "Aguila Super Extra 22 LR Ammo"
},
"uuid": "da6c05dc-ada1-4c4f-bac2-c58419d2fe61",
"value": "Aguila Super Extra 22 LR Ammo - 2000 Rounds of 40 Grain CPRN Ammunition"
},
{
"meta": {
"caliber": "22 LR Ammo",
"description": "500 Rounds of 40 Grain LRN Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 22 LR Ammo"
},
"uuid": "224860c0-b75d-47df-b1a0-6648efe6efef",
"value": "Magtech 22 LR Ammo - 500 Rounds of 40 Grain LRN Ammunition"
},
{
"meta": {
"caliber": "9mm Ammo",
"description": "1000 Rounds of 115 Grain FMC Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 9mm Ammo"
},
"uuid": "d6f8ff8a-af67-47a3-85da-a9636576dc77",
"value": "Magtech 9mm Ammo - 1000 Rounds of 115 Grain FMC Ammunition"
},
{
"meta": {
"caliber": "9mm Ammo",
"description": "1000 Rounds of 124 Grain FMC Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 9mm Ammo"
},
"uuid": "dc44fe01-41fb-42a5-86d0-6422d077d2cd",
"value": "Magtech 9mm Ammo - 1000 Rounds of 124 Grain FMC Ammunition"
},
{
"meta": {
"caliber": "380 ACP Ammo",
"description": "1000 Rounds of 95 Grain FMC Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 380 ACP Ammo"
},
"uuid": "fbe58f57-9c19-43d7-8399-546adaa456a0",
"value": "Magtech 380 ACP Ammo - 1000 Rounds of 95 Grain FMC Ammunition"
},
{
"meta": {
"caliber": "9mm Ammo",
"description": "50 Rounds of 115 Grain FMC Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 9mm Ammo"
},
"uuid": "8e8856cc-ae99-448d-ba28-2e32f5b07300",
"value": "Magtech 9mm Ammo - 50 Rounds of 115 Grain FMC Ammunition"
},
{
"meta": {
"caliber": "5.56x45 Ammo",
"description": "1000 Rounds of 55 Grain FMJ M193 Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 5.56x45 Ammo"
},
"uuid": "5a488480-4e87-488b-a843-6bba58144ee2",
"value": "Magtech 5.56x45 Ammo - 1000 Rounds of 55 Grain FMJ M193 Ammunition"
},
{
"meta": {
"caliber": "38 Special Ammo",
"description": "1000 Rounds of 158 Grain LRN Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 38 Special Ammo"
},
"uuid": "315c0de4-c074-464a-9c1a-c0b53c6447ee",
"value": "Magtech 38 Special Ammo - 1000 Rounds of 158 Grain LRN Ammunition"
},
{
"meta": {
"caliber": "38 Special Ammo",
"description": "1000 Rounds of 158 Grain FMC Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 38 Special Ammo"
},
"uuid": "4330c7db-c95f-4718-97c7-dadcde5f8bdd",
"value": "Magtech 38 Special Ammo - 1000 Rounds of 158 Grain FMC Ammunition"
},
{
"meta": {
"caliber": "38 Special Ammo",
"description": "50 Rounds of 158 Grain FMC Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 38 Special Ammo"
},
"uuid": "e3247ed8-7384-4f34-8029-72a167b748d3",
"value": "Magtech 38 Special Ammo - 50 Rounds of 158 Grain FMC Ammunition"
},
{
"meta": {
"caliber": "38 Special Ammo",
"description": "50 Rounds of 158 Grain LRN Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 38 Special Ammo"
},
"uuid": "73737084-edbc-4275-a9d9-1987b6deb4d5",
"value": "Magtech 38 Special Ammo - 50 Rounds of 158 Grain LRN Ammunition"
},
{
"meta": {
"caliber": "32 S&W Long Ammo",
"description": "50 Rounds of 98 Grain LWC Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 32 S&W Long Ammo"
},
"uuid": "165fe939-36ca-4f4b-bcf9-2a45d125d6fc",
"value": "Magtech 32 S&W Long Ammo - 50 Rounds of 98 Grain LWC Ammunition"
},
{
"meta": {
"caliber": "500 S&W Magnum Ammo",
"description": "20 Rounds of 325 Grain FMC Ammunition",
"manufacturer": "Magtech",
"name": "Magtech 500 S&W Magnum Ammo"
},
"uuid": "40cdc1f4-f9c8-46ef-88ed-79f718c87540",
"value": "Magtech 500 S&W Magnum Ammo - 20 Rounds of 325 Grain FMC Ammunition"
},
{
"meta": {
"caliber": "22 LR Ammo",
"description": "50 Rounds of 40 Grain LS Ammunition",
"manufacturer": "Armscor",
"name": "Armscor 22 LR Ammo"
},
"uuid": "7a94ef0b-ec89-4779-b91c-32266feed9f0",
"value": "Armscor 22 LR Ammo - 50 Rounds of 40 Grain LS Ammunition"
},
{
"meta": {
"caliber": "223 Rem Ammo",
"description": "20 Rounds of 55 Grain FMJ",
"manufacturer": "Armscor",
"name": "Armscor 223 Rem Ammo"
},
"uuid": "0d90da67-3b77-4bd7-bd23-8d842ef42100",
"value": "Armscor 223 Rem Ammo - 20 Rounds of 55 Grain FMJ"
},
{
"meta": {
"caliber": "223 Rem Ammo",
"description": "20 Rounds of 55 Grain FMJ",
"manufacturer": "Armscor",
"name": "Armscor 223 Rem Ammo"
},
"uuid": "b89b607e-1f8f-47a4-bde4-3559e61e1954",
"value": "Armscor 223 Rem Ammo - 20 Rounds of 55 Grain FMJ"
},
{
"meta": {
"caliber": "22 LR Ammo",
"description": "5000 Rounds of 36 Grain HP Ammunition",
"manufacturer": "Armscor",
"name": "Armscor 22 LR Ammo"
},
"uuid": "d7159afe-f542-47bd-9538-2ba6de9a8b1b",
"value": "Armscor 22 LR Ammo - 5000 Rounds of 36 Grain HP Ammunition"
},
{
"meta": {
"caliber": "22 LR Ammo",
"description": "5000 Rounds of 40 Grain LS Ammunition",
"manufacturer": "Armscor",
"name": "Armscor 22 LR Ammo"
},
"uuid": "fd3ac98e-3a2b-4cb5-928f-7ff559428fb7",
"value": "Armscor 22 LR Ammo - 5000 Rounds of 40 Grain LS Ammunition"