forked from Geemoney24/BattleScribeData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlood_Angels_5th_Ed.cat
1271 lines (1271 loc) · 308 KB
/
Blood_Angels_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="46bdb03f-e12a-42a6-9f9d-ed9cffca589b" revision="1" gameSystemId="3d1a4963-0629-4025-a90b-76ab3d63c5c5" gameSystemRevision="1" battleScribeVersion="1.11b" name="Blood Angels 5th Edition"><entries>
<entry id="84e9839d-b282-4921-815c-f525a1c7649d" name="Assault Squad" 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="f797f1cd-25de-4a16-b216-00d7c4b33b04" name="Assault Marines" points="18.0" category="(No Category)" type="upgrade" minSelections="4" maxSelections="9" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="56e50789-1640-4823-b442-d3b963721355" name="Veteran Sergeant" points="28.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="4cbf01b4-d516-49df-b8ad-0c1c5aba7d3c" name="Combat Shield" 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="4481c9a5-3a98-4398-8082-bc4c18d66dcb" 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="4bd72eab-6d3b-4241-b088-b2edeaf6f85f" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="c1b282cb-3995-4d4e-b676-752463338a20" 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>
<entry id="a5db87f1-b864-4ba1-abcd-08b4436c9a25" name="Chainsword" 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="4d4bef51-d253-43ce-807a-198160ebc07d" name="Hand Flamer" points="10.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/><rules/><profiles/></entry>
<entry id="e977e8da-9024-4f94-9a60-71a80912157b" name="Plasma Pistol" 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/><rules/><profiles/></entry>
<entry id="82923f7a-015b-41f2-8d21-712a40141d93" name="Lightning Claw" 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/><rules/><profiles/></entry>
<entry id="b59daed2-e502-417f-8b0e-34a4668a9dd7" name="Infernus Pistol" 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/><rules/><profiles/></entry>
<entry id="1daf1522-a32c-428d-b880-548d3aa834d4" name="Power Weapon" 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/><rules/><profiles/></entry>
<entry id="77c82076-6d8f-4bc9-b869-f2af46c50425" name="Power Fist" points="25.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/><rules/><profiles/></entry>
<entry id="f31ec672-a62b-48fc-bd6c-cf686d1f603d" name="Thunder Hammer" points="30.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/><rules/><profiles/></entry>
<entry id="e66f9964-305e-44c5-bc5c-1dea105a08b4" name="Storm Shield" points="20.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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="1e5d532a-13d3-4a2c-873a-6721d5ced321" name="Transport Option" defaultEntryId="448bb662-2d52-4d8e-a109-f8cab3b7104a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="209b71cf-29eb-4d47-8927-9ccc5669e25d" name="Rhino" 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>
<entry id="fd60da93-fb5c-4713-804d-08ffa1d7df2b" 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="9ce7c5a2-0267-4f5f-aee9-f216abd4f8fb" 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="cf7fd38e-9596-4ebd-aa0a-1fb89b227da3" name="Dozer Blade" 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="e5837c31-49af-4974-a827-0161c270c1f9" 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="1b6e1606-f714-4543-8415-6ff3277b8ba6" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="2d3ee27c-30c6-4efc-8909-bba09f1bf389" name="Razorback" 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>
<entry id="2eacb58c-fd79-4907-93dc-2aaeece66b49" 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="e618aedb-f121-423c-bb99-b8966a1ac7b5" 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="7bebfee3-a7da-4d37-bbc1-dff9209101ad" name="Dozer Blade" 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="92db8208-c038-4dfa-85b6-85fbaca0aff9" 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="f6478177-c4c4-4648-ab47-cee0b2154107" 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>
</entries><entryGroups>
<entryGroup id="1337ecb7-0f0c-497d-a3d4-9446ca349546" name="Turret Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e981a05c-632d-4402-b405-bb6641b4161d" name="Twin Linked Heavy Bolter" points="0.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d77b235d-049d-4935-8df2-49e73ef4993e" name="Twin Linked Heavy Flamer" points="0.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1f3fc7b7-c45a-4999-9691-1e9168a6f623" name="Twin Linked Assault Cannon" points="35.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ff3cd603-d3aa-480a-bd9d-21d8c8b97743" name="Twin Linked Lascannon" points="35.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d2c297fc-e04c-42ef-9d22-547a574654af" name="Lascannon & Twin Linked Plasma Gun" points="35.0" category="(No Category)" type="model" 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="bd8857d7-c438-4816-99ac-257539aee88a" name="Land Raider" points="215.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="326a449d-37d8-4d78-a0de-3a04eb083822" 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="bbf6cf72-1a0f-4370-b6e2-00852bddd537" 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="3abc61b4-1b88-4033-881b-26584d9d9d84" name="Pintle Multi Melta" 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="5b39578b-e07f-4089-aac4-f3156ffde34e" 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="638fa611-fdb9-4ae7-9922-3d817d73882e" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d5531b9c-0fc5-4b3e-ae63-ed44b4c5a89a" name="Land Raider Crusader" points="215.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="4fa7ea8d-c66b-4ae7-afbe-aeff6221c545" 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="9519d435-83fa-41bb-b297-46de6d7e2306" 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="a0ae08e8-e538-4fbe-aec1-67c6edf1ae61" name="Pintle Multi Melta" 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="de57dba0-0013-46d4-9c21-55c2a61a90d6" 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="5e82b20e-1efe-498d-972a-f64ab09beaf3" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7f9a3a69-ee90-4fcc-adc8-df5d8322af4f" name="Land Raider Redeemer" points="205.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="3c40fc0b-9a27-4c9c-859f-29ad9f3e2f17" 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="bc7af4b2-afa6-4918-ab09-0f0341eed1f9" 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="9cc84475-6beb-4327-93b5-0f5afc648b6b" name="Pintle Multi Melta" 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="a2e6e73f-5108-436b-8b17-d33ee364b2af" 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="892f253b-a1db-4626-b6ee-17c4c1648a6e" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="6ed4ed74-1c5e-4cb8-8401-53830c89cfd1" name="Drop Pod" 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="3b2b89c1-fec6-4ec0-9d4e-e9f0c57a13ff" name="Locator Beacon" 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="fb93800b-dfca-4301-8042-ebe0705656fc" name="Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0d440d53-a86b-44d8-8ee3-d25b99aafc26" name="Storm 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="7aedf9f0-85c4-406e-84b0-ff36ef0527e6" name="Deathwind Missile Launcher" 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>
<entry id="448bb662-2d52-4d8e-a109-f8cab3b7104a" name="Retain Jump Packs" 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="d2410f57-a044-4ec0-a956-402a91ab7ff4" name="Special Weapon 1" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="54937281-ed16-4700-85d8-303843ba0496" 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="5e5125a8-698c-4fd3-bc82-4ac912ce0860" name="Plasmagun" 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="5daabbe7-b7b2-429b-9acf-5399d50a02a0" 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="19468b9c-d5af-4697-b3f9-038aac3b1ff6" name="Infernus Pistol" 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="9ade9fd6-f1c7-443b-ae0e-8501a348b300" name="Plasma Pistol" 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="cabf37d5-d410-41b5-a96c-aedc9a03c235" name="Hand Flamer" 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="d8a003c8-feb7-4e02-b423-a77b8c134b32" name="Special Weapon 2" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="59020981-5bad-4d44-8c13-04d1757d3554" 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="f9743c4a-a066-437d-8458-a699399d26e7" name="Plasmagun" 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="ad5285d7-55c9-4287-9e5d-3c8d9618e3d8" 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="f88a9d6c-e139-42be-b757-53aef235c22d" name="Infernus Pistol" 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="b0d7d9e5-ddbe-49f7-a5ac-d917e338b156" name="Plasma Pistol" 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="27d360c4-21ed-4fd6-9495-067d56259b39" name="Hand Flamer" 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="84e9839d-b282-4921-815c-f525a1c7649d" childId="f797f1cd-25de-4a16-b216-00d7c4b33b04" field="selections" type="equal to" value="9.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="19e8b4a7-880d-4357-a786-33f502bf225f" name="Astorath the Grim" points="220.0" category="HQ" 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="c29d0cc8-370c-4cac-a991-ee9980adbc0c" name="Attack Bike 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="510aaf16-7af8-4ca5-8b9d-41515496ce0b" name="Attack Bike" points="40.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="15bd6b2b-6876-47b6-ac90-b20a23845565" name="Heavy Weapon" defaultEntryId="bf9a27a8-c494-4807-8305-1b5e8745db17" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="026234d6-696e-4c96-b22c-45de581db29d" name="Heavy Bolter" 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="98da03a8-e0a2-47db-b7a7-af47477f8ffd" name="Multimelta" 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>
</entries><entryGroups/><modifiers>
<modifier type="increment" field="maxSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="c29d0cc8-370c-4cac-a991-ee9980adbc0c" incrementChildId="510aaf16-7af8-4ca5-8b9d-41515496ce0b" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
<modifier type="increment" field="minSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="c29d0cc8-370c-4cac-a991-ee9980adbc0c" incrementChildId="510aaf16-7af8-4ca5-8b9d-41515496ce0b" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
</modifiers></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="31b21f8d-40d0-4c5a-80c8-e50432b62b48" name="Baal Predator" points="115.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="d9618e5f-69d4-4d38-ba01-90f9dce9d62a" 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="7e338e17-276a-4e9f-8286-2acfacef3540" 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="44e548d9-8a56-4656-89fd-5ae1dce133ee" name="Dozer Blade" 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="664a6de2-06a7-4910-a1ec-2a72c22e4fdf" 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="cb973a94-b75c-425b-bbfd-c4a00ba9fbd4" 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>
</entries><entryGroups>
<entryGroup id="5b22a997-621d-4a12-9d7e-10c4549a2512" name="Turret Weapon" defaultEntryId="0a773b80-4a72-4a7d-9436-37252ccc6497" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="fcffec75-6826-4463-92cc-0551fb53fc4b" name="Flamestorm Cannon" 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="24e429c8-ebe7-4e00-8fcf-ab56aea71d7a" name="Twin Linked Assault Cannon" 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="d32cad44-698b-4d42-83ca-1ddc338b0a41" name="Sponsons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e2806985-9cd4-4780-8118-3c460b928ec7" name="Heavy Flamers" points="25.0" category="(No Category)" 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="b50a69a9-b98f-4afc-be95-c4da322012af" name="Heavy Bolters" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="1be13a2a-17ea-4696-8b84-32cfb86074b1" name="Bike 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="52642d95-e3c6-488d-a0a6-b77a8f43930f" name="Space Marine Biker" points="25.0" category="(No Category)" type="upgrade" minSelections="2" maxSelections="7" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="56e1ee74-7696-49ce-bd51-974010bd0f26" name="Veteran Sergeant" points="40.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="a40d85ad-bdc4-4d5c-afa7-9f6ce944ffed" 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="c8717981-8878-46ca-b273-21cea3821748" name="Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="97b84ad1-e16c-48c2-aa02-376321bdfccc" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ec34a6d0-209b-486a-bc9d-a001bdb5db10" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="86223cbe-feff-4f43-a8a3-e692a011608b" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f1b9659e-ba5a-4b17-9a79-02001548724a" name="Combi-Flamer" points="10.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/><rules/><profiles/></entry>
<entry id="31617c9e-d782-4640-bb78-d8f3fc6a0f3c" name="Combi-Melta" points="10.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/><rules/><profiles/></entry>
<entry id="9d06bf50-25a7-47c4-af1d-f51e46fd5945" name="Combi-Plasma" points="10.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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="49971a5f-d6ef-4735-a9e3-a31cca1cf860" name="Attack Bike" 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>
<entryGroup id="c758fe33-1fd7-48a4-b2f2-9111cc6f7c4a" name="Heavy Weapon" defaultEntryId="bf9a27a8-c494-4807-8305-1b5e8745db17" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="035926da-fd1d-41c8-ab83-2707a3eafb52" name="Heavy Bolter" 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="91898ca7-4ebe-4246-b93b-bae7d048feb1" name="Multimelta" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="9834b202-6368-4f6a-918a-7b82abc85a7b" name="Special Weapon" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="89365828-44c9-4fd6-8924-44a507d00aee" name="Flamer" points="5.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/><rules/><profiles/></entry>
<entry id="6065804a-7ead-4b0c-b8bb-443b9e84fea1" name="Meltagun" points="10.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/><rules/><profiles/></entry>
<entry id="07bbc038-5896-46bb-99aa-a429a9b32cb5" name="Plasmagun" 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="91588ad7-a034-4285-a402-399eedfd7853" name="Captain" points="100.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9ad99f53-9e8e-485a-a86b-dff02df79f61" 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="99fcb06c-400c-43f0-be42-bd4f617a8548" name="Armour" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0608da0d-c53d-4a2a-a386-fdcdc2f02e78" name="Power Armour" 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>
<entryGroup id="a31a4d36-4f93-4c46-a36e-104f982ec7f8" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a4977edb-eb7d-4f4c-8e36-6c2e7c68777f" 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>
<entry id="3478939c-c38f-4a6b-87ad-577bae86d0f0" name="Chainsword" points="0.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/><rules/><profiles/></entry>
<entry id="376bfc3b-d26d-4d9c-bd00-a4b7b53aa148" name="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="97cdbf9f-15b3-42ee-bf45-e84ff3475aa8" name="Combi-Melta" points="10.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/><rules/><profiles/></entry>
<entry id="dfe75cf8-9272-4ec8-a818-0446727780db" name="Combi-Plasma" points="10.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/><rules/><profiles/></entry>
<entry id="a3709062-1a8c-408b-a9ca-edbf15ee0134" name="Hand Flamer" points="10.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/><rules/><profiles/></entry>
<entry id="75493476-6a52-41cb-93ef-d687d1d62977" name="Plasma Pistol" 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/><rules/><profiles/></entry>
<entry id="e67b1f9f-5e6e-44e5-b3a9-e928efdfe9df" name="Lightning Claw" 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/><rules/><profiles/></entry>
<entry id="29f65629-d8ce-4f69-a258-a228a4f73fde" name="Infernus Pistol" 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/><rules/><profiles/></entry>
<entry id="64e0e111-db6d-46da-8dcf-45834a3013ae" name="Power Weapon" 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/><rules/><profiles/></entry>
<entry id="d3d80175-1032-490f-8458-bedda1840d59" name="Power Fist" points="25.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/><rules/><profiles/></entry>
<entry id="3a44ee33-a9fd-4504-aac9-b74c06887cc9" name="Thunder Hammer" points="30.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/><rules/><profiles/></entry>
<entry id="ebd4a736-9492-4669-a111-bec32be362da" name="Storm Bolter" points="3.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/><rules/><profiles/></entry>
<entry id="d7095499-c40e-4559-b164-6711b34b0073" name="Storm Shield" points="20.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/><rules/><profiles/></entry>
<entry id="72858c0e-8122-482a-b159-d1bb592f5b1f" name="Combi-Flamer" points="10.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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="1796b714-0517-4a48-93e8-69bf1fcc78c9" name="Other Equipment" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a7aa12e3-6f8b-46a3-aea6-9f4c451619f2" name="Jump Pack" points="25.0" category="(No Category)" 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="076d7be8-22c3-4461-85cb-9d49d6b5dfaf" name="Space Marine Bike" 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/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="dc1b5c04-0fb4-4a7b-bb7f-19c884a51654" name="Terminator Armour" 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>
<entryGroup id="e560cfe4-df17-4d14-b789-0efbc444900d" name="Left Arm" defaultEntryId="7005ba7b-cd66-4c0f-a13e-a1a824009fb4" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="310e8c58-c67e-45b5-a330-973a1cff303e" name="Power Fist" 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="7005ba7b-cd66-4c0f-a13e-a1a824009fb4" name="Power 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="b58620a7-cf2d-4e66-be92-9fb7d58c83bc" name="Thunder Hammer" 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="be8e75a0-fbcb-4660-870e-0ea1cac7bfc1" name="Lightning Claw" 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="c7511317-2a3a-4576-b224-fc80cc593d23" name="Storm Shield" 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="0149a71c-e5d0-455e-83e7-8cf0e83a946f" name="Chainfist" 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>
<entryGroup id="21dd16d3-5498-4663-8a39-08b739ece38a" name="Right Arm" defaultEntryId="6c1911e7-8518-452f-acef-fe8fed49450c" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6c1911e7-8518-452f-acef-fe8fed49450c" name="Storm 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="9416e020-dcc9-483d-9c28-f6795aca7b80" name="Combi-Plasma" 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="bf33f593-471b-4dde-844b-49ee0f133f93" name="Combi-Melta" 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="a2ba5e2e-8b66-4880-93cb-cae0b192a03a" name="Combi-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="9c22b10d-b173-478e-8775-3398483138a2" name="Lightning Claw" 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="036fc488-489f-44e2-8e35-8fe3c2d5672e" name="Thunder Hammer" 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/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="a1c6cc7a-37d5-47ee-84ac-38307f1934c5" name="Captain Tycho" points="175.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="1" collective="false"><entries/><entryGroups>
<entryGroup id="7e63991c-aa1c-4909-8458-dd8161d03928" name="Choose" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9056befe-611e-4882-a597-e885cad7ffad" name="Captain Tycho, 5th Company Captain" 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="f6634710-3e55-45fa-a4ac-e2812aa87e94" name="Captain Tycho, Blood Angels Death Company" 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="e18bbad4-0e3a-4564-ad9e-d95bf453ec4d" name="Chaplain" points="100.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e4915a74-410a-427d-9cc6-3a531a71d69d" 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="65b23b77-937a-4d41-80fd-b80c375bb040" name="Armour" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="83e33bf6-c311-4fd6-b7a1-f7c13bb9b447" name="Power Armour" 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>
<entryGroup id="841aae17-4fb0-4e8a-837d-672d37450d68" name="Weapons" defaultEntryId="ac17ff44-2269-4c88-9074-16ca7a0194f1" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="839ba897-5e80-48dc-9dbd-0b89acc7f6e7" 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>
<entry id="25775dd6-d2fa-4b19-acb0-3940b16a979c" name="Combi-Flamer" 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="a63a2779-0410-40e3-95ad-ef5f5d62d74b" name="Combi-Melta" 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="29a99e57-77e1-444d-9944-d2c6d17b5ed1" name="Combi-Plasma" 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="cc723e4b-20ec-4044-a9f9-31acbe288e30" name="Hand Flamer" 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="1efd34dc-41a1-4b66-8585-9d2c103f6710" name="Plasma Pistol" 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="5d9f18af-a900-4721-b87f-dc91bd72a767" name="Infernus Pistol" 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="89768248-079e-466a-8d6d-635821699ea0" name="Storm Bolter" points="3.0" category="(No Category)" 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="6c79f6ce-a306-4d0e-9bab-84b7986179e8" 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="347de7d7-fcaa-4d7c-9db3-7efb57da0867" name="Bolter" points="0.0" category="(No Category)" type="model" 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="906626da-cabf-4786-89ef-4327d0c56a30" name="Other Equipment" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="44735ce4-eb1f-4d25-bfcb-d6f7702308f7" name="Jump Pack" points="25.0" category="(No Category)" 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="9bec1f6e-5236-4357-ac5d-30c53c7ec7d3" name="Space Marine Bike" 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/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="2dcf5681-1c9b-4320-a17b-91f84cc0a464" name="Terminator Armour" 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>
<entryGroup id="1c168150-e429-4dda-b6bb-d2b2f8a5c32c" name="Ranged Weapon" defaultEntryId="6c1911e7-8518-452f-acef-fe8fed49450c" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="7950d373-7939-49aa-b6d9-374d400879f2" name="Storm 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="5f520a50-9737-41f6-8479-49e34f795e0e" name="Combi-Plasma" 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="25ac865c-a083-476e-9978-fffe9e7ce4c9" name="Combi-Melta" 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="0790d115-098e-43b3-98e2-1ae12650e2cb" name="Combi-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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="68329002-3ab0-4aa2-9a47-30f9773d49f3" name="Commander Dante" points="225.0" category="HQ" 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="81622b48-e07b-4a4a-ac3a-be9a762810e6" name="Death Company" 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="b188d124-3dd7-4c35-a30d-bdef74cb0eac" name="Death Company Marine" points="20.0" category="(No Category)" type="upgrade" minSelections="3" maxSelections="30" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e10a99a2-9ee9-4a32-8c88-2bfda8b2b821" name="Jump Pack" points="15.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/><modifiers/><rules/><profiles/></entry>
<entry id="2a028367-4ab7-477e-831a-72e6458d82e8" name="Lemartes" points="150.0" category="(No Category)" 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="fe56af1f-93c2-4aab-b665-69662bdc9bab" name="Transport" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a354fc36-6368-4a2d-91df-a59c93fa69ef" name="Rhino" 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>
<entry id="2862036b-fcaa-4701-93c0-81b0017c8057" 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="94da9a60-81d3-462b-92ac-e41ac03adff1" 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="9b9d9247-adc3-474f-a42f-7ce5691e907e" name="Dozer Blade" 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="b82392aa-7802-44c5-837d-27a86eff16e7" 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="5395d6e9-c127-4461-869f-165826d0bfc6" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="093411b4-f662-4411-a6e5-fb6b286ae035" name="Razorback" 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="7b5ef7c6-74e1-42ce-b009-dfaf8e50f06c" 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="47d0ef13-93af-4357-835d-e335211979d1" 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="533adcb2-badb-4ed1-b0c2-9180fc802192" name="Dozer Blade" 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="74b46bac-3251-4530-ba61-b7d2337395a7" 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="d7cc09c2-94e9-4bb7-a26f-c0d7ce1fc9bb" 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>
</entries><entryGroups>
<entryGroup id="7da42acd-c9eb-47b3-84e9-e00f81d120d3" name="Turret Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9b67c142-22e7-4b5c-963f-cdab62466ea2" name="Lascannon & Twin Linked Plasma Gun" 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/><modifiers/><rules/><profiles/></entry>
<entry id="cab35aa7-be0a-4677-8b7e-800a3a5c5375" name="Twin Linked Assault Cannon" points="35.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d4c5639d-27ec-4550-b97e-cbee37804b2a" name="Twin Linked Heavy Bolter" points="0.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="686697d1-f71b-4727-b564-dad6a61d9979" name="Twin Linked Heavy Flamer" points="0.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3ef06ac6-5a7c-45b3-ad9a-f5b089070fa8" name="Twin Linked Lascannon" points="35.0" category="(No Category)" type="model" 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="7f70b8d2-b134-4c9c-8024-1eaf38462ba1" name="Land Raider" points="250.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="a0d80e6a-e028-4609-b4e5-358ede1bf4cb" 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="15da28fa-1480-480e-9b16-668894dd8afa" 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="a9fa6a73-9ed8-4673-9b4d-71f9ad74e58d" name="Pintle Multi Melta" 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="026549b5-bc63-48a5-901f-1f306fcfb2ea" 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="7a1ccbf2-659b-437b-8679-480528bb5f99" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cb228bed-3e8c-4990-9f56-67bbca4027c8" name="Land Raider Crusader" points="250.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="95976b3d-534f-45b0-94e3-25bcf14d722b" 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="e8ea96fb-82fd-414c-a260-9e7f4d78c633" 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="21ad4ed1-0ad6-41ca-a287-71f4794349dc" name="Pintle Multi Melta" 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="1e915ccc-1c04-4849-a263-7c67dab45b17" 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="95378036-f721-468f-9092-b98e0a5b90b4" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="870a79e5-34fe-4f0b-ad6b-56411ed799e0" name="Land Raider Redeemer" points="240.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="6d2e2eb1-95ce-4102-b24c-126cf734bb0d" 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="a6b84662-73a3-4738-9aef-8b60fe66e65d" 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="2426adec-13cd-4ef1-9187-3dc496a4505e" name="Pintle Multi Melta" 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="ab7a8bcc-2dc4-4d5d-896c-b780c3ad9682" 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="f56151b0-5fc2-4954-9205-4428d40f7b61" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c69b288a-a566-4180-97e1-bcc001cfcccf" name="Drop Pod" 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>
<entry id="2088e0bd-5884-4ca1-a3a8-dcfd5cad3386" name="Locator Beacon" 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="64e5cae4-1e4c-4a0f-949d-29e22d385367" name="Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="8bbc94f8-aa6f-487c-b622-0c2934d08696" name="Storm 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="32b85a86-4e0b-4420-bd42-01276c6ae39f" name="Deathwind Missile Launcher" 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/></entryGroup>
<entryGroup id="4f3e15c3-3b4c-4ccb-93e9-6a20ef966d0f" name="Right Hand Weapon" defaultEntryId="12d92d79-7d11-404d-8728-67d261364035" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="12d92d79-7d11-404d-8728-67d261364035" 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>
<entry id="68e00a8f-7707-4d88-9503-9ed12b11c994" name="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="f5017199-fa27-4d64-9c65-af6e5e55ccee" name="Power Fist" points="25.0" category="(No Category)" 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="f0f345d3-5a9b-4408-aa60-75737e3d6aac" name="Power Sword" 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="f7ef22fa-e105-4ee8-b55f-fb415c87f458" name="Thunder Hammer" 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>
</entries><entryGroups>
<entryGroup id="b13cc2b9-7335-4c32-8ec6-e2f78f045cd2" name="Special Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="63a2b034-b38e-4d18-b70f-ecd3c13a5851" name="Infernus Pistol" 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="1262cb59-f284-4936-b1c1-415778c11f57" name="Hand Flamer" 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="baa958a0-ff32-46e1-ab17-0e3efe743ac6" name="Plasma Pistol" 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>
<modifier type="increment" field="maxSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="81622b48-e07b-4a4a-ac3a-be9a762810e6" incrementChildId="b188d124-3dd7-4c35-a30d-bdef74cb0eac" incrementField="selections" incrementValue="5.0"><conditions/><conditionGroups/></modifier>
</modifiers></entryGroup>
</entryGroups><modifiers>
<modifier type="increment" field="maxSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="81622b48-e07b-4a4a-ac3a-be9a762810e6" incrementChildId="b188d124-3dd7-4c35-a30d-bdef74cb0eac" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
<modifier type="increment" field="minSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="81622b48-e07b-4a4a-ac3a-be9a762810e6" incrementChildId="b188d124-3dd7-4c35-a30d-bdef74cb0eac" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="261bacbc-5ead-431b-a842-0199d57ee52f" name="Left Hand Weapon" defaultEntryId="dcc5e97c-18d3-4e94-b776-07c787372727" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="dcc5e97c-18d3-4e94-b776-07c787372727" name="Chainsword" 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="31de9290-0941-4a8a-a617-6128f40605c7" name="Power Sword" 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="8825053c-878b-44b3-9ea8-e6a32fda6dbb" name="Power Fist" points="25.0" category="(No Category)" 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="dda4d58e-36bd-424e-bc45-059d110e14d2" name="Thunder Hammer" 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>
</entries><entryGroups/><modifiers>
<modifier type="increment" field="maxSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="81622b48-e07b-4a4a-ac3a-be9a762810e6" incrementChildId="b188d124-3dd7-4c35-a30d-bdef74cb0eac" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
<modifier type="increment" field="minSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="81622b48-e07b-4a4a-ac3a-be9a762810e6" incrementChildId="b188d124-3dd7-4c35-a30d-bdef74cb0eac" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
</modifiers></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="bc0c8732-410b-4a14-a0f1-b32172e4331e" name="Death Company Dreadnought" points="125.0" category="Troops" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a00d1f6f-08db-4f21-be4c-e5edd3859b3f" name="Drop Pod" 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>
<entry id="20aec6d9-b5a8-4cfe-a72d-df8fece36c35" name="Locator Beacon" 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="a2fd0004-18a4-4162-ba53-2638c84b81db" name="Weapon" defaultEntryId="104cbfb7-9dd1-4874-ba7d-5160d140a0af" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="104cbfb7-9dd1-4874-ba7d-5160d140a0af" name="Storm 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="d6bf1aaa-02f7-42e5-97b0-9cb3dcb710e8" name="Deathwind Missile Launcher" 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>
<entry id="f6a5c01e-f152-43ae-8c3b-d581b5bac855" name="Magna Grapple" 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="ecb2d68d-b7cc-466b-bbf7-462269e78e07" 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="21489857-d214-4f3c-8faf-64370627aa93" name="Replace Storm Bolter with Heavy Flamer" 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="527b4717-eac1-464e-84c4-ee879416b187" name="Weapon Option" defaultEntryId="f6cfc47d-1402-4f94-87e6-10cf2e62ef64" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f6cfc47d-1402-4f94-87e6-10cf2e62ef64" name="Blood Fists" 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="e98ca2e0-4379-4fbc-9708-702d27eda5cb" name="Blood Talons" 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>
<modifier type="increment" field="maxSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="roster" incrementChildId="81622b48-e07b-4a4a-ac3a-be9a762810e6" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="8acb98b1-23e2-44ac-8823-9dc1aab3d86c" name="Devestator Squad" 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="6b777466-0b22-4e03-ae83-ba101715a2a9" name="Veteran Sergeant" points="26.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="f66f5ccb-e869-4cee-87e6-8c45a5fc70ee" 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="ca446d6a-1c4b-4641-a32e-0e90042aceac" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6ef79a6b-1c65-4c7d-8fb9-d44a7c5a12d5" 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>
<entry id="fac3b30f-334e-4f36-addf-74c57a23315d" name="Chainsword" points="0.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/><rules/><profiles/></entry>
<entry id="e7ee1607-6288-40ce-bbaf-f0d2e639f037" name="Plasma Pistol" 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/><rules/><profiles/></entry>
<entry id="3567222c-a81c-4419-9bd8-90e5cd92a6b4" name="Power Weapon" 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/><rules/><profiles/></entry>
<entry id="b13cd890-8ad1-4c60-a25a-38eb6b8dfd7d" name="Power Fist" points="25.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/><rules/><profiles/></entry>
<entry id="f1bf407e-8a0b-4add-ae3b-6447b0b4e2f3" name="Storm Bolter" points="3.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/><rules/><profiles/></entry>
<entry id="0700b59a-3e01-448f-afd2-48fe5137b1bb" name="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="e9e7379c-eacc-48ee-b03d-0bfdd297c0b0" name="Combi Melta" points="10.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/><rules/><profiles/></entry>
<entry id="345713e3-477a-42d7-a461-ec90c798e034" name="Combi Plasma" points="10.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/><rules/><profiles/></entry>
<entry id="141363c4-707b-47fe-aab2-04405fa26e1c" name="Combi Flamer" points="10.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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="ae4f1b42-df8c-4612-89ef-ff82585a02be" name="Devestator Marine" points="16.0" category="(No Category)" type="upgrade" minSelections="4" maxSelections="9" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="2814644d-5073-4a5e-93ca-f673508ef293" name="Heavy Weapons" minSelections="0" maxSelections="4" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="da895bc3-bf64-4c55-b838-8de1c206afdd" name="Heavy Bolter" 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="ff32808c-0501-4a1d-b4b7-69197c06bf99" name="Lascannon" points="25.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="432ff50b-9942-4618-97d0-400332197fff" name="Missile Launcher" 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="465f5f03-ee4c-4d1c-a243-539ae134f2be" name="Plasma Cannon" 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="96c9ff6d-d0ee-41f1-9e75-1a85c0a068e9" name="Multi Melta" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="2e4b7fde-2670-4936-a0ad-1e89d5b3be89" name="Transport" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4aaa6e06-7fde-4203-8efd-a7517adb0e42" name="Rhino" 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>
<entry id="cc88c4c0-57d0-438b-9b19-2b24cae5d9cb" 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="c07846e4-61b5-426d-8e2b-0f779fc0a29a" 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="9a8ca723-cb95-4fc7-8772-d03fc3db81a4" name="Dozer Blade" 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="8209fb6a-5555-451c-9cff-58803dd81ea4" 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="1f2621d5-072e-4245-89f7-044ceee120bf" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="fd1e476b-4649-4655-b42e-07100aa11528" name="Razorback" 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="a4e5cc83-aaf8-4593-bca2-c42253d739b1" 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="c83e6f51-8a2d-491d-bd2c-5afa93abc711" 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="81092fc6-615c-40ac-9c68-6e65ed354837" name="Dozer Blade" 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="25fb4300-2935-4a72-9220-d0a542e6a102" 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="f3ccea20-5bb9-49ac-bbed-34ea1c312796" 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>
</entries><entryGroups>
<entryGroup id="8c934b38-fa52-4f73-9437-4606ec503e3d" name="Turret Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5c818ab3-4dce-4278-b914-2eea36f17b3d" name="Lascannon & Twin Linked Plasma Gun" points="35.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="94052889-7da0-4015-ade4-40238e92529d" name="Twin Linked Assault Cannon" points="35.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="a0dc9819-ee23-41aa-9990-5176212279be" name="Twin Linked Heavy Bolter" points="0.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="728f941b-7d47-45c9-99c0-f96a3d056c86" name="Twin Linked Heavy Flamer" points="0.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="28996834-6694-45ae-9b0a-541c1b5d2833" name="Twin Linked Lascannon" points="35.0" category="(No Category)" type="model" 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="142cb2bc-b20a-48b9-98f1-31f03d2be492" name="Land Raider" points="250.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="c89f22d4-b8a4-47c0-b0d5-e277623dbcaf" 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="42e49d51-ae12-4ca9-bb34-79023c7b66c4" 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="95aad90b-771f-4285-a023-ed4be8d32c6d" name="Pintle Multi Melta" 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="3c61c049-9e35-4b97-bf8c-107e28fbcc0e" 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="eae19ff9-3f0b-4b6a-9a95-1b53d9e30536" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="407251ca-d3c5-462b-b608-6df2eba7776e" name="Land Raider Crusader" points="250.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="e159c0d5-23bd-4928-8dee-f4c5112513a6" 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="f9096784-9487-4141-89cb-5cc02bcf04f4" 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="f3c8b9d8-7848-47e9-a046-11e1dbbab146" name="Pintle Multi Melta" 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="fe4caa4a-8c86-4080-af15-eb87c30aaa44" 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="b32d99de-aa81-4847-86c1-5fa1ac92f787" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="94d81a5c-a597-45f3-acb3-bdd23b8079b8" name="Land Raider Redeemer" points="240.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="fa30b903-65c1-4278-9b5b-61d514182c4e" 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="68d2447a-fab2-4d7b-a2a0-1144d36044ef" 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="f0f2fe3b-b19e-46dc-b16a-3b6073a8c339" name="Pintle Multi Melta" 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="5292be98-2c71-4498-8f93-a6ac42bbac0d" 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="8584269f-90ad-4fbf-ad0b-e90ce2e75440" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="5b6dd1ed-1f73-4de7-92f2-5ae46c02cf71" name="Drop Pod" 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>
<entry id="c487bd91-5e4c-4815-ac17-f3e79089b209" name="Locator Beacon" 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="1437935e-3727-4356-9576-2958ed53de65" name="Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="39567b86-0b32-42f2-a753-677b10221aba" name="Storm 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="8c095f84-4f19-4999-8aa6-b6a9aa491c83" name="Deathwind Missile Launcher" 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/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="6e35d5b8-9b86-407b-9a0d-6fc434bdf920" name="Dreadnought" points="105.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="a117ed0e-6278-42c0-b7a2-3c610088e4d1" 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="8eb6960a-cf21-4e6a-b976-dbbec8ab6be7" 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="25c3f56c-f8ad-4271-a5fc-3891d17203cd" name="Drop Pod" 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>
<entry id="68d62898-16d3-4cc9-8563-c30bacae5848" name="Locator Beacon" 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="35a7eec3-9b57-4d66-ab11-6e6e9d39561e" name="Weapon" defaultEntryId="104cbfb7-9dd1-4874-ba7d-5160d140a0af" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5cafc84c-bfd8-46b2-8395-341c8c53af97" name="Storm 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="5a1658a2-31bc-475e-9fbf-89827fc28f6a" name="Deathwind Missile Launcher" 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>
<entryGroup id="2a68b29e-fb9d-4a3a-8a86-dba9056041b7" name="Right Arm" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="8418a378-8968-40b7-b697-227d06e255d3" name="Multi Melta" 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="d5557e14-8f8f-4078-b9a1-4aea3c850588" name="Assault Cannon" 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="062943a2-2547-42c8-937e-3a9fbcea3c72" name="Twin Linked 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="81ee8495-cf09-4d8b-b92c-6b6d0a7801b1" name="Twin Linked Heavy Bolter" 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="64ef9727-0cbf-4775-b125-c795250c218f" name="Twin Linked 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>
<entry id="ea36c103-84fd-44cb-8ad9-deb4e86ea915" name="Twin Linked Lascannon" 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="5f8e55f0-6cd4-4863-87a7-0ec62e2ead94" name="Plasma Cannon" 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="93a521d4-2ea9-4d65-8789-b84e72136673" name="Left Arm" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="27b42cb8-82ee-45cc-b170-e160054c5279" name="Blood Fist" 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>
<entryGroup id="753b0f89-9e7b-4b4e-9e35-f9126fe64133" name="Built in Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4b7cc4c7-3bda-48ee-a365-1d37b4faf5f3" name="Built-in Storm 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="7851804a-24e6-482f-8121-46ff2b03022e" name="Built-in Heavy Flamer" 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>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="d171294d-39dd-4738-9945-82b9f95adae9" name="Missile 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="d8294823-9615-4142-9aad-14b1a54e84c0" name="Twin Linked 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="4053ba00-5450-49ae-abe2-fb1d316fad86" name="Furioso Dreadnought" points="0.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="652fae77-1656-44b1-ae5a-305025d4acdf" name="Drop Pod" 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>
<entry id="a9a827b1-510f-44cb-82ae-83a4123a1460" name="Locator Beacon" 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="f1d5c11a-b736-4f42-9571-dfed7d1e1420" name="Weapon" defaultEntryId="104cbfb7-9dd1-4874-ba7d-5160d140a0af" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b2b9b2ce-eb00-450e-821e-43c921806baa" name="Storm 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="9568b3e5-9f73-40b0-a993-f32a56ab5e84" name="Deathwind Missile Launcher" 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>
<entryGroup id="9f1f62bf-145b-4418-b5d7-520dbb00e4be" name="Dreadnought Type" defaultEntryId="5198ea0a-8c02-4bc3-a055-6ab43b4f8f01" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3300dd40-3346-4802-a380-5f50a949ca3d" name="Furioso" points="125.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="a645b2a4-8a70-40c0-b8cd-340949ee1c01" 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="7f686dea-6ae5-4a95-8667-6a38bf050e4c" name="Magna Grapple" 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="37f5714a-4c16-4df1-81da-7a5c8a9fd7cd" 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>
</entries><entryGroups>
<entryGroup id="69707268-bed9-43f9-aa74-67464731d434" name="Left Arm" defaultEntryId="09c983c7-995b-4210-9bcd-3a0945a0a6e7" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3b6796c4-1b36-4a10-b2bb-c96796a2ee45" name="Blood Fist with built-in Meltagun" 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="d4aea847-216f-4a89-9e81-019befa5d357" name="Blood Talon with built-in Meltagun" 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="9c130cbc-ac06-4aa0-bc4b-6953a2712801" name="Frag Cannon" 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="b09c188d-c395-46cc-b892-eaa7b63dd88e" name="Right Arm" defaultEntryId="58403b41-b332-42ce-bb15-ac2e172ef03a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="483f9beb-bccb-423c-9482-e10c3cc825c5" name="Blood Fist" 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>
<entryGroup id="2ad0c6d2-3808-4963-8251-e4489c50d266" name="Built-in Weapon" defaultEntryId="e643c96f-22ef-4d83-b49a-04746f3335a9" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="72ffb543-5438-46b8-a832-79fa49b71d87" name="Built-in Storm 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="ccb2a1aa-76e3-42b9-a72f-9bd074578ea3" name="Built-in Heavy Flamer" 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>
</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="3300dd40-3346-4802-a380-5f50a949ca3d" childId="3b6796c4-1b36-4a10-b2bb-c96796a2ee45" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="3300dd40-3346-4802-a380-5f50a949ca3d" childId="3b6796c4-1b36-4a10-b2bb-c96796a2ee45" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="d03b2ec9-1102-4724-ba7b-1768c0dc6788" name="Blood Talon" 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>
<entryGroup id="f9c5e7b0-da39-4092-a000-51895c135b95" name="Built-in Weapon" defaultEntryId="e643c96f-22ef-4d83-b49a-04746f3335a9" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="34f85725-5418-4010-a6e9-947e5a2acd32" name="Built-in Storm 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="441dcca8-5722-4afc-a59f-4c0dd7ecaa83" name="Built-in Heavy Flamer" 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>
</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="3300dd40-3346-4802-a380-5f50a949ca3d" childId="d4aea847-216f-4a89-9e81-019befa5d357" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
<modifier type="set" field="minSelections" value="1.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0"><conditions>
<condition parentId="3300dd40-3346-4802-a380-5f50a949ca3d" childId="d4aea847-216f-4a89-9e81-019befa5d357" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="76ad980f-419c-41a0-a5b6-00a341f1bd7b" name="Frag Cannon" 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="9142038b-7108-4d9d-9e14-e7334bc236fc" name="Furioso Librarian" points="175.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="fc7e80e2-bbb0-4cad-b48f-e3fa76ec249a" name="Psychic Powers" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="7ae0e010-d9cb-4e96-950e-20549270fa9d" name="Blood Lance" 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="73a0fde7-b32c-4d0c-8ac3-b46bfb413e7d" name="Unleash Rage" 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="4695fb04-5111-464e-b8f1-ebe6d8342802" name="Shield of Sanguinius" 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="c1ba0527-f5a7-4ecf-914a-195eb04db698" name="Smite" 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="fa3db984-baae-4f12-9c81-60f22db565df" name="Shackle Soul" 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="3f992907-d7a0-4cb6-8660-62842875eaa1" name="Might of Heroes" 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="5459d8ce-0cbb-4bc3-a214-8bdb721fb69f" name="Wings of Sanguinius" 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="e8b7730b-82bd-449f-9563-45c180cbf95b" name="The Sanguine Sword" 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="33199469-32e9-4705-aa62-abd3dbd7f63d" name="Blood Boil" 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="3734d698-88cf-4568-b8e4-7dc810334192" name="Fear of the Darkness" 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/></entry>
<entry id="1947f56d-4835-4c1d-9b67-ba0fe6a04d61" name="Gabriel Seth" points="160.0" category="HQ" 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="4a50b46c-af29-4bb9-b917-6be7c5473e03" name="Honour Guard" points="115.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="f1db310b-a5e6-42fe-a321-3cb1af62fae6" name="Jump Packs" 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>
<entry id="a7477769-a98a-41e9-b87e-75e819a9b16d" name="Blood Champion" 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="53a89e91-08cf-4c71-bbc1-2c4beef575ae" name="Sanguniary Novitiate" 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/><entryGroups>
<entryGroup id="c45d7cad-23be-4d34-ad68-c0d0619fb28d" name="Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1c453264-cde6-472d-94eb-39de213a47c2" 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>
<entry id="6844cacd-7bdc-426b-8215-b7b85e51ebaa" name="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="32cbbf30-a151-43f4-b067-83c2e989cd0b" name="Melta Bombs" points="5.0" category="(No Category)" type="model" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="14be6620-52dd-4ea9-87e2-4d50f8b87036" name="Standard Bearer" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="dca1969b-24aa-4a55-9ba3-f1944bf30cff" name="Company 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="bf77c373-71f9-44f5-94a8-80f9f3610427" name="Chapter Banner" 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>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="aafd3177-08c0-4404-bdab-0def734e3d1f" name="Weapons" minSelections="6" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1c5355c0-bf50-4ccf-96a8-e1a05363172d" name="Bolt Pistol" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="be88fc1a-80fc-4555-9730-f2794ec07188" name="Chainsword" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="406edf8d-ff1e-424d-b41f-705cfbcc1f6d" name="Bolter" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7345f975-4e45-45a8-9cef-1e7aaa0e4a85" name="Combi-Flamer" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9ecc097d-370a-4326-8004-1ff051a4d8cb" name="Combi-Melta" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="13fa09c0-cd84-4440-9ef4-b60982566f33" name="Combi-Plasma" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="9a37ac04-696b-4772-a849-f5649ae14860" name="Hand Flamer" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="df3adfc8-a478-4bc4-857a-10ea27200e6c" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7cfc428b-e1c1-4aa4-a2b9-6d8580d5ead3" name="Lightning Claw" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="aa13d786-bca2-424f-ab61-f73a67ccb2e7" name="Infernus Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1b8e9544-81ce-45ee-97c3-d21f2d600e24" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8b550f8d-059d-46ee-8472-d0558d82f8d5" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="8a3323e7-1d75-4d12-aff8-14cddebaf3bb" name="Thunder Hammer" points="30.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b250f209-4259-457b-b475-31751420822c" name="Storm Bolter" points="3.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="51683711-ffff-4e66-be2f-03f45d405d7e" name="Storm Shield" points="20.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="e7680948-50c4-440f-a4f4-540398647822" name="Flamer" points="5.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="558cb1a4-c111-46dd-906d-a85b5d2bf801" name="Meltagun" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0b94477e-22ec-4750-9da2-d8e5b298ebc4" name="Plasmagun" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="129a01be-1c85-4c26-9d87-560588f85025" name="Transport" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="80ffb48e-5ebb-4874-a388-80d4eb4146a2" name="Rhino" 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>
<entry id="9ab94a63-e415-4c6e-a91e-0f1ac3bbbcfa" 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="3bdedca4-12c0-49b8-b997-129d8c16e3cd" 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="278b714e-76d7-47ec-b710-a3aa17ff1ea7" name="Dozer Blade" 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="8cb4bb35-6995-4006-95c6-02624b71dbf0" 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="6c4556a0-a008-4e2c-a75b-e51c1c36f80d" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="51db4723-a591-46d0-8dbc-7065f80b13a4" name="Razorback" 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="d5eae970-67ad-4fab-bd74-8955fdc33186" 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="b05773c9-ac02-40e6-b654-b39d0cc766af" 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="f6528eed-d205-486c-aca5-7844ae75702c" name="Dozer Blade" 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="8b8be53f-2806-4d60-b447-a04af8fe6012" 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="70e0202e-7307-45ab-8e8d-8c19207eab1f" 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>
</entries><entryGroups>
<entryGroup id="24b0079e-6bcb-4dac-b564-884d7acaed80" name="Turret Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b6eefd58-1db5-4356-aaf0-698ea9441755" name="Lascannon & Twin Linked Plasma Gun" points="35.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f3652b43-1f85-47da-af4a-cbd0cc6f0446" name="Twin Linked Assault Cannon" points="35.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="0650ebaa-0e4e-4953-9c75-7eeab2689adb" name="Twin Linked Lascannon" points="35.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="cc93a148-1c53-4785-8ae5-240aadac54ee" name="Twin Linked Heavy Bolter" points="0.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="99bd722b-cdd6-444c-9559-46dee8efa5fd" name="Twin Linked Heavy Flamer" points="0.0" category="(No Category)" type="model" 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="29eac9eb-bb8d-432a-971d-681e833cc6f7" name="Land Raider" points="250.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="5714df18-9ce5-4717-871b-fc567fb27e25" 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="87165602-e1f0-4ecd-b30a-4ed66f03ae85" 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="e7b19c26-bc66-4a28-bd91-dabba08a97ca" name="Pintle Multi Melta" 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="91a239fa-1fc1-4dee-9a59-f489fb9d002e" 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="9d58333d-493e-47b9-8831-3a009b7e103c" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b4b90c19-cbd0-4562-875f-2c026c26486e" name="Land Raider Crusader" points="250.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="52a7bf04-7d3e-4a4d-b9be-17efa2b84a18" 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="03969173-a1bd-4698-a309-3cf2e954e89d" 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="3d8350c6-50cd-4237-8683-69f1823866f4" name="Pintle Multi Melta" 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="894e3f97-a4d5-4b4d-bda8-dee22e8fe5d5" 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="48e6ba94-7b5a-4ae0-8c6f-46332e3a23fb" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="10300185-7b2e-4dfa-9b6d-3847025f73d4" name="Land Raider Redeemer" points="240.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="18afbc8a-f44c-409a-914a-a4f674e4d4ec" 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="a4689e26-62b9-4394-b22b-733b3f484401" 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="84e97cf1-7e1d-4217-a700-443f3eb6f1a7" name="Pintle Multi Melta" 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="2c990b72-5127-4cde-ba7f-ad6fbc35ef3a" 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="5c6ea01a-f1d9-48a8-aa40-28818a5701d3" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="22a78c59-a400-4353-9bbe-85c0d232baab" name="Drop Pod" 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>
<entry id="1b322565-f53a-49de-b5d9-8993072df586" name="Locator Beacon" 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="2bb20be1-81a2-41bf-837e-b0ea95392df7" name="Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="184f3a74-641a-44ee-826d-87b1ea6a6602" name="Storm 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="e7362531-898b-4091-9952-c4d850642bc2" name="Deathwind Missile Launcher" 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/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="f21abb30-dfc7-4658-ad38-de78013e33eb" name="Land Speeder 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="c42ce7f2-77ba-4d32-9319-efb3d780f329" name="Land Speeder" points="50.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="f56886dd-a6d1-44be-9efc-81adfcab4bd5" name="Cockpit Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="7f013768-1cf6-4eff-b6a3-bd312b5c5eeb" 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="e15689d1-afb4-459c-8408-b5747cf38122" name="Multimelta" 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="cb235cbc-a1f9-460d-a300-ea99d92bcfc2" name="Heavy Flamer" points="0.0" category="(No Category)" type="model" 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="d3b7d5fa-f3f9-4ff6-8f0a-338b9cf1b7df" name="Hull Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="3c843706-c8b4-48a6-98a2-ad0d0b584b01" 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="500b3d6e-610f-4410-b79d-097c954bdcb2" name="Heavy Flamer" 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="4e1adc1f-d8a4-4b27-aa93-a535025c0dd4" name="Typhoon Missile Launcher" 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="990dd2be-9156-4de9-9b21-db33fbb0a1ee" name="Assault Cannon" 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="1a64eb64-2adf-4bf1-b744-a4ec27141688" name="Multi Melta" 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/></entry>
<entry id="b8c75179-1522-44be-a789-9b3557e6044c" name="Librarian" points="100.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="973e3d0a-1dfb-4f1f-819d-978efdc9d531" name="Epistolary" 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="bcb65b50-3bee-4d12-9463-9506fd4c5f42" name="Armour" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ad510e1a-b0b2-4647-b48f-04467bfc8d56" name="Power Armour" 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>
<entryGroup id="07a889cc-8eed-4d02-bd34-675e88dbd699" name="Weapons" defaultEntryId="ac17ff44-2269-4c88-9074-16ca7a0194f1" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4c49bbc2-0b27-4f9d-9bdc-d411c305dd94" 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>
<entry id="a7c8ed49-ef07-4c0a-9abb-1040ff63e07c" name="Combi-Flamer" 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="282bae83-9848-4fb5-8cf7-b1b71a65959e" name="Combi-Melta" 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="058fd857-4383-4e3b-b793-a9a5d4f6c2c0" name="Combi-Plasma" 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="5cd83384-e470-4f24-98ed-a066afdf2154" name="Hand Flamer" 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="6c722546-099e-4056-ba44-f046828613a3" name="Plasma Pistol" 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="48ad4694-103f-45af-a5ba-4c092bc9437e" name="Infernus Pistol" 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="872b269d-a589-4f21-87ca-af9259ae9ddf" name="Storm Bolter" points="3.0" category="(No Category)" 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="345d9a25-3351-44f5-a5f5-40b3fab89d1a" name="Bolter" points="0.0" category="(No Category)" type="model" 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="56905b79-cd09-4e32-b390-57f9b68fa971" name="Other Equipment" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="72cf7e6d-fe5b-4ed9-aaab-87e6f556d56a" name="Jump Pack" points="25.0" category="(No Category)" 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="6f79982d-043d-4f90-9dde-dec4dba86bab" name="Space Marine Bike" 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/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="995b2740-bc36-410a-87b8-1bc6b608d1b6" name="Terminator Armour" points="25.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="2d8c7d1a-eee1-4398-85b2-60b0726d0525" name="Ranged Weapon" defaultEntryId="6c1911e7-8518-452f-acef-fe8fed49450c" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5bedf065-4748-41d6-8dc5-7fe88fd6c7c3" name="Storm Bolter" 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="819752ac-abdc-4abf-91db-d1e2f0546257" name="Combi-Plasma" 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="b7eee9eb-8afe-4c2b-bbf6-808faf7508e7" name="Combi-Melta" 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="0d8f2cb6-e037-43ac-a5a5-69d2ebe2088f" name="Combi-Flamer" 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="fb08a3c1-ab2a-43aa-9c27-359b1739b8f6" name="Storm Shield" 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/></entryGroup>
<entryGroup id="e9f3456f-4693-4ca0-ab0f-8dc180599218" name="Psychic Powers" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="1f0a2645-d307-41c3-ad15-8c052838affd" name="Blood Lance" 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="20292272-f8f8-4881-98ba-b0286ec8ca6c" name="Unleash Rage" 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="068ff3b4-d6a8-4b16-a25a-a9b5fd3ee290" name="Shield of Sanguinius" 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="0d501b3b-bc08-4e6d-8652-3c8c04934e98" name="Smite" 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="02e43717-a330-4ff9-bd66-2f3ac0c05488" name="Shackle Soul" 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="92ed02c1-c4d7-40bd-b9a7-21bde704effe" name="Might of Heroes" 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="619c4d2b-ff93-4545-a015-e46a0fa458a9" name="Wings of Sanguinius" 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="d198ff2e-f456-4d83-b68e-d3a4f0cbbb64" name="The Sanguine Sword" 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="a38142b7-4daf-4e7c-9ce4-dca9198a7db0" name="Blood Boil" 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="fb3632b1-0e16-4ef8-87ca-cb5a536ade07" name="Fear of the Darkness" 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="edefe07e-6c1e-4e2e-8907-d8ec58cbd696" name="Mephiston, Lord of Death" points="250.0" category="HQ" 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="e0f69206-c1c3-4ca0-abda-4f30143440ea" name="Predator" points="70.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="b0f9803c-757d-4c0a-a7e0-3167eaeb8ee7" 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="b77570fb-3ad7-4c27-9be5-6d0fc64c8ed0" 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="9e85ed91-f5d6-41fd-9abd-859b78d51186" name="Dozer Blade" 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="2f5074b7-ace8-4b53-90ad-de9fe00c5a8a" 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="2f991dc8-cfb1-464d-a21d-56813bc4bf9b" 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>
</entries><entryGroups>
<entryGroup id="95812d75-adb5-4b06-a7cd-f79b494667cc" name="Turret Weapon" defaultEntryId="0a773b80-4a72-4a7d-9436-37252ccc6497" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="7bc41f14-f4d9-4f2e-a2a8-f27d1dca4f55" name="Autocannon" 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="eea53427-e492-49ae-97b7-87b32c532fef" name="Twin Linked Lascannon" points="45.0" category="(No Category)" 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="a46afa00-dd0d-4225-b418-edca04aa6d70" name="Sponsons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="0b9d9cdb-5fbd-4c2e-af58-0ff4dc4383a2" name="Lascannon" points="65.0" category="(No Category)" 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="f025eca5-4688-42b9-835b-4c30904bc2d1" name="Heavy Bolters" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="23903b80-b45d-4059-96fe-68d5db07edb8" name="Reclusiarch" points="130.0" category="HQ" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="4934e2bf-7bea-4ec9-baa7-e6d6676a3664" 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="acbe6c66-4bf7-41df-9022-835fb22cf3a4" name="Armour" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="fa4ed9ca-e1a2-4f33-831a-8d34ed0d45eb" name="Power Armour" 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>
<entryGroup id="0cf8283d-dc7d-486d-8f5f-400e11ec840a" name="Weapons" defaultEntryId="ac17ff44-2269-4c88-9074-16ca7a0194f1" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ac17ff44-2269-4c88-9074-16ca7a0194f1" 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>
<entry id="4a2edd26-6209-479c-9283-c3947f81e4fc" name="Combi-Flamer" 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="0b44e9ce-571e-49be-a3fb-c8131d5df8b8" name="Combi-Melta" 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="0d700bde-a30c-4ce0-a471-dc18c2d3e116" name="Combi-Plasma" 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="bf1e5ebd-17ed-414a-a76f-cdb90b5eb298" name="Hand Flamer" 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="9c193f0c-ef94-49dd-a190-f1419f8958d3" name="Plasma Pistol" 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="2b500381-40b0-466a-9079-2a81356ea680" name="Infernus Pistol" 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="5822a453-281c-45c1-b04f-bc5a2c664abe" name="Storm Bolter" points="3.0" category="(No Category)" 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="d669d3b5-ae4f-4d49-95d1-38e22c102410" 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="3fda7832-2480-4d21-ba7f-bdd3070f3d16" name="Bolter" points="0.0" category="(No Category)" type="model" 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="0f00153a-af97-43c4-acf9-3eae2778a6d4" name="Other Equipment" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="656b68d9-2b78-42b9-9bfc-902ad9f63d5d" name="Jump Pack" points="25.0" category="(No Category)" 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="83487d96-0901-40d3-a8a6-ee8f1e5f5265" name="Space Marine Bike" 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/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="aff5f1a9-c5e8-456e-bf65-7035a8620ca7" name="Terminator Armour" 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>
<entryGroup id="2b8f03fc-7b96-46c0-9234-0a61fda47db7" name="Ranged Weapon" defaultEntryId="6c1911e7-8518-452f-acef-fe8fed49450c" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b248c90f-73cc-40cf-9471-d25a3c65b69e" name="Storm 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="73f03350-0882-4478-8815-82ae6ace7eba" name="Combi-Plasma" 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="919d00c3-6b5f-444e-aa89-1b9c3af1b603" name="Combi-Melta" 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="f1c71bc2-0d21-4c30-9ed6-0a29eef3d643" name="Combi-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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="ae52fc00-f615-4b95-a3e5-1b35756405b1" name="Sanguinary Guard" points="200.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="95c2f447-0181-48b5-8b5c-3dbdddfd3cae" name="Chapter Banner" 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="29a2c516-173a-4bff-af16-197485d8d09b" name="Death Masks" points="25.0" category="(No Category)" 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="87bc52fe-8850-453a-aff4-7099423c7c66" name="Melee Weapons" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="a5735b95-2a04-4284-8cef-4fb0283ee3ff" name="Glaive Encarmine" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="93bf028e-84a1-4004-aca8-d83efec79e14" name="Power Fist" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="0e9a46eb-b168-4631-ba73-1e92b505c018" name="Ranged Weapon" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="f104fa1f-f83d-4f7d-9628-4d6e725adfd5" name="Angelus Boltgun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="c9a3baff-6dce-4865-86d3-4dd2f528607a" name="Infernus Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="be30cfbf-7a95-4989-a637-1b5e18c5974d" name="Plasma Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" 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="6aaabbc5-7990-4718-85f3-fa025a4c0a4d" name="Sanguinary Guard (Troops)" points="200.0" category="Troops" type="upgrade" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="aec5b0d1-6b6c-4b17-bdf2-ed48733bf3f1" name="Chapter Banner" 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="88a06d54-77c7-4918-aa8c-04bc78900dae" name="Death Masks" points="25.0" category="(No Category)" 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="22600926-165a-4d51-9d38-54b56907a899" name="Melee Weapons" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="dfa1f117-cf52-443c-8ab8-c8ee57e90ec8" name="Glaive Encarmine" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="1cc84731-9022-4777-9fb8-32ab104f44b9" name="Power Fist" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="57ee3f29-5359-4e41-a75b-244a99447f10" name="Ranged Weapon" minSelections="5" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="bbe09f38-e84a-40d9-98ee-f53f74865c60" name="Angelus Boltgun" points="0.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f4cd39c7-c21e-45f6-9f71-1ea10961734a" name="Infernus Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d62be36f-180b-4d36-8458-08a298d42d6f" name="Plasma Pistol" points="10.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="5" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</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="roster" childId="68329002-3ab0-4aa2-9a47-30f9773d49f3" field="selections" type="equal to" value="1.0"/>
</conditions><conditionGroups/></modifier>
</modifiers><rules/><profiles/></entry>
<entry id="481f88a0-ef6e-4949-b33a-be863fbeb18f" name="Sanguinary Priests" points="0.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e0c4c2c8-b081-4e07-a462-8760c40a3c90" name="Sanguinary Priest" points="50.0" category="(No Category)" type="upgrade" minSelections="1" maxSelections="3" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups>
<entryGroup id="3bd9aca9-d8ea-4cc7-8b88-8d4bdc4a6a59" name="Option" defaultEntryId="f76ff009-a5fa-4f78-95a6-de4ebdc3166e" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="da9a5fd8-c879-4ab2-a742-4b23577c8c41" name="Brother Corbulo" 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/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="f76ff009-a5fa-4f78-95a6-de4ebdc3166e" name="Power Armour" 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="c88240bf-4a11-476a-8fe4-b0d63bf5c1fc" 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="8a9f387b-eb27-483c-90f5-016984ba83c5" name="Melee Weapon" defaultEntryId="200116f2-69ab-43a1-9820-a89b534cbace" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="200116f2-69ab-43a1-9820-a89b534cbace" name="Chainsword" points="0.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/><rules/><profiles/></entry>
<entry id="9af426b2-395b-47a3-9b42-d57c445ad77d" name="Lightning Claw" 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/><rules/><profiles/></entry>
<entry id="a6d38435-eda1-45e7-85dd-c27237014b7d" name="Power Weapon" 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/><rules/><profiles/></entry>
<entry id="a36e6035-9b3a-45a0-9aa6-0f44f7905650" name="Power Fist" points="25.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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="4d1e865a-a183-42e0-a0ce-8f7b2d7a2fe5" name="Other Equipment" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="b1118c51-87d2-4458-87a4-6e9f4cd1cf4f" name="Jump Pack" points="25.0" category="(No Category)" 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="90d08aff-7947-48b6-b42d-677e77217687" name="Space Marine Bike" 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/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
<entryGroup id="360b80d9-b13b-408a-97b6-f09d404a9875" name="Ranged Weapon" defaultEntryId="544e54f3-dfef-40f0-898e-daafa9cd81db" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="544e54f3-dfef-40f0-898e-daafa9cd81db" name="Bolt Pistol" points="0.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/><rules/><profiles/></entry>
<entry id="68f8778c-49f3-4792-8e41-7d752d2353d1" name="Combi-Flamer" points="10.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/><rules/><profiles/></entry>
<entry id="e924ae83-5a39-4417-a290-3435a96518c9" name="Combi-Melta" points="10.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/><rules/><profiles/></entry>
<entry id="df6b375e-5941-4614-bd84-50abef9c4928" name="Combi-Plasma" points="10.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/><rules/><profiles/></entry>
<entry id="30616390-40fb-4da6-b912-0e1c4ca7c4da" name="Hand Flamer" points="10.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/><rules/><profiles/></entry>
<entry id="633b742c-d263-4c8f-8323-c97cb755b716" name="Plasma Pistol" 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/><rules/><profiles/></entry>
<entry id="bf2bb4ee-1eef-4f6d-913f-06d939b0f395" name="Infernus Pistol" 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/><rules/><profiles/></entry>
<entry id="2facfbd4-7274-44a5-b8f3-a578b017468b" name="Storm Bolter" points="3.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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="6339c4bf-3e10-4e54-a6b0-50244c54d03f" name="Terminator Armour" 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>
<entry id="3aacba00-c8d7-4b5f-abfe-6c360ffb599e" 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/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="41ad6d3c-52e4-4bb4-a03e-2d63d2bae557" name="Scout Bike 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="d5e49c3b-e326-4e6a-b5db-ab19597ff93f" name="Scout Bikers" points="20.0" category="(No Category)" type="upgrade" minSelections="2" maxSelections="9" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="dc5ac323-cd8a-4d84-af9e-9b5e2a92d03f" name="Veteran Sergeant" 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="23674fac-4bed-43d5-869a-87952037d6fd" 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="f5b15f56-6d48-4079-b51f-d71bb6617f35" name="Locator Beacon" points="25.0" category="(No Category)" 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="013c106d-b1ce-419c-9a0b-1e67aeb49682" name="Weapons" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="8e8a72ee-74b2-4ae9-abb7-9c1d5e7768ab" name="Plasma Pistol" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="61802dd7-dd1c-4e3f-84e5-e07f73132e5d" name="Power Weapon" points="15.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3c3e11d8-5949-4779-ab36-beee1a048352" name="Power Fist" points="25.0" category="(No Category)" type="upgrade" minSelections="0" maxSelections="8" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="dc729920-495b-415c-9c47-fd1aa33f40d1" name="Combi-Flamer" points="10.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/><rules/><profiles/></entry>
<entry id="9e106355-329a-407c-b308-07411c79f535" name="Combi-Melta" points="10.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/><rules/><profiles/></entry>
<entry id="295bc16a-819b-460a-a4e9-95d15ddf06a3" name="Combi-Plasma" points="10.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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="43bc3157-eecd-42de-8c17-06d41a5bb26b" name="Astartes Grenade 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="f222967a-dd48-4b67-a966-464a4391d1f5" name="Cluster Mines" 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/><rules/><profiles/></entry>
<entry id="ab0aba53-4925-4422-9bf3-7b1546ae2f93" name="Scout Squad" 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="762408ef-7b36-489c-ac7a-ef9963487c9f" name="Scouts" points="13.0" category="(No Category)" type="upgrade" minSelections="4" maxSelections="9" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="75c88d2f-a795-405c-8632-04102feaef3d" name="Camo Cloaks" points="3.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/><modifiers/><rules/><profiles/></entry>
<entry id="9c295288-ff90-4555-a9ac-e4364453e6b4" name="Veteran Sergeant" points="23.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="fbd5af91-1850-4981-89de-e7b99d3feb18" name="Locator Beacon" points="25.0" category="(No Category)" 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="516f9ff1-ac1a-4e9d-b8bd-c1b20a43d96f" 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="b9681059-9567-49e6-adab-7324ce1373f6" name="Camo Cloak" points="3.0" category="(No Category)" 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="b064f816-d957-4d5c-91c6-78706537f2a2" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="19926fe7-5900-4620-a1de-bfc8cbbc6260" 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>
<entry id="5765d085-c001-4a77-8436-75947b87e495" name="Combat Blade" 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="e7a559fe-041b-43b0-939c-590dee837f93" name="Plasma Pistol" 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/><rules/><profiles/></entry>
<entry id="32528419-37b6-4adc-b334-941336024914" name="Sniper Rifle" 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="69d16ff8-6694-49bc-8a9d-db9b11e2c156" name="Power Weapon" 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/><rules/><profiles/></entry>
<entry id="70bb4268-e939-4e9f-adbb-eeb4d6ba875b" name="Power Fist" points="25.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/><rules/><profiles/></entry>
<entry id="beaf26fa-d794-491c-837b-c396ab1d419c" name="Shotgun" 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="6644c83f-0af7-4ce4-a92e-39f84da56f76" name="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="54f51aa7-6bec-4f4d-bcd0-2a1bbd3d5560" name="Combi Melta" points="10.0" category="(No Category)" type="model" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="3988f6c4-e4c1-4d17-ad7f-bfccafc5bf46" name="Combi Flamer" points="10.0" category="(No Category)" type="model" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="4decfa45-a898-45a3-be22-63b6d2825e8a" name="Combi Plasma" points="10.0" category="(No Category)" type="model" minSelections="0" maxSelections="2" 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>
<entryGroup id="7d35d80c-8e2f-4e9f-bbe0-7ce2c34db2b8" name="Weapons" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="cf4f32e2-25aa-4602-ab01-03c466540838" name="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="e620c842-7624-437e-a994-9f27878a5dd2" name="Combat Blade" 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="c2bb9b66-1a0e-43ba-93e2-75ca494d4d84" name="Shotgun" 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="1a970d1f-5f48-4027-99bc-273a15726b4c" name="Sniper Rifle" 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>
<entryGroup id="0ee837ef-e9b3-49fb-878d-2595ae45e18b" name="Heavy Weapon" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9eac0d83-2673-4e64-9c2a-6bd3511eb71d" 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="28de8c36-ecd7-4c0b-850a-45cd5292c9de" 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>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers>
<modifier type="increment" field="maxSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="ab0aba53-4925-4422-9bf3-7b1546ae2f93" incrementChildId="762408ef-7b36-489c-ac7a-ef9963487c9f" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
<modifier type="increment" field="minSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="ab0aba53-4925-4422-9bf3-7b1546ae2f93" incrementChildId="762408ef-7b36-489c-ac7a-ef9963487c9f" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
</modifiers></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="73aa05c1-2bcf-43d1-9b96-2234de149299" name="Sternguard Veterans" points="0.0" category="Elites" type="upgrade" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="2866b9ac-75ef-4588-9d0d-93168ba0a982" name="Sternguard" points="25.0" category="(No Category)" type="upgrade" minSelections="4" maxSelections="9" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="af1af29b-48c4-4a6e-bd6a-004c6ffcbb31" 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="c8c3b481-71de-4f1f-b53c-32877520c1bb" 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="d552a9c3-40ec-4384-96f5-9cd6348df2c1" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="10115c1f-cbe0-45ba-99a2-a3ecfe15864d" 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>
<entry id="03b8d688-3adb-4ae7-939f-72a378c897d1" name="Combi-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="90106988-538b-41c5-b49e-dfbbcef950eb" name="Combi-Melta" 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="30a6f747-49e6-49fb-91e6-f1f8cfd4a3be" name="Combi-Plasma" 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="82e1b241-6068-4b19-9ccb-f6dedc023533" name="Plasma Pistol" 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/><rules/><profiles/></entry>
<entry id="fe8ab8b5-84b6-4981-95db-b05fecb24794" name="Storm Bolter" 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="09ba9608-e9ac-4dc3-8d02-4a21e9cf5f15" name="Power Fist" points="25.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/><rules/><profiles/></entry>
<entry id="d018f3fc-7449-4eaf-a2a4-3602be864d5b" name="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="581c68b2-3c9c-4ad7-a9c6-8ba8d3df6fb4" name="Chainsword" points="0.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/><rules/><profiles/></entry>
<entry id="0f901049-e51a-489a-82b7-79e6c7ea73ce" name="Power Weapon" 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/><rules/><profiles/></entry>
<entry id="31391705-b123-4b7c-9291-5b4a5f2cce98" name="Lightning Claw" points="0.0" category="(No Category)" type="model" minSelections="0" maxSelections="2" 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>
<entryGroup id="0d12ac0c-7f94-4800-ac24-be41aa0dbc6d" name="Weapons" defaultEntryId="cdc289cf-aa72-41b6-8262-f562f7dd90c9" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="cdc289cf-aa72-41b6-8262-f562f7dd90c9" 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="fa5245f9-4eed-4f40-964b-27e244e31408" name="Combi-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="6ef6e34a-18d2-4ab6-914d-c7df3fd290f6" name="Combi-Melta" 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="66aa0aae-72b3-47c3-a26d-59e316f99f36" name="Combi-Plasma" 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="2b629960-690a-4fd1-ac01-bb5f9aa40cb4" name="Storm Bolter" 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="7603f3b6-1a9c-406c-be53-d088fd8f70b1" name="Special/Heavy" minSelections="0" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="916dfe2b-90a4-401f-aeea-56c6f3278558" name="Meltagun" points="5.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/><rules/><profiles/></entry>
<entry id="25600d88-56d4-4782-bda1-13734e7b1194" name="Plasmagun" points="10.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/><rules/><profiles/></entry>
<entry id="e0f9b4e2-d6e4-492a-bea6-9264afeae15d" name="Flamer" points="5.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/><rules/><profiles/></entry>
<entry id="b5292502-bb3b-4b39-bcd3-8ce61845383a" name="Heavy Bolter" points="5.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/><rules/><profiles/></entry>
<entry id="fd0fb968-7d60-46d8-9eef-4977bfe2b509" name="Missile Launcher" points="5.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/><rules/><profiles/></entry>
<entry id="bf0e42d7-faea-4905-a740-bd110cd1f2c0" name="Multi Melta" points="5.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/><rules/><profiles/></entry>
<entry id="41bcad64-039a-4fc3-853e-4c511584990c" name="Heavy Flamer" points="10.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/><rules/><profiles/></entry>
<entry id="2029a7e1-2177-44a9-ad20-79fb06385875" name="Plasma Cannon" points="10.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/><rules/><profiles/></entry>
<entry id="3f973d71-b94a-4441-bfa9-fdf41391d565" name="Lascannon" 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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers>
<modifier type="increment" field="maxSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="73aa05c1-2bcf-43d1-9b96-2234de149299" incrementChildId="2866b9ac-75ef-4588-9d0d-93168ba0a982" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
<modifier type="increment" field="minSelections" value="1.0" repeat="true" numRepeats="1" incrementParentId="73aa05c1-2bcf-43d1-9b96-2234de149299" incrementChildId="2866b9ac-75ef-4588-9d0d-93168ba0a982" incrementField="selections" incrementValue="1.0"><conditions/><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="f193c03a-c3bf-4b01-a28f-93fb9ba75e1a" name="Transport" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="ef3c7ec2-fbaa-42b9-b97c-a45d5010ad65" name="Rhino" 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>
<entry id="da555fa4-c984-4b4a-8430-6e18fd3b6067" 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="655ae9a7-9da1-46bd-8d73-29894bc50967" 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="94de3f2b-cc6f-46f7-a8cd-c5232de45edc" name="Dozer Blade" 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="aedc1160-a0a8-4e7d-ab39-e0f13b922068" 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="16621c3c-f1ff-4369-b3c4-3442c96a1db4" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="d734923b-abd0-4f4d-a317-1f14692e02a3" name="Razorback" 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="dbff315c-f3ae-4769-8874-2024b9e0c7fd" 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="b11a5dc9-eaad-4b44-8c50-205cb1958663" 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="f6aaa414-258c-42f7-beb8-ed56fee0807e" name="Dozer Blade" 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="a5476e80-74f8-4bdb-910d-8bb53d19b4af" 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="39588205-ef95-46f1-af48-112475890664" 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>
</entries><entryGroups>
<entryGroup id="725eea2e-8395-4071-891b-721dd94d100c" name="Turret Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="97ad294a-b2de-424b-913b-e5f31fc595ee" name="Twin Linked Heavy Flamer" points="0.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="79dbcc9d-df57-4013-acb1-3842e48f8c04" name="Twin Linked Heavy Bolter" points="0.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e433209e-899e-4e28-84c2-f84ceadad461" name="Twin Linked Lascannon" points="35.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="342456fc-e11a-46f0-be6e-28bf9bcb30c2" name="Lascannon & Twin Linked Plasma Gun" points="35.0" category="(No Category)" type="model" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="e83b134a-3e2a-4f04-ab7f-0e3187a330fe" name="Twin Linked Assault Cannon" points="35.0" category="(No Category)" type="model" 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="6a69684c-88b9-4ffc-ab38-b954122bd13c" name="Land Raider" points="250.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="b318a437-f1ba-4b4e-8bdd-6a8600ebd116" 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="5b2d0281-475c-4bcc-a573-a4c6ff4deb65" 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="1ce6d4fb-c40f-4ae1-b330-dfd453eb1383" name="Pintle Multi Melta" 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="f551968c-18b4-4894-b6f2-09f43220aefb" 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="cbe4614c-ba42-431a-a9e1-780754581895" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="7b3c0cd5-2ca4-4bbc-b909-0bcdc53a4bd4" name="Land Raider Crusader" points="250.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="8dc46d18-f873-4e4d-8288-baf9b55acf85" 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="ba06a969-6686-46f7-9355-580ecc18c47c" 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="0f93cdfd-ae60-4768-9538-4a7fc6a4254d" name="Pintle Multi Melta" 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="7c76b201-2e74-4d7e-9d97-3101e02373ec" 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="30760204-edc1-448f-bf83-a48997a1e094" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="ba5e39bc-0526-49b5-b090-dce3c9a501e0" name="Land Raider Redeemer" points="240.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="ecf9d037-3b8e-4303-86b7-3056f3eca5a2" 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="2b6e0165-8b41-4320-b0c7-b0250083c1bf" 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="839c1646-3d51-42c6-8d78-f56fd0c7ac1e" name="Pintle Multi Melta" 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="09006c41-bae3-4056-b1aa-b71dc4a51492" 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="2772a9df-1fad-4006-88ab-16f2ff94335b" 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>
</entries><entryGroups/><modifiers/><rules/><profiles/></entry>
<entry id="b6d91df1-47b7-40ec-bfc3-a49b8b9769c4" name="Drop Pod" 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>
<entry id="be3a1e24-c2bf-47cf-8629-e54cce53d35f" name="Locator Beacon" 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="e8844605-7b21-4f34-8f47-1f164b833d87" name="Weapon" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="de51865b-d1e8-4755-80e7-3329f30f2a11" name="Storm 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="7c4fb321-902e-495d-9ee7-c8bfa2ced57a" name="Deathwind Missile Launcher" 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/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="2978b6aa-1f47-4aa6-bb64-7ecd49516d01" name="Stormraven Gunship" points="200.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="eb604c9f-b0f7-4e25-9062-d0322e36bd3b" name="Hurricane Bolter Sponsons" 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="b86f20cd-e5f1-4420-829c-1b2495f746e8" 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="88bd1958-3887-4415-b306-cfaba1af0e44" name="Locator Beacon" 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="7d5083c5-260d-40f7-8d0d-ecf3a9d6fdb1" 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>
</entries><entryGroups>
<entryGroup id="855a4fcd-9362-4dc9-a208-df27fbca6d16" name="Primary Weapons" defaultEntryId="9079b9da-fafa-4da4-9ba6-79edc168b413" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="9079b9da-fafa-4da4-9ba6-79edc168b413" name="Twin Linked Assault Cannon" 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="5cddaa32-1035-4f55-9b49-8e8067f55f89" name="Twin Linked Lascannon" 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="bd4eb889-57da-46e9-974c-34a77bd8e207" name="Twin Linked Plasma Cannon" 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="2c23cd67-d943-49d3-90c8-f1a239ee0d32" name="Secondary Weapons" defaultEntryId="6e546217-a2b2-4178-a75c-e9e10dfe0d5a" minSelections="1" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="6e546217-a2b2-4178-a75c-e9e10dfe0d5a" name="Twin Linked Heavy Bolters" 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="710be1fd-2233-4441-ae59-a40a4495a228" name="Twin Linked Multi Melta" 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="d5825c28-d90d-420c-8817-18ebd614c425" name="Typhoon Missile Launcher" points="25.0" category="(No Category)" 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="b50c7cdc-1fbd-4dda-af0d-06e41df644d3" name="Tactical Squad" 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="49420b09-c1f5-4b3c-b227-caff5c61e1c6" name="Veteran Sergeant" points="26.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="0a40acf8-0ae3-42ff-a4cc-e49db95f4a8b" name="Teleport Homer" 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="5804c6ec-f184-4453-8ee1-67c42575ff74" 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="9df87885-a4cb-4b86-a5da-133ac55ea43d" name="Weapons" minSelections="2" maxSelections="2" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="d84346ec-ada4-41b5-84c4-df865fd6a047" 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>
<entry id="24c4c53d-3da2-4b88-8881-b5c44ff2c287" name="Chainsword" points="0.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/><rules/><profiles/></entry>
<entry id="c3336f51-6108-4db4-a381-2e6c8ae249d1" name="Plasma Pistol" 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/><rules/><profiles/></entry>
<entry id="7fefa70c-1942-4b10-a97b-1faf60e21199" name="Power Weapon" 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/><rules/><profiles/></entry>
<entry id="92de167a-fedb-4659-ba6c-c535b2a8188f" name="Power Fist" points="25.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/><rules/><profiles/></entry>
<entry id="90f656ac-7222-4654-9ce0-321fd86b6c2f" name="Storm Bolter" points="3.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/><rules/><profiles/></entry>
<entry id="8b506a62-3308-4c7d-b80a-0de8189f6b68" name="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="89d02238-ec51-40d6-a842-aca550be1573" name="Combi Melta" points="10.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/><rules/><profiles/></entry>
<entry id="f420d258-b653-4b78-9230-faaa3c6f2847" name="Combi Plasma" points="10.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/><rules/><profiles/></entry>
<entry id="dbe3ace6-e5dd-4a44-85b8-f87c56797ea4" name="Combi Flamer" points="10.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/><rules/><profiles/></entry>
</entries><entryGroups/><modifiers/></entryGroup>
</entryGroups><modifiers/><rules/><profiles/></entry>
<entry id="a5d95121-f494-4aa8-ade6-83aabc04c687" name="Tactical Marine" points="16.0" category="(No Category)" type="upgrade" minSelections="4" maxSelections="9" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries/><entryGroups/><modifiers/><rules/><profiles/></entry>
</entries><entryGroups>
<entryGroup id="7c09b779-b4fd-4485-8b29-44a7434dab56" name="Special Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e194d3ef-68da-4455-8157-fdb1d9e9eb66" name="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="302ccbae-d9e0-4e3e-92fc-862af2295b1f" name="Meltagun" 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="3b3effe6-1d12-4cb6-b630-16ee31694e61" name="Plasmagun" 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="b50c7cdc-1fbd-4dda-af0d-06e41df644d3" childId="a5d95121-f494-4aa8-ade6-83aabc04c687" field="selections" type="equal to" value="9.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="ae3f39ac-93aa-496a-8a89-8bf59c6e1ea0" name="Heavy Weapon" minSelections="0" maxSelections="0" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="5cda63cf-b833-434a-a7d4-4c46f1edf80b" 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="d2ae6c2d-dc97-40bd-853c-3e10ed3e560d" name="Lascannon" 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="a3de184b-1fa4-45c7-b95c-594416c4352a" name="Missile Launcher" 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="8ad24806-cad9-45f0-a30d-e55c1a19830e" name="Plasma Cannon" 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="a9ca162c-7a59-4579-8b81-30d26b593303" name="Multi Melta" 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>
<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="b50c7cdc-1fbd-4dda-af0d-06e41df644d3" childId="a5d95121-f494-4aa8-ade6-83aabc04c687" field="selections" type="equal to" value="9.0"/>
</conditions><conditionGroups/></modifier>
</modifiers></entryGroup>
<entryGroup id="768fd002-12cb-4ebf-8ae4-9f6a0a1a981c" name="Transport" minSelections="0" maxSelections="1" minPoints="0.0" maxPoints="-1.0" minInRoster="0" maxInRoster="-1" collective="false"><entries>
<entry id="e94007ed-ec50-4fa1-a823-274dba46aa5f" name="Rhino" 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>