Paste #8913: Denizen Debug Logs From PMCb177cec10c55754ed0b77b556bd62ebe

Date: 2014/08/27 11:10:28 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723


Java Version: 1.7.0_65
CraftBukkit Version: git-Spigot-1611 (MC: 1.7.10)
Active Plugins (44): GroupManager: 2.0 (Dev2.13.151) (Phoenix), WorldEdit: 5.6.3, VoxelSniper: 5.169.0-SNAPSHOT-jnks309-git7b2b282, 
Buycraft: 6.7, MassiveCore: 7.3.0, Vault: 1.4.1-b436, Multiverse-Core: 2.5-b691, 
HealthBar: 1.8.2, TerrainControl: 2.6.0, BloodMoon: 0.24-SNAPSHOT, WorldGuard: 5.9, 
VoidWarp: 0.4.2, dynmap: 2.0.0-SNAPSHOT-1025, DragonRaid: 0.0.1, Custom_Enchantments: 1.1e, 
CoreProtect: 2.0.9, VoidGenerator: 1.0, Legacy: 1.3.1, ClearLag: 2.7.1, ProtocolLib: 3.4.0, 
HolographicDisplays: 1.8.4, mcMMO: 1.5.01-SNAPSHOT-b3564, BiomeEdit: 1.0.1, 
ButtonWarp: 2.2.2, Essentials: Dev2.13.151, Citizens: 2.0.13-SNAPSHOT (build 1165), 
WorldBorder: 1.8.0, ShowCaseStandalone: 697, Fe: 0.8-SNAPSHOT-b53, ServerSigns: 3.0.0, 
LibsDisguises: 8.0.9, EssentialsSpawn: Dev2.13.151, Multiverse-NetherPortals: 2.5-b684, 
Smileychat: 2.5, EssentialsAntiBuild: Dev2.13.151, TouchscreenHolograms: 1.2, 
Denizen: 0.9.5-SNAPSHOT (build 1514), CompatNoCheatPlus: 6.5.0-RC-sMD5NET-b68, 
EssentialsChat: Dev2.13.151, Factions: 2.5.0, Depenizen: 0.2.0 (build 212), 
NoCheatPlus: 3.11.1-SNAPSHOT-sMD5NET-b740, ScoreboardStats: 0.7.5, Sentry: 1.8.2,
Loaded Worlds (8): world, world_nether, world_the_end, NothingLess, world2, Survival, Lobby3, test2,
Online Players (1): ❇ *- Leader -* NLBlackEagle(NLBlackEagle)

20:11:50 [INFO]  Starting InstantQueue 'EENNEDDEZI'... 
20:11:50 [INFO] +- Executing dCommand: FOREACH/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <server.list_players> with 
                   'li@p@d695838e-c457-3db0-8be3-5bfc7ebb8fa9|p@0eb6e462-8c63-3d2b-9c5b-05c7df2b9244|p@52a175d5-a98e-3d28-8f0a-8e7e8e5d13be|p@fd69b8d8-caf8-3680-be70-25b0829682be|p@54c6dca1-374c-3067-8d25-c4ba1c055a40|p@b485cdb7-a0b6-404f-af64-c17884a27b08|p@3114596f-bbdd-3f1d-a799-1f66e2028ef3|p@1e9fc179-e474-3673-8dce-f501b6a74f36|p@2acc63db-4f38-3dca-b87c-6d732f954a57|p@b2f8914d-1963-3e6f-955f-eadc1fa6b2ba|p@3714a692-1346-3463-8745-72bead76d232|p@54c227a8-1bbe-3005-b3d7-4989537bc077|p... 
                   * snip! * 
20:11:50 [INFO] +> Executing 'FOREACH': 
                   list='li@p@d695838e-c457-3db0-8be3-5bfc7ebb8fa9|p@0eb6e462-8c63-3d2b-9c5b-05c7df2b9244|p@52a175d5-a98e-3d28-8f0a-8e7e8e5d13be|p@fd69b8d8-caf8-3680-be70-25b0829682be|p@54c6dca1-374c-3067-8d25-c4ba1c055a40|p@b485cdb7-a0b6-404f-af64-c17884a27b08|p@3114596f-bbdd-3f1d-a799-1f66e2028ef3|p@1e9fc179-e474-3673-8dce-f501b6a74f36|p@2acc63db-4f38-3dca-b87c-6d732f954a57|p@b2f8914d-1963-3e6f-955f-eadc1fa6b2ba|p@3714a692-1346-3463-8745-72bead76d232|p@54c227a8-1bbe-3005-b3d7-4989537bc077|p@08a947c9-c0b3-30c5-80d6-3b... 
                   * snip! * 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@d695838e-c457-3db0-8be3-5bfc7ebb8fa9'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Dragon Slayer'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@d695838e-c457-3db0-8be3-5bfc7ebb8fa9 is 
                   Dragon Slayer'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 2 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@0eb6e462-8c63-3d2b-9c5b-05c7df2b9244'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'HotElizabeth12'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@0eb6e462-8c63-3d2b-9c5b-05c7df2b9244 is 
                   HotElizabeth12'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 3 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@52a175d5-a98e-3d28-8f0a-8e7e8e5d13be'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'daimand_master'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@52a175d5-a98e-3d28-8f0a-8e7e8e5d13be is 
                   daimand_master'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 4 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@fd69b8d8-caf8-3680-be70-25b0829682be'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'alarisn'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@fd69b8d8-caf8-3680-be70-25b0829682be is 
                   alarisn'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 5 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@54c6dca1-374c-3067-8d25-c4ba1c055a40'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Ben9606'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@54c6dca1-374c-3067-8d25-c4ba1c055a40 is 
                   Ben9606'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 6 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b485cdb7-a0b6-404f-af64-c17884a27b08'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'McBesmer'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b485cdb7-a0b6-404f-af64-c17884a27b08 is 
                   McBesmer'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 7 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@3114596f-bbdd-3f1d-a799-1f66e2028ef3'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'xgen43'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@3114596f-bbdd-3f1d-a799-1f66e2028ef3 is 
                   xgen43'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 8 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@1e9fc179-e474-3673-8dce-f501b6a74f36'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'megaahmed2001'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@1e9fc179-e474-3673-8dce-f501b6a74f36 is 
                   megaahmed2001'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 9 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@2acc63db-4f38-3dca-b87c-6d732f954a57'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'BronyMonvey'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@2acc63db-4f38-3dca-b87c-6d732f954a57 is 
                   BronyMonvey'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 10 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b2f8914d-1963-3e6f-955f-eadc1fa6b2ba'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'NagiTre'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b2f8914d-1963-3e6f-955f-eadc1fa6b2ba is 
                   NagiTre'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 11 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@3714a692-1346-3463-8745-72bead76d232'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'IceKroontje'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@3714a692-1346-3463-8745-72bead76d232 is 
                   IceKroontje'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 12 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@54c227a8-1bbe-3005-b3d7-4989537bc077'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'AnthonHP3'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@54c227a8-1bbe-3005-b3d7-4989537bc077 is 
                   AnthonHP3'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 13 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@08a947c9-c0b3-30c5-80d6-3b84c38babb6'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'ethantaylor8'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@08a947c9-c0b3-30c5-80d6-3b84c38babb6 is 
                   ethantaylor8'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 14 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@188afde0-febe-31e6-b665-d56e3d129e8b'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'i8chewbacca'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@188afde0-febe-31e6-b665-d56e3d129e8b is 
                   i8chewbacca'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 15 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@431e94c5-629c-3dfc-b47a-3422e1ad8681'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'dylanegg'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@431e94c5-629c-3dfc-b47a-3422e1ad8681 is 
                   dylanegg'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 16 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@705f9da1-5100-4222-b17a-5af1c22f7280'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Wario199'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@705f9da1-5100-4222-b17a-5af1c22f7280 is 
                   Wario199'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 17 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@28a32035-4b3d-34ce-9c50-2b392608b7b8'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'RolxPL'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@28a32035-4b3d-34ce-9c50-2b392608b7b8 is 
                   RolxPL'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 18 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8a2ec0a6-cc84-35eb-a634-9da6e7857f31'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Ace6175'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8a2ec0a6-cc84-35eb-a634-9da6e7857f31 is 
                   Ace6175'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 19 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8ae9b1dd-256c-42d9-9870-7206879c9e4b'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Innterfere'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8ae9b1dd-256c-42d9-9870-7206879c9e4b is 
                   Innterfere'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 20 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@72639d65-81e4-3c30-a154-19882159e918'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'OzOwnz'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@72639d65-81e4-3c30-a154-19882159e918 is 
                   OzOwnz'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 21 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@015390e4-9396-3e65-bfd7-a8507b0b15ea'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'tarpleeboy'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@015390e4-9396-3e65-bfd7-a8507b0b15ea is 
                   tarpleeboy'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 22 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8c83668f-9396-3242-b455-89d1c69a51d7'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Stickyguitar123'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8c83668f-9396-3242-b455-89d1c69a51d7 is 
                   Stickyguitar123'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 23 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@4b7e9df1-4346-4ec8-b7a6-f7f864789102'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'felixman38'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@4b7e9df1-4346-4ec8-b7a6-f7f864789102 is 
                   felixman38'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 24 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@901a2140-5d22-308c-a752-49638f4fb2da'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'BilboSwaggins589'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@901a2140-5d22-308c-a752-49638f4fb2da is 
                   BilboSwaggins589'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 25 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b6f84aaf-051a-322f-b4a8-a210ab9fae95'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'SpentPilot75'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b6f84aaf-051a-322f-b4a8-a210ab9fae95 is 
                   SpentPilot75'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 26 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c2cf9d8d-9ab9-3e6c-bd0b-f72c767199a7'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Alanaaya'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c2cf9d8d-9ab9-3e6c-bd0b-f72c767199a7 is 
                   Alanaaya'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 27 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@2f3c2b97-3335-3e52-a77c-b4d75cfe9368'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'wyattsouth'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@2f3c2b97-3335-3e52-a77c-b4d75cfe9368 is 
                   wyattsouth'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 28 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@460e96b9-7a0e-416d-b2c3-4508164b8b1b'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'mcmonkey4eva'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@460e96b9-7a0e-416d-b2c3-4508164b8b1b is 
                   mcmonkey4eva'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 29 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c2d7a6aa-fc39-38e7-ad2d-057d6215f07c'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'alex_ionn_1999'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c2d7a6aa-fc39-38e7-ad2d-057d6215f07c is 
                   alex_ionn_1999'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 30 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b3b4d1d3-f3b2-3c22-bf76-d895aa2da652'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'falkeN03'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b3b4d1d3-f3b2-3c22-bf76-d895aa2da652 is 
                   falkeN03'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 31 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@31c6b760-fa08-3c4f-85da-4746d97fca44'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'MonckeyBarrel'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@31c6b760-fa08-3c4f-85da-4746d97fca44 is 
                   MonckeyBarrel'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 32 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@2d6575bd-736d-36e4-b7c8-d729ece8d35b'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'joz4842'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@2d6575bd-736d-36e4-b7c8-d729ece8d35b is 
                   joz4842'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 33 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@f1ab1e60-bc13-38b6-a6de-ad1f406a5485'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'wetset'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@f1ab1e60-bc13-38b6-a6de-ad1f406a5485 is 
                   wetset'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 34 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@03ccc69b-60db-3cbd-a54e-319e0cc82c03'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'ConShMan'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@03ccc69b-60db-3cbd-a54e-319e0cc82c03 is 
                   ConShMan'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 35 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@30cff1ce-8e78-33a6-863e-5bf45a05a8c3'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'J3LLYzmellY'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@30cff1ce-8e78-33a6-863e-5bf45a05a8c3 is 
                   J3LLYzmellY'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 36 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@5f837bc2-9a9e-3d27-9358-da875541d36b'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'xXGEZUSxCHRISTXx'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@5f837bc2-9a9e-3d27-9358-da875541d36b is 
                   xXGEZUSxCHRISTXx'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 37 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b8c41067-5c54-46c7-8bc8-e7bb6f3db35a'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'XpertGamer_'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b8c41067-5c54-46c7-8bc8-e7bb6f3db35a is 
                   XpertGamer_'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 38 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@19d2b653-63bc-354f-9f71-5054ae737482'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'ryanman996'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@19d2b653-63bc-354f-9f71-5054ae737482 is 
                   ryanman996'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 39 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@7dab3b57-bb0e-39f9-92ed-d46e0319f0c6'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'CoolguyBill'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@7dab3b57-bb0e-39f9-92ed-d46e0319f0c6 is 
                   CoolguyBill'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 40 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@2c0c4ca5-3011-3c38-b3e9-1cf089d37549'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'ANIMECK'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@2c0c4ca5-3011-3c38-b3e9-1cf089d37549 is 
                   ANIMECK'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 41 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@270217b8-5c17-3364-bb2c-47d68115a147'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'harrison040403'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@270217b8-5c17-3364-bb2c-47d68115a147 is 
                   harrison040403'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 42 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@d56d84e2-9af0-3456-ad9c-cbb4da289eef'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'NatsuOP'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@d56d84e2-9af0-3456-ad9c-cbb4da289eef is 
                   NatsuOP'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 43 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@99815004-6526-3235-937c-5d210cbcd0ca'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'DPGuy'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@99815004-6526-3235-937c-5d210cbcd0ca is 
                   DPGuy'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 44 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@143a37aa-a329-3f76-9be9-6a1d10b9111a'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'ShadowTechs'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@143a37aa-a329-3f76-9be9-6a1d10b9111a is 
                   ShadowTechs'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 45 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@1df761be-d045-3e99-a23b-aff4900fe631'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'seitzer123'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@1df761be-d045-3e99-a23b-aff4900fe631 is 
                   seitzer123'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 46 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@39d72b5f-8df2-3122-b62d-db41c319e75a'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Deangator95'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@39d72b5f-8df2-3122-b62d-db41c319e75a is 
                   Deangator95'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 47 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c06422e6-b0db-38c6-a97d-69a76e9663f0'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'zetologos'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c06422e6-b0db-38c6-a97d-69a76e9663f0 is 
                   zetologos'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 48 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@42b9a27b-15fd-3710-a33b-063c56457b3e'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'mrscrewup101'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@42b9a27b-15fd-3710-a33b-063c56457b3e is 
                   mrscrewup101'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 49 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@d2617bfc-aa9d-3894-9736-397547688dcb'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'jackganley'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@d2617bfc-aa9d-3894-9736-397547688dcb is 
                   jackganley'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 50 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@738292a8-5e05-3f7b-aad1-64210bb6264d'. 
20:11:50 [INFO]  Filled tag <def[value].name> with '_Rollergirl2000_'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@738292a8-5e05-3f7b-aad1-64210bb6264d is 
                   _Rollergirl2000_'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 51 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@bbd59bce-f9e1-33c4-8df0-6953320a6ee6'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Warrior'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@bbd59bce-f9e1-33c4-8df0-6953320a6ee6 is 
                   Warrior'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 52 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@e10f85a7-b14a-3405-8bf5-f7976fcffa1d'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'taaaquitoooooos'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@e10f85a7-b14a-3405-8bf5-f7976fcffa1d is 
                   taaaquitoooooos'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 53 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c56d51d6-3135-43b7-8c2e-3f63e531c807'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'SparkySchulz'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c56d51d6-3135-43b7-8c2e-3f63e531c807 is 
                   SparkySchulz'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 54 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@909e1b54-0217-36f1-a68f-9b021bcb8365'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'superminecraft75'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@909e1b54-0217-36f1-a68f-9b021bcb8365 is 
                   superminecraft75'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 55 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8d059302-80dc-4d94-bb2e-9ae3dddbc1ca'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'zippobaines'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8d059302-80dc-4d94-bb2e-9ae3dddbc1ca is 
                   zippobaines'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 56 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@398526ab-df25-4c4b-af20-f7ab83c9ed89'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'polarluke2'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@398526ab-df25-4c4b-af20-f7ab83c9ed89 is 
                   polarluke2'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 57 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@5df0f098-a8b8-3d19-bdad-1465cb09b84e'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'JackieAleardi'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@5df0f098-a8b8-3d19-bdad-1465cb09b84e is 
                   JackieAleardi'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 58 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@524c772a-ac3f-4448-b31e-a2c9cb248a0c'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'love_iz_evol'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@524c772a-ac3f-4448-b31e-a2c9cb248a0c is 
                   love_iz_evol'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 59 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@0c5af68b-386a-447c-948e-103d314b7159'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Eir259'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@0c5af68b-386a-447c-948e-103d314b7159 is 
                   Eir259'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 60 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@854749b4-a99f-4efe-aa98-631391da5d5e'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'PeteZahHutt__'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@854749b4-a99f-4efe-aa98-631391da5d5e is 
                   PeteZahHutt__'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 61 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b2dcc502-22c9-3e55-8e37-772739ed1fea'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Honeybunch2'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b2dcc502-22c9-3e55-8e37-772739ed1fea is 
                   Honeybunch2'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 62 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@022bcf53-bccc-4401-949a-a30106708a11'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Emiark'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@022bcf53-bccc-4401-949a-a30106708a11 is 
                   Emiark'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 63 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c1241817-ac0d-3cb7-9f83-56018d2a0042'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'speroman'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c1241817-ac0d-3cb7-9f83-56018d2a0042 is 
                   speroman'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 64 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@58ecfe4e-c26c-3c95-9167-e37afd54f9d5'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'A_xx_O'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@58ecfe4e-c26c-3c95-9167-e37afd54f9d5 is 
                   A_xx_O'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 65 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@905bfc58-bb66-31d8-9e2d-51c315a9a682'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'SEJR400'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@905bfc58-bb66-31d8-9e2d-51c315a9a682 is 
                   SEJR400'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 66 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@5b46c683-f9db-3a1b-a7c1-c2422e5e6d03'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Noahtaylor8'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@5b46c683-f9db-3a1b-a7c1-c2422e5e6d03 is 
                   Noahtaylor8'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 67 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@9ac693eb-de60-3928-8204-428be7fdb533'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'faceafter'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@9ac693eb-de60-3928-8204-428be7fdb533 is 
                   faceafter'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 68 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@45bb9da4-64aa-3ad3-a22f-4508ba04f668'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'MIKKAI'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@45bb9da4-64aa-3ad3-a22f-4508ba04f668 is 
                   MIKKAI'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 69 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@48a17469-04d9-3c7c-a0a8-f0286f5ae216'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Roel200120012001'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@48a17469-04d9-3c7c-a0a8-f0286f5ae216 is 
                   Roel200120012001'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 70 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b0ca0bce-8568-3ad5-a80b-8919b2aa0a9f'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'wassili1'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b0ca0bce-8568-3ad5-a80b-8919b2aa0a9f is 
                   wassili1'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 71 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@4722542c-72a8-3649-9472-f0d900116d38'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'dragonslayer9123'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@4722542c-72a8-3649-9472-f0d900116d38 is 
                   dragonslayer9123'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 72 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@7ddf1b21-469a-3483-a80b-40049373a9c8'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'leytonbenn'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@7ddf1b21-469a-3483-a80b-40049373a9c8 is 
                   leytonbenn'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 73 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@d33fee8a-364e-364e-aba1-0fc8f5c6ce37'. 
20:11:50 [INFO]  Filled tag <def[value].name> with '1KILLERJAKE'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@d33fee8a-364e-364e-aba1-0fc8f5c6ce37 is 
                   1KILLERJAKE'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 74 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@7f690e0b-727d-39e7-8d9e-4fba776c03d3'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Sheeps900'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@7f690e0b-727d-39e7-8d9e-4fba776c03d3 is 
                   Sheeps900'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 75 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@3cce1755-d6a5-376d-ae90-fb4c94633ac5'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Noahtim8'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@3cce1755-d6a5-376d-ae90-fb4c94633ac5 is 
                   Noahtim8'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 76 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@ad4c4984-6982-3f60-81d1-846178536cc9'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'naamloos1219'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@ad4c4984-6982-3f60-81d1-846178536cc9 is 
                   naamloos1219'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 77 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@592d4f19-ebb5-34b5-8999-a48a17071f16'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Fisherman'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@592d4f19-ebb5-34b5-8999-a48a17071f16 is 
                   Fisherman'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 78 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@ee486150-7da0-3882-87eb-628f4b7d2697'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'KurthKids'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@ee486150-7da0-3882-87eb-628f4b7d2697 is 
                   KurthKids'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 79 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@9957e92a-4a22-3feb-b81b-3672bd438739'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Bros4EverMan'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@9957e92a-4a22-3feb-b81b-3672bd438739 is 
                   Bros4EverMan'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 80 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@59312cda-3283-35f3-b582-68466fa02151'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'DMotion'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@59312cda-3283-35f3-b582-68466fa02151 is 
                   DMotion'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 81 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8a53a9e1-28a8-30ce-8b50-f42d3c92b6ff'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Red_Phoenix1'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8a53a9e1-28a8-30ce-8b50-f42d3c92b6ff is 
                   Red_Phoenix1'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 82 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@0ea1e1ed-3349-3a34-b0ec-186d14231413'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'koldth'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@0ea1e1ed-3349-3a34-b0ec-186d14231413 is 
                   koldth'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 83 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@0ad21982-1441-4e83-b5d0-baa65e10f1d8'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'builderofglory'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@0ad21982-1441-4e83-b5d0-baa65e10f1d8 is 
                   builderofglory'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 84 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b4e43b2a-2a34-37aa-a863-cccc71132f22'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'MeanMoss'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b4e43b2a-2a34-37aa-a863-cccc71132f22 is 
                   MeanMoss'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 85 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@7563555a-9341-3c9c-8d72-1b2d1386ef91'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Leo_du_Toit'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@7563555a-9341-3c9c-8d72-1b2d1386ef91 is 
                   Leo_du_Toit'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 86 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8a0fd0d3-d427-3ecd-92a5-28c22c11b42e'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Rezeta09'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8a0fd0d3-d427-3ecd-92a5-28c22c11b42e is 
                   Rezeta09'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 87 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@6d81aacd-f8b6-4526-b15d-95b316ffe2bd'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'FlorianB2001'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@6d81aacd-f8b6-4526-b15d-95b316ffe2bd is 
                   FlorianB2001'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 88 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@e1d0a3f8-078a-426b-ba0e-ff92d09dc986'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'xXxBumperBoyXxXx'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@e1d0a3f8-078a-426b-ba0e-ff92d09dc986 is 
                   xXxBumperBoyXxXx'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 89 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@a2ebe340-620d-3bae-a0f9-0ef2083fa832'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'valcon02'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@a2ebe340-620d-3bae-a0f9-0ef2083fa832 is 
                   valcon02'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 90 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@25e75264-4e0d-391f-b7fe-39897710d56b'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Doeckoes'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@25e75264-4e0d-391f-b7fe-39897710d56b is 
                   Doeckoes'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 91 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@ba85964b-f511-4ca7-b1ca-df6ce1f78755'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'calicokid'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@ba85964b-f511-4ca7-b1ca-df6ce1f78755 is 
                   calicokid'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 92 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@0227c4d2-2d37-3b85-b0cf-0ffe42fb4e0e'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Da_Hollander'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@0227c4d2-2d37-3b85-b0cf-0ffe42fb4e0e is 
                   Da_Hollander'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 93 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8fc91102-54b8-3bc4-8065-d4b9f5f62f32'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'ludwigludwig01'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8fc91102-54b8-3bc4-8065-d4b9f5f62f32 is 
                   ludwigludwig01'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 94 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@e274d0e7-6780-300e-bc69-fd92d2b2e9ca'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'NiggerBob'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@e274d0e7-6780-300e-bc69-fd92d2b2e9ca is 
                   NiggerBob'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 95 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@5884dc79-cbd3-3b72-9d87-2604f55c8f32'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Varrinek'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@5884dc79-cbd3-3b72-9d87-2604f55c8f32 is 
                   Varrinek'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 96 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@bff51d18-72f2-3542-be21-ba7f0b952b45'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'BlakeTheTank777'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@bff51d18-72f2-3542-be21-ba7f0b952b45 is 
                   BlakeTheTank777'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 97 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@225780f0-c07e-3a0f-bbc5-fd0377717458'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'GameBrothers7'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@225780f0-c07e-3a0f-bbc5-fd0377717458 is 
                   GameBrothers7'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 98 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b3362dc0-2660-3b6b-8932-a2bd2abb55c1'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'thenightcatque'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b3362dc0-2660-3b6b-8932-a2bd2abb55c1 is 
                   thenightcatque'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 99 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@662235bf-a97e-3c97-988f-e346ac21a896'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Fyonah'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@662235bf-a97e-3c97-988f-e346ac21a896 is 
                   Fyonah'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 100 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@ac98ab92-c9f0-3350-b27c-4c98319e2664'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'TheGrumpyGerbil'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@ac98ab92-c9f0-3350-b27c-4c98319e2664 is 
                   TheGrumpyGerbil'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 101 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@9c74776a-0075-4a22-b21e-a840d4fc2ab3'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'NLBlackEagle'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@9c74776a-0075-4a22-b21e-a840d4fc2ab3 is 
                   NLBlackEagle'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 102 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@ef81a53e-20b4-30d6-86c6-af2779b52e0b'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'samsamster_2285'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@ef81a53e-20b4-30d6-86c6-af2779b52e0b is 
                   samsamster_2285'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 103 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@563e6764-53da-313a-8465-e1114ded9066'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Sneeuwpoeper'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@563e6764-53da-313a-8465-e1114ded9066 is 
                   Sneeuwpoeper'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 104 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@95ff0f72-80f5-3b7a-a791-b0244bbeaee0'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Ruthi_es'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@95ff0f72-80f5-3b7a-a791-b0244bbeaee0 is 
                   Ruthi_es'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 105 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@652d132c-d92d-3998-a52c-1e28ffac08e5'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'willtech12'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@652d132c-d92d-3998-a52c-1e28ffac08e5 is 
                   willtech12'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 106 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c2de43a1-1c7d-36da-bbf7-e7999e280bfd'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'smaster8'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c2de43a1-1c7d-36da-bbf7-e7999e280bfd is 
                   smaster8'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 107 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@eae59dd9-1438-3f7a-9954-53f24bf6a7a7'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'benyben565'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@eae59dd9-1438-3f7a-9954-53f24bf6a7a7 is 
                   benyben565'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 108 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@644ce460-44d2-39f0-ba21-d5f85ab98cb7'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'TownGuard'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@644ce460-44d2-39f0-ba21-d5f85ab98cb7 is 
                   TownGuard'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 109 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@50a9cd06-191f-399c-b493-9f1a4c03b387'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Biggdaddydavis'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@50a9cd06-191f-399c-b493-9f1a4c03b387 is 
                   Biggdaddydavis'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 110 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@1ff11fd2-a590-390a-a1f5-2475736961d4'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'awsomesupernate'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@1ff11fd2-a590-390a-a1f5-2475736961d4 is 
                   awsomesupernate'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 111 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@3caa62a4-a003-3a34-9961-31ae0cfc12dd'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'DexterDanielA'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@3caa62a4-a003-3a34-9961-31ae0cfc12dd is 
                   DexterDanielA'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 112 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@9b51c8e0-b331-35a2-8078-43b8b0d0c411'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'godlikewars'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@9b51c8e0-b331-35a2-8078-43b8b0d0c411 is 
                   godlikewars'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 113 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@83a8236e-c880-3f4d-bd1a-ff15100c0d6a'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'rancor6412'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@83a8236e-c880-3f4d-bd1a-ff15100c0d6a is 
                   rancor6412'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 114 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8b8a5ce3-202e-3ea0-95a6-d52f174d0eb3'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'steve15003'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8b8a5ce3-202e-3ea0-95a6-d52f174d0eb3 is 
                   steve15003'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 115 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@f33214c7-99a7-41dd-ade4-b08d50640e01'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'jarzy123'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@f33214c7-99a7-41dd-ade4-b08d50640e01 is 
                   jarzy123'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 116 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@2c9889c9-fb0f-30cb-8bf6-f346701f6491'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'creepermanha10'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@2c9889c9-fb0f-30cb-8bf6-f346701f6491 is 
                   creepermanha10'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 117 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@af884b9a-d0ef-3fa1-a081-0e61ead7bbdc'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'SeldomSeenDude'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@af884b9a-d0ef-3fa1-a081-0e61ead7bbdc is 
                   SeldomSeenDude'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 118 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@50f54448-f5f5-3de7-9c5d-e2eaa54c4479'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'speedy1E'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@50f54448-f5f5-3de7-9c5d-e2eaa54c4479 is 
                   speedy1E'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 119 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@a985b42b-1901-339d-850d-aabe823492f6'. 
20:11:50 [INFO]  Filled tag <def[value].name> with '4theman'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@a985b42b-1901-339d-850d-aabe823492f6 is 
                   4theman'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 120 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@84cd5f75-e359-3637-9044-6ab1b670c6ef'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'boaz_wansem'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@84cd5f75-e359-3637-9044-6ab1b670c6ef is 
                   boaz_wansem'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 121 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@e94af491-0b94-3e91-9fe2-f589dde45922'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'ShayanOP'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@e94af491-0b94-3e91-9fe2-f589dde45922 is 
                   ShayanOP'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 122 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@ede95aa9-91e8-3b68-953b-f238f681f214'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'NoTaBoSs01'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@ede95aa9-91e8-3b68-953b-f238f681f214 is 
                   NoTaBoSs01'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 123 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b136b311-9342-42d3-8f9d-012d6046938b'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Markfct1993'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b136b311-9342-42d3-8f9d-012d6046938b is 
                   Markfct1993'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 124 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c1c11ea8-775e-3371-977f-affb6974af95'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Bodyguard'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c1c11ea8-775e-3371-977f-affb6974af95 is 
                   Bodyguard'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 125 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c782214a-cc69-3edf-83dd-aceb2bff253a'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'loyd12345'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c782214a-cc69-3edf-83dd-aceb2bff253a is 
                   loyd12345'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 126 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@1bece9e6-5c9a-39d2-a2c0-73c2a862be94'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'linus20022'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@1bece9e6-5c9a-39d2-a2c0-73c2a862be94 is 
                   linus20022'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 127 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@859902ca-7356-31d5-b8c0-e10bb2925b68'. 
20:11:50 [INFO]  Filled tag <def[value].name> with '_aRanger'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@859902ca-7356-31d5-b8c0-e10bb2925b68 is 
                   _aRanger'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 128 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@a68273f2-726d-325a-98ae-2989cd1af38d'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Beast0805'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@a68273f2-726d-325a-98ae-2989cd1af38d is 
                   Beast0805'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 129 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@677c125a-d411-39da-97d7-3b8603ad9ffc'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'thedudewithtool'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@677c125a-d411-39da-97d7-3b8603ad9ffc is 
                   thedudewithtool'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 130 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@ea09a37c-f648-30dc-9590-ab15844158de'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Noob_mick'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@ea09a37c-f648-30dc-9590-ab15844158de is 
                   Noob_mick'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 131 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@d0d383bd-57c5-34c4-9f90-9f7cdbc9b106'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'XpackOpunchX'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@d0d383bd-57c5-34c4-9f90-9f7cdbc9b106 is 
                   XpackOpunchX'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 132 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@fb0dadb5-9da8-3b49-a49f-c8c43daf20b9'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'mutatedsmith13'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@fb0dadb5-9da8-3b49-a49f-c8c43daf20b9 is 
                   mutatedsmith13'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 133 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@f55e5aa2-a265-3757-8486-362227073fc7'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'oOMusicMasterOo'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@f55e5aa2-a265-3757-8486-362227073fc7 is 
                   oOMusicMasterOo'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 134 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@71c91187-e4fe-3cde-ba6b-a4d79b7004b0'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'keegankennedi'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@71c91187-e4fe-3cde-ba6b-a4d79b7004b0 is 
                   keegankennedi'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 135 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@f8dab848-4ad9-3bb2-b923-ee6e8037b951'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'shadow827'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@f8dab848-4ad9-3bb2-b923-ee6e8037b951 is 
                   shadow827'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 136 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@afc3988a-bc25-32be-82c8-1f7c0387dff2'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'TheBlackCoyote'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@afc3988a-bc25-32be-82c8-1f7c0387dff2 is 
                   TheBlackCoyote'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 137 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c9ff6bfe-ac71-42ae-ad4d-a49e50ff7d48'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Goma_Terzu'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c9ff6bfe-ac71-42ae-ad4d-a49e50ff7d48 is 
                   Goma_Terzu'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 138 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@3de1d052-cd71-350e-86be-9db316720347'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'KalisPro'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@3de1d052-cd71-350e-86be-9db316720347 is 
                   KalisPro'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 139 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@172cbc73-ac60-4870-b62d-b4522e9297ab'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Real_Jericho'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@172cbc73-ac60-4870-b62d-b4522e9297ab is 
                   Real_Jericho'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 140 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@39e845d5-2d1d-3fa8-aa9b-c4cc76cb3d62'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Katie1013'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@39e845d5-2d1d-3fa8-aa9b-c4cc76cb3d62 is 
                   Katie1013'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 141 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@a8d06c58-248d-34d3-bf37-52994c33aaa4'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Mini_BajanCanada'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@a8d06c58-248d-34d3-bf37-52994c33aaa4 is 
                   Mini_BajanCanada'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 142 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@222a15b8-e705-3614-a09d-57ea120f7e7e'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Project_JOCHEM'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@222a15b8-e705-3614-a09d-57ea120f7e7e is 
                   Project_JOCHEM'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 143 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@13b42f21-df6d-36d4-8ddd-ed3dc97add99'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Stoller05'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@13b42f21-df6d-36d4-8ddd-ed3dc97add99 is 
                   Stoller05'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 144 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@08015896-bd08-4f99-9d4c-36835d4a1d13'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'VindictiveWeasel'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@08015896-bd08-4f99-9d4c-36835d4a1d13 is 
                   VindictiveWeasel'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 145 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@0ff1b9d4-e207-39df-8476-f9f43ad8d087'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'LordRhys2'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@0ff1b9d4-e207-39df-8476-f9f43ad8d087 is 
                   LordRhys2'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 146 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@cb7e4e7e-08a7-4afe-92a9-56ca32cd7770'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Popcicle_Theif'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@cb7e4e7e-08a7-4afe-92a9-56ca32cd7770 is 
                   Popcicle_Theif'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 147 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@d8fcda65-4666-3d34-80fe-d2ab07f52582'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'kongleonx'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@d8fcda65-4666-3d34-80fe-d2ab07f52582 is 
                   kongleonx'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 148 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@7503ef3c-4359-4a91-b5dd-b66c7345f627'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'flowerblanky126'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@7503ef3c-4359-4a91-b5dd-b66c7345f627 is 
                   flowerblanky126'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 149 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@e2a56a70-abb1-3b76-9c44-e4cb0ddeeff2'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'superjonnyxxx'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@e2a56a70-abb1-3b76-9c44-e4cb0ddeeff2 is 
                   superjonnyxxx'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 150 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@45e5b526-2a64-3483-81db-44a4c67d8774'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'landsliding'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@45e5b526-2a64-3483-81db-44a4c67d8774 is 
                   landsliding'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 151 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@ac32ca17-d33e-3000-b03b-8e699d5470ea'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Geo3600'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@ac32ca17-d33e-3000-b03b-8e699d5470ea is 
                   Geo3600'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 152 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@a96066be-c65e-3d32-aba8-aaa050947ad5'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'THErealDEAL1177'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@a96066be-c65e-3d32-aba8-aaa050947ad5 is 
                   THErealDEAL1177'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 153 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@19500f9b-893a-3b6d-ad45-f5becb1d1ccf'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'matthiashp3'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@19500f9b-893a-3b6d-ad45-f5becb1d1ccf is 
                   matthiashp3'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 154 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@d9d7f154-97d6-3746-8b81-6dddee5e2fc2'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Archer'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@d9d7f154-97d6-3746-8b81-6dddee5e2fc2 is 
                   Archer'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 155 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b5e0c030-8975-3034-b43d-8a1dede0b482'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'killerXcupcake'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b5e0c030-8975-3034-b43d-8a1dede0b482 is 
                   killerXcupcake'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 156 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@0594b435-66cc-3822-aa6b-a448b3ba395f'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Da_Trollander'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@0594b435-66cc-3822-aa6b-a448b3ba395f is 
                   Da_Trollander'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 157 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@ca10b20a-f7e7-3476-a34f-9084d25ebb9d'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Bluestopsign98'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@ca10b20a-f7e7-3476-a34f-9084d25ebb9d is 
                   Bluestopsign98'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 158 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8ecb2920-aa96-37fe-8749-2d451e1f87ad'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Darthjedimaster'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8ecb2920-aa96-37fe-8749-2d451e1f87ad is 
                   Darthjedimaster'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 159 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@6786b263-ef5f-32a9-a413-5a31f3ab31bf'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Masta_Awesome'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@6786b263-ef5f-32a9-a413-5a31f3ab31bf is 
                   Masta_Awesome'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 160 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@fe0f2e7f-9f73-3d5e-9c4b-635252461295'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'miknater17'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@fe0f2e7f-9f73-3d5e-9c4b-635252461295 is 
                   miknater17'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 161 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@478fdcad-5884-315e-93c1-0584dd8c1d04'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'JZDRAGON'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@478fdcad-5884-315e-93c1-0584dd8c1d04 is 
                   JZDRAGON'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 162 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@1620df9a-4527-4ec7-a38e-b5682e7e22b0'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'mrsamgogogo'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@1620df9a-4527-4ec7-a38e-b5682e7e22b0 is 
                   mrsamgogogo'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 163 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@484e26cc-0b60-3982-ae03-89aa04a0e1e7'. 
20:11:50 [INFO]  Filled tag <def[value].name> with '_dRapist'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@484e26cc-0b60-3982-ae03-89aa04a0e1e7 is 
                   _dRapist'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 164 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@e29792a1-4011-3de4-921a-ddca9c92c417'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'EwfsPrince'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@e29792a1-4011-3de4-921a-ddca9c92c417 is 
                   EwfsPrince'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 165 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b7d6e127-d0a0-3e9b-aefc-db7c33d5948e'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'dlast000'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b7d6e127-d0a0-3e9b-aefc-db7c33d5948e is 
                   dlast000'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 166 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c935ee4b-4ac1-37d9-96c4-508fb95ef2c6'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Rodin2004Cool'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c935ee4b-4ac1-37d9-96c4-508fb95ef2c6 is 
                   Rodin2004Cool'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 167 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@caed1850-3ceb-3fb2-a822-13060eb02697'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'fligger45'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@caed1850-3ceb-3fb2-a822-13060eb02697 is 
                   fligger45'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 168 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@a780cadb-0d8b-3c4b-82e4-96203e9ab9e3'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Mrs_Mustache_'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@a780cadb-0d8b-3c4b-82e4-96203e9ab9e3 is 
                   Mrs_Mustache_'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 169 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@62a26ca1-7b0f-386b-9226-9b1e03c9d2fb'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'nebyor'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@62a26ca1-7b0f-386b-9226-9b1e03c9d2fb is 
                   nebyor'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 170 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@6eb2d2cd-291e-3814-b2d6-248ab81a6d4b'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'zerodark1'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@6eb2d2cd-291e-3814-b2d6-248ab81a6d4b is 
                   zerodark1'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 171 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@bbd9c13a-1779-3ecb-ae3c-02fe3ad7b814'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'enderswords101'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@bbd9c13a-1779-3ecb-ae3c-02fe3ad7b814 is 
                   enderswords101'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 172 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@0e569a3f-178d-3195-b1d3-406b2d33562a'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Daverhan9'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@0e569a3f-178d-3195-b1d3-406b2d33562a is 
                   Daverhan9'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 173 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@dc17a0ef-845a-318c-91ac-d0463d3feef9'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'LuisM160919'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@dc17a0ef-845a-318c-91ac-d0463d3feef9 is 
                   LuisM160919'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 174 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@c7f9605f-9315-4a73-b1f8-d052421a28cf'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Bama_x92'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@c7f9605f-9315-4a73-b1f8-d052421a28cf is 
                   Bama_x92'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 175 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@f1f9511b-c6db-30d5-8720-195d0221e185'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'creepninjo'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@f1f9511b-c6db-30d5-8720-195d0221e185 is 
                   creepninjo'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 176 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@6295df8a-985a-3c19-adfa-a4d16ed8ddbc'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'JMNKPower'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@6295df8a-985a-3c19-adfa-a4d16ed8ddbc is 
                   JMNKPower'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 177 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@a3b1eb8b-6d59-35b9-afab-1b6fda220cee'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Kibbit2213'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@a3b1eb8b-6d59-35b9-afab-1b6fda220cee is 
                   Kibbit2213'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 178 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@399d09dd-fe16-38f8-aae8-99b262fd6b14'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'LutheryPVP'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@399d09dd-fe16-38f8-aae8-99b262fd6b14 is 
                   LutheryPVP'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 179 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@88c69505-497d-3f88-a8bc-e1deab400614'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'KeangDavid'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@88c69505-497d-3f88-a8bc-e1deab400614 is 
                   KeangDavid'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 180 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@fa45c748-dc06-363a-a843-e4336b5d29b8'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'UrbanSamuel'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@fa45c748-dc06-363a-a843-e4336b5d29b8 is 
                   UrbanSamuel'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 181 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@a418a765-42f7-47d7-aa1b-afe707d941f6'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Khan2012'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@a418a765-42f7-47d7-aa1b-afe707d941f6 is 
                   Khan2012'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 182 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@a9129368-970d-3480-b2e7-c9c6e62c60d0'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'MystikalMonkkee'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@a9129368-970d-3480-b2e7-c9c6e62c60d0 is 
                   MystikalMonkkee'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 183 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@ac121249-7cf3-3437-be54-af834ffa27dc'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'bubbikills'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@ac121249-7cf3-3437-be54-af834ffa27dc is 
                   bubbikills'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 184 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@3896baf2-7da1-4a21-9216-0cd7746443c6'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'btesa2'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@3896baf2-7da1-4a21-9216-0cd7746443c6 is 
                   btesa2'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 185 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@edb0b9f5-5b66-331e-bea6-92edebec8d89'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Smitheee'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@edb0b9f5-5b66-331e-bea6-92edebec8d89 is 
                   Smitheee'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 186 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@d507bdbc-ee46-3c5f-8a81-64e5ee1136b8'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'WhiteMercy'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@d507bdbc-ee46-3c5f-8a81-64e5ee1136b8 is 
                   WhiteMercy'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 187 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@453620bc-5ae9-3499-814d-577d151dc19c'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'medead2'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@453620bc-5ae9-3499-814d-577d151dc19c is 
                   medead2'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 188 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@d5425680-1fac-3243-9c4c-552bbf1b9476'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'eian6003'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@d5425680-1fac-3243-9c4c-552bbf1b9476 is 
                   eian6003'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 189 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b710ef55-df0f-3360-b144-300ba62139e8'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'supersemmm'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b710ef55-df0f-3360-b144-300ba62139e8 is 
                   supersemmm'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 190 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@530f905e-a344-3274-9b2c-55fb503d67cb'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'tstom0'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@530f905e-a344-3274-9b2c-55fb503d67cb is 
                   tstom0'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 191 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@2b1b91d6-2157-3a02-84c9-db9471f56f65'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'shroom21'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@2b1b91d6-2157-3a02-84c9-db9471f56f65 is 
                   shroom21'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 192 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@7f8493f7-de69-38ad-a5a9-93b97a38b151'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'EchoEcho137'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@7f8493f7-de69-38ad-a5a9-93b97a38b151 is 
                   EchoEcho137'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 193 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@71e3d272-ba48-3d9a-8711-78365f8935d6'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'danrew50'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@71e3d272-ba48-3d9a-8711-78365f8935d6 is 
                   danrew50'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 194 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@3d008992-ffb0-3c4c-a8be-f137ac966eb3'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'thunderbrick167'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@3d008992-ffb0-3c4c-a8be-f137ac966eb3 is 
                   thunderbrick167'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 195 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@3cd51308-1622-333e-81c9-e2449dc8de40'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'SzybkiBanan'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@3cd51308-1622-333e-81c9-e2449dc8de40 is 
                   SzybkiBanan'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 196 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@474f005f-403f-3caf-9a9d-537fbb1867fc'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Rebi238'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@474f005f-403f-3caf-9a9d-537fbb1867fc is 
                   Rebi238'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 197 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@9329b380-4544-30ef-8563-ac552d2f2adf'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'mommas_boy01'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@9329b380-4544-30ef-8563-ac552d2f2adf is 
                   mommas_boy01'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 198 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@0fa470a4-1f1d-36f5-b6f2-8611e52ed922'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'MrDigga12'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@0fa470a4-1f1d-36f5-b6f2-8611e52ed922 is 
                   MrDigga12'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 199 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@2d2a44f1-bf45-3985-a03f-d484197db17c'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Arkyopterix'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@2d2a44f1-bf45-3985-a03f-d484197db17c is 
                   Arkyopterix'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 200 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@46c9044c-0452-343b-9acc-ee9390618a30'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'jet315'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@46c9044c-0452-343b-9acc-ee9390618a30 is 
                   jet315'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 201 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@9d46f1ef-193c-33dd-8e1a-94e886ad9196'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'diskawrs'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@9d46f1ef-193c-33dd-8e1a-94e886ad9196 is 
                   diskawrs'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 202 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@b73349c5-c13b-3fd1-96cc-31012bcc2057'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'dnj78'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@b73349c5-c13b-3fd1-96cc-31012bcc2057 is 
                   dnj78'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 203 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8a29696d-3af3-3696-834d-9de607796c97'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'LucaCool9'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8a29696d-3af3-3696-834d-9de607796c97 is 
                   LucaCool9'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 204 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@e67e8c79-a1a5-3e06-b382-5ccf0c1cb252'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'bombster15'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@e67e8c79-a1a5-3e06-b382-5ccf0c1cb252 is 
                   bombster15'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 205 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@240736e4-b8dc-3a60-8101-f0e5f82c7841'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'junk72385'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@240736e4-b8dc-3a60-8101-f0e5f82c7841 is 
                   junk72385'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 206 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@25b54110-942b-303c-ab52-7f98ff668b19'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'Kylie2089'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@25b54110-942b-303c-ab52-7f98ff668b19 is 
                   Kylie2089'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 207 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@6606a118-d1b9-3fd9-b756-d1b868d4f40d'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'GoldMan0830'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@6606a118-d1b9-3fd9-b756-d1b868d4f40d is 
                   GoldMan0830'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 208 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8de09692-9f28-3634-9ea3-a774c888a834'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'matthewclark'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8de09692-9f28-3634-9ea3-a774c888a834 is 
                   matthewclark'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 209 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@8ea7c66f-ed95-3555-b801-07fe0a90e01b'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'bluehmask'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@8ea7c66f-ed95-3555-b801-07fe0a90e01b is 
                   bluehmask'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 210 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@fc29f11f-16f4-3034-9df1-91961d6e9546'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'EthanPete'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@fc29f11f-16f4-3034-9df1-91961d6e9546 is 
                   EthanPete'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 211 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@03be64be-19ab-3473-9110-61cf76f5e293'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'isaiahhan123'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@03be64be-19ab-3473-9110-61cf76f5e293 is 
                   isaiahhan123'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO] +- Foreach loop 212 ---------+ 
20:11:50 [INFO] +- Executing dCommand: NARRATE/p@NLBlackEagle ---------+ 
20:11:50 [INFO]  Filled tag <def[value]> with 
                   'p@4d71b28f-ecdf-3e2a-a38f-3ae25f3cb704'. 
20:11:50 [INFO]  Filled tag <def[value].name> with 'bobana1'. 
20:11:50 [INFO] +> Executing 'NARRATE': 
                   Narrating='p@4d71b28f-ecdf-3e2a-a38f-3ae25f3cb704 is 
                   bobana1'  Targets='[p@NLBlackEagle]' 
20:11:50 [INFO]  Completing queue 'EENNEDDEZI'.