Paste #42400: Denizen Debug Logs From A Minecraft Server

Date: 2017/06/05 11:40:09 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
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278


Java Version: 1.8.0_91
Up-time: 2h 13m
CraftBukkit Version: git-Spigot-3fb9445-6e3cec8 (MC: 1.11.2)
Denizen Version: Core: 1.15 (Build 89), CraftBukkit: 1.0.1-SNAPSHOT (build 170)
Active Plugins (6): SQLPerms: 2.3.2, Denizen: 1.0.1-SNAPSHOT (build 170), EzChat: 1.1.0, ProtocolSupport: 4.25, 
Extendizen: 1, Depenizen: 1.0.0 (build 380)
Loaded Worlds (1): Garden
Online Players (1): Xanderpitz(Xanderpitz)
Offline Players: 1
Mode: offline

14:40:04 [INFO] +> Executing 'Event': Type='on player clicks with RAILGUN'  
                   Container='RAILGUNEVENT(WORLD)'  
                   player=p@XanderpitzContext='{click_type=RIGHT_CLICK_AIR, 
                   item=i@RAILGUN[display_name=&ss6&ssk&exc&exc&ssr 
                   &sse&sslRailgun&ssr &ss6&ssk&exc&exc;lore=&ss7Blast through 
                   blocks and|&ss7even the air iteslf&exc|&ss7|&ss6Click to fire 
                   a bullet|&ss6through ANYTHING ahead&exc|&ss7|&ssb&sslSpecial 
                   Weapon&ssr&ss7&co &ssbUnlimited|&ssbuses, but a 
                   null-second|&ssbcooldown between each use]}' 
14:40:04 [INFO] +- Building event 'ON PLAYER CLICKS WITH RAILGUN' for 
                   RAILGUNEVENT ---------+ 
14:40:04 [INFO]  Starting InstantQueue 'RAILGUNEVENT_YardMaleMotel'... 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: DETERMINE 
                   "passively" "cancelled" 
14:40:04 [INFO] +- Executing dCommand: DETERMINE/p@Xanderpitz ---------+ 
14:40:04 [INFO] +> Executing 'DETERMINE': outcome='cancelled'  
                   passively='true' 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: IF 
                   "<player.has_flag[railgun]>" "{" "-" "narrate" "<&c>This 
                   weapon is on cooldown!" "-" "queue" "clear" "}" 
14:40:04 [INFO] +- Executing dCommand: IF/p@Xanderpitz ---------+ 
14:40:04 [INFO] +> Executing 'IF': use_braces='true' 
14:40:04 [INFO]  Filled tag <player.has_flag[railgun]> with 'false'. 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: DEFINE 
                   "iteminhand" "<context.item.simple.replace[i@]>" 
14:40:04 [INFO] +- Executing dCommand: DEFINE/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <context.item.simple.replace[i@]> with 'RAILGUN'. 
14:40:04 [INFO] +> Executing 'DEFINE': queue='RAILGUNEVENT_YardMaleMotel'  
                   definition='iteminhand'  value='RAILGUN' 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: DEFINE "player" 
                   "<player>" 
14:40:04 [INFO] +- Executing dCommand: DEFINE/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <player> with 
                   'p@f5864fc1-1ddd-403e-b875-eeaeba2ca57d'. 
14:40:04 [INFO] +> Executing 'DEFINE': queue='RAILGUNEVENT_YardMaleMotel'  
                   definition='player'  
                   value='p@f5864fc1-1ddd-403e-b875-eeaeba2ca57d' 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: DEFINE "dir" 
                   "<player.eye_location.direction.vector>" 
14:40:04 [INFO] +- Executing dCommand: DEFINE/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <player.eye_location.direction.vector> with 
                   'l@0.03667317096143546,0.02144497113947345,0.9990971883377815,Garden'. 
14:40:04 [INFO] +> Executing 'DEFINE': queue='RAILGUNEVENT_YardMaleMotel'  
                   definition='dir'  
                   value='l@0.03667317096143546,0.02144497113947345,0.9990971883377815,Garden' 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYSOUND 
                   "<player.location>" "sound:ENTITY_WITHER_SPAWN" "volume:2" 
                   "pitch:1.7" 
14:40:04 [INFO] +- Executing dCommand: PLAYSOUND/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <player.location> with 
                   'l@-62.230564049794346,25.0,-0.3195750214942392,-1.2288005,357.89783,Garden'. 
14:40:04 [INFO] +> Executing 'PLAYSOUND': 
                   locations='[l@-62.230564049794346,25.0,-0.3195750214942392,-1.2288005,357.89783,Garden]' 
                    sound='ENTITY_WITHER_SPAWN'  volume='2'  pitch='1.7'  
                   custom='false' 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYSOUND 
                   "<player.location>" "sound:ENTITY_WITHER_SPAWN" "volume:2" 
                   "pitch:2" 
14:40:04 [INFO] +- Executing dCommand: PLAYSOUND/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <player.location> with 
                   'l@-62.230564049794346,25.0,-0.3195750214942392,-1.2288005,357.89783,Garden'. 
14:40:04 [INFO] +> Executing 'PLAYSOUND': 
                   locations='[l@-62.230564049794346,25.0,-0.3195750214942392,-1.2288005,357.89783,Garden]' 
                    sound='ENTITY_WITHER_SPAWN'  volume='2'  pitch='2'  
                   custom='false' 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYSOUND 
                   "<player.location>" "sound:ENTITY_ZOMBIE_VILLAGER_CURE" 
                   "volume:0.5" "pitch:1.5" 
14:40:04 [INFO] +- Executing dCommand: PLAYSOUND/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <player.location> with 
                   'l@-62.230564049794346,25.0,-0.3195750214942392,-1.2288005,357.89783,Garden'. 
14:40:04 [INFO] +> Executing 'PLAYSOUND': 
                   locations='[l@-62.230564049794346,25.0,-0.3195750214942392,-1.2288005,357.89783,Garden]' 
                    sound='ENTITY_ZOMBIE_VILLAGER_CURE'  volume='0.5'  
                   pitch='1.5'  custom='false' 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: DEFINE "points" 
                   "<player.location.points_between[<player.location.add[<player.eye_location.direction.vector.mul[100]>]>].distance[0.1]>" 
14:40:04 [INFO] +- Executing dCommand: DEFINE/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <player.eye_location.direction.vector.mul[100]> 
                   with 
                   'l@3.6673170961435457,2.144497113947345,99.90971883377814,Garden'. 
14:40:04 [INFO]  Filled tag 
                   <player.location.add[l@3.6673170961435457,2.144497113947345,99.90971883377814,Garden]> 
                   with 
                   'l@-58.5632469536508,27.144497113947345,99.5901438122839,-1.2288005,357.89783,Garden'. 
14:40:04 [INFO]  Filled tag 
                   <player.location.points_between[l@-58.5632469536508,27.144497113947345,99.5901438122839,-1.2288005,357.89783,Garden].distance[0.1]> 
                   with 
                   'li@l@-62.230564049794346,25.0,-0.3195750214942392,-1.2288005,357.89783,Garden|l@-62.2268967326982,25.002144497113946,-0.21966530266046105,-1.2288005,357.89783,Garden|l@-62.223229415602056,25.004288994227895,-0.11975558382668289,-1.2288005,357.89783,Garden|l@-62.21956209850592,25.00643349134184,-0.019845864992904694,-1.2288005,357.89783,Garden|l@-62.21589478140... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'DEFINE': queue='RAILGUNEVENT_YardMaleMotel'  
                   definition='points'  
                   value='li@l@-62.230564049794346,25.0,-0.3195750214942392,-1.2288005,357.89783,Garden|l@-62.2268967326982,25.002144497113946,-0.21966530266046105,-1.2288005,357.89783,Garden|l@-62.223229415602056,25.004288994227895,-0.11975558382668289,-1.2288005,357.89783,Garden|l@-62.21956209850592,25.00643349134184,-0.019845864992904694,-1.2288005,357.89783,Garden|l@-62.21589478140977,25.00857798845579,0.08006385384087344,-1.2288005,357.89783,Gard... 
                   * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   "<def[points].size.div[10].as_int>" 
14:40:04 [INFO] +- Executing dCommand: REPEAT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[points].size.div[10].as_int> with '100'. 
14:40:04 [INFO] +> Executing 'REPEAT': qty='100' 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '1'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '10'. 
14:40:04 [INFO]  Filled tag <def[points].get[1].to[10]> with 
                   'li@l@-62.230564049794346,25.0,-0.3195750214942392,-1.2288005,357.89783,Garden|l@-62.2268967326982,25.002144497113946,-0.21966530266046105,-1.2288005,357.89783,Garden|l@-62.223229415602056,25.004288994227895,-0.11975558382668289,-1.2288005,357.89783,Garden|l@-62.21956209850592,25.00643349134184,-0.019845864992904694,-1.2288005,357.89783,Garden|l@-62.21589478140977,25.00857798845579,0.08006385384087344,-1.2288005,357.89783,Garden|l@-62.21222746431363,25.0107224855... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-62.230564049794346,25.0,-0.3195750214942392,-1.2288005,357.89783,Garden, 
                   l@-62.2268967326982,25.002144497113946,-0.21966530266046105,-1.2288005,357.89783,Garden, 
                   l@-62.223229415602056,25.004288994227895,-0.11975558382668289,-1.2288005,357.89783,Garden, 
                   l@-62.21956209850592,25.00643349134184,-0.019845864992904694,-1.2288005,357.89783,Garden, 
                   l@-62.21589478140977,25.00857798845579,0.08006385384087344,-1.2288005,357.89783,Garden, 
                   l@-62.21222746431363,25... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 2 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '11'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '20'. 
14:40:04 [INFO]  Filled tag <def[points].get[11].to[20]> with 
                   'li@l@-62.19389087883291,25.021444971139474,0.6795221668435423,-1.2288005,357.89783,Garden|l@-62.190223561736765,25.02358946825342,0.7794318856773204,-1.2288005,357.89783,Garden|l@-62.18655624464062,25.02573396536737,0.8793416045110987,-1.2288005,357.89783,Garden|l@-62.18288892754448,25.027878462481315,0.979251323344877,-1.2288005,357.89783,Garden|l@-62.17922161044834,25.030022959595264,1.079161042178655,-1.2288005,357.89783,Garden|l@-62.17555429335219,25.032167... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-62.19389087883291,25.021444971139474,0.6795221668435423,-1.2288005,357.89783,Garden, 
                   l@-62.190223561736765,25.02358946825342,0.7794318856773204,-1.2288005,357.89783,Garden, 
                   l@-62.18655624464062,25.02573396536737,0.8793416045110987,-1.2288005,357.89783,Garden, 
                   l@-62.18288892754448,25.027878462481315,0.979251323344877,-1.2288005,357.89783,Garden, 
                   l@-62.17922161044834,25.030022959595264,1.079161042178655,-1.2288005,357.89783,Garden, 
                   l@-62.17555429335219... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 3 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '21'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '30'. 
14:40:04 [INFO]  Filled tag <def[points].get[21].to[30]> with 
                   'li@l@-62.157217707871474,25.042889942278947,1.6786193551813244,-1.2288005,357.89783,Garden|l@-62.15355039077533,25.045034439392893,1.7785290740151027,-1.2288005,357.89783,Garden|l@-62.149883073679185,25.047178936506842,1.8784387928488808,-1.2288005,357.89783,Garden|l@-62.14621575658305,25.04932343362079,1.9783485116826593,-1.2288005,357.89783,Garden|l@-62.1425484394869,25.051467930734738,2.0782582305164374,-1.2288005,357.89783,Garden|l@-62.13888112239076,25.053... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-62.157217707871474,25.042889942278947,1.6786193551813244,-1.2288005,357.89783,Garden, 
                   l@-62.15355039077533,25.045034439392893,1.7785290740151027,-1.2288005,357.89783,Garden, 
                   l@-62.149883073679185,25.047178936506842,1.8784387928488808,-1.2288005,357.89783,Garden, 
                   l@-62.14621575658305,25.04932343362079,1.9783485116826593,-1.2288005,357.89783,Garden, 
                   l@-62.1425484394869,25.051467930734738,2.0782582305164374,-1.2288005,357.89783,Garden, 
                   l@-62.13888112239... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 4 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '31'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '40'. 
14:40:04 [INFO]  Filled tag <def[points].get[31].to[40]> with 
                   'li@l@-62.12054453691004,25.06433491341842,2.677716543519107,-1.2288005,357.89783,Garden|l@-62.116877219813894,25.066479410532367,2.7776262623528853,-1.2288005,357.89783,Garden|l@-62.11320990271775,25.068623907646316,2.8775359811866634,-1.2288005,357.89783,Garden|l@-62.10954258562161,25.070768404760262,2.9774457000204415,-1.2288005,357.89783,Garden|l@-62.105875268525466,25.07291290187421,3.07735541885422,-1.2288005,357.89783,Garden|l@-62.10220795142932,25.075057... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-62.12054453691004,25.06433491341842,2.677716543519107,-1.2288005,357.89783,Garden, 
                   l@-62.116877219813894,25.066479410532367,2.7776262623528853,-1.2288005,357.89783,Garden, 
                   l@-62.11320990271775,25.068623907646316,2.8775359811866634,-1.2288005,357.89783,Garden, 
                   l@-62.10954258562161,25.070768404760262,2.9774457000204415,-1.2288005,357.89783,Garden, 
                   l@-62.105875268525466,25.07291290187421,3.07735541885422,-1.2288005,357.89783,Garden, 
                   l@-62.10220795142932... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 5 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '41'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '50'. 
14:40:04 [INFO]  Filled tag <def[points].get[41].to[50]> with 
                   'li@l@-62.0838713659486,25.085779884557894,3.676813731856889,-1.2288005,357.89783,Garden|l@-62.08020404885246,25.08792438167184,3.776723450690667,-1.2288005,357.89783,Garden|l@-62.07653673175631,25.09006887878579,3.8766331695244447,-1.2288005,357.89783,Garden|l@-62.072869414660175,25.092213375899735,3.9765428883582223,-1.2288005,357.89783,Garden|l@-62.06920209756403,25.094357873013685,4.0764526071919995,-1.2288005,357.89783,Garden|l@-62.065534780467885,25.096502... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-62.0838713659486,25.085779884557894,3.676813731856889,-1.2288005,357.89783,Garden, 
                   l@-62.08020404885246,25.08792438167184,3.776723450690667,-1.2288005,357.89783,Garden, 
                   l@-62.07653673175631,25.09006887878579,3.8766331695244447,-1.2288005,357.89783,Garden, 
                   l@-62.072869414660175,25.092213375899735,3.9765428883582223,-1.2288005,357.89783,Garden, 
                   l@-62.06920209756403,25.094357873013685,4.0764526071919995,-1.2288005,357.89783,Garden, 
                   l@-62.065534780467885... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 6 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '51'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '60'. 
14:40:04 [INFO]  Filled tag <def[points].get[51].to[60]> with 
                   'li@l@-62.04719819498717,25.107224855697368,4.675910920194667,-1.2288005,357.89783,Garden|l@-62.04353087789102,25.109369352811314,4.775820639028446,-1.2288005,357.89783,Garden|l@-62.039863560794885,25.111513849925263,4.875730357862222,-1.2288005,357.89783,Garden|l@-62.03619624369874,25.11365834703921,4.975640076696001,-1.2288005,357.89783,Garden|l@-62.032528926602595,25.115802844153155,5.075549795529778,-1.2288005,357.89783,Garden|l@-62.02886160950645,25.1179473... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-62.04719819498717,25.107224855697368,4.675910920194667,-1.2288005,357.89783,Garden, 
                   l@-62.04353087789102,25.109369352811314,4.775820639028446,-1.2288005,357.89783,Garden, 
                   l@-62.039863560794885,25.111513849925263,4.875730357862222,-1.2288005,357.89783,Garden, 
                   l@-62.03619624369874,25.11365834703921,4.975640076696001,-1.2288005,357.89783,Garden, 
                   l@-62.032528926602595,25.115802844153155,5.075549795529778,-1.2288005,357.89783,Garden, 
                   l@-62.02886160950645,... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 7 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '61'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '70'. 
14:40:04 [INFO]  Filled tag <def[points].get[61].to[70]> with 
                   'li@l@-62.01052502402573,25.12866982683684,5.675008108532445,-1.2288005,357.89783,Garden|l@-62.00685770692959,25.130814323950787,5.774917827366222,-1.2288005,357.89783,Garden|l@-62.00319038983345,25.132958821064737,5.874827546200001,-1.2288005,357.89783,Garden|l@-61.999523072737304,25.135103318178682,5.974737265033779,-1.2288005,357.89783,Garden|l@-61.99585575564116,25.13724781529263,6.074646983867556,-1.2288005,357.89783,Garden|l@-61.992188438545014,25.13939231... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-62.01052502402573,25.12866982683684,5.675008108532445,-1.2288005,357.89783,Garden, 
                   l@-62.00685770692959,25.130814323950787,5.774917827366222,-1.2288005,357.89783,Garden, 
                   l@-62.00319038983345,25.132958821064737,5.874827546200001,-1.2288005,357.89783,Garden, 
                   l@-61.999523072737304,25.135103318178682,5.974737265033779,-1.2288005,357.89783,Garden, 
                   l@-61.99585575564116,25.13724781529263,6.074646983867556,-1.2288005,357.89783,Garden, 
                   l@-61.992188438545014,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 8 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '71'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '80'. 
14:40:04 [INFO]  Filled tag <def[points].get[71].to[80]> with 
                   'li@l@-61.973851853064296,25.150114797976315,6.6741052968702235,-1.2288005,357.89783,Garden|l@-61.97018453596815,25.15225929509026,6.774015015704,-1.2288005,357.89783,Garden|l@-61.96651721887201,25.15440379220421,6.873924734537779,-1.2288005,357.89783,Garden|l@-61.96284990177587,25.156548289318156,6.973834453371557,-1.2288005,357.89783,Garden|l@-61.95918258467972,25.158692786432102,7.073744172205334,-1.2288005,357.89783,Garden|l@-61.95551526758358,25.16083728354... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.973851853064296,25.150114797976315,6.6741052968702235,-1.2288005,357.89783,Garden, 
                   l@-61.97018453596815,25.15225929509026,6.774015015704,-1.2288005,357.89783,Garden, 
                   l@-61.96651721887201,25.15440379220421,6.873924734537779,-1.2288005,357.89783,Garden, 
                   l@-61.96284990177587,25.156548289318156,6.973834453371557,-1.2288005,357.89783,Garden, 
                   l@-61.95918258467972,25.158692786432102,7.073744172205334,-1.2288005,357.89783,Garden, 
                   l@-61.95551526758358,25.1... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 9 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '81'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '90'. 
14:40:04 [INFO]  Filled tag <def[points].get[81].to[90]> with 
                   'li@l@-61.93717868210286,25.171559769115788,7.673202485208002,-1.2288005,357.89783,Garden|l@-61.933511365006716,25.173704266229734,7.773112204041778,-1.2288005,357.89783,Garden|l@-61.92984404791058,25.175848763343684,7.873021922875557,-1.2288005,357.89783,Garden|l@-61.92617673081443,25.17799326045763,7.972931641709334,-1.2288005,357.89783,Garden|l@-61.92250941371829,25.180137757571575,8.072841360543112,-1.2288005,357.89783,Garden|l@-61.91884209662214,25.18228225... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.93717868210286,25.171559769115788,7.673202485208002,-1.2288005,357.89783,Garden, 
                   l@-61.933511365006716,25.173704266229734,7.773112204041778,-1.2288005,357.89783,Garden, 
                   l@-61.92984404791058,25.175848763343684,7.873021922875557,-1.2288005,357.89783,Garden, 
                   l@-61.92617673081443,25.17799326045763,7.972931641709334,-1.2288005,357.89783,Garden, 
                   l@-61.92250941371829,25.180137757571575,8.072841360543112,-1.2288005,357.89783,Garden, 
                   l@-61.91884209662214,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 10 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '91'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '100'. 
14:40:04 [INFO]  Filled tag <def[points].get[91].to[100]> with 
                   'li@l@-61.900505511141425,25.19300474025526,8.672299673545778,-1.2288005,357.89783,Garden|l@-61.89683819404528,25.195149237369208,8.772209392379557,-1.2288005,357.89783,Garden|l@-61.89317087694914,25.197293734483157,8.872119111213335,-1.2288005,357.89783,Garden|l@-61.889503559853,25.199438231597103,8.972028830047112,-1.2288005,357.89783,Garden|l@-61.88583624275685,25.20158272871105,9.07193854888089,-1.2288005,357.89783,Garden|l@-61.88216892566071,25.20372722582... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.900505511141425,25.19300474025526,8.672299673545778,-1.2288005,357.89783,Garden, 
                   l@-61.89683819404528,25.195149237369208,8.772209392379557,-1.2288005,357.89783,Garden, 
                   l@-61.89317087694914,25.197293734483157,8.872119111213335,-1.2288005,357.89783,Garden, 
                   l@-61.889503559853,25.199438231597103,8.972028830047112,-1.2288005,357.89783,Garden, 
                   l@-61.88583624275685,25.20158272871105,9.07193854888089,-1.2288005,357.89783,Garden, 
                   l@-61.88216892566071,25.20... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 11 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '101'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '110'. 
14:40:04 [INFO]  Filled tag <def[points].get[101].to[110]> with 
                   'li@l@-61.86383234017999,25.214449711394735,9.671396861883556,-1.2288005,357.89783,Garden|l@-61.860165023083844,25.21659420850868,9.771306580717335,-1.2288005,357.89783,Garden|l@-61.85649770598771,25.218738705622627,9.871216299551113,-1.2288005,357.89783,Garden|l@-61.85283038889156,25.220883202736577,9.97112601838489,-1.2288005,357.89783,Garden|l@-61.84916307179542,25.223027699850523,10.071035737218669,-1.2288005,357.89783,Garden|l@-61.84549575469927,25.225172... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.86383234017999,25.214449711394735,9.671396861883556,-1.2288005,357.89783,Garden, 
                   l@-61.860165023083844,25.21659420850868,9.771306580717335,-1.2288005,357.89783,Garden, 
                   l@-61.85649770598771,25.218738705622627,9.871216299551113,-1.2288005,357.89783,Garden, 
                   l@-61.85283038889156,25.220883202736577,9.97112601838489,-1.2288005,357.89783,Garden, 
                   l@-61.84916307179542,25.223027699850523,10.071035737218669,-1.2288005,357.89783,Garden, 
                   l@-61.84549575469927,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 12 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '111'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '120'. 
14:40:04 [INFO]  Filled tag <def[points].get[111].to[120]> with 
                   'li@l@-61.827159169218554,25.23589468253421,10.670494050221334,-1.2288005,357.89783,Garden|l@-61.823491852122416,25.238039179648155,10.770403769055113,-1.2288005,357.89783,Garden|l@-61.81982453502627,25.2401836767621,10.870313487888891,-1.2288005,357.89783,Garden|l@-61.816157217930126,25.24232817387605,10.970223206722668,-1.2288005,357.89783,Garden|l@-61.81248990083398,25.244472670989996,11.070132925556447,-1.2288005,357.89783,Garden|l@-61.808822583737836,25.2... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.827159169218554,25.23589468253421,10.670494050221334,-1.2288005,357.89783,Garden, 
                   l@-61.823491852122416,25.238039179648155,10.770403769055113,-1.2288005,357.89783,Garden, 
                   l@-61.81982453502627,25.2401836767621,10.870313487888891,-1.2288005,357.89783,Garden, 
                   l@-61.816157217930126,25.24232817387605,10.970223206722668,-1.2288005,357.89783,Garden, 
                   l@-61.81248990083398,25.244472670989996,11.070132925556447,-1.2288005,357.89783,Garden, 
                   l@-61.808822583737... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 13 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '121'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '130'. 
14:40:04 [INFO]  Filled tag <def[points].get[121].to[130]> with 
                   'li@l@-61.79048599825712,25.257339653673682,11.669591238559113,-1.2288005,357.89783,Garden|l@-61.78681868116098,25.259484150787628,11.769500957392891,-1.2288005,357.89783,Garden|l@-61.783151364064835,25.261628647901574,11.869410676226668,-1.2288005,357.89783,Garden|l@-61.77948404696869,25.263773145015524,11.969320395060446,-1.2288005,357.89783,Garden|l@-61.775816729872545,25.26591764212947,12.069230113894225,-1.2288005,357.89783,Garden|l@-61.7721494127764,25.2... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.79048599825712,25.257339653673682,11.669591238559113,-1.2288005,357.89783,Garden, 
                   l@-61.78681868116098,25.259484150787628,11.769500957392891,-1.2288005,357.89783,Garden, 
                   l@-61.783151364064835,25.261628647901574,11.869410676226668,-1.2288005,357.89783,Garden, 
                   l@-61.77948404696869,25.263773145015524,11.969320395060446,-1.2288005,357.89783,Garden, 
                   l@-61.775816729872545,25.26591764212947,12.069230113894225,-1.2288005,357.89783,Garden, 
                   l@-61.7721494127... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 14 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '131'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '140'. 
14:40:04 [INFO]  Filled tag <def[points].get[131].to[140]> with 
                   'li@l@-61.75381282729568,25.278784624813156,12.66868842689689,-1.2288005,357.89783,Garden|l@-61.750145510199545,25.2809291219271,12.76859814573067,-1.2288005,357.89783,Garden|l@-61.7464781931034,25.283073619041048,12.868507864564446,-1.2288005,357.89783,Garden|l@-61.742810876007255,25.285218116154997,12.968417583398224,-1.2288005,357.89783,Garden|l@-61.73914355891111,25.287362613268943,13.068327302232003,-1.2288005,357.89783,Garden|l@-61.735476241814965,25.289... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.75381282729568,25.278784624813156,12.66868842689689,-1.2288005,357.89783,Garden, 
                   l@-61.750145510199545,25.2809291219271,12.76859814573067,-1.2288005,357.89783,Garden, 
                   l@-61.7464781931034,25.283073619041048,12.868507864564446,-1.2288005,357.89783,Garden, 
                   l@-61.742810876007255,25.285218116154997,12.968417583398224,-1.2288005,357.89783,Garden, 
                   l@-61.73914355891111,25.287362613268943,13.068327302232003,-1.2288005,357.89783,Garden, 
                   l@-61.73547624181496... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 15 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '141'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '150'. 
14:40:04 [INFO]  Filled tag <def[points].get[141].to[150]> with 
                   'li@l@-61.71713965633425,25.30022959595263,13.667785615234669,-1.2288005,357.89783,Garden|l@-61.71347233923811,25.302374093066575,13.767695334068447,-1.2288005,357.89783,Garden|l@-61.709805022141964,25.30451859018052,13.867605052902224,-1.2288005,357.89783,Garden|l@-61.70613770504582,25.30666308729447,13.967514771736003,-1.2288005,357.89783,Garden|l@-61.702470387949674,25.308807584408417,14.067424490569781,-1.2288005,357.89783,Garden|l@-61.69880307085353,25.31... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.71713965633425,25.30022959595263,13.667785615234669,-1.2288005,357.89783,Garden, 
                   l@-61.71347233923811,25.302374093066575,13.767695334068447,-1.2288005,357.89783,Garden, 
                   l@-61.709805022141964,25.30451859018052,13.867605052902224,-1.2288005,357.89783,Garden, 
                   l@-61.70613770504582,25.30666308729447,13.967514771736003,-1.2288005,357.89783,Garden, 
                   l@-61.702470387949674,25.308807584408417,14.067424490569781,-1.2288005,357.89783,Garden, 
                   l@-61.698803070853... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 16 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '151'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '160'. 
14:40:04 [INFO]  Filled tag <def[points].get[151].to[160]> with 
                   'li@l@-61.68046648537281,25.321674567092103,14.666882803572447,-1.2288005,357.89783,Garden|l@-61.67679916827667,25.32381906420605,14.766792522406226,-1.2288005,357.89783,Garden|l@-61.67313185118053,25.325963561319995,14.866702241240002,-1.2288005,357.89783,Garden|l@-61.66946453408438,25.328108058433944,14.96661196007378,-1.2288005,357.89783,Garden|l@-61.66579721698824,25.33025255554789,15.066521678907558,-1.2288005,357.89783,Garden|l@-61.66212989989209,25.3323... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.68046648537281,25.321674567092103,14.666882803572447,-1.2288005,357.89783,Garden, 
                   l@-61.67679916827667,25.32381906420605,14.766792522406226,-1.2288005,357.89783,Garden, 
                   l@-61.67313185118053,25.325963561319995,14.866702241240002,-1.2288005,357.89783,Garden, 
                   l@-61.66946453408438,25.328108058433944,14.96661196007378,-1.2288005,357.89783,Garden, 
                   l@-61.66579721698824,25.33025255554789,15.066521678907558,-1.2288005,357.89783,Garden, 
                   l@-61.66212989989209... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 17 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '161'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '170'. 
14:40:04 [INFO]  Filled tag <def[points].get[161].to[170]> with 
                   'li@l@-61.64379331441138,25.343119538231573,15.665979991910225,-1.2288005,357.89783,Garden|l@-61.64012599731524,25.345264035345522,15.765889710744004,-1.2288005,357.89783,Garden|l@-61.63645868021909,25.34740853245947,15.865799429577782,-1.2288005,357.89783,Garden|l@-61.63279136312295,25.349553029573418,15.96570914841156,-1.2288005,357.89783,Garden|l@-61.6291240460268,25.351697526687364,16.065618867245345,-1.2288005,357.89783,Garden|l@-61.62545672893066,25.3538... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.64379331441138,25.343119538231573,15.665979991910225,-1.2288005,357.89783,Garden, 
                   l@-61.64012599731524,25.345264035345522,15.765889710744004,-1.2288005,357.89783,Garden, 
                   l@-61.63645868021909,25.34740853245947,15.865799429577782,-1.2288005,357.89783,Garden, 
                   l@-61.63279136312295,25.349553029573418,15.96570914841156,-1.2288005,357.89783,Garden, 
                   l@-61.6291240460268,25.351697526687364,16.065618867245345,-1.2288005,357.89783,Garden, 
                   l@-61.62545672893066... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 18 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '171'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '180'. 
14:40:04 [INFO]  Filled tag <def[points].get[171].to[180]> with 
                   'li@l@-61.60712014344994,25.36456450937105,16.66507718024802,-1.2288005,357.89783,Garden|l@-61.6034528263538,25.366709006484996,16.7649868990818,-1.2288005,357.89783,Garden|l@-61.59978550925766,25.36885350359894,16.86489661791558,-1.2288005,357.89783,Garden|l@-61.59611819216151,25.37099800071289,16.96480633674936,-1.2288005,357.89783,Garden|l@-61.59245087506537,25.373142497826837,17.06471605558314,-1.2288005,357.89783,Garden|l@-61.58878355796922,25.37528699494... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.60712014344994,25.36456450937105,16.66507718024802,-1.2288005,357.89783,Garden, 
                   l@-61.6034528263538,25.366709006484996,16.7649868990818,-1.2288005,357.89783,Garden, 
                   l@-61.59978550925766,25.36885350359894,16.86489661791558,-1.2288005,357.89783,Garden, 
                   l@-61.59611819216151,25.37099800071289,16.96480633674936,-1.2288005,357.89783,Garden, 
                   l@-61.59245087506537,25.373142497826837,17.06471605558314,-1.2288005,357.89783,Garden, 
                   l@-61.58878355796922,25.375... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 19 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '181'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '190'. 
14:40:04 [INFO]  Filled tag <def[points].get[181].to[190]> with 
                   'li@l@-61.570446972488504,25.386009480510523,17.664174368585815,-1.2288005,357.89783,Garden|l@-61.56677965539237,25.38815397762447,17.764084087419597,-1.2288005,357.89783,Garden|l@-61.56311233829622,25.390298474738415,17.863993806253376,-1.2288005,357.89783,Garden|l@-61.55944502120008,25.392442971852365,17.963903525087154,-1.2288005,357.89783,Garden|l@-61.55577770410393,25.39458746896631,18.063813243920936,-1.2288005,357.89783,Garden|l@-61.55211038700779,25.39... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.570446972488504,25.386009480510523,17.664174368585815,-1.2288005,357.89783,Garden, 
                   l@-61.56677965539237,25.38815397762447,17.764084087419597,-1.2288005,357.89783,Garden, 
                   l@-61.56311233829622,25.390298474738415,17.863993806253376,-1.2288005,357.89783,Garden, 
                   l@-61.55944502120008,25.392442971852365,17.963903525087154,-1.2288005,357.89783,Garden, 
                   l@-61.55577770410393,25.39458746896631,18.063813243920936,-1.2288005,357.89783,Garden, 
                   l@-61.552110387007... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 20 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '191'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '200'. 
14:40:04 [INFO]  Filled tag <def[points].get[191].to[200]> with 
                   'li@l@-61.53377380152707,25.407454451649997,18.66327155692361,-1.2288005,357.89783,Garden|l@-61.53010648443093,25.409598948763943,18.763181275757393,-1.2288005,357.89783,Garden|l@-61.526439167334786,25.41174344587789,18.863090994591172,-1.2288005,357.89783,Garden|l@-61.52277185023864,25.41388794299184,18.96300071342495,-1.2288005,357.89783,Garden|l@-61.519104533142496,25.416032440105784,19.062910432258732,-1.2288005,357.89783,Garden|l@-61.51543721604635,25.418... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.53377380152707,25.407454451649997,18.66327155692361,-1.2288005,357.89783,Garden, 
                   l@-61.53010648443093,25.409598948763943,18.763181275757393,-1.2288005,357.89783,Garden, 
                   l@-61.526439167334786,25.41174344587789,18.863090994591172,-1.2288005,357.89783,Garden, 
                   l@-61.52277185023864,25.41388794299184,18.96300071342495,-1.2288005,357.89783,Garden, 
                   l@-61.519104533142496,25.416032440105784,19.062910432258732,-1.2288005,357.89783,Garden, 
                   l@-61.5154372160463... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 21 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '201'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '210'. 
14:40:04 [INFO]  Filled tag <def[points].get[201].to[210]> with 
                   'li@l@-61.49710063056563,25.42889942278947,19.662368745261407,-1.2288005,357.89783,Garden|l@-61.493433313469495,25.431043919903416,19.76227846409519,-1.2288005,357.89783,Garden|l@-61.48976599637335,25.433188417017366,19.862188182928968,-1.2288005,357.89783,Garden|l@-61.486098679277205,25.435332914131312,19.962097901762746,-1.2288005,357.89783,Garden|l@-61.48243136218106,25.437477411245258,20.06200762059653,-1.2288005,357.89783,Garden|l@-61.478764045084915,25.4... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.49710063056563,25.42889942278947,19.662368745261407,-1.2288005,357.89783,Garden, 
                   l@-61.493433313469495,25.431043919903416,19.76227846409519,-1.2288005,357.89783,Garden, 
                   l@-61.48976599637335,25.433188417017366,19.862188182928968,-1.2288005,357.89783,Garden, 
                   l@-61.486098679277205,25.435332914131312,19.962097901762746,-1.2288005,357.89783,Garden, 
                   l@-61.48243136218106,25.437477411245258,20.06200762059653,-1.2288005,357.89783,Garden, 
                   l@-61.478764045084... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 22 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '211'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '220'. 
14:40:04 [INFO]  Filled tag <def[points].get[211].to[220]> with 
                   'li@l@-61.4604274596042,25.450344393928944,20.661465933599203,-1.2288005,357.89783,Garden|l@-61.45676014250805,25.45248889104289,20.761375652432985,-1.2288005,357.89783,Garden|l@-61.453092825411915,25.45463338815684,20.861285371266764,-1.2288005,357.89783,Garden|l@-61.44942550831577,25.456777885270785,20.961195090100542,-1.2288005,357.89783,Garden|l@-61.445758191219625,25.45892238238473,21.061104808934324,-1.2288005,357.89783,Garden|l@-61.44209087412348,25.461... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.4604274596042,25.450344393928944,20.661465933599203,-1.2288005,357.89783,Garden, 
                   l@-61.45676014250805,25.45248889104289,20.761375652432985,-1.2288005,357.89783,Garden, 
                   l@-61.453092825411915,25.45463338815684,20.861285371266764,-1.2288005,357.89783,Garden, 
                   l@-61.44942550831577,25.456777885270785,20.961195090100542,-1.2288005,357.89783,Garden, 
                   l@-61.445758191219625,25.45892238238473,21.061104808934324,-1.2288005,357.89783,Garden, 
                   l@-61.4420908741234... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 23 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '221'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '230'. 
14:40:04 [INFO]  Filled tag <def[points].get[221].to[230]> with 
                   'li@l@-61.42375428864276,25.471789365068418,21.660563121937,-1.2288005,357.89783,Garden|l@-61.42008697154662,25.473933862182363,21.76047284077078,-1.2288005,357.89783,Garden|l@-61.41641965445048,25.476078359296313,21.86038255960456,-1.2288005,357.89783,Garden|l@-61.412752337354334,25.47822285641026,21.960292278438338,-1.2288005,357.89783,Garden|l@-61.40908502025819,25.480367353524205,22.060201997272117,-1.2288005,357.89783,Garden|l@-61.405417703162044,25.48251... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.42375428864276,25.471789365068418,21.660563121937,-1.2288005,357.89783,Garden, 
                   l@-61.42008697154662,25.473933862182363,21.76047284077078,-1.2288005,357.89783,Garden, 
                   l@-61.41641965445048,25.476078359296313,21.86038255960456,-1.2288005,357.89783,Garden, 
                   l@-61.412752337354334,25.47822285641026,21.960292278438338,-1.2288005,357.89783,Garden, 
                   l@-61.40908502025819,25.480367353524205,22.060201997272117,-1.2288005,357.89783,Garden, 
                   l@-61.405417703162044,... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 24 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '231'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '240'. 
14:40:04 [INFO]  Filled tag <def[points].get[231].to[240]> with 
                   'li@l@-61.387081117681326,25.49323433620789,22.659660310274795,-1.2288005,357.89783,Garden|l@-61.38341380058518,25.495378833321837,22.759570029108577,-1.2288005,357.89783,Garden|l@-61.37974648348904,25.497523330435786,22.859479747942355,-1.2288005,357.89783,Garden|l@-61.3760791663929,25.499667827549732,22.959389466776134,-1.2288005,357.89783,Garden|l@-61.37241184929675,25.501812324663682,23.059299185609913,-1.2288005,357.89783,Garden|l@-61.36874453220061,25.50... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.387081117681326,25.49323433620789,22.659660310274795,-1.2288005,357.89783,Garden, 
                   l@-61.38341380058518,25.495378833321837,22.759570029108577,-1.2288005,357.89783,Garden, 
                   l@-61.37974648348904,25.497523330435786,22.859479747942355,-1.2288005,357.89783,Garden, 
                   l@-61.3760791663929,25.499667827549732,22.959389466776134,-1.2288005,357.89783,Garden, 
                   l@-61.37241184929675,25.501812324663682,23.059299185609913,-1.2288005,357.89783,Garden, 
                   l@-61.368744532200... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 25 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '241'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '250'. 
14:40:04 [INFO]  Filled tag <def[points].get[241].to[250]> with 
                   'li@l@-61.35040794671989,25.514679307347365,23.65875749861259,-1.2288005,357.89783,Garden|l@-61.346740629623746,25.51682380446131,23.758667217446373,-1.2288005,357.89783,Garden|l@-61.3430733125276,25.51896830157526,23.85857693628015,-1.2288005,357.89783,Garden|l@-61.33940599543146,25.521112798689206,23.95848665511393,-1.2288005,357.89783,Garden|l@-61.33573867833532,25.523257295803155,24.05839637394771,-1.2288005,357.89783,Garden|l@-61.33207136123917,25.5254017... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.35040794671989,25.514679307347365,23.65875749861259,-1.2288005,357.89783,Garden, 
                   l@-61.346740629623746,25.51682380446131,23.758667217446373,-1.2288005,357.89783,Garden, 
                   l@-61.3430733125276,25.51896830157526,23.85857693628015,-1.2288005,357.89783,Garden, 
                   l@-61.33940599543146,25.521112798689206,23.95848665511393,-1.2288005,357.89783,Garden, 
                   l@-61.33573867833532,25.523257295803155,24.05839637394771,-1.2288005,357.89783,Garden, 
                   l@-61.33207136123917,25... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 26 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '251'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '260'. 
14:40:04 [INFO]  Filled tag <def[points].get[251].to[260]> with 
                   'li@l@-61.313734775758455,25.536124278486838,24.657854686950387,-1.2288005,357.89783,Garden|l@-61.31006745866231,25.538268775600784,24.757764405784165,-1.2288005,357.89783,Garden|l@-61.306400141566165,25.540413272714733,24.857674124617947,-1.2288005,357.89783,Garden|l@-61.30273282447003,25.54255776982868,24.957583843451726,-1.2288005,357.89783,Garden|l@-61.29906550737388,25.54470226694263,25.057493562285504,-1.2288005,357.89783,Garden|l@-61.29539819027774,25.5... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.313734775758455,25.536124278486838,24.657854686950387,-1.2288005,357.89783,Garden, 
                   l@-61.31006745866231,25.538268775600784,24.757764405784165,-1.2288005,357.89783,Garden, 
                   l@-61.306400141566165,25.540413272714733,24.857674124617947,-1.2288005,357.89783,Garden, 
                   l@-61.30273282447003,25.54255776982868,24.957583843451726,-1.2288005,357.89783,Garden, 
                   l@-61.29906550737388,25.54470226694263,25.057493562285504,-1.2288005,357.89783,Garden, 
                   l@-61.29539819027... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 27 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '261'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '270'. 
14:40:04 [INFO]  Filled tag <def[points].get[261].to[270]> with 
                   'li@l@-61.27706160479702,25.55756924962631,25.656951875288183,-1.2288005,357.89783,Garden|l@-61.273394287700874,25.55971374674026,25.75686159412196,-1.2288005,357.89783,Garden|l@-61.26972697060473,25.561858243854207,25.856771312955743,-1.2288005,357.89783,Garden|l@-61.26605965350859,25.564002740968153,25.956681031789522,-1.2288005,357.89783,Garden|l@-61.26239233641245,25.566147238082102,26.0565907506233,-1.2288005,357.89783,Garden|l@-61.2587250193163,25.568291... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.27706160479702,25.55756924962631,25.656951875288183,-1.2288005,357.89783,Garden, 
                   l@-61.273394287700874,25.55971374674026,25.75686159412196,-1.2288005,357.89783,Garden, 
                   l@-61.26972697060473,25.561858243854207,25.856771312955743,-1.2288005,357.89783,Garden, 
                   l@-61.26605965350859,25.564002740968153,25.956681031789522,-1.2288005,357.89783,Garden, 
                   l@-61.26239233641245,25.566147238082102,26.0565907506233,-1.2288005,357.89783,Garden, 
                   l@-61.2587250193163,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 28 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '271'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '280'. 
14:40:04 [INFO]  Filled tag <def[points].get[271].to[280]> with 
                   'li@l@-61.240388433835584,25.579014220765785,26.65604906362598,-1.2288005,357.89783,Garden|l@-61.23672111673944,25.581158717879735,26.755958782459757,-1.2288005,357.89783,Garden|l@-61.233053799643294,25.58330321499368,26.85586850129354,-1.2288005,357.89783,Garden|l@-61.229386482547156,25.585447712107626,26.955778220127318,-1.2288005,357.89783,Garden|l@-61.22571916545101,25.587592209221576,27.055687938961096,-1.2288005,357.89783,Garden|l@-61.222051848354866,25.... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.240388433835584,25.579014220765785,26.65604906362598,-1.2288005,357.89783,Garden, 
                   l@-61.23672111673944,25.581158717879735,26.755958782459757,-1.2288005,357.89783,Garden, 
                   l@-61.233053799643294,25.58330321499368,26.85586850129354,-1.2288005,357.89783,Garden, 
                   l@-61.229386482547156,25.585447712107626,26.955778220127318,-1.2288005,357.89783,Garden, 
                   l@-61.22571916545101,25.587592209221576,27.055687938961096,-1.2288005,357.89783,Garden, 
                   l@-61.22205184835... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 29 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '281'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '290'. 
14:40:04 [INFO]  Filled tag <def[points].get[281].to[290]> with 
                   'li@l@-61.20371526287415,25.60045919190526,27.655146251963775,-1.2288005,357.89783,Garden|l@-61.200047945778,25.602603689019208,27.755055970797553,-1.2288005,357.89783,Garden|l@-61.19638062868186,25.604748186133154,27.854965689631335,-1.2288005,357.89783,Garden|l@-61.19271331158571,25.6068926832471,27.954875408465114,-1.2288005,357.89783,Garden|l@-61.189045994489575,25.60903718036105,28.054785127298892,-1.2288005,357.89783,Garden|l@-61.18537867739343,25.611181... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.20371526287415,25.60045919190526,27.655146251963775,-1.2288005,357.89783,Garden, 
                   l@-61.200047945778,25.602603689019208,27.755055970797553,-1.2288005,357.89783,Garden, 
                   l@-61.19638062868186,25.604748186133154,27.854965689631335,-1.2288005,357.89783,Garden, 
                   l@-61.19271331158571,25.6068926832471,27.954875408465114,-1.2288005,357.89783,Garden, 
                   l@-61.189045994489575,25.60903718036105,28.054785127298892,-1.2288005,357.89783,Garden, 
                   l@-61.18537867739343,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 30 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '291'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '300'. 
14:40:04 [INFO]  Filled tag <def[points].get[291].to[300]> with 
                   'li@l@-61.16704209191271,25.621904163044732,28.65424344030157,-1.2288005,357.89783,Garden|l@-61.16337477481657,25.62404866015868,28.75415315913535,-1.2288005,357.89783,Garden|l@-61.15970745772042,25.626193157272628,28.85406287796913,-1.2288005,357.89783,Garden|l@-61.15604014062428,25.628337654386577,28.95397259680291,-1.2288005,357.89783,Garden|l@-61.15237282352814,25.630482151500523,29.053882315636688,-1.2288005,357.89783,Garden|l@-61.148705506431995,25.63262... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.16704209191271,25.621904163044732,28.65424344030157,-1.2288005,357.89783,Garden, 
                   l@-61.16337477481657,25.62404866015868,28.75415315913535,-1.2288005,357.89783,Garden, 
                   l@-61.15970745772042,25.626193157272628,28.85406287796913,-1.2288005,357.89783,Garden, 
                   l@-61.15604014062428,25.628337654386577,28.95397259680291,-1.2288005,357.89783,Garden, 
                   l@-61.15237282352814,25.630482151500523,29.053882315636688,-1.2288005,357.89783,Garden, 
                   l@-61.148705506431995,... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 31 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '301'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '310'. 
14:40:04 [INFO]  Filled tag <def[points].get[301].to[310]> with 
                   'li@l@-61.13036892095128,25.643349134184206,29.653340628639366,-1.2288005,357.89783,Garden|l@-61.12670160385513,25.645493631298155,29.753250347473145,-1.2288005,357.89783,Garden|l@-61.12303428675899,25.6476381284121,29.853160066306927,-1.2288005,357.89783,Garden|l@-61.11936696966284,25.64978262552605,29.953069785140706,-1.2288005,357.89783,Garden|l@-61.115699652566704,25.651927122639997,30.052979503974484,-1.2288005,357.89783,Garden|l@-61.11203233547056,25.654... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.13036892095128,25.643349134184206,29.653340628639366,-1.2288005,357.89783,Garden, 
                   l@-61.12670160385513,25.645493631298155,29.753250347473145,-1.2288005,357.89783,Garden, 
                   l@-61.12303428675899,25.6476381284121,29.853160066306927,-1.2288005,357.89783,Garden, 
                   l@-61.11936696966284,25.64978262552605,29.953069785140706,-1.2288005,357.89783,Garden, 
                   l@-61.115699652566704,25.651927122639997,30.052979503974484,-1.2288005,357.89783,Garden, 
                   l@-61.1120323354705... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 32 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '311'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '320'. 
14:40:04 [INFO]  Filled tag <def[points].get[311].to[320]> with 
                   'li@l@-61.09369574998984,25.66479410532368,30.652437816977162,-1.2288005,357.89783,Garden|l@-61.090028432893696,25.66693860243763,30.75234753581094,-1.2288005,357.89783,Garden|l@-61.08636111579755,25.669083099551575,30.852257254644723,-1.2288005,357.89783,Garden|l@-61.082693798701406,25.671227596665524,30.9521669734785,-1.2288005,357.89783,Garden|l@-61.07902648160526,25.67337209377947,31.05207669231228,-1.2288005,357.89783,Garden|l@-61.07535916450912,25.675516... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.09369574998984,25.66479410532368,30.652437816977162,-1.2288005,357.89783,Garden, 
                   l@-61.090028432893696,25.66693860243763,30.75234753581094,-1.2288005,357.89783,Garden, 
                   l@-61.08636111579755,25.669083099551575,30.852257254644723,-1.2288005,357.89783,Garden, 
                   l@-61.082693798701406,25.671227596665524,30.9521669734785,-1.2288005,357.89783,Garden, 
                   l@-61.07902648160526,25.67337209377947,31.05207669231228,-1.2288005,357.89783,Garden, 
                   l@-61.07535916450912,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 33 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '321'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '330'. 
14:40:04 [INFO]  Filled tag <def[points].get[321].to[330]> with 
                   'li@l@-61.057022579028406,25.686239076463156,31.65153500531496,-1.2288005,357.89783,Garden|l@-61.05335526193226,25.688383573577102,31.75144472414874,-1.2288005,357.89783,Garden|l@-61.049687944836116,25.690528070691048,31.85135444298252,-1.2288005,357.89783,Garden|l@-61.04602062773997,25.692672567804998,31.951264161816297,-1.2288005,357.89783,Garden|l@-61.042353310643826,25.694817064918944,32.051173880650076,-1.2288005,357.89783,Garden|l@-61.03868599354769,25.6... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.057022579028406,25.686239076463156,31.65153500531496,-1.2288005,357.89783,Garden, 
                   l@-61.05335526193226,25.688383573577102,31.75144472414874,-1.2288005,357.89783,Garden, 
                   l@-61.049687944836116,25.690528070691048,31.85135444298252,-1.2288005,357.89783,Garden, 
                   l@-61.04602062773997,25.692672567804998,31.951264161816297,-1.2288005,357.89783,Garden, 
                   l@-61.042353310643826,25.694817064918944,32.051173880650076,-1.2288005,357.89783,Garden, 
                   l@-61.03868599354... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 34 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '331'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '340'. 
14:40:04 [INFO]  Filled tag <def[points].get[331].to[340]> with 
                   'li@l@-61.02034940806697,25.70768404760263,32.650632193652754,-1.2288005,357.89783,Garden|l@-61.016682090970825,25.709828544716576,32.75054191248653,-1.2288005,357.89783,Garden|l@-61.01301477387468,25.71197304183052,32.85045163132031,-1.2288005,357.89783,Garden|l@-61.009347456778535,25.71411753894447,32.95036135015409,-1.2288005,357.89783,Garden|l@-61.00568013968239,25.716262036058417,33.050271068987875,-1.2288005,357.89783,Garden|l@-61.00201282258625,25.71840... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-61.02034940806697,25.70768404760263,32.650632193652754,-1.2288005,357.89783,Garden, 
                   l@-61.016682090970825,25.709828544716576,32.75054191248653,-1.2288005,357.89783,Garden, 
                   l@-61.01301477387468,25.71197304183052,32.85045163132031,-1.2288005,357.89783,Garden, 
                   l@-61.009347456778535,25.71411753894447,32.95036135015409,-1.2288005,357.89783,Garden, 
                   l@-61.00568013968239,25.716262036058417,33.050271068987875,-1.2288005,357.89783,Garden, 
                   l@-61.00201282258625,... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 35 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '341'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '350'. 
14:40:04 [INFO]  Filled tag <def[points].get[341].to[350]> with 
                   'li@l@-60.983676237105534,25.729129018742103,33.64972938199055,-1.2288005,357.89783,Garden|l@-60.98000892000939,25.73127351585605,33.74963910082433,-1.2288005,357.89783,Garden|l@-60.976341602913244,25.733418012969995,33.84954881965811,-1.2288005,357.89783,Garden|l@-60.9726742858171,25.735562510083945,33.94945853849189,-1.2288005,357.89783,Garden|l@-60.969006968720954,25.73770700719789,34.04936825732567,-1.2288005,357.89783,Garden|l@-60.96533965162482,25.739851... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.983676237105534,25.729129018742103,33.64972938199055,-1.2288005,357.89783,Garden, 
                   l@-60.98000892000939,25.73127351585605,33.74963910082433,-1.2288005,357.89783,Garden, 
                   l@-60.976341602913244,25.733418012969995,33.84954881965811,-1.2288005,357.89783,Garden, 
                   l@-60.9726742858171,25.735562510083945,33.94945853849189,-1.2288005,357.89783,Garden, 
                   l@-60.969006968720954,25.73770700719789,34.04936825732567,-1.2288005,357.89783,Garden, 
                   l@-60.96533965162482,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 36 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '351'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '360'. 
14:40:04 [INFO]  Filled tag <def[points].get[351].to[360]> with 
                   'li@l@-60.94700306614409,25.750573989881577,34.648826570328346,-1.2288005,357.89783,Garden|l@-60.943335749047954,25.752718486995523,34.748736289162125,-1.2288005,357.89783,Garden|l@-60.93966843195181,25.754862984109472,34.8486460079959,-1.2288005,357.89783,Garden|l@-60.936001114855664,25.757007481223418,34.94855572682968,-1.2288005,357.89783,Garden|l@-60.93233379775952,25.759151978337364,35.04846544566347,-1.2288005,357.89783,Garden|l@-60.928666480663374,25.76... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.94700306614409,25.750573989881577,34.648826570328346,-1.2288005,357.89783,Garden, 
                   l@-60.943335749047954,25.752718486995523,34.748736289162125,-1.2288005,357.89783,Garden, 
                   l@-60.93966843195181,25.754862984109472,34.8486460079959,-1.2288005,357.89783,Garden, 
                   l@-60.936001114855664,25.757007481223418,34.94855572682968,-1.2288005,357.89783,Garden, 
                   l@-60.93233379775952,25.759151978337364,35.04846544566347,-1.2288005,357.89783,Garden, 
                   l@-60.9286664806633... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 37 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '361'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '370'. 
14:40:04 [INFO]  Filled tag <def[points].get[361].to[370]> with 
                   'li@l@-60.910329895182656,25.77201896102105,35.64792375866614,-1.2288005,357.89783,Garden|l@-60.90666257808652,25.774163458134996,35.747833477499924,-1.2288005,357.89783,Garden|l@-60.90299526099037,25.776307955248946,35.8477431963337,-1.2288005,357.89783,Garden|l@-60.89932794389423,25.77845245236289,35.94765291516748,-1.2288005,357.89783,Garden|l@-60.89566062679808,25.780596949476838,36.04756263400126,-1.2288005,357.89783,Garden|l@-60.89199330970194,25.7827414... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.910329895182656,25.77201896102105,35.64792375866614,-1.2288005,357.89783,Garden, 
                   l@-60.90666257808652,25.774163458134996,35.747833477499924,-1.2288005,357.89783,Garden, 
                   l@-60.90299526099037,25.776307955248946,35.8477431963337,-1.2288005,357.89783,Garden, 
                   l@-60.89932794389423,25.77845245236289,35.94765291516748,-1.2288005,357.89783,Garden, 
                   l@-60.89566062679808,25.780596949476838,36.04756263400126,-1.2288005,357.89783,Garden, 
                   l@-60.89199330970194,25... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 38 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '371'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '380'. 
14:40:04 [INFO]  Filled tag <def[points].get[371].to[380]> with 
                   'li@l@-60.87365672422122,25.793463932160524,36.64702094700394,-1.2288005,357.89783,Garden|l@-60.86998940712508,25.79560842927447,36.746930665837716,-1.2288005,357.89783,Garden|l@-60.86632209002894,25.79775292638842,36.846840384671495,-1.2288005,357.89783,Garden|l@-60.86265477293279,25.799897423502365,36.94675010350527,-1.2288005,357.89783,Garden|l@-60.85898745583665,25.80204192061631,37.04665982233905,-1.2288005,357.89783,Garden|l@-60.8553201387405,25.80418641... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.87365672422122,25.793463932160524,36.64702094700394,-1.2288005,357.89783,Garden, 
                   l@-60.86998940712508,25.79560842927447,36.746930665837716,-1.2288005,357.89783,Garden, 
                   l@-60.86632209002894,25.79775292638842,36.846840384671495,-1.2288005,357.89783,Garden, 
                   l@-60.86265477293279,25.799897423502365,36.94675010350527,-1.2288005,357.89783,Garden, 
                   l@-60.85898745583665,25.80204192061631,37.04665982233905,-1.2288005,357.89783,Garden, 
                   l@-60.8553201387405,25.... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 39 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '381'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '390'. 
14:40:04 [INFO]  Filled tag <def[points].get[381].to[390]> with 
                   'li@l@-60.836983553259785,25.814908903299997,37.64611813534173,-1.2288005,357.89783,Garden|l@-60.83331623616364,25.817053400413943,37.746027854175516,-1.2288005,357.89783,Garden|l@-60.8296489190675,25.819197897527893,37.845937573009294,-1.2288005,357.89783,Garden|l@-60.82598160197136,25.82134239464184,37.94584729184307,-1.2288005,357.89783,Garden|l@-60.82231428487521,25.82348689175579,38.04575701067685,-1.2288005,357.89783,Garden|l@-60.81864696777907,25.825631... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.836983553259785,25.814908903299997,37.64611813534173,-1.2288005,357.89783,Garden, 
                   l@-60.83331623616364,25.817053400413943,37.746027854175516,-1.2288005,357.89783,Garden, 
                   l@-60.8296489190675,25.819197897527893,37.845937573009294,-1.2288005,357.89783,Garden, 
                   l@-60.82598160197136,25.82134239464184,37.94584729184307,-1.2288005,357.89783,Garden, 
                   l@-60.82231428487521,25.82348689175579,38.04575701067685,-1.2288005,357.89783,Garden, 
                   l@-60.81864696777907,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 40 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '391'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '400'. 
14:40:04 [INFO]  Filled tag <def[points].get[391].to[400]> with 
                   'li@l@-60.80031038229835,25.83635387443947,38.64521532367953,-1.2288005,357.89783,Garden|l@-60.796643065202204,25.838498371553417,38.74512504251331,-1.2288005,357.89783,Garden|l@-60.792975748106066,25.840642868667366,38.84503476134709,-1.2288005,357.89783,Garden|l@-60.78930843100992,25.842787365781312,38.944944480180865,-1.2288005,357.89783,Garden|l@-60.785641113913776,25.844931862895262,39.044854199014644,-1.2288005,357.89783,Garden|l@-60.78197379681763,25.84... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.80031038229835,25.83635387443947,38.64521532367953,-1.2288005,357.89783,Garden, 
                   l@-60.796643065202204,25.838498371553417,38.74512504251331,-1.2288005,357.89783,Garden, 
                   l@-60.792975748106066,25.840642868667366,38.84503476134709,-1.2288005,357.89783,Garden, 
                   l@-60.78930843100992,25.842787365781312,38.944944480180865,-1.2288005,357.89783,Garden, 
                   l@-60.785641113913776,25.844931862895262,39.044854199014644,-1.2288005,357.89783,Garden, 
                   l@-60.781973796817... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 41 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '401'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '410'. 
14:40:04 [INFO]  Filled tag <def[points].get[401].to[410]> with 
                   'li@l@-60.76363721133691,25.857798845578944,39.64431251201732,-1.2288005,357.89783,Garden|l@-60.75996989424077,25.85994334269289,39.7442222308511,-1.2288005,357.89783,Garden|l@-60.75630257714463,25.86208783980684,39.844131949684886,-1.2288005,357.89783,Garden|l@-60.752635260048486,25.864232336920786,39.944041668518665,-1.2288005,357.89783,Garden|l@-60.74896794295234,25.866376834034735,40.04395138735244,-1.2288005,357.89783,Garden|l@-60.745300625856196,25.86852... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.76363721133691,25.857798845578944,39.64431251201732,-1.2288005,357.89783,Garden, 
                   l@-60.75996989424077,25.85994334269289,39.7442222308511,-1.2288005,357.89783,Garden, 
                   l@-60.75630257714463,25.86208783980684,39.844131949684886,-1.2288005,357.89783,Garden, 
                   l@-60.752635260048486,25.864232336920786,39.944041668518665,-1.2288005,357.89783,Garden, 
                   l@-60.74896794295234,25.866376834034735,40.04395138735244,-1.2288005,357.89783,Garden, 
                   l@-60.745300625856196,... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 42 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '411'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '420'. 
14:40:04 [INFO]  Filled tag <def[points].get[411].to[420]> with 
                   'li@l@-60.72696404037548,25.879243816718418,40.64340970035512,-1.2288005,357.89783,Garden|l@-60.72329672327933,25.881388313832367,40.7433194191889,-1.2288005,357.89783,Garden|l@-60.719629406183195,25.883532810946313,40.84322913802268,-1.2288005,357.89783,Garden|l@-60.71596208908705,25.88567730806026,40.94313885685646,-1.2288005,357.89783,Garden|l@-60.712294771990905,25.88782180517421,41.043048575690236,-1.2288005,357.89783,Garden|l@-60.70862745489476,25.889966... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.72696404037548,25.879243816718418,40.64340970035512,-1.2288005,357.89783,Garden, 
                   l@-60.72329672327933,25.881388313832367,40.7433194191889,-1.2288005,357.89783,Garden, 
                   l@-60.719629406183195,25.883532810946313,40.84322913802268,-1.2288005,357.89783,Garden, 
                   l@-60.71596208908705,25.88567730806026,40.94313885685646,-1.2288005,357.89783,Garden, 
                   l@-60.712294771990905,25.88782180517421,41.043048575690236,-1.2288005,357.89783,Garden, 
                   l@-60.70862745489476,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 43 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '421'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '430'. 
14:40:04 [INFO]  Filled tag <def[points].get[421].to[430]> with 
                   'li@l@-60.69029086941404,25.90068878785789,41.642506888692914,-1.2288005,357.89783,Garden|l@-60.6866235523179,25.90283328497184,41.74241660752669,-1.2288005,357.89783,Garden|l@-60.68295623522175,25.904977782085787,41.84232632636048,-1.2288005,357.89783,Garden|l@-60.679288918125614,25.907122279199733,41.94223604519426,-1.2288005,357.89783,Garden|l@-60.67562160102947,25.909266776313682,42.042145764028035,-1.2288005,357.89783,Garden|l@-60.671954283933324,25.91141... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.69029086941404,25.90068878785789,41.642506888692914,-1.2288005,357.89783,Garden, 
                   l@-60.6866235523179,25.90283328497184,41.74241660752669,-1.2288005,357.89783,Garden, 
                   l@-60.68295623522175,25.904977782085787,41.84232632636048,-1.2288005,357.89783,Garden, 
                   l@-60.679288918125614,25.907122279199733,41.94223604519426,-1.2288005,357.89783,Garden, 
                   l@-60.67562160102947,25.909266776313682,42.042145764028035,-1.2288005,357.89783,Garden, 
                   l@-60.671954283933324,... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 44 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '431'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '440'. 
14:40:04 [INFO]  Filled tag <def[points].get[431].to[440]> with 
                   'li@l@-60.65361769845261,25.922133758997365,42.64160407703071,-1.2288005,357.89783,Garden|l@-60.64995038135646,25.924278256111315,42.74151379586449,-1.2288005,357.89783,Garden|l@-60.64628306426032,25.92642275322526,42.84142351469827,-1.2288005,357.89783,Garden|l@-60.64261574716418,25.928567250339206,42.94133323353205,-1.2288005,357.89783,Garden|l@-60.638948430068034,25.930711747453156,43.04124295236583,-1.2288005,357.89783,Garden|l@-60.63528111297189,25.932856... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.65361769845261,25.922133758997365,42.64160407703071,-1.2288005,357.89783,Garden, 
                   l@-60.64995038135646,25.924278256111315,42.74151379586449,-1.2288005,357.89783,Garden, 
                   l@-60.64628306426032,25.92642275322526,42.84142351469827,-1.2288005,357.89783,Garden, 
                   l@-60.64261574716418,25.928567250339206,42.94133323353205,-1.2288005,357.89783,Garden, 
                   l@-60.638948430068034,25.930711747453156,43.04124295236583,-1.2288005,357.89783,Garden, 
                   l@-60.63528111297189,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 45 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '441'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '450'. 
14:40:04 [INFO]  Filled tag <def[points].get[441].to[450]> with 
                   'li@l@-60.61694452749117,25.94357873013684,43.640701265368506,-1.2288005,357.89783,Garden|l@-60.613277210395026,25.945723227250788,43.740610984202284,-1.2288005,357.89783,Garden|l@-60.60960989329888,25.947867724364734,43.84052070303607,-1.2288005,357.89783,Garden|l@-60.60594257620274,25.950012221478683,43.94043042186985,-1.2288005,357.89783,Garden|l@-60.6022752591066,25.95215671859263,44.04034014070363,-1.2288005,357.89783,Garden|l@-60.59860794201045,25.954301... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.61694452749117,25.94357873013684,43.640701265368506,-1.2288005,357.89783,Garden, 
                   l@-60.613277210395026,25.945723227250788,43.740610984202284,-1.2288005,357.89783,Garden, 
                   l@-60.60960989329888,25.947867724364734,43.84052070303607,-1.2288005,357.89783,Garden, 
                   l@-60.60594257620274,25.950012221478683,43.94043042186985,-1.2288005,357.89783,Garden, 
                   l@-60.6022752591066,25.95215671859263,44.04034014070363,-1.2288005,357.89783,Garden, 
                   l@-60.59860794201045,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 46 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '451'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '460'. 
14:40:04 [INFO]  Filled tag <def[points].get[451].to[460]> with 
                   'li@l@-60.580271356529735,25.965023701276312,44.639798453706305,-1.2288005,357.89783,Garden|l@-60.57660403943359,25.96716819839026,44.739708172540084,-1.2288005,357.89783,Garden|l@-60.572936722337445,25.969312695504208,44.83961789137386,-1.2288005,357.89783,Garden|l@-60.5692694052413,25.971457192618157,44.93952761020764,-1.2288005,357.89783,Garden|l@-60.56560208814516,25.973601689732103,45.03943732904142,-1.2288005,357.89783,Garden|l@-60.56193477104902,25.9757... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.580271356529735,25.965023701276312,44.639798453706305,-1.2288005,357.89783,Garden, 
                   l@-60.57660403943359,25.96716819839026,44.739708172540084,-1.2288005,357.89783,Garden, 
                   l@-60.572936722337445,25.969312695504208,44.83961789137386,-1.2288005,357.89783,Garden, 
                   l@-60.5692694052413,25.971457192618157,44.93952761020764,-1.2288005,357.89783,Garden, 
                   l@-60.56560208814516,25.973601689732103,45.03943732904142,-1.2288005,357.89783,Garden, 
                   l@-60.56193477104902... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 47 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '461'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '470'. 
14:40:04 [INFO]  Filled tag <def[points].get[461].to[470]> with 
                   'li@l@-60.5435981855683,25.986468672415786,45.6388956420441,-1.2288005,357.89783,Garden|l@-60.539930868472155,25.988613169529735,45.738805360877876,-1.2288005,357.89783,Garden|l@-60.53626355137601,25.99075766664368,45.83871507971166,-1.2288005,357.89783,Garden|l@-60.532596234279865,25.99290216375763,45.93862479854544,-1.2288005,357.89783,Garden|l@-60.52892891718373,25.995046660871576,46.03853451737922,-1.2288005,357.89783,Garden|l@-60.52526160008758,25.9971911... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.5435981855683,25.986468672415786,45.6388956420441,-1.2288005,357.89783,Garden, 
                   l@-60.539930868472155,25.988613169529735,45.738805360877876,-1.2288005,357.89783,Garden, 
                   l@-60.53626355137601,25.99075766664368,45.83871507971166,-1.2288005,357.89783,Garden, 
                   l@-60.532596234279865,25.99290216375763,45.93862479854544,-1.2288005,357.89783,Garden, 
                   l@-60.52892891718373,25.995046660871576,46.03853451737922,-1.2288005,357.89783,Garden, 
                   l@-60.52526160008758,25... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 48 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '471'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '480'. 
14:40:04 [INFO]  Filled tag <def[points].get[471].to[480]> with 
                   'li@l@-60.506925014606864,26.007913643555263,46.6379928303819,-1.2288005,357.89783,Garden|l@-60.50325769751072,26.01005814066921,46.737902549215676,-1.2288005,357.89783,Garden|l@-60.499590380414574,26.012202637783155,46.837812268049454,-1.2288005,357.89783,Garden|l@-60.49592306331843,26.014347134897104,46.93772198688323,-1.2288005,357.89783,Garden|l@-60.49225574622229,26.01649163201105,47.03763170571701,-1.2288005,357.89783,Garden|l@-60.488588429126146,26.0186... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.506925014606864,26.007913643555263,46.6379928303819,-1.2288005,357.89783,Garden, 
                   l@-60.50325769751072,26.01005814066921,46.737902549215676,-1.2288005,357.89783,Garden, 
                   l@-60.499590380414574,26.012202637783155,46.837812268049454,-1.2288005,357.89783,Garden, 
                   l@-60.49592306331843,26.014347134897104,46.93772198688323,-1.2288005,357.89783,Garden, 
                   l@-60.49225574622229,26.01649163201105,47.03763170571701,-1.2288005,357.89783,Garden, 
                   l@-60.488588429126146... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 49 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '481'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '490'. 
14:40:04 [INFO]  Filled tag <def[points].get[481].to[490]> with 
                   'li@l@-60.47025184364543,26.029358614694736,47.63709001871969,-1.2288005,357.89783,Garden|l@-60.46658452654928,26.031503111808682,47.73699973755347,-1.2288005,357.89783,Garden|l@-60.46291720945314,26.033647608922628,47.83690945638725,-1.2288005,357.89783,Garden|l@-60.45924989235699,26.035792106036578,47.93681917522103,-1.2288005,357.89783,Garden|l@-60.455582575260856,26.037936603150523,48.03672889405481,-1.2288005,357.89783,Garden|l@-60.45191525816471,26.04008... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.47025184364543,26.029358614694736,47.63709001871969,-1.2288005,357.89783,Garden, 
                   l@-60.46658452654928,26.031503111808682,47.73699973755347,-1.2288005,357.89783,Garden, 
                   l@-60.46291720945314,26.033647608922628,47.83690945638725,-1.2288005,357.89783,Garden, 
                   l@-60.45924989235699,26.035792106036578,47.93681917522103,-1.2288005,357.89783,Garden, 
                   l@-60.455582575260856,26.037936603150523,48.03672889405481,-1.2288005,357.89783,Garden, 
                   l@-60.45191525816471,... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 50 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '491'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '500'. 
14:40:04 [INFO]  Filled tag <def[points].get[491].to[500]> with 
                   'li@l@-60.43357867268399,26.05080358583421,48.63618720705749,-1.2288005,357.89783,Garden|l@-60.42991135558785,26.052948082948156,48.73609692589127,-1.2288005,357.89783,Garden|l@-60.4262440384917,26.0550925800621,48.836006644725046,-1.2288005,357.89783,Garden|l@-60.42257672139556,26.05723707717605,48.935916363558825,-1.2288005,357.89783,Garden|l@-60.41890940429941,26.059381574289997,49.0358260823926,-1.2288005,357.89783,Garden|l@-60.415242087203275,26.061526071... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.43357867268399,26.05080358583421,48.63618720705749,-1.2288005,357.89783,Garden, 
                   l@-60.42991135558785,26.052948082948156,48.73609692589127,-1.2288005,357.89783,Garden, 
                   l@-60.4262440384917,26.0550925800621,48.836006644725046,-1.2288005,357.89783,Garden, 
                   l@-60.42257672139556,26.05723707717605,48.935916363558825,-1.2288005,357.89783,Garden, 
                   l@-60.41890940429941,26.059381574289997,49.0358260823926,-1.2288005,357.89783,Garden, 
                   l@-60.415242087203275,26.0... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 51 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '501'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '510'. 
14:40:04 [INFO]  Filled tag <def[points].get[501].to[510]> with 
                   'li@l@-60.39690550172256,26.072248556973683,49.63528439539528,-1.2288005,357.89783,Garden|l@-60.39323818462641,26.07439305408763,49.73519411422906,-1.2288005,357.89783,Garden|l@-60.38957086753027,26.07653755120158,49.83510383306284,-1.2288005,357.89783,Garden|l@-60.38590355043412,26.078682048315525,49.935013551896624,-1.2288005,357.89783,Garden|l@-60.38223623333798,26.08082654542947,50.0349232707304,-1.2288005,357.89783,Garden|l@-60.37856891624184,26.082971042... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.39690550172256,26.072248556973683,49.63528439539528,-1.2288005,357.89783,Garden, 
                   l@-60.39323818462641,26.07439305408763,49.73519411422906,-1.2288005,357.89783,Garden, 
                   l@-60.38957086753027,26.07653755120158,49.83510383306284,-1.2288005,357.89783,Garden, 
                   l@-60.38590355043412,26.078682048315525,49.935013551896624,-1.2288005,357.89783,Garden, 
                   l@-60.38223623333798,26.08082654542947,50.0349232707304,-1.2288005,357.89783,Garden, 
                   l@-60.37856891624184,26.0... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 52 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '511'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '520'. 
14:40:04 [INFO]  Filled tag <def[points].get[511].to[520]> with 
                   'li@l@-60.36023233076112,26.093693528113157,50.63438158373308,-1.2288005,357.89783,Garden|l@-60.35656501366498,26.095838025227103,50.73429130256686,-1.2288005,357.89783,Garden|l@-60.35289769656883,26.097982522341052,50.83420102140064,-1.2288005,357.89783,Garden|l@-60.34923037947269,26.100127019454998,50.934110740234416,-1.2288005,357.89783,Garden|l@-60.34556306237654,26.102271516568944,51.034020459068195,-1.2288005,357.89783,Garden|l@-60.341895745280404,26.104... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.36023233076112,26.093693528113157,50.63438158373308,-1.2288005,357.89783,Garden, 
                   l@-60.35656501366498,26.095838025227103,50.73429130256686,-1.2288005,357.89783,Garden, 
                   l@-60.35289769656883,26.097982522341052,50.83420102140064,-1.2288005,357.89783,Garden, 
                   l@-60.34923037947269,26.100127019454998,50.934110740234416,-1.2288005,357.89783,Garden, 
                   l@-60.34556306237654,26.102271516568944,51.034020459068195,-1.2288005,357.89783,Garden, 
                   l@-60.34189574528040... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 53 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '521'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '530'. 
14:40:04 [INFO]  Filled tag <def[points].get[521].to[530]> with 
                   'li@l@-60.323559159799686,26.11513849925263,51.63347877207087,-1.2288005,357.89783,Garden|l@-60.31989184270354,26.117282996366576,51.73338849090465,-1.2288005,357.89783,Garden|l@-60.316224525607396,26.119427493480526,51.83329820973843,-1.2288005,357.89783,Garden|l@-60.31255720851125,26.12157199059447,51.933207928572216,-1.2288005,357.89783,Garden|l@-60.308889891415106,26.12371648770842,52.033117647405994,-1.2288005,357.89783,Garden|l@-60.30522257431897,26.1258... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.323559159799686,26.11513849925263,51.63347877207087,-1.2288005,357.89783,Garden, 
                   l@-60.31989184270354,26.117282996366576,51.73338849090465,-1.2288005,357.89783,Garden, 
                   l@-60.316224525607396,26.119427493480526,51.83329820973843,-1.2288005,357.89783,Garden, 
                   l@-60.31255720851125,26.12157199059447,51.933207928572216,-1.2288005,357.89783,Garden, 
                   l@-60.308889891415106,26.12371648770842,52.033117647405994,-1.2288005,357.89783,Garden, 
                   l@-60.30522257431897... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 54 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '531'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '540'. 
14:40:04 [INFO]  Filled tag <def[points].get[531].to[540]> with 
                   'li@l@-60.28688598883825,26.136583470392104,52.63257596040867,-1.2288005,357.89783,Garden|l@-60.283218671742105,26.13872796750605,52.73248567924245,-1.2288005,357.89783,Garden|l@-60.27955135464596,26.14087246462,52.83239539807623,-1.2288005,357.89783,Garden|l@-60.275884037549815,26.143016961733945,52.93230511691001,-1.2288005,357.89783,Garden|l@-60.27221672045367,26.145161458847895,53.03221483574379,-1.2288005,357.89783,Garden|l@-60.268549403357525,26.14730595... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.28688598883825,26.136583470392104,52.63257596040867,-1.2288005,357.89783,Garden, 
                   l@-60.283218671742105,26.13872796750605,52.73248567924245,-1.2288005,357.89783,Garden, 
                   l@-60.27955135464596,26.14087246462,52.83239539807623,-1.2288005,357.89783,Garden, 
                   l@-60.275884037549815,26.143016961733945,52.93230511691001,-1.2288005,357.89783,Garden, 
                   l@-60.27221672045367,26.145161458847895,53.03221483574379,-1.2288005,357.89783,Garden, 
                   l@-60.268549403357525,26.... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 55 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '541'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '550'. 
14:40:04 [INFO]  Filled tag <def[points].get[541].to[550]> with 
                   'li@l@-60.25021281787681,26.158028441531577,53.631673148746465,-1.2288005,357.89783,Garden|l@-60.24654550078067,26.160172938645523,53.731582867580244,-1.2288005,357.89783,Garden|l@-60.242878183684525,26.162317435759473,53.83149258641402,-1.2288005,357.89783,Garden|l@-60.23921086658838,26.16446193287342,53.93140230524781,-1.2288005,357.89783,Garden|l@-60.235543549492235,26.166606429987368,54.031312024081586,-1.2288005,357.89783,Garden|l@-60.23187623239609,26.16... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.25021281787681,26.158028441531577,53.631673148746465,-1.2288005,357.89783,Garden, 
                   l@-60.24654550078067,26.160172938645523,53.731582867580244,-1.2288005,357.89783,Garden, 
                   l@-60.242878183684525,26.162317435759473,53.83149258641402,-1.2288005,357.89783,Garden, 
                   l@-60.23921086658838,26.16446193287342,53.93140230524781,-1.2288005,357.89783,Garden, 
                   l@-60.235543549492235,26.166606429987368,54.031312024081586,-1.2288005,357.89783,Garden, 
                   l@-60.231876232396... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 56 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '551'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '560'. 
14:40:04 [INFO]  Filled tag <def[points].get[551].to[560]> with 
                   'li@l@-60.21353964691537,26.17947341267105,54.630770337084265,-1.2288005,357.89783,Garden|l@-60.209872329819234,26.181617909784997,54.73068005591804,-1.2288005,357.89783,Garden|l@-60.20620501272309,26.183762406898946,54.83058977475182,-1.2288005,357.89783,Garden|l@-60.202537695626944,26.185906904012892,54.9304994935856,-1.2288005,357.89783,Garden|l@-60.1988703785308,26.18805140112684,55.03040921241938,-1.2288005,357.89783,Garden|l@-60.195203061434654,26.190195... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.21353964691537,26.17947341267105,54.630770337084265,-1.2288005,357.89783,Garden, 
                   l@-60.209872329819234,26.181617909784997,54.73068005591804,-1.2288005,357.89783,Garden, 
                   l@-60.20620501272309,26.183762406898946,54.83058977475182,-1.2288005,357.89783,Garden, 
                   l@-60.202537695626944,26.185906904012892,54.9304994935856,-1.2288005,357.89783,Garden, 
                   l@-60.1988703785308,26.18805140112684,55.03040921241938,-1.2288005,357.89783,Garden, 
                   l@-60.195203061434654,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 57 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:04 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '561'. 
14:40:04 [INFO]  Filled tag <def[value].mul[10]> with '570'. 
14:40:04 [INFO]  Filled tag <def[points].get[561].to[570]> with 
                   'li@l@-60.176866475953936,26.200918383810524,55.62986752542206,-1.2288005,357.89783,Garden|l@-60.1731991588578,26.203062880924474,55.729777244255835,-1.2288005,357.89783,Garden|l@-60.16953184176165,26.20520737803842,55.829686963089614,-1.2288005,357.89783,Garden|l@-60.16586452466551,26.207351875152366,55.9295966819234,-1.2288005,357.89783,Garden|l@-60.16219720756936,26.209496372266315,56.02950640075718,-1.2288005,357.89783,Garden|l@-60.15852989047322,26.211640... 
                   * snip! * 
14:40:04 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.176866475953936,26.200918383810524,55.62986752542206,-1.2288005,357.89783,Garden, 
                   l@-60.1731991588578,26.203062880924474,55.729777244255835,-1.2288005,357.89783,Garden, 
                   l@-60.16953184176165,26.20520737803842,55.829686963089614,-1.2288005,357.89783,Garden, 
                   l@-60.16586452466551,26.207351875152366,55.9295966819234,-1.2288005,357.89783,Garden, 
                   l@-60.16219720756936,26.209496372266315,56.02950640075718,-1.2288005,357.89783,Garden, 
                   l@-60.15852989047322,2... * snip! * 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:04 [INFO] +- Repeat loop 58 ---------+ 
14:40:04 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:04 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '571'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '580'. 
14:40:05 [INFO]  Filled tag <def[points].get[571].to[580]> with 
                   'li@l@-60.1401933049925,26.222363354949998,56.628964713759856,-1.2288005,357.89783,Garden|l@-60.136525987896356,26.224507852063947,56.728874432593635,-1.2288005,357.89783,Garden|l@-60.13285867080022,26.226652349177893,56.82878415142741,-1.2288005,357.89783,Garden|l@-60.12919135370407,26.22879684629184,56.92869387026119,-1.2288005,357.89783,Garden|l@-60.12552403660793,26.23094134340579,57.02860358909497,-1.2288005,357.89783,Garden|l@-60.12185671951178,26.233085... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.1401933049925,26.222363354949998,56.628964713759856,-1.2288005,357.89783,Garden, 
                   l@-60.136525987896356,26.224507852063947,56.728874432593635,-1.2288005,357.89783,Garden, 
                   l@-60.13285867080022,26.226652349177893,56.82878415142741,-1.2288005,357.89783,Garden, 
                   l@-60.12919135370407,26.22879684629184,56.92869387026119,-1.2288005,357.89783,Garden, 
                   l@-60.12552403660793,26.23094134340579,57.02860358909497,-1.2288005,357.89783,Garden, 
                   l@-60.12185671951178,2... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 59 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '581'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '590'. 
14:40:05 [INFO]  Filled tag <def[points].get[581].to[590]> with 
                   'li@l@-60.103520134031065,26.24380832608947,57.62806190209765,-1.2288005,357.89783,Garden|l@-60.09985281693492,26.24595282320342,57.72797162093143,-1.2288005,357.89783,Garden|l@-60.09618549983878,26.248097320317367,57.827881339765206,-1.2288005,357.89783,Garden|l@-60.09251818274264,26.250241817431316,57.927791058598984,-1.2288005,357.89783,Garden|l@-60.08885086564649,26.252386314545262,58.02770077743277,-1.2288005,357.89783,Garden|l@-60.08518354855035,26.25453... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.103520134031065,26.24380832608947,57.62806190209765,-1.2288005,357.89783,Garden, 
                   l@-60.09985281693492,26.24595282320342,57.72797162093143,-1.2288005,357.89783,Garden, 
                   l@-60.09618549983878,26.248097320317367,57.827881339765206,-1.2288005,357.89783,Garden, 
                   l@-60.09251818274264,26.250241817431316,57.927791058598984,-1.2288005,357.89783,Garden, 
                   l@-60.08885086564649,26.252386314545262,58.02770077743277,-1.2288005,357.89783,Garden, 
                   l@-60.08518354855035,... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 60 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '591'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '600'. 
14:40:05 [INFO]  Filled tag <def[points].get[591].to[600]> with 
                   'li@l@-60.06684696306963,26.265253297228945,58.62715909043545,-1.2288005,357.89783,Garden|l@-60.063179645973484,26.267397794342894,58.72706880926923,-1.2288005,357.89783,Garden|l@-60.05951232887735,26.26954229145684,58.826978528103005,-1.2288005,357.89783,Garden|l@-60.0558450117812,26.27168678857079,58.926888246936784,-1.2288005,357.89783,Garden|l@-60.05217769468506,26.273831285684736,59.02679796577056,-1.2288005,357.89783,Garden|l@-60.04851037758891,26.275975... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.06684696306963,26.265253297228945,58.62715909043545,-1.2288005,357.89783,Garden, 
                   l@-60.063179645973484,26.267397794342894,58.72706880926923,-1.2288005,357.89783,Garden, 
                   l@-60.05951232887735,26.26954229145684,58.826978528103005,-1.2288005,357.89783,Garden, 
                   l@-60.0558450117812,26.27168678857079,58.926888246936784,-1.2288005,357.89783,Garden, 
                   l@-60.05217769468506,26.273831285684736,59.02679796577056,-1.2288005,357.89783,Garden, 
                   l@-60.04851037758891,2... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 61 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '601'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '610'. 
14:40:05 [INFO]  Filled tag <def[points].get[601].to[610]> with 
                   'li@l@-60.030173792108194,26.28669826836842,59.62625627877324,-1.2288005,357.89783,Garden|l@-60.02650647501205,26.288842765482368,59.72616599760702,-1.2288005,357.89783,Garden|l@-60.02283915791591,26.290987262596314,59.8260757164408,-1.2288005,357.89783,Garden|l@-60.019171840819766,26.293131759710263,59.925985435274576,-1.2288005,357.89783,Garden|l@-60.01550452372362,26.29527625682421,60.02589515410836,-1.2288005,357.89783,Garden|l@-60.011837206627476,26.29742... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-60.030173792108194,26.28669826836842,59.62625627877324,-1.2288005,357.89783,Garden, 
                   l@-60.02650647501205,26.288842765482368,59.72616599760702,-1.2288005,357.89783,Garden, 
                   l@-60.02283915791591,26.290987262596314,59.8260757164408,-1.2288005,357.89783,Garden, 
                   l@-60.019171840819766,26.293131759710263,59.925985435274576,-1.2288005,357.89783,Garden, 
                   l@-60.01550452372362,26.29527625682421,60.02589515410836,-1.2288005,357.89783,Garden, 
                   l@-60.011837206627476,... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 62 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '611'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '620'. 
14:40:05 [INFO]  Filled tag <def[points].get[611].to[620]> with 
                   'li@l@-59.99350062114676,26.308143239507892,60.62535346711103,-1.2288005,357.89783,Garden|l@-59.98983330405061,26.31028773662184,60.72526318594482,-1.2288005,357.89783,Garden|l@-59.98616598695447,26.312432233735787,60.8251729047786,-1.2288005,357.89783,Garden|l@-59.98249866985833,26.314576730849737,60.925082623612376,-1.2288005,357.89783,Garden|l@-59.978831352762185,26.316721227963683,61.024992342446154,-1.2288005,357.89783,Garden|l@-59.97516403566604,26.31886... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.99350062114676,26.308143239507892,60.62535346711103,-1.2288005,357.89783,Garden, 
                   l@-59.98983330405061,26.31028773662184,60.72526318594482,-1.2288005,357.89783,Garden, 
                   l@-59.98616598695447,26.312432233735787,60.8251729047786,-1.2288005,357.89783,Garden, 
                   l@-59.98249866985833,26.314576730849737,60.925082623612376,-1.2288005,357.89783,Garden, 
                   l@-59.978831352762185,26.316721227963683,61.024992342446154,-1.2288005,357.89783,Garden, 
                   l@-59.97516403566604,... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 63 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '621'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '630'. 
14:40:05 [INFO]  Filled tag <def[points].get[621].to[630]> with 
                   'li@l@-59.95682745018532,26.32958821064737,61.62445065544883,-1.2288005,357.89783,Garden|l@-59.95316013308918,26.331732707761315,61.72436037428261,-1.2288005,357.89783,Garden|l@-59.94949281599303,26.33387720487526,61.82427009311639,-1.2288005,357.89783,Garden|l@-59.945825498896895,26.33602170198921,61.92417981195017,-1.2288005,357.89783,Garden|l@-59.94215818180075,26.338166199103156,62.024089530783954,-1.2288005,357.89783,Garden|l@-59.938490864704605,26.340310... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.95682745018532,26.32958821064737,61.62445065544883,-1.2288005,357.89783,Garden, 
                   l@-59.95316013308918,26.331732707761315,61.72436037428261,-1.2288005,357.89783,Garden, 
                   l@-59.94949281599303,26.33387720487526,61.82427009311639,-1.2288005,357.89783,Garden, 
                   l@-59.945825498896895,26.33602170198921,61.92417981195017,-1.2288005,357.89783,Garden, 
                   l@-59.94215818180075,26.338166199103156,62.024089530783954,-1.2288005,357.89783,Garden, 
                   l@-59.938490864704605,2... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 64 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '631'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '640'. 
14:40:05 [INFO]  Filled tag <def[points].get[631].to[640]> with 
                   'li@l@-59.92015427922389,26.351033181786843,62.623547843786625,-1.2288005,357.89783,Garden|l@-59.91648696212774,26.35317767890079,62.72345756262041,-1.2288005,357.89783,Garden|l@-59.9128196450316,26.355322176014734,62.82336728145419,-1.2288005,357.89783,Garden|l@-59.90915232793546,26.357466673128684,62.92327700028797,-1.2288005,357.89783,Garden|l@-59.905485010839314,26.35961117024263,63.023186719121746,-1.2288005,357.89783,Garden|l@-59.90181769374317,26.361755... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.92015427922389,26.351033181786843,62.623547843786625,-1.2288005,357.89783,Garden, 
                   l@-59.91648696212774,26.35317767890079,62.72345756262041,-1.2288005,357.89783,Garden, 
                   l@-59.9128196450316,26.355322176014734,62.82336728145419,-1.2288005,357.89783,Garden, 
                   l@-59.90915232793546,26.357466673128684,62.92327700028797,-1.2288005,357.89783,Garden, 
                   l@-59.905485010839314,26.35961117024263,63.023186719121746,-1.2288005,357.89783,Garden, 
                   l@-59.90181769374317,2... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 65 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '641'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '650'. 
14:40:05 [INFO]  Filled tag <def[points].get[641].to[650]> with 
                   'li@l@-59.88348110826245,26.372478152926316,63.622645032124424,-1.2288005,357.89783,Garden|l@-59.879813791166306,26.374622650040262,63.7225547509582,-1.2288005,357.89783,Garden|l@-59.87614647407016,26.376767147154208,63.822464469791974,-1.2288005,357.89783,Garden|l@-59.87247915697402,26.378911644268157,63.922374188625746,-1.2288005,357.89783,Garden|l@-59.86881183987788,26.381056141382103,64.02228390745951,-1.2288005,357.89783,Garden|l@-59.86514452278173,26.383... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.88348110826245,26.372478152926316,63.622645032124424,-1.2288005,357.89783,Garden, 
                   l@-59.879813791166306,26.374622650040262,63.7225547509582,-1.2288005,357.89783,Garden, 
                   l@-59.87614647407016,26.376767147154208,63.822464469791974,-1.2288005,357.89783,Garden, 
                   l@-59.87247915697402,26.378911644268157,63.922374188625746,-1.2288005,357.89783,Garden, 
                   l@-59.86881183987788,26.381056141382103,64.02228390745951,-1.2288005,357.89783,Garden, 
                   l@-59.8651445227817... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 66 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '651'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '660'. 
14:40:05 [INFO]  Filled tag <def[points].get[651].to[660]> with 
                   'li@l@-59.846807937301016,26.393923124065786,64.62174222046214,-1.2288005,357.89783,Garden|l@-59.84314062020487,26.396067621179736,64.72165193929591,-1.2288005,357.89783,Garden|l@-59.83947330310873,26.39821211829368,64.82156165812968,-1.2288005,357.89783,Garden|l@-59.83580598601259,26.400356615407627,64.92147137696345,-1.2288005,357.89783,Garden|l@-59.83213866891644,26.402501112521577,65.02138109579724,-1.2288005,357.89783,Garden|l@-59.8284713518203,26.4046456... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.846807937301016,26.393923124065786,64.62174222046214,-1.2288005,357.89783,Garden, 
                   l@-59.84314062020487,26.396067621179736,64.72165193929591,-1.2288005,357.89783,Garden, 
                   l@-59.83947330310873,26.39821211829368,64.82156165812968,-1.2288005,357.89783,Garden, 
                   l@-59.83580598601259,26.400356615407627,64.92147137696345,-1.2288005,357.89783,Garden, 
                   l@-59.83213866891644,26.402501112521577,65.02138109579724,-1.2288005,357.89783,Garden, 
                   l@-59.8284713518203,26... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 67 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '661'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '670'. 
14:40:05 [INFO]  Filled tag <def[points].get[661].to[670]> with 
                   'li@l@-59.81013476633959,26.41536809520526,65.62083940879987,-1.2288005,357.89783,Garden|l@-59.80646744924344,26.417512592319206,65.72074912763364,-1.2288005,357.89783,Garden|l@-59.8028001321473,26.419657089433155,65.82065884646741,-1.2288005,357.89783,Garden|l@-59.79913281505115,26.4218015865471,65.92056856530118,-1.2288005,357.89783,Garden|l@-59.79546549795501,26.423946083661047,66.02047828413495,-1.2288005,357.89783,Garden|l@-59.79179818085887,26.4260905807... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.81013476633959,26.41536809520526,65.62083940879987,-1.2288005,357.89783,Garden, 
                   l@-59.80646744924344,26.417512592319206,65.72074912763364,-1.2288005,357.89783,Garden, 
                   l@-59.8028001321473,26.419657089433155,65.82065884646741,-1.2288005,357.89783,Garden, 
                   l@-59.79913281505115,26.4218015865471,65.92056856530118,-1.2288005,357.89783,Garden, 
                   l@-59.79546549795501,26.423946083661047,66.02047828413495,-1.2288005,357.89783,Garden, 
                   l@-59.79179818085887,26.42... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 68 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '671'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '680'. 
14:40:05 [INFO]  Filled tag <def[points].get[671].to[680]> with 
                   'li@l@-59.77346159537815,26.436813066344733,66.6199365971376,-1.2288005,357.89783,Garden|l@-59.769794278282006,26.43895756345868,66.71984631597137,-1.2288005,357.89783,Garden|l@-59.76612696118586,26.441102060572625,66.81975603480514,-1.2288005,357.89783,Garden|l@-59.76245964408972,26.443246557686575,66.91966575363891,-1.2288005,357.89783,Garden|l@-59.75879232699358,26.44539105480052,67.01957547247268,-1.2288005,357.89783,Garden|l@-59.755125009897434,26.4475355... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.77346159537815,26.436813066344733,66.6199365971376,-1.2288005,357.89783,Garden, 
                   l@-59.769794278282006,26.43895756345868,66.71984631597137,-1.2288005,357.89783,Garden, 
                   l@-59.76612696118586,26.441102060572625,66.81975603480514,-1.2288005,357.89783,Garden, 
                   l@-59.76245964408972,26.443246557686575,66.91966575363891,-1.2288005,357.89783,Garden, 
                   l@-59.75879232699358,26.44539105480052,67.01957547247268,-1.2288005,357.89783,Garden, 
                   l@-59.755125009897434,26... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 69 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '681'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '690'. 
14:40:05 [INFO]  Filled tag <def[points].get[681].to[690]> with 
                   'li@l@-59.736788424416716,26.458258037484203,67.61903378547531,-1.2288005,357.89783,Garden|l@-59.73312110732057,26.460402534598153,67.7189435043091,-1.2288005,357.89783,Garden|l@-59.72945379022443,26.4625470317121,67.81885322314287,-1.2288005,357.89783,Garden|l@-59.72578647312829,26.464691528826044,67.91876294197664,-1.2288005,357.89783,Garden|l@-59.72211915603214,26.466836025939994,68.01867266081041,-1.2288005,357.89783,Garden|l@-59.718451838936,26.4689805230... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.736788424416716,26.458258037484203,67.61903378547531,-1.2288005,357.89783,Garden, 
                   l@-59.73312110732057,26.460402534598153,67.7189435043091,-1.2288005,357.89783,Garden, 
                   l@-59.72945379022443,26.4625470317121,67.81885322314287,-1.2288005,357.89783,Garden, 
                   l@-59.72578647312829,26.464691528826044,67.91876294197664,-1.2288005,357.89783,Garden, 
                   l@-59.72211915603214,26.466836025939994,68.01867266081041,-1.2288005,357.89783,Garden, 
                   l@-59.718451838936,26.46... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 70 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '691'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '700'. 
14:40:05 [INFO]  Filled tag <def[points].get[691].to[700]> with 
                   'li@l@-59.70011525345528,26.479703008623677,68.61813097381304,-1.2288005,357.89783,Garden|l@-59.69644793635914,26.481847505737623,68.71804069264681,-1.2288005,357.89783,Garden|l@-59.692780619263,26.483992002851572,68.81795041148058,-1.2288005,357.89783,Garden|l@-59.68911330216685,26.486136499965518,68.91786013031435,-1.2288005,357.89783,Garden|l@-59.68544598507071,26.488280997079464,69.01776984914812,-1.2288005,357.89783,Garden|l@-59.68177866797457,26.49042549... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.70011525345528,26.479703008623677,68.61813097381304,-1.2288005,357.89783,Garden, 
                   l@-59.69644793635914,26.481847505737623,68.71804069264681,-1.2288005,357.89783,Garden, 
                   l@-59.692780619263,26.483992002851572,68.81795041148058,-1.2288005,357.89783,Garden, 
                   l@-59.68911330216685,26.486136499965518,68.91786013031435,-1.2288005,357.89783,Garden, 
                   l@-59.68544598507071,26.488280997079464,69.01776984914812,-1.2288005,357.89783,Garden, 
                   l@-59.68177866797457,26.... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 71 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '701'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '710'. 
14:40:05 [INFO]  Filled tag <def[points].get[701].to[710]> with 
                   'li@l@-59.66344208249385,26.501147979763147,69.61722816215077,-1.2288005,357.89783,Garden|l@-59.65977476539771,26.503292476877096,69.71713788098454,-1.2288005,357.89783,Garden|l@-59.65610744830156,26.505436973991042,69.81704759981831,-1.2288005,357.89783,Garden|l@-59.65244013120542,26.50758147110499,69.91695731865208,-1.2288005,357.89783,Garden|l@-59.64877281410928,26.509725968218937,70.01686703748585,-1.2288005,357.89783,Garden|l@-59.645105497013134,26.511870... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.66344208249385,26.501147979763147,69.61722816215077,-1.2288005,357.89783,Garden, 
                   l@-59.65977476539771,26.503292476877096,69.71713788098454,-1.2288005,357.89783,Garden, 
                   l@-59.65610744830156,26.505436973991042,69.81704759981831,-1.2288005,357.89783,Garden, 
                   l@-59.65244013120542,26.50758147110499,69.91695731865208,-1.2288005,357.89783,Garden, 
                   l@-59.64877281410928,26.509725968218937,70.01686703748585,-1.2288005,357.89783,Garden, 
                   l@-59.645105497013134,2... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 72 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '711'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '720'. 
14:40:05 [INFO]  Filled tag <def[points].get[711].to[720]> with 
                   'li@l@-59.626768911532416,26.52259295090262,70.6163253504885,-1.2288005,357.89783,Garden|l@-59.62310159443627,26.524737448016566,70.71623506932227,-1.2288005,357.89783,Garden|l@-59.61943427734013,26.526881945130516,70.81614478815604,-1.2288005,357.89783,Garden|l@-59.61576696024399,26.52902644224446,70.91605450698981,-1.2288005,357.89783,Garden|l@-59.61209964314784,26.53117093935841,71.01596422582358,-1.2288005,357.89783,Garden|l@-59.6084323260517,26.5333154364... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.626768911532416,26.52259295090262,70.6163253504885,-1.2288005,357.89783,Garden, 
                   l@-59.62310159443627,26.524737448016566,70.71623506932227,-1.2288005,357.89783,Garden, 
                   l@-59.61943427734013,26.526881945130516,70.81614478815604,-1.2288005,357.89783,Garden, 
                   l@-59.61576696024399,26.52902644224446,70.91605450698981,-1.2288005,357.89783,Garden, 
                   l@-59.61209964314784,26.53117093935841,71.01596422582358,-1.2288005,357.89783,Garden, 
                   l@-59.6084323260517,26.53... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 73 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '721'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '730'. 
14:40:05 [INFO]  Filled tag <def[points].get[721].to[730]> with 
                   'li@l@-59.59009574057098,26.544037922042094,71.61542253882621,-1.2288005,357.89783,Garden|l@-59.58642842347484,26.54618241915604,71.71533225766,-1.2288005,357.89783,Garden|l@-59.5827611063787,26.548326916269986,71.81524197649377,-1.2288005,357.89783,Garden|l@-59.57909378928255,26.550471413383935,71.91515169532754,-1.2288005,357.89783,Garden|l@-59.57542647218641,26.55261591049788,72.01506141416131,-1.2288005,357.89783,Garden|l@-59.57175915509027,26.554760407611... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.59009574057098,26.544037922042094,71.61542253882621,-1.2288005,357.89783,Garden, 
                   l@-59.58642842347484,26.54618241915604,71.71533225766,-1.2288005,357.89783,Garden, 
                   l@-59.5827611063787,26.548326916269986,71.81524197649377,-1.2288005,357.89783,Garden, 
                   l@-59.57909378928255,26.550471413383935,71.91515169532754,-1.2288005,357.89783,Garden, 
                   l@-59.57542647218641,26.55261591049788,72.01506141416131,-1.2288005,357.89783,Garden, 
                   l@-59.57175915509027,26.5547... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 74 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '731'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '740'. 
14:40:05 [INFO]  Filled tag <def[points].get[731].to[740]> with 
                   'li@l@-59.55342256960955,26.565482893181564,72.61451972716394,-1.2288005,357.89783,Garden|l@-59.54975525251341,26.567627390295513,72.71442944599771,-1.2288005,357.89783,Garden|l@-59.54608793541726,26.56977188740946,72.81433916483148,-1.2288005,357.89783,Garden|l@-59.54242061832112,26.571916384523405,72.91424888366525,-1.2288005,357.89783,Garden|l@-59.53875330122498,26.574060881637354,73.01415860249902,-1.2288005,357.89783,Garden|l@-59.535085984128834,26.576205... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.55342256960955,26.565482893181564,72.61451972716394,-1.2288005,357.89783,Garden, 
                   l@-59.54975525251341,26.567627390295513,72.71442944599771,-1.2288005,357.89783,Garden, 
                   l@-59.54608793541726,26.56977188740946,72.81433916483148,-1.2288005,357.89783,Garden, 
                   l@-59.54242061832112,26.571916384523405,72.91424888366525,-1.2288005,357.89783,Garden, 
                   l@-59.53875330122498,26.574060881637354,73.01415860249902,-1.2288005,357.89783,Garden, 
                   l@-59.535085984128834,2... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 75 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '741'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '750'. 
14:40:05 [INFO]  Filled tag <def[points].get[741].to[750]> with 
                   'li@l@-59.516749398648116,26.586927864321037,73.61361691550167,-1.2288005,357.89783,Garden|l@-59.51308208155197,26.589072361434983,73.71352663433544,-1.2288005,357.89783,Garden|l@-59.509414764455826,26.591216858548933,73.81343635316921,-1.2288005,357.89783,Garden|l@-59.50574744735969,26.59336135566288,73.91334607200298,-1.2288005,357.89783,Garden|l@-59.50208013026354,26.595505852776824,74.01325579083675,-1.2288005,357.89783,Garden|l@-59.4984128131674,26.597650... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.516749398648116,26.586927864321037,73.61361691550167,-1.2288005,357.89783,Garden, 
                   l@-59.51308208155197,26.589072361434983,73.71352663433544,-1.2288005,357.89783,Garden, 
                   l@-59.509414764455826,26.591216858548933,73.81343635316921,-1.2288005,357.89783,Garden, 
                   l@-59.50574744735969,26.59336135566288,73.91334607200298,-1.2288005,357.89783,Garden, 
                   l@-59.50208013026354,26.595505852776824,74.01325579083675,-1.2288005,357.89783,Garden, 
                   l@-59.4984128131674,2... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 76 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '751'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '760'. 
14:40:05 [INFO]  Filled tag <def[points].get[751].to[760]> with 
                   'li@l@-59.48007622768668,26.60837283546051,74.6127141038394,-1.2288005,357.89783,Garden|l@-59.47640891059054,26.610517332574457,74.71262382267317,-1.2288005,357.89783,Garden|l@-59.4727415934944,26.612661829688403,74.81253354150694,-1.2288005,357.89783,Garden|l@-59.46907427639825,26.614806326802352,74.91244326034071,-1.2288005,357.89783,Garden|l@-59.46540695930211,26.616950823916298,75.01235297917448,-1.2288005,357.89783,Garden|l@-59.46173964220597,26.619095321... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.48007622768668,26.60837283546051,74.6127141038394,-1.2288005,357.89783,Garden, 
                   l@-59.47640891059054,26.610517332574457,74.71262382267317,-1.2288005,357.89783,Garden, 
                   l@-59.4727415934944,26.612661829688403,74.81253354150694,-1.2288005,357.89783,Garden, 
                   l@-59.46907427639825,26.614806326802352,74.91244326034071,-1.2288005,357.89783,Garden, 
                   l@-59.46540695930211,26.616950823916298,75.01235297917448,-1.2288005,357.89783,Garden, 
                   l@-59.46173964220597,26.6... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 77 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '761'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '770'. 
14:40:05 [INFO]  Filled tag <def[points].get[761].to[770]> with 
                   'li@l@-59.44340305672525,26.62981780659998,75.61181129217711,-1.2288005,357.89783,Garden|l@-59.43973573962911,26.63196230371393,75.71172101101088,-1.2288005,357.89783,Garden|l@-59.43606842253296,26.634106800827876,75.81163072984467,-1.2288005,357.89783,Garden|l@-59.43240110543682,26.636251297941822,75.91154044867844,-1.2288005,357.89783,Garden|l@-59.42873378834068,26.63839579505577,76.01145016751221,-1.2288005,357.89783,Garden|l@-59.425066471244534,26.64054029... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.44340305672525,26.62981780659998,75.61181129217711,-1.2288005,357.89783,Garden, 
                   l@-59.43973573962911,26.63196230371393,75.71172101101088,-1.2288005,357.89783,Garden, 
                   l@-59.43606842253296,26.634106800827876,75.81163072984467,-1.2288005,357.89783,Garden, 
                   l@-59.43240110543682,26.636251297941822,75.91154044867844,-1.2288005,357.89783,Garden, 
                   l@-59.42873378834068,26.63839579505577,76.01145016751221,-1.2288005,357.89783,Garden, 
                   l@-59.425066471244534,26.... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 78 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '771'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '780'. 
14:40:05 [INFO]  Filled tag <def[points].get[771].to[780]> with 
                   'li@l@-59.406729885763816,26.651262777739454,76.61090848051484,-1.2288005,357.89783,Garden|l@-59.40306256866767,26.6534072748534,76.71081819934861,-1.2288005,357.89783,Garden|l@-59.399395251571526,26.65555177196735,76.81072791818238,-1.2288005,357.89783,Garden|l@-59.39572793447539,26.657696269081296,76.91063763701615,-1.2288005,357.89783,Garden|l@-59.392060617379244,26.65984076619524,77.01054735584992,-1.2288005,357.89783,Garden|l@-59.3883933002831,26.66198526... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.406729885763816,26.651262777739454,76.61090848051484,-1.2288005,357.89783,Garden, 
                   l@-59.40306256866767,26.6534072748534,76.71081819934861,-1.2288005,357.89783,Garden, 
                   l@-59.399395251571526,26.65555177196735,76.81072791818238,-1.2288005,357.89783,Garden, 
                   l@-59.39572793447539,26.657696269081296,76.91063763701615,-1.2288005,357.89783,Garden, 
                   l@-59.392060617379244,26.65984076619524,77.01054735584992,-1.2288005,357.89783,Garden, 
                   l@-59.3883933002831,26.... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 79 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '781'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '790'. 
14:40:05 [INFO]  Filled tag <def[points].get[781].to[790]> with 
                   'li@l@-59.37005671480238,26.672707748878928,77.61000566885257,-1.2288005,357.89783,Garden|l@-59.36638939770624,26.674852245992874,77.70991538768634,-1.2288005,357.89783,Garden|l@-59.3627220806101,26.67699674310682,77.80982510652011,-1.2288005,357.89783,Garden|l@-59.35905476351395,26.67914124022077,77.90973482535388,-1.2288005,357.89783,Garden|l@-59.35538744641781,26.681285737334715,78.00964454418765,-1.2288005,357.89783,Garden|l@-59.35172012932166,26.683430234... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.37005671480238,26.672707748878928,77.61000566885257,-1.2288005,357.89783,Garden, 
                   l@-59.36638939770624,26.674852245992874,77.70991538768634,-1.2288005,357.89783,Garden, 
                   l@-59.3627220806101,26.67699674310682,77.80982510652011,-1.2288005,357.89783,Garden, 
                   l@-59.35905476351395,26.67914124022077,77.90973482535388,-1.2288005,357.89783,Garden, 
                   l@-59.35538744641781,26.681285737334715,78.00964454418765,-1.2288005,357.89783,Garden, 
                   l@-59.35172012932166,26.6... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 80 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '791'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '800'. 
14:40:05 [INFO]  Filled tag <def[points].get[791].to[800]> with 
                   'li@l@-59.33338354384095,26.694152720018398,78.6091028571903,-1.2288005,357.89783,Garden|l@-59.32971622674481,26.696297217132347,78.70901257602407,-1.2288005,357.89783,Garden|l@-59.32604890964866,26.698441714246293,78.80892229485784,-1.2288005,357.89783,Garden|l@-59.32238159255252,26.70058621136024,78.90883201369161,-1.2288005,357.89783,Garden|l@-59.31871427545637,26.70273070847419,79.00874173252538,-1.2288005,357.89783,Garden|l@-59.315046958360234,26.70487520... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.33338354384095,26.694152720018398,78.6091028571903,-1.2288005,357.89783,Garden, 
                   l@-59.32971622674481,26.696297217132347,78.70901257602407,-1.2288005,357.89783,Garden, 
                   l@-59.32604890964866,26.698441714246293,78.80892229485784,-1.2288005,357.89783,Garden, 
                   l@-59.32238159255252,26.70058621136024,78.90883201369161,-1.2288005,357.89783,Garden, 
                   l@-59.31871427545637,26.70273070847419,79.00874173252538,-1.2288005,357.89783,Garden, 
                   l@-59.315046958360234,26.... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 81 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '801'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '810'. 
14:40:05 [INFO]  Filled tag <def[points].get[801].to[810]> with 
                   'li@l@-59.29671037287952,26.71559769115787,79.60820004552801,-1.2288005,357.89783,Garden|l@-59.29304305578337,26.717742188271817,79.70810976436178,-1.2288005,357.89783,Garden|l@-59.28937573868723,26.719886685385767,79.80801948319557,-1.2288005,357.89783,Garden|l@-59.28570842159109,26.722031182499713,79.90792920202934,-1.2288005,357.89783,Garden|l@-59.282041104494944,26.72417567961366,80.00783892086311,-1.2288005,357.89783,Garden|l@-59.2783737873988,26.72632017... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.29671037287952,26.71559769115787,79.60820004552801,-1.2288005,357.89783,Garden, 
                   l@-59.29304305578337,26.717742188271817,79.70810976436178,-1.2288005,357.89783,Garden, 
                   l@-59.28937573868723,26.719886685385767,79.80801948319557,-1.2288005,357.89783,Garden, 
                   l@-59.28570842159109,26.722031182499713,79.90792920202934,-1.2288005,357.89783,Garden, 
                   l@-59.282041104494944,26.72417567961366,80.00783892086311,-1.2288005,357.89783,Garden, 
                   l@-59.2783737873988,26.... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 82 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '811'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '820'. 
14:40:05 [INFO]  Filled tag <def[points].get[811].to[820]> with 
                   'li@l@-59.26003720191808,26.73704266229734,80.60729723386574,-1.2288005,357.89783,Garden|l@-59.256369884821936,26.73918715941129,80.70720695269951,-1.2288005,357.89783,Garden|l@-59.2527025677258,26.741331656525237,80.80711667153328,-1.2288005,357.89783,Garden|l@-59.24903525062965,26.743476153639186,80.90702639036705,-1.2288005,357.89783,Garden|l@-59.24536793353351,26.745620650753132,81.00693610920082,-1.2288005,357.89783,Garden|l@-59.24170061643736,26.74776514... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.26003720191808,26.73704266229734,80.60729723386574,-1.2288005,357.89783,Garden, 
                   l@-59.256369884821936,26.73918715941129,80.70720695269951,-1.2288005,357.89783,Garden, 
                   l@-59.2527025677258,26.741331656525237,80.80711667153328,-1.2288005,357.89783,Garden, 
                   l@-59.24903525062965,26.743476153639186,80.90702639036705,-1.2288005,357.89783,Garden, 
                   l@-59.24536793353351,26.745620650753132,81.00693610920082,-1.2288005,357.89783,Garden, 
                   l@-59.24170061643736,26.... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 83 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '821'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '830'. 
14:40:05 [INFO]  Filled tag <def[points].get[821].to[830]> with 
                   'li@l@-59.223364030956645,26.758487633436815,81.60639442220346,-1.2288005,357.89783,Garden|l@-59.21969671386051,26.76063213055076,81.70630414103724,-1.2288005,357.89783,Garden|l@-59.21602939676436,26.76277662766471,81.80621385987101,-1.2288005,357.89783,Garden|l@-59.21236207966822,26.764921124778656,81.90612357870478,-1.2288005,357.89783,Garden|l@-59.20869476257207,26.767065621892606,82.00603329753855,-1.2288005,357.89783,Garden|l@-59.205027445475935,26.769210... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.223364030956645,26.758487633436815,81.60639442220346,-1.2288005,357.89783,Garden, 
                   l@-59.21969671386051,26.76063213055076,81.70630414103724,-1.2288005,357.89783,Garden, 
                   l@-59.21602939676436,26.76277662766471,81.80621385987101,-1.2288005,357.89783,Garden, 
                   l@-59.21236207966822,26.764921124778656,81.90612357870478,-1.2288005,357.89783,Garden, 
                   l@-59.20869476257207,26.767065621892606,82.00603329753855,-1.2288005,357.89783,Garden, 
                   l@-59.205027445475935,2... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 84 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '831'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '840'. 
14:40:05 [INFO]  Filled tag <def[points].get[831].to[840]> with 
                   'li@l@-59.18669085999522,26.779932604576288,82.6054916105412,-1.2288005,357.89783,Garden|l@-59.18302354289907,26.782077101690234,82.70540132937496,-1.2288005,357.89783,Garden|l@-59.17935622580293,26.78422159880418,82.80531104820874,-1.2288005,357.89783,Garden|l@-59.17568890870679,26.78636609591813,82.90522076704251,-1.2288005,357.89783,Garden|l@-59.172021591610644,26.788510593032075,83.00513048587628,-1.2288005,357.89783,Garden|l@-59.1683542745145,26.790655090... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.18669085999522,26.779932604576288,82.6054916105412,-1.2288005,357.89783,Garden, 
                   l@-59.18302354289907,26.782077101690234,82.70540132937496,-1.2288005,357.89783,Garden, 
                   l@-59.17935622580293,26.78422159880418,82.80531104820874,-1.2288005,357.89783,Garden, 
                   l@-59.17568890870679,26.78636609591813,82.90522076704251,-1.2288005,357.89783,Garden, 
                   l@-59.172021591610644,26.788510593032075,83.00513048587628,-1.2288005,357.89783,Garden, 
                   l@-59.1683542745145,26.7... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 85 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '841'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '850'. 
14:40:05 [INFO]  Filled tag <def[points].get[841].to[850]> with 
                   'li@l@-59.15001768903378,26.801377575715758,83.60458879887891,-1.2288005,357.89783,Garden|l@-59.146350371937636,26.803522072829708,83.70449851771268,-1.2288005,357.89783,Garden|l@-59.1426830548415,26.805666569943654,83.80440823654646,-1.2288005,357.89783,Garden|l@-59.13901573774535,26.8078110670576,83.90431795538024,-1.2288005,357.89783,Garden|l@-59.13534842064921,26.80995556417155,84.00422767421401,-1.2288005,357.89783,Garden|l@-59.13168110355306,26.812100061... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.15001768903378,26.801377575715758,83.60458879887891,-1.2288005,357.89783,Garden, 
                   l@-59.146350371937636,26.803522072829708,83.70449851771268,-1.2288005,357.89783,Garden, 
                   l@-59.1426830548415,26.805666569943654,83.80440823654646,-1.2288005,357.89783,Garden, 
                   l@-59.13901573774535,26.8078110670576,83.90431795538024,-1.2288005,357.89783,Garden, 
                   l@-59.13534842064921,26.80995556417155,84.00422767421401,-1.2288005,357.89783,Garden, 
                   l@-59.13168110355306,26.8... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 86 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '851'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '860'. 
14:40:05 [INFO]  Filled tag <def[points].get[851].to[860]> with 
                   'li@l@-59.113344518072346,26.82282254685523,84.60368598721664,-1.2288005,357.89783,Garden|l@-59.10967720097621,26.824967043969178,84.70359570605041,-1.2288005,357.89783,Garden|l@-59.10600988388006,26.827111541083127,84.80350542488418,-1.2288005,357.89783,Garden|l@-59.10234256678392,26.829256038197073,84.90341514371795,-1.2288005,357.89783,Garden|l@-59.09867524968777,26.831400535311023,85.00332486255172,-1.2288005,357.89783,Garden|l@-59.095007932591635,26.83354... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.113344518072346,26.82282254685523,84.60368598721664,-1.2288005,357.89783,Garden, 
                   l@-59.10967720097621,26.824967043969178,84.70359570605041,-1.2288005,357.89783,Garden, 
                   l@-59.10600988388006,26.827111541083127,84.80350542488418,-1.2288005,357.89783,Garden, 
                   l@-59.10234256678392,26.829256038197073,84.90341514371795,-1.2288005,357.89783,Garden, 
                   l@-59.09867524968777,26.831400535311023,85.00332486255172,-1.2288005,357.89783,Garden, 
                   l@-59.095007932591635,... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 87 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '861'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '870'. 
14:40:05 [INFO]  Filled tag <def[points].get[861].to[870]> with 
                   'li@l@-59.07667134711092,26.844267517994705,85.60278317555436,-1.2288005,357.89783,Garden|l@-59.07300403001477,26.84641201510865,85.70269289438814,-1.2288005,357.89783,Garden|l@-59.06933671291863,26.848556512222597,85.80260261322191,-1.2288005,357.89783,Garden|l@-59.06566939582248,26.850701009336547,85.90251233205568,-1.2288005,357.89783,Garden|l@-59.062002078726344,26.852845506450493,86.00242205088945,-1.2288005,357.89783,Garden|l@-59.0583347616302,26.8549900... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.07667134711092,26.844267517994705,85.60278317555436,-1.2288005,357.89783,Garden, 
                   l@-59.07300403001477,26.84641201510865,85.70269289438814,-1.2288005,357.89783,Garden, 
                   l@-59.06933671291863,26.848556512222597,85.80260261322191,-1.2288005,357.89783,Garden, 
                   l@-59.06566939582248,26.850701009336547,85.90251233205568,-1.2288005,357.89783,Garden, 
                   l@-59.062002078726344,26.852845506450493,86.00242205088945,-1.2288005,357.89783,Garden, 
                   l@-59.0583347616302,26... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 88 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '871'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '880'. 
14:40:05 [INFO]  Filled tag <def[points].get[871].to[880]> with 
                   'li@l@-59.03999817614948,26.865712489134175,86.60188036389209,-1.2288005,357.89783,Garden|l@-59.036330859053336,26.867856986248125,86.70179008272586,-1.2288005,357.89783,Garden|l@-59.03266354195719,26.87000148336207,86.80169980155964,-1.2288005,357.89783,Garden|l@-59.028996224861054,26.872145980476017,86.90160952039341,-1.2288005,357.89783,Garden|l@-59.02532890776491,26.874290477589966,87.00151923922718,-1.2288005,357.89783,Garden|l@-59.021661590668764,26.8764... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.03999817614948,26.865712489134175,86.60188036389209,-1.2288005,357.89783,Garden, 
                   l@-59.036330859053336,26.867856986248125,86.70179008272586,-1.2288005,357.89783,Garden, 
                   l@-59.03266354195719,26.87000148336207,86.80169980155964,-1.2288005,357.89783,Garden, 
                   l@-59.028996224861054,26.872145980476017,86.90160952039341,-1.2288005,357.89783,Garden, 
                   l@-59.02532890776491,26.874290477589966,87.00151923922718,-1.2288005,357.89783,Garden, 
                   l@-59.021661590668764... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 89 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '881'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '890'. 
14:40:05 [INFO]  Filled tag <def[points].get[881].to[890]> with 
                   'li@l@-59.003325005188046,26.88715746027365,87.6009775522298,-1.2288005,357.89783,Garden|l@-58.99965768809191,26.889301957387595,87.70088727106358,-1.2288005,357.89783,Garden|l@-58.99599037099576,26.891446454501544,87.80079698989736,-1.2288005,357.89783,Garden|l@-58.99232305389962,26.89359095161549,87.90070670873114,-1.2288005,357.89783,Garden|l@-58.98865573680347,26.895735448729436,88.0006164275649,-1.2288005,357.89783,Garden|l@-58.984988419707335,26.89787994... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-59.003325005188046,26.88715746027365,87.6009775522298,-1.2288005,357.89783,Garden, 
                   l@-58.99965768809191,26.889301957387595,87.70088727106358,-1.2288005,357.89783,Garden, 
                   l@-58.99599037099576,26.891446454501544,87.80079698989736,-1.2288005,357.89783,Garden, 
                   l@-58.99232305389962,26.89359095161549,87.90070670873114,-1.2288005,357.89783,Garden, 
                   l@-58.98865573680347,26.895735448729436,88.0006164275649,-1.2288005,357.89783,Garden, 
                   l@-58.984988419707335,26.... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 90 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '891'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '900'. 
14:40:05 [INFO]  Filled tag <def[points].get[891].to[900]> with 
                   'li@l@-58.96665183422662,26.908602431413122,88.60007474056754,-1.2288005,357.89783,Garden|l@-58.96298451713047,26.910746928527068,88.6999844594013,-1.2288005,357.89783,Garden|l@-58.95931720003433,26.912891425641014,88.79989417823508,-1.2288005,357.89783,Garden|l@-58.95564988293818,26.915035922754964,88.89980389706885,-1.2288005,357.89783,Garden|l@-58.951982565842044,26.91718041986891,88.99971361590262,-1.2288005,357.89783,Garden|l@-58.9483152487459,26.91932491... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.96665183422662,26.908602431413122,88.60007474056754,-1.2288005,357.89783,Garden, 
                   l@-58.96298451713047,26.910746928527068,88.6999844594013,-1.2288005,357.89783,Garden, 
                   l@-58.95931720003433,26.912891425641014,88.79989417823508,-1.2288005,357.89783,Garden, 
                   l@-58.95564988293818,26.915035922754964,88.89980389706885,-1.2288005,357.89783,Garden, 
                   l@-58.951982565842044,26.91718041986891,88.99971361590262,-1.2288005,357.89783,Garden, 
                   l@-58.9483152487459,26.... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 91 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '901'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '910'. 
14:40:05 [INFO]  Filled tag <def[points].get[901].to[910]> with 
                   'li@l@-58.92997866326518,26.930047402552592,89.59917192890526,-1.2288005,357.89783,Garden|l@-58.92631134616904,26.93219189966654,89.69908164773904,-1.2288005,357.89783,Garden|l@-58.92264402907289,26.934336396780488,89.7989913665728,-1.2288005,357.89783,Garden|l@-58.918976711976754,26.936480893894434,89.89890108540658,-1.2288005,357.89783,Garden|l@-58.91530939488061,26.938625391008383,89.99881080424035,-1.2288005,357.89783,Garden|l@-58.911642077784464,26.940769... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.92997866326518,26.930047402552592,89.59917192890526,-1.2288005,357.89783,Garden, 
                   l@-58.92631134616904,26.93219189966654,89.69908164773904,-1.2288005,357.89783,Garden, 
                   l@-58.92264402907289,26.934336396780488,89.7989913665728,-1.2288005,357.89783,Garden, 
                   l@-58.918976711976754,26.936480893894434,89.89890108540658,-1.2288005,357.89783,Garden, 
                   l@-58.91530939488061,26.938625391008383,89.99881080424035,-1.2288005,357.89783,Garden, 
                   l@-58.911642077784464,2... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 92 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '911'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '920'. 
14:40:05 [INFO]  Filled tag <def[points].get[911].to[920]> with 
                   'li@l@-58.893305492303746,26.951492373692066,90.59826911724299,-1.2288005,357.89783,Garden|l@-58.88963817520761,26.95363687080601,90.69817883607676,-1.2288005,357.89783,Garden|l@-58.88597085811146,26.95578136791996,90.79808855491054,-1.2288005,357.89783,Garden|l@-58.88230354101532,26.957925865033907,90.8979982737443,-1.2288005,357.89783,Garden|l@-58.87863622391917,26.960070362147853,90.99790799257808,-1.2288005,357.89783,Garden|l@-58.87496890682303,26.96221485... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.893305492303746,26.951492373692066,90.59826911724299,-1.2288005,357.89783,Garden, 
                   l@-58.88963817520761,26.95363687080601,90.69817883607676,-1.2288005,357.89783,Garden, 
                   l@-58.88597085811146,26.95578136791996,90.79808855491054,-1.2288005,357.89783,Garden, 
                   l@-58.88230354101532,26.957925865033907,90.8979982737443,-1.2288005,357.89783,Garden, 
                   l@-58.87863622391917,26.960070362147853,90.99790799257808,-1.2288005,357.89783,Garden, 
                   l@-58.87496890682303,26.... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 93 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '921'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '930'. 
14:40:05 [INFO]  Filled tag <def[points].get[921].to[930]> with 
                   'li@l@-58.85663232134232,26.97293734483154,91.5973663055807,-1.2288005,357.89783,Garden|l@-58.85296500424617,26.975081841945485,91.69727602441448,-1.2288005,357.89783,Garden|l@-58.84929768715003,26.97722633905943,91.79718574324825,-1.2288005,357.89783,Garden|l@-58.84563037005388,26.97937083617338,91.89709546208204,-1.2288005,357.89783,Garden|l@-58.841963052957745,26.981515333287327,91.9970051809158,-1.2288005,357.89783,Garden|l@-58.8382957358616,26.98365983040... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.85663232134232,26.97293734483154,91.5973663055807,-1.2288005,357.89783,Garden, 
                   l@-58.85296500424617,26.975081841945485,91.69727602441448,-1.2288005,357.89783,Garden, 
                   l@-58.84929768715003,26.97722633905943,91.79718574324825,-1.2288005,357.89783,Garden, 
                   l@-58.84563037005388,26.97937083617338,91.89709546208204,-1.2288005,357.89783,Garden, 
                   l@-58.841963052957745,26.981515333287327,91.9970051809158,-1.2288005,357.89783,Garden, 
                   l@-58.8382957358616,26.983... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 94 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '931'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '940'. 
14:40:05 [INFO]  Filled tag <def[points].get[931].to[940]> with 
                   'li@l@-58.81995915038088,26.99438231597101,92.59646349391844,-1.2288005,357.89783,Garden|l@-58.81629183328474,26.99652681308496,92.6963732127522,-1.2288005,357.89783,Garden|l@-58.81262451618859,26.998671310198905,92.79628293158598,-1.2288005,357.89783,Garden|l@-58.808957199092454,27.00081580731285,92.89619265041975,-1.2288005,357.89783,Garden|l@-58.80528988199631,27.0029603044268,92.99610236925352,-1.2288005,357.89783,Garden|l@-58.801622564900164,27.0051048015... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.81995915038088,26.99438231597101,92.59646349391844,-1.2288005,357.89783,Garden, 
                   l@-58.81629183328474,26.99652681308496,92.6963732127522,-1.2288005,357.89783,Garden, 
                   l@-58.81262451618859,26.998671310198905,92.79628293158598,-1.2288005,357.89783,Garden, 
                   l@-58.808957199092454,27.00081580731285,92.89619265041975,-1.2288005,357.89783,Garden, 
                   l@-58.80528988199631,27.0029603044268,92.99610236925352,-1.2288005,357.89783,Garden, 
                   l@-58.801622564900164,27.00... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 95 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '941'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '950'. 
14:40:05 [INFO]  Filled tag <def[points].get[941].to[950]> with 
                   'li@l@-58.783285979419446,27.015827287110483,93.59556068225616,-1.2288005,357.89783,Garden|l@-58.7796186623233,27.01797178422443,93.69547040108993,-1.2288005,357.89783,Garden|l@-58.77595134522716,27.020116281338375,93.7953801199237,-1.2288005,357.89783,Garden|l@-58.77228402813102,27.022260778452324,93.89528983875748,-1.2288005,357.89783,Garden|l@-58.76861671103487,27.02440527556627,93.99519955759125,-1.2288005,357.89783,Garden|l@-58.76494939393873,27.026549772... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.783285979419446,27.015827287110483,93.59556068225616,-1.2288005,357.89783,Garden, 
                   l@-58.7796186623233,27.01797178422443,93.69547040108993,-1.2288005,357.89783,Garden, 
                   l@-58.77595134522716,27.020116281338375,93.7953801199237,-1.2288005,357.89783,Garden, 
                   l@-58.77228402813102,27.022260778452324,93.89528983875748,-1.2288005,357.89783,Garden, 
                   l@-58.76861671103487,27.02440527556627,93.99519955759125,-1.2288005,357.89783,Garden, 
                   l@-58.76494939393873,27.0... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 96 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '951'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '960'. 
14:40:05 [INFO]  Filled tag <def[points].get[951].to[960]> with 
                   'li@l@-58.74661280845802,27.037272258249956,94.59465787059389,-1.2288005,357.89783,Garden|l@-58.74294549136187,27.039416755363902,94.69456758942766,-1.2288005,357.89783,Garden|l@-58.73927817426573,27.041561252477848,94.79447730826143,-1.2288005,357.89783,Garden|l@-58.73561085716958,27.043705749591794,94.8943870270952,-1.2288005,357.89783,Garden|l@-58.731943540073445,27.045850246705744,94.99429674592898,-1.2288005,357.89783,Garden|l@-58.7282762229773,27.0479947... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.74661280845802,27.037272258249956,94.59465787059389,-1.2288005,357.89783,Garden, 
                   l@-58.74294549136187,27.039416755363902,94.69456758942766,-1.2288005,357.89783,Garden, 
                   l@-58.73927817426573,27.041561252477848,94.79447730826143,-1.2288005,357.89783,Garden, 
                   l@-58.73561085716958,27.043705749591794,94.8943870270952,-1.2288005,357.89783,Garden, 
                   l@-58.731943540073445,27.045850246705744,94.99429674592898,-1.2288005,357.89783,Garden, 
                   l@-58.7282762229773,27... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 97 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '961'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '970'. 
14:40:05 [INFO]  Filled tag <def[points].get[961].to[970]> with 
                   'li@l@-58.70993963749658,27.058717229389426,95.5937550589316,-1.2288005,357.89783,Garden|l@-58.70627232040044,27.060861726503376,95.69366477776538,-1.2288005,357.89783,Garden|l@-58.70260500330429,27.06300622361732,95.79357449659915,-1.2288005,357.89783,Garden|l@-58.698937686208154,27.065150720731268,95.89348421543293,-1.2288005,357.89783,Garden|l@-58.69527036911201,27.067295217845214,95.9933939342667,-1.2288005,357.89783,Garden|l@-58.691603052015864,27.0694397... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.70993963749658,27.058717229389426,95.5937550589316,-1.2288005,357.89783,Garden, 
                   l@-58.70627232040044,27.060861726503376,95.69366477776538,-1.2288005,357.89783,Garden, 
                   l@-58.70260500330429,27.06300622361732,95.79357449659915,-1.2288005,357.89783,Garden, 
                   l@-58.698937686208154,27.065150720731268,95.89348421543293,-1.2288005,357.89783,Garden, 
                   l@-58.69527036911201,27.067295217845214,95.9933939342667,-1.2288005,357.89783,Garden, 
                   l@-58.691603052015864,27... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 98 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '971'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '980'. 
14:40:05 [INFO]  Filled tag <def[points].get[971].to[980]> with 
                   'li@l@-58.673266466535146,27.0801622005289,96.59285224726933,-1.2288005,357.89783,Garden|l@-58.669599149439,27.082306697642846,96.6927619661031,-1.2288005,357.89783,Garden|l@-58.665931832342864,27.084451194756795,96.79267168493688,-1.2288005,357.89783,Garden|l@-58.66226451524672,27.08659569187074,96.89258140377065,-1.2288005,357.89783,Garden|l@-58.658597198150574,27.088740188984687,96.99249112260442,-1.2288005,357.89783,Garden|l@-58.65492988105443,27.090884686... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.673266466535146,27.0801622005289,96.59285224726933,-1.2288005,357.89783,Garden, 
                   l@-58.669599149439,27.082306697642846,96.6927619661031,-1.2288005,357.89783,Garden, 
                   l@-58.665931832342864,27.084451194756795,96.79267168493688,-1.2288005,357.89783,Garden, 
                   l@-58.66226451524672,27.08659569187074,96.89258140377065,-1.2288005,357.89783,Garden, 
                   l@-58.658597198150574,27.088740188984687,96.99249112260442,-1.2288005,357.89783,Garden, 
                   l@-58.65492988105443,27.0... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 99 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '981'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '990'. 
14:40:05 [INFO]  Filled tag <def[points].get[981].to[990]> with 
                   'li@l@-58.63659329557372,27.10160717166837,97.59194943560706,-1.2288005,357.89783,Garden|l@-58.63292597847757,27.10375166878232,97.69185915444083,-1.2288005,357.89783,Garden|l@-58.62925866138143,27.105896165896265,97.7917688732746,-1.2288005,357.89783,Garden|l@-58.62559134428528,27.108040663010215,97.89167859210838,-1.2288005,357.89783,Garden|l@-58.62192402718914,27.11018516012416,97.99158831094215,-1.2288005,357.89783,Garden|l@-58.618256710093,27.112329657238... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.63659329557372,27.10160717166837,97.59194943560706,-1.2288005,357.89783,Garden, 
                   l@-58.63292597847757,27.10375166878232,97.69185915444083,-1.2288005,357.89783,Garden, 
                   l@-58.62925866138143,27.105896165896265,97.7917688732746,-1.2288005,357.89783,Garden, 
                   l@-58.62559134428528,27.108040663010215,97.89167859210838,-1.2288005,357.89783,Garden, 
                   l@-58.62192402718914,27.11018516012416,97.99158831094215,-1.2288005,357.89783,Garden, 
                   l@-58.618256710093,27.1123... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO] +- Repeat loop 100 ---------+ 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: PLAYEFFECT 
                   "red_dust" 
                   "<def[points].get[<def[value].sub[1].mul[10].add[1]>].to[<def[value].mul[10]>]>" 
                   "visibility:100" "quantity:0" "data:1" "offset:1,1,0.2" 
14:40:05 [INFO] +- Executing dCommand: PLAYEFFECT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[value].sub[1].mul[10].add[1]> with '991'. 
14:40:05 [INFO]  Filled tag <def[value].mul[10]> with '1000'. 
14:40:05 [INFO]  Filled tag <def[points].get[991].to[1000]> with 
                   'li@l@-58.59992012461228,27.123052142807843,98.59104662394479,-1.2288005,357.89783,Garden|l@-58.59625280751614,27.12519663992179,98.69095634277856,-1.2288005,357.89783,Garden|l@-58.59258549041999,27.12734113703574,98.79086606161233,-1.2288005,357.89783,Garden|l@-58.58891817332385,27.129485634149685,98.8907757804461,-1.2288005,357.89783,Garden|l@-58.58525085622771,27.131630131263634,98.99068549927988,-1.2288005,357.89783,Garden|l@-58.581583539131564,27.1337746... 
                   * snip! * 
14:40:05 [INFO] +> Executing 'PLAYEFFECT': special effect='REDSTONE'  
                   locations='[l@-58.59992012461228,27.123052142807843,98.59104662394479,-1.2288005,357.89783,Garden, 
                   l@-58.59625280751614,27.12519663992179,98.69095634277856,-1.2288005,357.89783,Garden, 
                   l@-58.59258549041999,27.12734113703574,98.79086606161233,-1.2288005,357.89783,Garden, 
                   l@-58.58891817332385,27.129485634149685,98.8907757804461,-1.2288005,357.89783,Garden, 
                   l@-58.58525085622771,27.131630131263634,98.99068549927988,-1.2288005,357.89783,Garden, 
                   l@-58.581583539131564,27.... * snip! * 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: REPEAT 
                   " CALLBACK" 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: IF 
                   "<context.click_type.contains_text[left]>" "{" "-" "flag" 
                   "player" "railgun:leftclick" 
                   "duration:<s@Config.yaml_key[classvariables.railgun.leftclick.cooldown]>" 
                   "}" "else" "{" "-" "flag" "player" "railgun:rightclick" 
                   "duration:<s@Config.yaml_key[classvariables.railgun.rightclick.cooldown]>" 
                   "}" 
14:40:05 [INFO] +- Executing dCommand: IF/p@Xanderpitz ---------+ 
14:40:05 [INFO] +> Executing 'IF': use_braces='true' 
14:40:05 [INFO]  Filled tag <context.click_type.contains_text[left]> with 
                   'false'. 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: FLAG "player" 
                   "railgun:rightclick" 
                   "duration:<s@Config.yaml_key[classvariables.railgun.rightclick.cooldown]>" 
14:40:05 [INFO] +- Executing dCommand: FLAG/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag 
                   <s@Config.yaml_key[classvariables.railgun.rightclick.cooldown]> 
                   with '20'. 
14:40:05 [INFO] +> Executing 'FLAG': flag_name='RAILGUN'  
                   Action/Value='SET_VALUE(rightclick)'  duration='d@20.0s'  
                   flag_target='p@Xanderpitz' 
14:40:05 [INFO]  Queue 'RAILGUNEVENT_YardMaleMotel' Executing: RUN 
                   "s@WeaponCooldown" "d:<def[iteminhand]>|<def[player]>" 
14:40:05 [INFO] +- Executing dCommand: RUN/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[iteminhand]> with 'RAILGUN'. 
14:40:05 [INFO]  Filled tag <def[player]> with 
                   'p@f5864fc1-1ddd-403e-b875-eeaeba2ca57d'. 
14:40:05 [INFO] +> Executing 'RUN': script='WEAPONCOOLDOWN(TASK)'  
                   definitions='RAILGUN|p@f5864fc1-1ddd-403e-b875-eeaeba2ca57d' 
14:40:05 [INFO]  Adding definition %1% as RAILGUN 
14:40:05 [INFO]  Adding definition %2% as 
                   p@f5864fc1-1ddd-403e-b875-eeaeba2ca57d 
14:40:05 [INFO]  Starting TimedQueue 
                   'WEAPONCOOLDOWN_CourtesyTopicsInfinite'... 
14:40:05 [INFO]  Queue 'WEAPONCOOLDOWN_CourtesyTopicsInfinite' Executing: IF 
                   "!<def[2].has_flag[<def[1]>]>" "{" "-" "narrate" "<&7>-- 
                   <&a><&l>READY<&r> <&7>--" "-" "queue" "clear" "}" 
14:40:05 [INFO] +- Executing dCommand: IF/p@Xanderpitz ---------+ 
14:40:05 [INFO] +> Executing 'IF': use_braces='true' 
14:40:05 [INFO]  Filled tag <def[1]> with 'RAILGUN'. 
14:40:05 [INFO]  Filled tag <def[2].has_flag[RAILGUN]> with 'true'. 
14:40:05 [INFO]  Completing queue 'RAILGUNEVENT_YardMaleMotel' in 219ms. 
14:40:05 [INFO]  Queue 'WEAPONCOOLDOWN_CourtesyTopicsInfinite' Executing: 
                   DEFINE "expiration" 
                   "<def[2].flag[<def[1]>].expiration.in_seconds.as_int>" 
14:40:05 [INFO] +- Executing dCommand: DEFINE/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[1]> with 'RAILGUN'. 
14:40:05 [INFO]  Filled tag 
                   <def[2].flag[RAILGUN].expiration.in_seconds.as_int> with '19'. 
14:40:05 [INFO] +> Executing 'DEFINE': 
                   queue='WEAPONCOOLDOWN_CourtesyTopicsInfinite'  
                   definition='expiration'  value='19' 
14:40:05 [INFO]  Queue 'WEAPONCOOLDOWN_CourtesyTopicsInfinite' Executing: 
                   REPEAT "<def[expiration]>" 
14:40:05 [INFO] +- Executing dCommand: REPEAT/p@Xanderpitz ---------+ 
14:40:05 [INFO]  Filled tag <def[expiration]> with '19'. 
14:40:05 [INFO] +> Executing 'REPEAT': qty='19' 
14:40:06 [INFO]  Queue 'WEAPONCOOLDOWN_CourtesyTopicsInfinite' Executing: 
                   ACTIONBAR "<&e>Cooldown<&7><&co> 
                   <proc[DUL_text_progress_bar].context[<def[expiration].div[<s@Config.yaml_key[classvariables.<def[1]>.<def[2].flag[<def[1]>]>.cooldown]>]>|60|<&pipe>|&3|&9]>" 
                   "targets:<def[1]>" 
14:40:06 [INFO] +- Executing dCommand: ACTIONBAR/p@Xanderpitz ---------+ 
14:40:06 [INFO]  Filled tag <&e> with ''. 
14:40:06 [INFO]  Filled tag <&7> with ''. 
14:40:06 [INFO]  Filled tag <&co> with ':'. 
14:40:06 [INFO]  Filled tag <def[1]> with 'RAILGUN'. 
14:40:06 [INFO]  Filled tag <def[1]> with 'RAILGUN'. 
14:40:06 [INFO]  Filled tag <def[2].flag[RAILGUN]> with 'rightclick'. 
14:40:06 [INFO]  Filled tag 
                   <s@Config.yaml_key[classvariables.RAILGUN.rightclick.cooldown]> 
                   with '20'. 
14:40:06 [INFO]  Filled tag <def[expiration].div[20]> with '0.95'. 
14:40:06 [INFO]  Filled tag <&pipe> with '|'. 
14:40:06 [INFO]  Adding definition %1% as 0.95 
14:40:06 [INFO]  Adding definition %2% as 60 
14:40:06 [INFO]  Adding definition %3% as 
14:40:06 [INFO]  Adding definition %4% as 
14:40:06 [INFO]  Adding definition %5% as &3 
14:40:06 [INFO]  Adding definition %6% as &9 
14:40:06 [INFO]  ERROR! Uh oh! Report this to the Denizen developers! Err: 
                   TagManagerObjectReflection 
14:40:06 [INFO]  ERROR! Internal exception was thrown! 
14:40:06 [SEVERE] java.lang.StringIndexOutOfBoundsException: String index out of range: 0
14:40:06 [SEVERE] java.lang.String.charAt(String.java:658)
14:40:06 [SEVERE] net.aufdemrand.denizencore.objects.Element$49.run(Element.java:1504)
14:40:06 [SEVERE] net.aufdemrand.denizencore.objects.Element.getAttribute(Element.java:2156)
14:40:06 [SEVERE] net.aufdemrand.denizencore.tags.TagManager.fetchObject(TagManager.java:244)
14:40:06 [SEVERE] sun.reflect.GeneratedMethodAccessor16.invoke(Unknown Source)
14:40:06 [SEVERE] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
14:40:06 [SEVERE] java.lang.reflect.Method.invoke(Method.java:498)
14:40:06 [SEVERE] net.aufdemrand.denizencore.tags.TagManager.fireEvent(TagManager.java:83)
14:40:06 [SEVERE] net.aufdemrand.denizencore.tags.TagManager$1.run(TagManager.java:258)
14:40:06 [SEVERE] java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
14:40:06 [SEVERE] java.util.concurrent.FutureTask.run(FutureTask.java:266)
14:40:06 [SEVERE] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
14:40:06 [SEVERE] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
14:40:06 [SEVERE] java.lang.Thread.run(Thread.java:745)
14:40:06 [INFO]  ERROR in script 'DUL_TEXT_PROGRESS_BAR'! Tag 
                   <el@.pad_right[60].with[]> is invalid! 
14:40:06 [INFO]  Filled tag 
                   <proc[DUL_text_progress_bar].context[0.95|60|||&3|&9]> with 
                   '.pad_right[<def[max]>].with[<def[char]>]'. 
14:40:06 [INFO]  Filled tag <def[1]> with 'RAILGUN'. 
14:40:06 [INFO] +> Executing 'ACTIONBAR': text='Cooldown: 
                   .pad_right[<def[max]>].with[<def[char]>]'  
                   Targets='[p@Xanderpitz]' 
14:40:06 [INFO]  Queue 'WEAPONCOOLDOWN_CourtesyTopicsInfinite' Executing: WAIT 
                   "1s" 
14:40:06 [INFO] +- Executing dCommand: WAIT/p@Xanderpitz ---------+ 
14:40:06 [INFO] +> Executing 'WAIT': 
                   queue='WEAPONCOOLDOWN_CourtesyTopicsInfinite'  delay='d@1.0s' 
14:40:07 [INFO]  Queue 'WEAPONCOOLDOWN_CourtesyTopicsInfinite' Executing: 
                   REPEAT " CALLBACK" 
14:40:07 [INFO] +- Repeat loop 2 ---------+ 
14:40:07 [INFO]  Queue 'WEAPONCOOLDOWN_CourtesyTopicsInfinite' Executing: 
                   ACTIONBAR "<&e>Cooldown<&7><&co> 
                   <proc[DUL_text_progress_bar].context[<def[expiration].div[<s@Config.yaml_key[classvariables.<def[1]>.<def[2].flag[<def[1]>]>.cooldown]>]>|60|<&pipe>|&3|&9]>" 
                   "targets:<def[1]>" 
14:40:07 [INFO] +- Executing dCommand: ACTIONBAR/p@Xanderpitz ---------+ 
14:40:07 [INFO]  Filled tag <&e> with ''. 
14:40:07 [INFO]  Filled tag <&7> with ''. 
14:40:07 [INFO]  Filled tag <&co> with ':'. 
14:40:07 [INFO]  Filled tag <def[1]> with 'RAILGUN'. 
14:40:07 [INFO]  Filled tag <def[1]> with 'RAILGUN'. 
14:40:07 [INFO]  Filled tag <def[2].flag[RAILGUN]> with 'rightclick'. 
14:40:07 [INFO]  Filled tag 
                   <s@Config.yaml_key[classvariables.RAILGUN.rightclick.cooldown]> 
                   with '20'. 
14:40:07 [INFO]  Filled tag <def[expiration].div[20]> with '0.95'. 
14:40:07 [INFO]  Filled tag <&pipe> with '|'. 
14:40:07 [INFO]  Adding definition %1% as 0.95 
14:40:07 [INFO]  Adding definition %2% as 60 
14:40:07 [INFO]  Adding definition %3% as 
14:40:07 [INFO]  Adding definition %4% as 
14:40:07 [INFO]  Adding definition %5% as &3 
14:40:07 [INFO]  Adding definition %6% as &9 
14:40:07 [INFO]  ERROR! Uh oh! Report this to the Denizen developers! Err: 
                   TagManagerObjectReflection 
14:40:07 [INFO]  ERROR! Internal exception was thrown! 
14:40:07 [SEVERE] java.lang.StringIndexOutOfBoundsException: String index out of range: 0
14:40:07 [SEVERE] java.lang.String.charAt(String.java:658)
14:40:07 [SEVERE] net.aufdemrand.denizencore.objects.Element$49.run(Element.java:1504)
14:40:07 [SEVERE] net.aufdemrand.denizencore.objects.Element.getAttribute(Element.java:2156)
14:40:07 [SEVERE] net.aufdemrand.denizencore.tags.TagManager.fetchObject(TagManager.java:244)
14:40:07 [SEVERE] sun.reflect.GeneratedMethodAccessor16.invoke(Unknown Source)
14:40:07 [SEVERE] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
14:40:07 [SEVERE] java.lang.reflect.Method.invoke(Method.java:498)
14:40:07 [SEVERE] net.aufdemrand.denizencore.tags.TagManager.fireEvent(TagManager.java:83)
14:40:07 [SEVERE] net.aufdemrand.denizencore.tags.TagManager$1.run(TagManager.java:258)
14:40:07 [SEVERE] java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
14:40:07 [SEVERE] java.util.concurrent.FutureTask.run(FutureTask.java:266)
14:40:07 [SEVERE] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
14:40:07 [SEVERE] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
14:40:07 [SEVERE] java.lang.Thread.run(Thread.java:745)
14:40:07 [INFO]  ERROR in script 'DUL_TEXT_PROGRESS_BAR'! Tag 
                   <el@.pad_right[60].with[]> is invalid! 
14:40:07 [INFO]  Filled tag 
                   <proc[DUL_text_progress_bar].context[0.95|60|||&3|&9]> with 
                   '.pad_right[<def[max]>].with[<def[char]>]'. 
14:40:07 [INFO]  Filled tag <def[1]> with 'RAILGUN'. 
14:40:07 [INFO] +> Executing 'ACTIONBAR': text='Cooldown: 
                   .pad_right[<def[max]>].with[<def[char]>]'  
                   Targets='[p@Xanderpitz]' 
14:40:07 [INFO]  Queue 'WEAPONCOOLDOWN_CourtesyTopicsInfinite' Executing: WAIT 
                   "1s" 
14:40:07 [INFO] +- Executing dCommand: WAIT/p@Xanderpitz ---------+ 
14:40:07 [INFO] +> Executing 'WAIT': 
                   queue='WEAPONCOOLDOWN_CourtesyTopicsInfinite'  delay='d@1.0s'