forked from Geemoney24/BattleScribeData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImperial_Guard_5th_Ed.cat
1623 lines (1623 loc) · 247 KB
/
Imperial_Guard_5th_Ed.cat
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
<?xml version="1.0" encoding="UTF-8"?><catalogue xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="46d86dc7-7e37-4d4d-bf76-a4cd651cb7ea" revision="0" gameSystemId="3d1a4963-0629-4025-a90b-76ab3d63c5c5" gameSystemRevision="0" battleScribeVersion="1.11b" name="Imperial Guard 5th Ed (2009)"><entries>
<entry id="11d39336-8257-49aa-bdb5-d23a38d72ccd" name="Armoured Sentinel Squadron" points="0.0" category="Fast Attack" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3aba86a2-f89b-46fa-946a-5e67facb50b7" name="Armoured Sentinel" points="55.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c3b1ee02-6108-4234-9265-fef20fcb91d4" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f46e65b6-9595-4564-8bc7-f5746bed0d82" name="Searchlight" points="1.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6582574d-60b6-432e-a2e2-3bb60e37a15a" name="Camo Netting" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="true"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="83a7dab0-77bc-4ea2-aee0-e8261a234d9e" name="Smoke Launchers" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="true"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="78d018d0-2563-402c-a3e4-39960a03fc9a" name="Weapon" defaultEntryId="dbe95edd-7434-4ae3-8b07-06c5d3a2885d" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="31720bdb-92b6-498f-9abc-b6555cb45cbb" name="Multi-laser" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="37ba5f6e-abe5-4ed0-869f-a1c26d5dddaf" name="Lascannon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8e1e1026-c214-4b38-a6ca-65924c2b242b" name="Missile Launcher" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="375f5063-1077-453f-9947-08bff2d18368" name="Autocannon" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9523b7f9-e9fa-47ac-afa1-6244b3732188" name="Heavy Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b3bfcf3f-ca1a-4d62-8ef6-91b92306561a" name="Plasma Cannon" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles>
<profile name="Sentinel" type="Walker"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="3"/>
<characteristic name="S" value="5"/>
<characteristic name="Front" value="10"/>
<characteristic name="Side" value="10"/>
<characteristic name="Rear" value="10"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="1"/>
</characteristics></profile>
</profiles></entry>
<entry id="0ce9ead5-76b3-4e10-98e1-8e8c9f781afa" name="Commissar Yarrick" points="185.0" category="HQ" type="model" minSelections="0" maxSelections="-1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d9b9617c-100d-46bd-96ff-4afe60f2c4d4" name="Chimera" points="55.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9cf12f1e-7e9d-412f-8afa-77bbd576d212" name="Camo Netting" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="true"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8c70e33d-84cf-4399-a875-74567b5b652f" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7994336f-c41d-4df7-ad11-dce3091452c3" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="773ed591-a916-472d-9329-6a067e33a16f" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="383dd50e-28ba-41ce-a913-e9f638f08eb2" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1a4c1192-f9a7-4a90-929c-375f981188fc" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="0e0dcec2-3d99-4bca-beaa-cff521f35569" name="Turret Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="01c27b3c-63af-4ab4-8182-de058302edf1" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="76fa57d4-93a9-492b-851f-00f606667046" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="238db18a-7b8b-4ab8-9855-835902fc0d3f" name="Multi-laser" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="5d7e74f9-9643-4491-b784-1b30b33b9096" name="Hull Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d56c6d9f-61e9-4f6e-b57c-20525701b596" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="88115b29-a2d3-4c91-b68a-076e462d148a" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Chimera" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="10"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/><rules/><profiles>
<profile name="Commissar Yarrick" type="Infantry"><characteristics>
<characteristic name="WS" value="5"/>
<characteristic name="BS" value="5"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="4"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="3"/>
<characteristic name="LD" value="10"/>
<characteristic name="Save" value="4+"/>
</characteristics></profile>
</profiles></entry>
<entry id="d1817338-3d35-438c-ab3f-757bb07d1c46" name="Company Command Squad" points="50.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5f9bbc53-cae2-44a1-b74a-bdad56a0015a" name="Camo Cloaks" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="aacbe248-b2dd-4cc9-b52e-8c4c66512357" name="Carapace Armour" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2b6daf40-e143-4ac7-aa8f-a44113144f86" name="Krak Grenades" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="88d1b270-4d36-435b-8f09-ea2af891d556" name="Bodyguard" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="d1817338-3d35-438c-ab3f-757bb07d1c46" childId="722f48c4-ab91-4847-9253-881d0b1c6d5d" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles>
<profile name="Bodyguard" type="Infantry"><characteristics>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="2709d4de-d3df-4cf7-8a34-49e373438070" name="Officer of the Fleet" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Regimental Advisor" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="6d33a7f4-f209-4a95-9287-82f9ae3267b2" name="Master of Ordnance" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Regimental Advisor" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="0e8d3337-b085-4969-81b0-f836ca62ba25" name="Astropath" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Regimental Advisor" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="5fcf2b51-ac73-497d-b1a0-5f65c70bbae1" name="Chimera" points="55.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3668e3bb-a3f5-40ad-8615-df4ce49e6cfe" name="Camo Netting" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="true"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="dee6c6e7-faa8-4287-af61-881de960ff6d" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8c381175-5717-483f-b8b8-7630d98f6c19" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b461ab1d-42ae-49ae-b3ee-824022bfe640" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="495c83e5-7916-4e9f-b362-8bada6dbbea4" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c5e9e34b-dcc1-4dd4-bef4-0dda2e1fa40a" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="7168e76e-1919-412d-859f-edefc80ded95" name="Turret Weapon" defaultEntryId="5aee4e7a-9f49-44ca-8582-ae227eb7cfed" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9b8cc264-6635-4e5a-b5bf-bae372646b75" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7883f8fb-e14f-404a-87b4-d121d4ff1d38" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5aee4e7a-9f49-44ca-8582-ae227eb7cfed" name="Multi-laser" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="31dd10eb-0da2-4bcb-902c-04c94bcd4c4f" name="Hull Weapon" defaultEntryId="a05bfd2c-19b9-4b4c-9ca2-efc496f5ca49" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="579c40e3-b1aa-42f6-b5e8-601982b238c8" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a05bfd2c-19b9-4b4c-9ca2-efc496f5ca49" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Chimera" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="10"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
<entry id="4901a35c-7ae3-4c33-9dd3-14681527c937" name="Colour Sergeant Kell" points="85.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Colour Sergeant Kell" type="Infantry"><characteristics>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="2"/>
<characteristic name="I" value="4"/>
<characteristic name="A" value="2"/>
<characteristic name="Ld" value="8"/>
<characteristic name="Sv" value="4+"/>
</characteristics></profile>
</profiles></entry>
<entry id="722f48c4-ab91-4847-9253-881d0b1c6d5d" name="Nork Deddog" points="110.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Nork Deddog" type="Infantry"><characteristics>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="3"/>
<characteristic name="S" value="5"/>
<characteristic name="T" value="5"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="4"/>
<characteristic name="LD" value="8"/>
<characteristic name="Save" value="4+"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups>
<entryGroup id="9b7d3df2-8412-4559-ab55-414e0149909a" name="Veteran Equipment" defaultEntryId="45ced8e5-2e80-4578-a8ab-ceebce6e5e36" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="049aa7f8-35eb-487d-86db-045680ab1ca4" name="Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2118cf28-e797-4cc2-97a0-42717da2b0c9" name="Grenade Launcher" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a0bc8500-f4f5-44fd-8bf1-dd993d3cd259" name="Meltagun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="45ced8e5-2e80-4578-a8ab-ceebce6e5e36" name="Lasgun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b8a145db-2832-421b-a4d1-8b8df27ff083" name="Sniper Rifle" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="25826c9f-4633-4256-9956-3ba81a126806" name="Plasma Gun" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="55211490-1c27-4f0d-a8a6-69188b64ec76" name="Laspistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d8b1bc05-3639-4cc4-b9e3-a67f887520e4" name="Regimental Standard" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="d1817338-3d35-438c-ab3f-757bb07d1c46" childId="4901a35c-7ae3-4c33-9dd3-14681527c937" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="f10cfe4a-5cdf-410e-b52b-fd911a1ea797" name="Medi Pack" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4320cf18-c194-4deb-a463-4e67bc357979" name="Vox Caster" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8575dbfe-3062-4b28-9a56-dd1e957b3cd8" name="Heavy Flamer" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="c4f5a041-6afc-474f-9f99-f5febd9ea7d7" name="Heavy Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="89c993e6-9ee9-42f5-a1c5-012f8186ffb8" name="Lascannon" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="618d11e1-55d4-4d07-8e22-cbff984cdc60" name="Missile Launcher" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="248e0ac6-f601-4fab-90a5-cac482eccd81" name="Heavy Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b8312310-69bd-4f31-a754-c7d7830935d3" name="Mortar" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5c31f5fc-2b12-4815-89f9-4cd14fc8aeee" name="Autocannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="d1817338-3d35-438c-ab3f-757bb07d1c46" childId="9b7d3df2-8412-4559-ab55-414e0149909a" field="selections" type="at most" value="2.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="82859216-9235-42c7-90da-af8ca7d3051b" name="Commander" defaultEntryId="891a12b7-0ed5-4055-b7b8-c5327eb3f76f" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="891a12b7-0ed5-4055-b7b8-c5327eb3f76f" name="Company Commander" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e6b92d64-9b25-46db-b6cc-8e88e53676c5" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="a9461437-a1f7-4c0e-bbac-10d49a308e81" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="06fa108e-8269-481e-ae45-6d365c522786" name="Plasma Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5cbff686-a879-4aae-b1a4-1c4d9bbbc67b" name="Power Fist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d9d2752b-a3c8-4d0c-8770-60395981a5eb" name="Laspistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="15b2e09e-992e-4e9a-b6ba-48d130aec02b" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="73b0cc44-d812-4527-8e26-0f28255a519f" name="Power Weapon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b021a241-a78d-4281-81a6-107416a4da46" name="Boltgun" points="2.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="97d653a7-3f79-4a19-b23f-0b5db51f8f26" name="Bolt Pistol" points="2.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Company Commander" type="Infantry"><characteristics>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="3"/>
<characteristic name="LD" value="9"/>
<characteristic name="Save" value="5+ (5++)"/>
</characteristics></profile>
</profiles></entry>
<entry id="3324a6a3-0054-43f8-9dc4-b5df89964c6a" name="Colonel 'Iron Hand' Straken" points="95.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Colonel Straken" type="Infantry"><characteristics>
<characteristic name="WS" value="5"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="6"/>
<characteristic name="T" value="4"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="3"/>
<characteristic name="LD" value="9"/>
<characteristic name="Save" value="3+ (5++)"/>
</characteristics></profile>
</profiles></entry>
<entry id="47da2d55-e296-40ce-85a6-8c35153c7b72" name="Lord Castellan Creed" points="90.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Lord Castellan Creed" type="Infantry"><characteristics>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="3"/>
<characteristic name="LD" value="10"/>
<characteristic name="Save" value="4+ (5++)"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Veteran" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
<profile name="Veteran Weapons Team" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="2"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="c05f38cb-2991-4d5d-896f-e146c7d76485" name="Deathstrike Missile Launcher" points="160.0" category="Heavy Support" type="upgrade" minSelections="1" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="28df1d6a-9c01-4621-9ad8-1d6055f9218c" name="Camo Netting" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c7a86437-fa26-4434-843f-7d18a873c0f4" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3a5064d1-0c9a-4c60-be60-13e2ded95e6e" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fe081420-27be-46a1-9a4f-6ab2ddcdf8f4" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="753870a3-7785-4d0e-8c90-d03d5f2a633f" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bd036566-019c-471a-a7cc-24ef5c1b44ba" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="4b133ea5-017f-411c-98fc-5843dd257b0a" name="Hull Weapon" defaultEntryId="c12c58ae-bd7f-4628-9d29-c2c53abbb55b" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="86caa73c-fb93-44eb-913f-da4af5cf6d6f" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c12c58ae-bd7f-4628-9d29-c2c53abbb55b" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Deathstrike" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="12"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
<entry id="e512bba5-59c5-45b7-95f6-f39f1c0e5951" name="Guardsman Marbo" points="65.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Marbo" type="Infantry"><characteristics>
<characteristic name="WS" value="5"/>
<characteristic name="BS" value="5"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="2"/>
<characteristic name="I" value="5"/>
<characteristic name="A" value="4"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="34f46a3b-e8af-422f-8207-e62f0a05b4a0" name="Hellhound Squadron" points="0.0" category="Fast Attack" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="98257644-5806-49fa-b440-8bd9a81506d2" name="Squadron Camo Netting" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="57209c46-2fd8-4d13-9cd8-fb4f2b1a1eae" name="Camo Netting" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="increment" field="minSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="34f46a3b-e8af-422f-8207-e62f0a05b4a0" incrementChildId="edcc41fc-3a55-4c0a-b9bd-8e98ac51a9f8" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
<modifier type="increment" field="maxSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="34f46a3b-e8af-422f-8207-e62f0a05b4a0" incrementChildId="edcc41fc-3a55-4c0a-b9bd-8e98ac51a9f8" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2e87d9f7-6c35-4dbc-94da-52326eb236c7" name="Squadron Smoke Launchers" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3b87eaba-7a18-4335-b042-aa99df620f1e" name="Smoke Launcher" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="increment" field="minSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="34f46a3b-e8af-422f-8207-e62f0a05b4a0" incrementChildId="edcc41fc-3a55-4c0a-b9bd-8e98ac51a9f8" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
<modifier type="increment" field="maxSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="34f46a3b-e8af-422f-8207-e62f0a05b4a0" incrementChildId="edcc41fc-3a55-4c0a-b9bd-8e98ac51a9f8" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="edcc41fc-3a55-4c0a-b9bd-8e98ac51a9f8" name="Hellhounds" minSelections="1" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="40a69192-a25e-49bb-a3c0-cb9dec8f0c12" name="Hellhound" points="130.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c83a9192-c567-4435-bf08-52cd0cbbe6cc" name="Searchlight" points="1.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0ea6655c-b3ef-4dad-8cfa-8f14e5cc4861" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="77217c8b-4572-457c-814a-345e586fc365" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="86ea0413-5b6a-4d5f-b89c-05425648b588" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1c2fa2a0-b3e9-461e-92f3-e150e50c5da0" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="db17d2ee-34d4-4095-b452-c2469621582b" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="4bf57fdb-5f4f-4146-a81c-f36dfed26bc9" name="Hull Weapon" defaultEntryId="930a6272-4a4d-4c4c-9a3d-926222b60cdb" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2aa9a2ac-aab0-47ac-97ae-8e5ecc841012" name="Multi-melta" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="99663302-1501-495b-a1f7-6509dc7792fe" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="930a6272-4a4d-4c4c-9a3d-926222b60cdb" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="07758161-4b3d-4451-bc33-af93f6d121a6" name="Devil Dog" points="120.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ed80358c-6436-4dac-8c4f-dba8f7ad2775" name="Searchlight" points="1.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="671b5d1f-0be1-4715-b90a-1264be5350e4" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7073af16-7ab4-4b00-b2dc-cf6a5927724f" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="001451d1-73ba-4af9-b547-04522f5abebe" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="45d93071-a4d3-4330-99f7-bddf807d1836" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6e3c9a62-f12d-4c4f-84f9-13d93ba6f646" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="de20301a-0937-4588-9d50-53e2783fe899" name="Hull Weapon" defaultEntryId="930a6272-4a4d-4c4c-9a3d-926222b60cdb" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="abad1cac-f039-464f-b91a-af47cbcaf6af" name="Multi-melta" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e6a67d2b-826a-4371-bf8c-8a4b15df1343" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="10a73255-67ee-4447-be49-805e4ff552c3" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="4baf0cc5-66a7-490f-bc89-2e05d1fe023b" name="Bane Wolf" points="130.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0a1b332c-688d-4b0a-86da-0ec78436a478" name="Searchlight" points="1.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d2cce1e0-4170-4346-90d6-8d03548c2290" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0654a84e-a438-46cb-ac3a-8c915f5d6379" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b121613a-4582-4030-8c4d-cdac2fb10c1c" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8b455717-ddeb-4039-8522-e19de495e74a" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cf8b2173-bd2f-4449-b24a-811d682e606d" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="5aa0bdbe-a41e-487e-bdb3-4c83f6663499" name="Hull Weapon" defaultEntryId="5e9dc270-6d9b-4749-9002-801bbf82686c" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0fd946e6-ee8f-405b-a155-547e97e41eb7" name="Multi-melta" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2f517647-4f5d-4f5c-b8d8-b89eaedd542e" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5e9dc270-6d9b-4749-9002-801bbf82686c" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Hellhound" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="12"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
<entry id="4b397be9-043d-42ff-a5e8-ea6d4e7da80c" name="Hydra Flack Battery" points="0.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e5a11034-2ecb-410b-8c5f-4ee708d52fd1" name="Hydra Flack Tank" points="75.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9f32b78e-281c-4244-b9ac-ca07f8bdf701" name="Camo Netting" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="true"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="82616294-1c2c-4994-8946-8114f917b27e" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8c0e8803-9952-41f1-9d8b-23a40486cf89" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="23e32685-746a-4682-a7e8-b8299f95df3a" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="811f221d-135d-48d6-93db-4eaa23406da6" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4a7ed97a-2ad6-4acf-814a-c2dcd4c2af5e" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="8b155169-173b-47a7-800b-da2af5b8473a" name="Hull Weapon" defaultEntryId="fb43619f-be09-4e33-adcb-6ec4d1e74acc" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="81ee0b56-7660-4496-9f96-982c58fc653e" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fb43619f-be09-4e33-adcb-6ec4d1e74acc" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles>
<profile name="Hydra" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="10"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
<entry id="c4442c3b-06ef-4c1d-b3e7-8888f477ccbe" name="Infantry Platoon" points="0.0" category="Troops" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="84acb70a-006b-4bad-aa58-15ff8cd713dd" name="Infantry Squad" points="50.0" category="(No Category)" type="upgrade" minSelections="2" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d78e6a46-c2ab-4cf9-9859-b650eebe781e" name="Sergeant" points="0.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e88886c2-c6fe-4448-a2de-0df984a8c343" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="2cbee0f4-d5ba-43ce-9b91-268029e4593a" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2e1d3b19-7b2a-422c-9b95-97675ea95721" name="Plasma Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="30948ff1-128f-4fec-9c0f-0a4a7694e1cf" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b017378a-dc3a-4c57-9a97-3b593816f000" name="Power Weapon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ef326478-5df1-42bd-87e8-d98f6746b916" name="Bolt Pistol" points="2.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="02f3c506-b71a-4672-908b-cc827b85ec0e" name="Laspistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Infantry Sergeant" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="3"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="Ld" value="8"/>
<characteristic name="Sv" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="536db5a5-0d4b-4507-a146-3d7a4dca67af" name="Commissar" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="ed8ba678-90b9-4e55-a927-39a0ca9c5589" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4a0eeb85-4f44-4035-8f17-63b31fee5602" name="Plasma Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="03e2a766-5ca1-4497-924f-da15651e6dcd" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="876524e3-9854-4518-a8fd-5e6d4b44378c" name="Power Weapon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e68c5d93-04c8-4d53-9614-cca2bfc65421" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Commissar" type="Infantry"><characteristics>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="9"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="4a8ff2c5-b09e-4c62-98fd-eeead7334d77" name="Vox Caster" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="beac8600-26a0-4e7b-8020-315ae9f2a50a" name="Chimera" points="55.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="087a5841-79bf-4cd0-bd4d-05ec8010dc76" name="Camo Netting" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="true"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0e266bcf-84f5-4028-82d2-875817f7a4dd" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="aeff4d64-7f60-43fc-8baf-c57bce34d993" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="caedf217-27f0-45d9-9c19-21bca3e1b8e2" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3abb17b3-a14c-4c43-a942-6be3ea272b65" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5e3eec11-7c2d-4d06-97d4-043491c59f0e" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="41472490-8844-48ef-a0fc-bce3acd5586b" name="Turret Weapon" defaultEntryId="b803758e-9822-4a65-b745-ef0e4548e140" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e597a8c1-4c92-4350-aaea-f37d13f996f0" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2452fc38-110d-4f60-835d-5df607c7c402" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b803758e-9822-4a65-b745-ef0e4548e140" name="Multi-laser" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="a12b0494-5702-4e35-a7a2-78f5880e3994" name="Hull Weapon" defaultEntryId="1e645b46-892e-432c-864e-d6827e621262" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a38197ba-e93f-44bc-bebb-be1ff75bf058" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1e645b46-892e-432c-864e-d6827e621262" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Chimera" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="10"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups>
<entryGroup id="e9478c06-1e58-4471-8c20-f2192a8672ba" name="Heavy Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="909ab7a7-b037-4b3a-b88b-6063c9fb9c41" name="Lascannon" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cdffae9c-e8ea-406f-877a-59a63891dcea" name="Missile Launcher" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f1f31aae-a297-4154-b87f-29dcb07e2816" name="Heavy Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fa954283-a3aa-4135-be05-eb73af080f43" name="Mortar" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ba4ed762-3d43-44de-a1b8-9cedf4bf79c6" name="Autocannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="a9b38ef8-1762-4496-98ed-5b91617b4f7f" name="Special Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3453fbfb-af07-4473-9d11-68c150940d6b" name="Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="613340a6-e37a-4b61-a571-fe34ea3638be" name="Grenade Launcher" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ceaf5829-fe43-4aac-ad44-0505ce5d7c78" name="Meltagun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4f995e69-3704-43f8-a220-5070f5919d8d" name="Sniper Rifle" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6e5ca236-3239-4834-a12b-cd0f7cb0e8ce" name="Plasma Gun" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Guardsman" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="3"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
<profile name="Infantry Weapons Team" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="3"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="2"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="7e637272-47f4-4b83-a93c-bc4efd25437b" name="Conscripts" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6f0b217d-8c42-46c2-89b1-8db2271dfafc" name="Conscript" points="4.0" category="(No Category)" type="upgrade" minSelections="20" maxSelections="50" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Conscript" type="Infantry"><characteristics>
<characteristic name="WS" value="2"/>
<characteristic name="BS" value="2"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="5"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="369904cb-f5ac-4db3-8021-bc2023ba0a03" name="Send in the Next Wave!" points="75.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="0" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="set" field="maxInRoster" value="1.0" repeat="true" numRepeats="1" incrementParentId="c4442c3b-06ef-4c1d-b3e7-8888f477ccbe" incrementChildId="7abcaa60-0419-4209-9717-7a359e9c7bd2" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9db9d627-e0f1-48b9-92f3-c9156b1bb5c7" name="Special Weapon Squad" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="89d204c7-f459-4d7b-9edb-85f48da83586" name="Special Weapon" minSelections="3" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e1a72351-7888-4367-8c97-d2f4963cc527" name="Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6a640376-8664-483f-aa53-19339f3af602" name="Grenade Launcher" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="aa0e11cc-559f-43cd-be03-f8740079cdc1" name="Meltagun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ddde95bd-f152-4315-a2e7-2ea347b0f6ec" name="Sniper Rifle" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a22cc151-d070-40d9-b95e-f830ee737d2a" name="Plasma Gun" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Guardsman" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="3"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="7a9edb99-5389-46ae-967e-efd1022c9409" name="Heavy Weapons Squad" points="60.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="1ae2d78f-136e-44d8-8858-06bc6fb18d11" name="Heavy Weapon" defaultEntryId="6f169624-4ce0-4572-be22-3fbdd1b253eb" minSelections="3" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="199883f1-047e-463d-b896-e3346743a4ed" name="Lascannon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0b62c26a-e91e-4205-8b26-dc93fa17e41e" name="Missile Launcher" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ddde7212-59f5-43f0-8dae-75947e298daa" name="Heavy Bolter" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6f169624-4ce0-4572-be22-3fbdd1b253eb" name="Mortar" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5c3cfadb-bc32-4fb3-96cf-b78ac82f36d6" name="Autocannon" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Infantry Weapons Team" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="3"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="2"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="06529e0a-337b-4d58-9367-2d5529bba4cf" name="Platoon Command Squad" points="30.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1fe7ea6a-e24b-4fbf-9d90-d52c47979350" name="Commissar" points="35.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="08683927-6661-4f1d-8170-b570c3011b99" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3fc335d9-a6a8-475a-a839-63ae6ce6ff39" name="Plasma Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d4015b55-7975-468c-a210-b53e9ef6f197" name="Power Fist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7ae71af0-ae83-4673-8b13-650a7372d727" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b8bce20d-4ea6-473c-9102-406df306bc4e" name="Power Weapon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b8d96d93-f14c-4791-938d-560f1887a27f" name="Boltgun" points="2.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bad66e30-92ca-4afd-bc1c-23df04831a8c" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Commissar" type="Infantry"><characteristics>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="9"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="3805bacc-fc21-4a27-8a35-a5ba415118fd" name="Krak Grenades" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5d834226-8c4e-414e-949e-1a4dd81daa71" name="Chimera" points="55.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e83833e9-6767-41be-b710-126e3e7e4df0" name="Camo Netting" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="true"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0d6092fc-3634-4303-a6de-daa44daa10ff" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="40e312aa-08ea-4ccc-8698-adbffd27dca3" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="73207b69-f13b-430a-9302-5e9e0a8459ca" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b661ef2c-605a-4717-b01d-fc7da42056f4" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8e197665-631f-49c4-bb7f-8f59b5e6e83d" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="b520e1c7-d018-4364-98a4-f5c076dceccc" name="Turret Weapon" defaultEntryId="bf440bad-1fff-484b-86b9-4345e958f327" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3b09c29c-882c-4a8c-9dbd-06c511c4decd" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1a9a44e5-e28a-4ca4-af45-5c42ac5d101b" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="bf440bad-1fff-484b-86b9-4345e958f327" name="Multi-laser" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="fd8927e6-74e2-4834-9aaa-e91685425559" name="Hull Weapon" defaultEntryId="1d600aad-bb12-40d6-9933-6044aa97f277" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ef64174c-8496-4397-9221-58b5d6bdbd61" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1d600aad-bb12-40d6-9933-6044aa97f277" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Chimera" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="10"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups>
<entryGroup id="a2a1af7a-9874-4ffe-a2d0-aa6909e66932" name="Guardsman Equipment" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2d66aa51-a2d2-4532-8b65-e1f9993ede21" name="Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1518df0b-161d-40f9-bdd5-f65ff08e02d9" name="Grenade Launcher" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="37e0d046-599e-4c06-92a1-364b2efdfab3" name="Meltagun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f17fd9d8-96e9-4ee6-8620-dd7169eb08ea" name="Lasgun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b3f74b03-6194-4649-a1fe-7e9063330d65" name="Sniper Rifle" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="28059a0e-2b72-492c-a587-e3cda91058b4" name="Plasma Gun" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="01467d77-65b4-46d4-98f8-9fceb08af89e" name="Laspistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="56026630-6b43-4c8b-aed1-65f09129c331" name="Platoon Standard" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="87aece82-7db9-44d1-be44-ea4ef80cf117" name="Medi Pack" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cde79c27-447a-449d-9bfe-119db246cf81" name="Vox Caster" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7d3e8fdf-5b85-4141-8b7e-fcd465e45dd2" name="Heavy Flamer" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="bf93aa6a-1fba-4fc3-9654-74ddcfbb8254" name="Commander" defaultEntryId="e22569ff-5a00-4663-b2b1-33e6b2dda00d" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e22569ff-5a00-4663-b2b1-33e6b2dda00d" name="Platoon Commander" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a433bb1b-b34d-4248-bda5-f32019468728" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="0f43cd67-1215-4b49-a849-74e2b26492b4" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5fd6e967-fbe3-4bde-9586-c30de45c8718" name="Plasma Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8f83e9a9-6989-4483-8789-b8f01869f658" name="Power Fist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b0c83f06-ea85-4444-8a30-24d0eb9daee4" name="Laspistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="30e14ab4-5b1e-4839-9b0b-10c26138fbd5" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c65aeb45-d364-4ded-a30f-3e3414ad2f2d" name="Power Weapon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="648b0e09-44fa-4b83-8e2f-1674d9f7bd1a" name="Boltgun" points="2.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4abe0014-10b4-466a-983b-aec20566dc38" name="Bolt Pistol" points="2.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Platoon Commander" type="Infantry"><characteristics>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="8"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
<entry id="7abcaa60-0419-4209-9717-7a359e9c7bd2" name="Commander Chenkov" points="50.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Commander Chenkov" type="Infantry"><characteristics>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="2"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="9"/>
<characteristic name="Save" value="4+"/>
</characteristics></profile>
</profiles></entry>
<entry id="46d3268c-899a-40b0-aad8-7866b6e1af71" name="Captain Al'Rahem" points="70.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles>
<profile name="Captain Al'Rahem" type="Infantry"><characteristics>
<characteristic name="WS" value="4"/>
<characteristic name="BS" value="4"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="2"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="9"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="b74d22db-a962-4ca3-91c8-ae2f33375a71" name="Heavy Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="46f560f6-d0b7-4008-a1e9-06f318ff5565" name="Lascannon" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="34568d6e-5743-4fb5-a2c1-ffff3c70c7b9" name="Missile Launcher" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a7e56a30-8afa-4edd-bb1e-2b80f3a5b819" name="Heavy Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="949ca86e-4b59-4f9d-ab2c-bee58c288651" name="Mortar" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d50319e4-9319-437b-abf3-34e775998212" name="Autocannon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers>
<modifier type="set" field="maxSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="06529e0a-337b-4d58-9367-2d5529bba4cf" childId="a2a1af7a-9874-4ffe-a2d0-aa6909e66932" field="selections" type="at most" value="2.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Guardsman" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="3"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="1"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="1"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
<profile name="Infantry Weapons Team" type="Infantry"><characteristics>
<characteristic name="WS" value="3"/>
<characteristic name="BS" value="3"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="2"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="2"/>
<characteristic name="LD" value="7"/>
<characteristic name="Save" value="5+"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c6a00f1b-3435-4010-a416-d0548693d66e" name="Leman Russ Squadron" points="0.0" category="Heavy Support" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="44a30bf0-0456-435e-a6d0-a52b48fe60a5" name="Squadron Camo Netting" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="028b2deb-861a-4c89-8603-f7965a6f0a7a" name="Camo Netting" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers>
<modifier type="increment" field="minSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="c6a00f1b-3435-4010-a416-d0548693d66e" incrementChildId="ac0cf5ab-961f-4eb2-a7d2-2e77f74444aa" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
<modifier type="increment" field="maxSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="c6a00f1b-3435-4010-a416-d0548693d66e" incrementChildId="ac0cf5ab-961f-4eb2-a7d2-2e77f74444aa" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="ac0cf5ab-961f-4eb2-a7d2-2e77f74444aa" name="Leman Russ" minSelections="1" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="efc7c30b-c29d-4aaf-bf89-f23f8157f23d" name="Leman Russ" points="150.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="95ddee45-0b37-4506-aa2d-0c6a0da8699b" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0f1b47b9-0c8e-42ed-a973-654ea09bfb8b" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f5c33e7a-b6c9-479c-a468-84487dc81582" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="66b7eed5-33c9-4fa9-8aba-1584552aca40" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4ecdcac0-c995-4631-b61f-86116ae11f60" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="71ff814f-aa77-410f-9918-2b55404d36cc" name="Knight Commander Pask" points="50.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="222beaff-e9df-4577-b357-b84150ec31cb" name="Hull Weapon" defaultEntryId="f88a2918-63b8-40ea-9fdc-862792ead5ac" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e875f356-5397-4dc9-9980-839fc83e51db" name="Lascannon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7d682fc9-5ec9-4d7c-808b-446c1b745c31" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f88a2918-63b8-40ea-9fdc-862792ead5ac" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="639b7383-61fb-4cc1-bdd4-349b3dc6519c" name="Sponson Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2a6c8208-3e5d-4f08-b2c9-8b1e4a1e82d7" name="Plasma Cannons" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cb1eb311-e61c-420c-a5d9-2d239121e958" name="Multi-meltas" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="018dea6d-c944-41b6-b535-5d6e7d933d2e" name="Heavy Flamers" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="98c9bcc6-0131-4193-b87c-9cf6a7418756" name="Heavy Bolters" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Leman Russ Battle Tank" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="14"/>
<characteristic name="Side" value="13"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
<entry id="a48bab74-016d-4598-be5c-2b578695d4fc" name="Leman Russ Demolisher" points="165.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="68115f8d-aa97-44b3-9aea-ae66cf7144e2" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c28c3eac-6123-47aa-a37e-339952a8f426" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a7cb7e2e-10be-4c51-b909-85c192737d75" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="733f9459-57cc-4e4f-9f24-93ca3db750a4" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b9a94113-a5b7-4cfa-a5da-b143124aa396" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="54148256-702f-41d0-8c1f-2013c7653e8d" name="Knight Commander Pask" points="50.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="18a24ed5-5400-4e5a-831b-e07ff3f4aa71" name="Hull Weapon" defaultEntryId="4f519909-aaa4-4de0-8dea-b0f7a2a63472" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4ce245cd-07be-4d4b-8ad2-66e4bd770347" name="Lascannon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4799c74c-34ba-4e17-a416-0e0c3bdd6806" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4f519909-aaa4-4de0-8dea-b0f7a2a63472" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="80167ab2-11bd-419a-b5b1-296e0ba1337a" name="Sponson Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e4b78b2e-5654-4543-9483-1b02ac715d8a" name="Plasma Cannons" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c1ee7e51-cc40-4dde-9f65-2739c28287fa" name="Multi-meltas" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e1ca2b12-29fb-4a96-ae52-c222bdd991f9" name="Heavy Flamers" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ac4267a9-0dbc-4c70-8785-ded69fd717df" name="Heavy Bolters" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Leman Russ Demolisher" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="14"/>
<characteristic name="Side" value="13"/>
<characteristic name="Rear" value="11"/>
</characteristics></profile>
</profiles></entry>
<entry id="fefca9ff-1135-450d-88ce-91637fc2443a" name="Leman Russ Eradicator" points="160.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d9fd2c27-7466-4a3a-93ed-169f19553644" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="aa05c2b2-6d17-4d49-bfbb-44727ea40188" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="28166591-1b2c-44e4-9962-bcbda77c4d8d" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="13fdf204-70f4-4744-bb1a-554daec4fbd5" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="88efe18b-34ad-4c62-a053-a375bad67997" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="44a72761-8ac3-4d92-a773-597f42c72d04" name="Knight Commander Pask" points="50.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="b96304aa-1ee5-4bfb-80c5-4d6a8c34c28b" name="Hull Weapon" defaultEntryId="e74f7cbe-6718-4aec-a2df-98a65f759324" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5a5383b0-fc72-497e-b050-d037e9a81b09" name="Lascannon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d342f9fb-f4f5-4804-b184-e427c7c7d952" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e74f7cbe-6718-4aec-a2df-98a65f759324" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="e7baf887-a583-4d98-bce8-7a8247ed014a" name="Sponson Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4bf82a7a-4faf-40d3-9a96-421099d223be" name="Plasma Cannons" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="776efa55-c38d-4ac0-85d5-5a4bdcf098e5" name="Multi-meltas" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="08374345-f53f-437a-80fc-92480011abfd" name="Heavy Flamers" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c8f6ca10-6deb-4705-b5c4-56f289d50392" name="Heavy Bolters" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Leman Russ Eradicator" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="14"/>
<characteristic name="Side" value="13"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
<entry id="93ee3146-df94-4b41-9cb8-2ffb4d998a6d" name="Leman Russ Executioner" points="190.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="04a7a8fc-6814-400f-b15d-b80b122ba077" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="11894291-1df2-4107-a459-80b7eb04b0e7" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7eac89a7-fdae-49d2-ba25-5b65b4b5300d" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="61676e1a-9210-4673-879e-c5ffe599ded3" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="80a96a44-18b4-49e5-bd00-29b6ad2596a1" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e7d9cf8f-cfe4-4219-a2c1-d23743f94d2e" name="Knight Commander Pask" points="50.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="01842534-6d36-4751-a243-42ebfc06d228" name="Hull Weapon" defaultEntryId="708e88d1-13c2-47c9-8ec0-2d5222ac8465" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="47fc529b-27dd-4ac0-bbde-c875577e63a5" name="Lascannon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0ed3305c-3158-4a52-9035-9e1f1671d4a0" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="708e88d1-13c2-47c9-8ec0-2d5222ac8465" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="86a33967-ce32-4349-84fd-e40caccc04e7" name="Sponson Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0b9f1892-f3dc-4e50-a44e-1fdc121198c9" name="Plasma Cannons" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0481ca3c-51ff-4b51-b87c-25243828b1c2" name="Multi-meltas" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="76135148-006d-429a-b410-848a0702300d" name="Heavy Flamers" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6e27885f-bef3-4625-89b8-0928fb4dbdcd" name="Heavy Bolters" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Leman Russ Executioner" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="14"/>
<characteristic name="Side" value="13"/>
<characteristic name="Rear" value="11"/>
</characteristics></profile>
</profiles></entry>
<entry id="c8289fb5-1871-4ab5-8925-6106d512b23f" name="Leman Russ Exterminator" points="150.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d2cbdfe0-e89b-4beb-88e5-9a196787cf86" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5a1aab55-f5d6-4554-8cb1-028082eee358" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="59a470cf-ce52-462e-beb6-493b57123bed" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b82d022b-aa0f-4617-98c9-cb42ea8fbf0d" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="34d5f0c6-bc18-4945-93dc-0f468d3d7383" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="709287c5-d30c-4625-9b94-7880dcc7e0a8" name="Knight Commander Pask" points="50.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="d5d59fe7-b4d9-4609-a7d4-b1c6a8d3d934" name="Hull Weapon" defaultEntryId="095c80bc-8a8d-463f-97d9-013da4db1ffc" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="704ee0a9-4745-43d6-bd1a-4b422a4e4893" name="Lascannon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="db8abeac-207a-4d3b-bc38-a27136ad2237" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="095c80bc-8a8d-463f-97d9-013da4db1ffc" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="ee9eadf8-0d15-4112-b729-48d406e2b82e" name="Sponson Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="959ac35c-7c7e-43ed-b9a4-bdcf9f469c3c" name="Plasma Cannons" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8fb501cc-15a3-4d4b-b05f-fa588dfe60b7" name="Multi-meltas" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9d645ca1-7adc-4bbf-969d-6982c4302cd8" name="Heavy Flamers" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="55fb5ad6-4413-4498-bd65-dcf9e97566b1" name="Heavy Bolters" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Leman Russ Exterminator" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="14"/>
<characteristic name="Side" value="13"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
<entry id="505c1b7d-3231-4e36-8971-adc2769d2f73" name="Leman Russ Punisher" points="180.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="03c407fd-f033-4e80-a407-537ecdc174a9" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="dc3f3120-59fe-4755-90f5-b7502d9efc68" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b0c74cfa-15eb-4e5a-a85e-8ae44937d553" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8308576b-d7e0-4935-a82b-3079cf8da15f" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e3597369-473b-44cb-96c5-e130fb40ea23" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="66cd0927-a174-4040-bdc3-7dfc31a361f5" name="Knight Commander Pask" points="50.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="ac1e2f2d-dc18-484d-83cd-9e40d3c842e2" name="Hull Weapon" defaultEntryId="2fba78c0-dc6e-4d7c-a9b3-3713fbc92782" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="bebce724-d282-41c8-9bd3-9aae95efcf25" name="Lascannon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="62411192-a348-41bf-9198-848b2aaee250" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2fba78c0-dc6e-4d7c-a9b3-3713fbc92782" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="be5ac75f-b6bc-409a-85bb-41bacc661952" name="Sponson Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="91e63520-1623-4816-84d0-62e69d9422df" name="Plasma Cannons" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cab1a6b2-4593-492d-8023-9d4c38377b12" name="Multi-meltas" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="15b4df5e-138a-43d1-90a9-bf0af654528e" name="Heavy Flamers" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a277717a-8eba-4f0b-a629-78405adb69c4" name="Heavy Bolters" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Leman Russ Punisher" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="14"/>
<characteristic name="Side" value="13"/>
<characteristic name="Rear" value="11"/>
</characteristics></profile>
</profiles></entry>
<entry id="b1b579bd-0dd7-49f7-838a-fbe5d24bcdf5" name="Leman Russ Vanquisher" points="155.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="477e4cfe-a3df-458d-b261-c93252f75a11" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3340bb65-aa47-4bbd-94e8-075400405f63" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d58c2c61-0cd0-4886-b8ff-1d65cde35dbc" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6761009c-0a00-43fe-9515-90c5ba69e0ef" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6870a896-b0c1-43af-92c9-7dfa08e6c6c7" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="59917f4d-38a9-47b4-86a2-13948989d750" name="Knight Commander Pask" points="50.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="a2d5f0b9-e032-48f8-a292-ac3825194c52" name="Hull Weapon" defaultEntryId="5704265e-4669-4daa-9641-484e21365a8f" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9da8af46-6eed-4193-922e-5f2e21914aba" name="Lascannon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="047ede14-464b-470f-8a88-e19e8caf308b" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5704265e-4669-4daa-9641-484e21365a8f" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="57b08b70-20f8-475c-92db-aa6bb51f7d7d" name="Sponson Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e76e40eb-0c97-4431-a1a1-9440cfd3b492" name="Plasma Cannons" points="40.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="88b918f3-b979-411f-9f71-ada8a552bc96" name="Multi-meltas" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e29882ab-0b09-457b-a0b0-630a6718bc95" name="Heavy Flamers" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0a425acd-7aa3-4e2e-9a7c-3d503013006e" name="Heavy Bolters" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Leman Russ Vanquisher" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="14"/>
<characteristic name="Side" value="13"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="5dca6c28-ea11-48d3-bd3a-badfff4d2808" name="Lord Commissar" points="70.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6c0e4b13-a067-42b1-85ce-c5d74cbcb4c2" name="Melta Bombs" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c6807397-34d6-49f8-88fa-bbaf17ecd7b7" name="Camo Cloak" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="de0c60ab-998e-41d7-9913-8964cac03464" name="Carapace Armour" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9ce24e1b-6320-4aa8-a2da-7c39b4b2ff70" name="Chimera" points="55.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a23ac7ca-9cc5-4958-b773-eebc11d6f424" name="Camo Netting" points="20.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="true"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2c1dcd8f-5f14-439e-9dd8-0fec1a16dbf7" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="76bd332e-bf0c-42a3-b384-bb4684be2a31" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7f251fd1-9683-4acc-943b-7a7b761363db" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cfbb7db4-12ac-408a-8b17-39a3721554f8" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7a7446c8-0a25-416e-8adb-36aa35ae00a9" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="a5fb4a46-0e20-45e3-906d-8fdbff24017f" name="Turret Weapon" defaultEntryId="fdf9a743-0867-4587-8cd8-ec1cb3ffb347" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="85bc2a18-00e8-41b7-8f84-547b5546214e" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e41fa833-2b3c-44d7-b7a7-91309d2a8c5d" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fdf9a743-0867-4587-8cd8-ec1cb3ffb347" name="Multi-laser" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="6405c95c-f653-40b0-9700-c963c5743dd3" name="Hull Weapon" defaultEntryId="c07c42f5-ae22-4368-996a-a5f2e97d69bb" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c82dba48-27e5-4c36-9114-14aefc706f53" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c07c42f5-ae22-4368-996a-a5f2e97d69bb" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Chimera" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="10"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
</entries><entryGroups>
<entryGroup id="b54fce74-3b61-4bcb-9b84-07d7fe1545f5" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3c1914b5-d0da-4da4-b60f-a17453e3f326" name="Plasma Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="84369905-06ed-4b4e-9994-a3d50ec4354e" name="Power Fist" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="dd8b8a8a-6d1f-497f-a7ed-ccd95482bd52" name="Close Combat Weapon" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0a998496-3df9-4e0a-905f-a75590ed6737" name="Power Weapon" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2e2bf324-ca38-4db7-b983-138c094b9f7f" name="Boltgun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3bb1b33e-429c-4529-9a73-381020acb0f2" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Lord Commissar" type="Infantry"><characteristics>
<characteristic name="WS" value="5"/>
<characteristic name="BS" value="5"/>
<characteristic name="S" value="3"/>
<characteristic name="T" value="3"/>
<characteristic name="W" value="3"/>
<characteristic name="I" value="3"/>
<characteristic name="A" value="3"/>
<characteristic name="LD" value="10"/>
<characteristic name="Save" value="5+ (5++)"/>
</characteristics></profile>
</profiles></entry>
<entry id="2a7646df-c404-4791-a5ea-c80a038e2021" name="Manticore Rocket Launcher" points="160.0" category="Heavy Support" type="upgrade" minSelections="1" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1b5ff382-b117-4cef-a5a4-fdce494fa1ad" name="Camo Netting" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ae2a793a-fabf-47a6-9839-561e2e8ebf79" name="Extra Armour" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="497a7a0b-4135-40f2-a28e-e162153de10a" name="Dozer Blade" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b86fb0b3-5e61-4e0e-9c3b-5635cd906096" name="Hunter-killer Missile" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b57f4a17-3d91-4836-8bda-a48640c12040" name="Pintle Heavy Stubber" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c6c9f8f1-254f-461a-a405-e880679bd994" name="Pintle Storm Bolter" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="fd9546eb-647b-4880-a420-d4430db01051" name="Hull Weapon" defaultEntryId="c12c58ae-bd7f-4628-9d29-c2c53abbb55b" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="66575fa9-a783-4f75-8f00-dccb450bb668" name="Heavy Flamer" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="46306f74-5d13-408f-9a29-9908e53d271d" name="Heavy Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles>
<profile name="Manticore" type="Vehicle"><characteristics>
<characteristic name="BS" value="3"/>
<characteristic name="Front" value="12"/>
<characteristic name="Side" value="10"/>
<characteristic name="Rear" value="10"/>
</characteristics></profile>
</profiles></entry>
<entry id="137be826-342c-4e42-9ee8-19f04c779743" name="Ministorum Priest" points="45.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="5" collective="false"><entries/><entryGroups>