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
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
 98 files changed, 891 insertions(+), 407 deletions(-)

diff --git config_181114_114/Items/Primary Weapons/laser_elementals.txt config_181128_2048/Items/Primary Weapons/laser_elementals.txt
index 2143713..75fd7ff 100644
--- config_181114_114/Items/Primary Weapons/laser_elementals.txt	
+++ config_181128_2048/Items/Primary Weapons/laser_elementals.txt	
@@ -54,10 +54,12 @@
     - '1'
     sfx:
       sound: 'null'
   icon: ItemLootLaserGun_8_rare
   id: laser_lightning
+  obsolete: 'true'
+  obsoleteMigrateTo: laser_lightning_10
   slot: MainGun
   soulbound: 'true'
   tag: laser
   tier: '50'
 - gunMounts:
@@ -109,10 +111,12 @@
     mountName: laserwater_mount2
     sfx:
       sound: 'null'
   icon: ItemLootLaserGun_8_rare
   id: laser_water
+  obsolete: 'true'
+  obsoleteMigrateTo: laser_water_10
   slot: MainGun
   soulbound: 'true'
   tag: laser
   tier: '50'
 - gunMounts:
@@ -208,10 +212,12 @@
       sound: laser
     syncOffset: '0'
     syncTo: laserfire_mount1
   icon: ItemLootLaserGun_8_rare
   id: laser_fire
+  obsolete: 'true'
+  obsoleteMigrateTo: laser_fire_10
   slot: MainGun
   soulbound: 'true'
   tag: laser
   tier: '50'
 - gunMounts:
@@ -274,10 +280,12 @@
       sound: laser
     syncOffset: '0.1666'
     syncTo: laserpoison_mount
   icon: ItemLootLaserGun_8_rare
   id: laser_poison
+  obsolete: 'true'
+  obsoleteMigrateTo: laser_poison_10
   slot: MainGun
   soulbound: 'true'
   tag: laser
   tier: '50'
 - gunMounts:
@@ -309,10 +317,12 @@
     sfx:
       pitch: '1.5'
       sound: laser
   icon: ItemLootLaserGun_8_rare
   id: laser_ice
+  obsolete: 'true'
+  obsoleteMigrateTo: laser_ice_10
   slot: MainGun
   soulbound: 'true'
   tag: laser
   tier: '50'
 - extraTags:
diff --git config_181114_114/Items/Primary Weapons/laser_ultrarares.txt config_181128_2048/Items/Primary Weapons/laser_ultrarares.txt
index edf23c3..47f8c23 100644
--- config_181114_114/Items/Primary Weapons/laser_ultrarares.txt	
+++ config_181128_2048/Items/Primary Weapons/laser_ultrarares.txt	
@@ -133,10 +133,12 @@
       - '0.05'
     syncOffset: '1'
     syncTo: hadouken_mount1
   icon: ItemLootLaserGun_10_legendary
   id: hadouken
+  obsolete: 'true'
+  obsoleteMigrateTo: hadouken_10
   slot: MainGun
   soulbound: 'true'
   tag: laser
   tier: '100'
 - gunMounts:
@@ -220,10 +222,12 @@
     sprinklerTurnbackAngle: '-3600'
     syncOffset: '1'
     syncTo: lasermoon_mount
   icon: ItemLootLaserGun_10_legendary
   id: laser_moon
+  obsolete: 'true'
+  obsoleteMigrateTo: laser_moon_10
   slot: MainGun
   soulbound: 'true'
   tag: laser
   tier: '100'
 - gunMounts:
diff --git config_181114_114/Items/Primary Weapons/machinegun_elementals.txt config_181128_2048/Items/Primary Weapons/machinegun_elementals.txt
index 9f012a1..b07f3d9 100644
--- config_181114_114/Items/Primary Weapons/machinegun_elementals.txt	
+++ config_181128_2048/Items/Primary Weapons/machinegun_elementals.txt	
@@ -33,10 +33,12 @@
       soundMinInterval:
       - '0.02'
       - '0.05'
   icon: ItemLootMachineGun_8_rare
   id: machinegun_lightning
+  obsolete: 'true'
+  obsoleteMigrateTo: machinegun_lightning_10
   slot: MainGun
   soulbound: 'true'
   tag: machinegun
   tier: '50'
 - gunMounts:
@@ -113,10 +115,12 @@
     sprinklerIncrementAngle: '-6'
     sprinklerStartAngle: '15'
     sprinklerTurnbackAngle: '5'
   icon: ItemLootMachineGun_8_rare
   id: machinegun_water
+  obsolete: 'true'
+  obsoleteMigrateTo: machinegun_water_10
   slot: MainGun
   soulbound: 'true'
   tag: machinegun
   tier: '50'
 - gunMounts:
@@ -151,10 +155,12 @@
       soundMinInterval:
       - '0.02'
       - '0.05'
   icon: ItemLootMachineGun_8_rare
   id: machinegun_fire
+  obsolete: 'true'
+  obsoleteMigrateTo: machinegun_fire_10
   slot: MainGun
   soulbound: 'true'
   tag: machinegun
   tier: '50'
 - gunMounts:
@@ -189,10 +195,12 @@
       soundMinInterval:
       - '0.02'
       - '0.05'
   icon: ItemLootMachineGun_8_rare
   id: machinegun_poison
+  obsolete: 'true'
+  obsoleteMigrateTo: machinegun_poison_10
   slot: MainGun
   soulbound: 'true'
   tag: machinegun
   tier: '50'
 - gunMounts:
@@ -270,10 +278,12 @@
     sprinklerIncrementAngle: '2'
     sprinklerStartAngle: '-5'
     sprinklerTurnbackAngle: '5'
   icon: ItemLootMachineGun_8_rare
   id: machinegun_ice
+  obsolete: 'true'
+  obsoleteMigrateTo: machinegun_ice_10
   slot: MainGun
   soulbound: 'true'
   tag: machinegun
   tier: '50'
 - extraTags:
diff --git config_181114_114/Items/Primary Weapons/machinegun_ultrarares.txt config_181128_2048/Items/Primary Weapons/machinegun_ultrarares.txt
index 1653608..6496977 100644
--- config_181114_114/Items/Primary Weapons/machinegun_ultrarares.txt	
+++ config_181128_2048/Items/Primary Weapons/machinegun_ultrarares.txt	
@@ -161,10 +161,12 @@
     - '-1'
     sfx:
       sound: 'null'
   icon: ItemLootMachineGun_10_legendary
   id: machinegun_kraken
+  obsolete: 'true'
+  obsoleteMigrateTo: machinegun_kraken_10
   slot: MainGun
   soulbound: 'true'
   tag: machinegun
   tier: '100'
 - gunMounts:
@@ -202,10 +204,12 @@
       soundMinInterval:
       - '0.02'
       - '0.05'
   icon: ItemLootMachineGun_10_legendary
   id: machinegun_gattling
+  obsolete: 'true'
+  obsoleteMigrateTo: machinegun_gattling_10
   slot: MainGun
   soulbound: 'true'
   tag: machinegun
   tier: '100'
 - gunMounts:
@@ -252,10 +256,12 @@
     mountName: machinegun_wide_mount2
     sfx:
       sound: 'null'
   icon: ItemLootMachineGun_10_legendary
   id: machinegun_wide
+  obsolete: 'true'
+  obsoleteMigrateTo: machinegun_wide_10
   slot: MainGun
   soulbound: 'true'
   tag: machinegun
   tier: '100'
 - extraTags:
diff --git config_181114_114/Items/Primary Weapons/shotgun_elementals.txt config_181128_2048/Items/Primary Weapons/shotgun_elementals.txt
index 5ecb899..17cf60a 100644
--- config_181114_114/Items/Primary Weapons/shotgun_elementals.txt	
+++ config_181128_2048/Items/Primary Weapons/shotgun_elementals.txt	
@@ -55,10 +55,12 @@
     - '0'
     sfx:
       sound: 'null'
   icon: ItemLootShotgun_08_rare
   id: shotgun_lightning
+  obsolete: 'true'
+  obsoleteMigrateTo: shotgun_lightning_10
   slot: MainGun
   soulbound: 'true'
   tag: shotgun
   tier: '50'
 - gunMounts:
@@ -89,10 +91,12 @@
       pitch: '0.9'
       sound: shotgun
       volume: '0.9'
   icon: ItemLootShotgun_08_rare
   id: shotgun_water
+  obsolete: 'true'
+  obsoleteMigrateTo: shotgun_water_10
   slot: MainGun
   soulbound: 'true'
   tag: shotgun
   tier: '50'
 - gunMounts:
@@ -153,10 +157,12 @@
     mountName: shotgunfire_mount2
     sfx:
       sound: 'null'
   icon: ItemLootShotgun_08_rare
   id: shotgun_fire
+  obsolete: 'true'
+  obsoleteMigrateTo: shotgun_fire_10
   slot: MainGun
   soulbound: 'true'
   tag: shotgun
   tier: '50'
 - gunMounts:
@@ -192,10 +198,12 @@
     - '0'
     sfx:
       sound: shotgun
   icon: ItemLootShotgun_08_rare
   id: shotgun_poison
+  obsolete: 'true'
+  obsoleteMigrateTo: shotgun_poison_10
   slot: MainGun
   soulbound: 'true'
   tag: shotgun
   tier: '50'
 - gunMounts:
@@ -259,10 +267,12 @@
     - '1'
     sfx:
       sound: 'null'
   icon: ItemLootShotgun_08_rare
   id: shotgun_ice
+  obsolete: 'true'
+  obsoleteMigrateTo: shotgun_ice_10
   slot: MainGun
   soulbound: 'true'
   tag: shotgun
   tier: '50'
 - extraTags:
diff --git config_181114_114/Items/Primary Weapons/shotgun_ultrarares.txt config_181128_2048/Items/Primary Weapons/shotgun_ultrarares.txt
index 53e06dc..6c614c2 100644
--- config_181114_114/Items/Primary Weapons/shotgun_ultrarares.txt	
+++ config_181128_2048/Items/Primary Weapons/shotgun_ultrarares.txt	
@@ -25,10 +25,12 @@
     sfx:
       pitch: '0.5'
       sound: shotgun
   icon: ItemLootShotgun_10_legendary
   id: shotgun_combat
+  obsolete: 'true'
+  obsoleteMigrateTo: shotgun_combat_10
   slot: MainGun
   soulbound: 'true'
   tag: shotgun
   tier: '100'
 - gunMounts:
@@ -75,10 +77,12 @@
     mountName: shotgun_backshot_mount2
     sfx:
       sound: 'null'
   icon: ItemLootShotgun_10_legendary
   id: shotgun_backshot
+  obsolete: 'true'
+  obsoleteMigrateTo: shotgun_backshot_10
   slot: MainGun
   soulbound: 'true'
   tag: shotgun
   tier: '100'
 - gunMounts:
@@ -110,10 +114,12 @@
     mountName: shotgunflat_mount
     sfx:
       sound: shotgun
   icon: ItemLootShotgun_10_legendary
   id: shotgun_flat
+  obsolete: 'true'
+  obsoleteMigrateTo: shotgun_flat_10
   slot: MainGun
   soulbound: 'true'
   tag: shotgun
   tier: '100'
 - extraTags:
diff --git config_181114_114/Items/Primary Weapons/sniper_elementals.txt config_181128_2048/Items/Primary Weapons/sniper_elementals.txt
index fc706e7..0cefea3 100644
--- config_181114_114/Items/Primary Weapons/sniper_elementals.txt	
+++ config_181128_2048/Items/Primary Weapons/sniper_elementals.txt	
@@ -82,10 +82,12 @@
     mountName: sniperlightning_mount3
     sfx:
       sound: 'null'
   icon: ItemLootSniper_08_rare
   id: sniper_lightning
+  obsolete: 'true'
+  obsoleteMigrateTo: sniper_lightning_10
   slot: MainGun
   soulbound: 'true'
   tag: sniper
   tier: '50'
 - gunMounts:
@@ -180,10 +182,12 @@
     mountName: sniperwater_mount3
     sfx:
       sound: 'null'
   icon: ItemLootSniper_08_rare
   id: sniper_water
+  obsolete: 'true'
+  obsoleteMigrateTo: sniper_water_10
   slot: MainGun
   soulbound: 'true'
   tag: sniper
   tier: '50'
 - gunMounts:
@@ -301,10 +305,12 @@
     mountName: sniperfire_mount4
     sfx:
       sound: 'null'
   icon: ItemLootSniper_08_rare
   id: sniper_fire
+  obsolete: 'true'
+  obsoleteMigrateTo: sniper_fire_10
   slot: MainGun
   soulbound: 'true'
   tag: sniper
   tier: '50'
 - gunMounts:
@@ -389,10 +395,12 @@
     mountName: sniperpoison_mount3
     sfx:
       sound: 'null'
   icon: ItemLootSniper_08_rare
   id: sniper_poison
+  obsolete: 'true'
+  obsoleteMigrateTo: sniper_poison_10
   slot: MainGun
   soulbound: 'true'
   tag: sniper
   tier: '50'
 - gunMounts:
@@ -478,10 +486,12 @@
     mountName: sniperice_mount3
     sfx:
       sound: 'null'
   icon: ItemLootSniper_08_rare
   id: sniper_ice
+  obsolete: 'true'
+  obsoleteMigrateTo: sniper_ice_10
   slot: MainGun
   soulbound: 'true'
   tag: sniper
   tier: '50'
 - extraTags:
diff --git config_181114_114/Items/Primary Weapons/sniper_ultrarares.txt config_181128_2048/Items/Primary Weapons/sniper_ultrarares.txt
index 1a73ada..2ee3fd7 100644
--- config_181114_114/Items/Primary Weapons/sniper_ultrarares.txt	
+++ config_181128_2048/Items/Primary Weapons/sniper_ultrarares.txt	
@@ -41,10 +41,12 @@
     mountName: sniperhawkeye_mount2
     sfx:
       sound: 'null'
   icon: ItemLootSniper_10_legendary
   id: sniper_hawkeye
+  obsolete: 'true'
+  obsoleteMigrateTo: sniper_hawkeye_10
   slot: MainGun
   soulbound: 'true'
   tag: sniper
   tier: '100'
 - gunMounts:
@@ -129,10 +131,12 @@
     mountName: sniper_wasp_mount3
     sfx:
       sound: 'null'
   icon: ItemLootSniper_10_legendary
   id: sniper_wasp
+  obsolete: 'true'
+  obsoleteMigrateTo: sniper_wasp_10
   slot: MainGun
   soulbound: 'true'
   tag: sniper
   tier: '100'
 - gunMounts:
@@ -209,10 +213,12 @@
     mountName: sniper_side_mount3
     sfx:
       sound: 'null'
   icon: ItemLootSniper_10_legendary
   id: sniper_side
+  obsolete: 'true'
+  obsoleteMigrateTo: sniper_side_10
   slot: MainGun
   soulbound: 'true'
   tag: sniper
   tier: '100'
 - gunMounts:
diff --git config_181114_114/Items/Primary Weapons/strike_elementals.txt config_181128_2048/Items/Primary Weapons/strike_elementals.txt
index fa87401..7c7e566 100644
--- config_181114_114/Items/Primary Weapons/strike_elementals.txt	
+++ config_181128_2048/Items/Primary Weapons/strike_elementals.txt	
@@ -137,10 +137,12 @@
       - '3'
       sfx:
         sound: 'null'
   icon: ItemLootStrike_8_rare
   id: strike_lightning
+  obsolete: 'true'
+  obsoleteMigrateTo: strike_lightning_10
   slot: MainGun
   soulbound: 'true'
   tag: strike
   tier: '50'
 - actions:
@@ -282,10 +284,12 @@
       - '3'
       sfx:
         sound: 'null'
   icon: ItemLootStrike_8_rare
   id: strike_water
+  obsolete: 'true'
+  obsoleteMigrateTo: strike_water_10
   slot: MainGun
   soulbound: 'true'
   tag: strike
   tier: '50'
 - actions:
@@ -427,10 +431,12 @@
       - '3'
       sfx:
         sound: 'null'
   icon: ItemLootStrike_8_rare
   id: strike_fire
+  obsolete: 'true'
+  obsoleteMigrateTo: strike_fire_10
   slot: MainGun
   soulbound: 'true'
   tag: strike
   tier: '50'
 - actions:
@@ -572,10 +578,12 @@
       - '3'
       sfx:
         sound: 'null'
   icon: ItemLootStrike_8_rare
   id: strike_poison
+  obsolete: 'true'
+  obsoleteMigrateTo: strike_poison_10
   slot: MainGun
   soulbound: 'true'
   tag: strike
   tier: '50'
 - actions:
@@ -717,10 +725,12 @@
       - '3'
       sfx:
         sound: 'null'
   icon: ItemLootStrike_8_rare
   id: strike_ice
+  obsolete: 'true'
+  obsoleteMigrateTo: strike_ice_10
   slot: MainGun
   soulbound: 'true'
   tag: strike
   tier: '50'
 - actions:
diff --git config_181114_114/Items/Primary Weapons/strike_ultrarares.txt config_181128_2048/Items/Primary Weapons/strike_ultrarares.txt
index d12678c..1d0e65a 100644
--- config_181114_114/Items/Primary Weapons/strike_ultrarares.txt	
+++ config_181128_2048/Items/Primary Weapons/strike_ultrarares.txt	
@@ -54,10 +54,12 @@
       - '10'
       sfx:
         sound: 'null'
   icon: ItemLootStrike_9_epic
   id: strike_tesla
+  obsolete: 'true'
+  obsoleteMigrateTo: strike_tesla_10
   slot: MainGun
   soulbound: 'true'
   tag: strike
   tier: '100'
 - actions:
diff --git config_181114_114/Items/Primary Weapons/sword_ultrarares.txt config_181128_2048/Items/Primary Weapons/sword_ultrarares.txt
index 8522878..ddc7935 100644
--- config_181114_114/Items/Primary Weapons/sword_ultrarares.txt	
+++ config_181128_2048/Items/Primary Weapons/sword_ultrarares.txt	
@@ -74,10 +74,12 @@
         sound: 'null'
       syncOffset: '0.0'
       syncTo: sword_plasmashiv_mount1
   icon: ItemLootSword_10_legendary
   id: sword_plasmashiv
+  obsolete: 'true'
+  obsoleteMigrateTo: sword_plasmashiv_10
   slot: MainGun
   soulbound: 'true'
   tag: sword
   tier: '100'
 - actions:
@@ -149,10 +151,12 @@
         sound: 'null'
       syncOffset: '0.0'
       syncTo: sword_double_mount2
   icon: ItemLootSword_10_legendary
   id: sword_double
+  obsolete: 'true'
+  obsoleteMigrateTo: sword_double_10
   slot: MainGun
   soulbound: 'true'
   tag: sword
   tier: '100'
 - actions:
diff --git config_181114_114/Items/Primary Weapons/triple_elementals.txt config_181128_2048/Items/Primary Weapons/triple_elementals.txt
index 0c6484e..9771a9c 100644
--- config_181114_114/Items/Primary Weapons/triple_elementals.txt	
+++ config_181128_2048/Items/Primary Weapons/triple_elementals.txt	
@@ -48,10 +48,12 @@
     mountName: triplelightning_mount2
     sfx:
       sound: 'null'
   icon: ItemLootTriple_08_rare
   id: triple_lightning
+  obsolete: 'true'
+  obsoleteMigrateTo: triple_lightning_10
   slot: MainGun
   soulbound: 'true'
   tag: triple
   tier: '50'
 - gunMounts:
@@ -108,10 +110,12 @@
     mountName: triplewater_mount2
     sfx:
       sound: 'null'
   icon: ItemLootTriple_08_rare
   id: triple_water
+  obsolete: 'true'
+  obsoleteMigrateTo: triple_water_10
   slot: MainGun
   soulbound: 'true'
   tag: triple
   tier: '50'
 - gunMounts:
@@ -171,10 +175,12 @@
     sprinklerIncrementAngle: '4'
     sprinklerStartAngle: '-10'
     sprinklerTurnbackAngle: '10'
   icon: ItemLootTriple_08_rare
   id: triple_fire
+  obsolete: 'true'
+  obsoleteMigrateTo: triple_fire_10
   slot: MainGun
   soulbound: 'true'
   tag: triple
   tier: '50'
 - gunMounts:
@@ -230,10 +236,12 @@
     - '-1'
     sfx:
       sound: 'null'
   icon: ItemLootTriple_08_rare
   id: triple_poison
+  obsolete: 'true'
+  obsoleteMigrateTo: triple_poison_10
   slot: MainGun
   soulbound: 'true'
   tag: triple
   tier: '50'
 - gunMounts:
@@ -283,10 +291,12 @@
     mountName: tripleice_mount2
     sfx:
       sound: blaster
   icon: ItemLootTriple_08_rare
   id: triple_ice
+  obsolete: 'true'
+  obsoleteMigrateTo: triple_ice_10
   slot: MainGun
   soulbound: 'true'
   tag: triple
   tier: '50'
 - extraTags:
diff --git config_181114_114/Items/Primary Weapons/triple_ultrarares.txt config_181128_2048/Items/Primary Weapons/triple_ultrarares.txt
index eda7d1f..7e6301b 100644
--- config_181114_114/Items/Primary Weapons/triple_ultrarares.txt	
+++ config_181128_2048/Items/Primary Weapons/triple_ultrarares.txt	
@@ -74,10 +74,12 @@
       soundMinInterval:
       - '0.02'
       - '0.05'
   icon: ItemLootTriple_10_legendary
   id: triple_terror
+  obsolete: 'true'
+  obsoleteMigrateTo: triple_terror_10
   slot: MainGun
   soulbound: 'true'
   tag: triple
   tier: '100'
 - gunMounts:
@@ -184,10 +186,12 @@
       sound: blaster
     syncOffset: '3'
     syncTo: triple_charge_mount1
   icon: ItemLootTriple_10_legendary
   id: triple_charge
+  obsolete: 'true'
+  obsoleteMigrateTo: triple_charge_10
   slot: MainGun
   soulbound: 'true'
   tag: triple
   tier: '100'
 - gunMounts:
@@ -278,10 +282,12 @@
     sprinklerIncrementAngle: '4'
     sprinklerStartAngle: '-8'
     sprinklerTurnbackAngle: '8'
   icon: ItemLootTriple_10_legendary
   id: triple_classic
+  obsolete: 'true'
+  obsoleteMigrateTo: triple_classic_10
   slot: MainGun
   soulbound: 'true'
   tag: triple
   tier: '100'
 - gunMounts:
@@ -369,10 +375,12 @@
       sound: laser
     syncOffset: '2'
     syncTo: triple_trident_mount1
   icon: ItemLootTriple_10_legendary
   id: triple_trident
+  obsolete: 'true'
+  obsoleteMigrateTo: triple_trident_10
   slot: MainGun
   soulbound: 'true'
   tag: triple
   tier: '100'
 - extraTags:
diff --git config_181114_114/Items/Primary Weapons/wasp_elementals.txt config_181128_2048/Items/Primary Weapons/wasp_elementals.txt
index e3342ae..96ddabc 100644
--- config_181114_114/Items/Primary Weapons/wasp_elementals.txt	
+++ config_181128_2048/Items/Primary Weapons/wasp_elementals.txt	
@@ -56,10 +56,12 @@
     sprinklerIncrementAngle: '8'
     sprinklerStartAngle: '-15'
     sprinklerTurnbackAngle: '15'
   icon: ItemLootWasp_08_rare
   id: wasp_lightning
+  obsolete: 'true'
+  obsoleteMigrateTo: wasp_lightning_10
   slot: MainGun
   soulbound: 'true'
   tag: wasp
   tier: '50'
 - gunMounts:
@@ -90,10 +92,12 @@
     mountName: waspwater_mount
     sfx:
       sound: wasp
   icon: ItemLootWasp_08_rare
   id: wasp_water
+  obsolete: 'true'
+  obsoleteMigrateTo: wasp_water_10
   slot: MainGun
   soulbound: 'true'
   tag: wasp
   tier: '50'
 - gunMounts:
@@ -150,10 +154,12 @@
     mountName: waspfire_mount2
     sfx:
       sound: 'null'
   icon: ItemLootWasp_08_rare
   id: wasp_fire
+  obsolete: 'true'
+  obsoleteMigrateTo: wasp_fire_10
   slot: MainGun
   soulbound: 'true'
   tag: wasp
   tier: '50'
 - gunMounts:
@@ -186,10 +192,12 @@
     sprinklerIncrementAngle: '60'
     sprinklerStartAngle: '0'
     sprinklerTurnbackAngle: '60'
   icon: ItemLootWasp_08_rare
   id: wasp_poison
+  obsolete: 'true'
+  obsoleteMigrateTo: wasp_poison_10
   slot: MainGun
   soulbound: 'true'
   tag: wasp
   tier: '50'
 - gunMounts:
@@ -287,10 +295,12 @@
     - '0'
     sfx:
       sound: 'null'
   icon: ItemLootWasp_08_rare
   id: wasp_ice
+  obsolete: 'true'
+  obsoleteMigrateTo: wasp_ice_10
   slot: MainGun
   soulbound: 'true'
   tag: wasp
   tier: '50'
 - extraTags:
diff --git config_181114_114/Items/Primary Weapons/wasp_ultrarares.txt config_181128_2048/Items/Primary Weapons/wasp_ultrarares.txt
index 8883665..7743dda 100644
--- config_181114_114/Items/Primary Weapons/wasp_ultrarares.txt	
+++ config_181128_2048/Items/Primary Weapons/wasp_ultrarares.txt	
@@ -25,10 +25,12 @@
     sfx:
       pitch: '1.3'
       sound: wasp
   icon: ItemLootWasp_10_legendary
   id: wasp_zem
+  obsolete: 'true'
+  obsoleteMigrateTo: wasp_zem_10
   slot: MainGun
   soulbound: 'true'
   tag: wasp
   tier: '100'
 - gunMounts:
@@ -57,10 +59,12 @@
     sprinklerIncrementAngle: '120'
     sprinklerStartAngle: '0'
     sprinklerTurnbackAngle: '360'
   icon: ItemLootWasp_10_legendary
   id: wasp_beam
+  obsolete: 'true'
+  obsoleteMigrateTo: wasp_beam_10
   slot: MainGun
   soulbound: 'true'
   tag: wasp
   tier: '100'
 - gunMounts:
@@ -179,10 +183,12 @@
     sprinklerIncrementAngle: '0'
     sprinklerStartAngle: '0'
     sprinklerTurnbackAngle: '360000'
   icon: ItemLootWasp_10_legendary
   id: wasp_space
+  obsolete: 'true'
+  obsoleteMigrateTo: wasp_space_10
   slot: MainGun
   soulbound: 'true'
   tag: wasp
   tier: '100'
 - gunMounts:
@@ -227,10 +233,12 @@
     - '0'
     sfx:
       sound: sniper
   icon: ItemLootWasp_10_legendary
   id: wasp_double
+  obsolete: 'true'
+  obsoleteMigrateTo: wasp_double_10
   slot: MainGun
   soulbound: 'true'
   tag: wasp
   tier: '100'
 - extraTags:
diff --git config_181114_114/Items/armor/armor_fire.txt config_181128_2048/Items/armor/armor_fire.txt
index 9a77626..20d35ec 100644
--- config_181114_114/Items/armor/armor_fire.txt
+++ config_181128_2048/Items/armor/armor_fire.txt
@@ -1,10 +1,12 @@
 extraTags:
 - elemental
 - epic
 icon: ItemLootShield_UltraRare
 id: armor_fire
+obsolete: 'true'
+obsoleteMigrateTo: armor_fire_10
 slot: Armor
 soulbound: 'true'
 statMods:
 - amount: '28'
   math: add
diff --git config_181114_114/Items/armor/armor_ice.txt config_181128_2048/Items/armor/armor_ice.txt
index 77d0bb5..407154c 100644
--- config_181114_114/Items/armor/armor_ice.txt
+++ config_181128_2048/Items/armor/armor_ice.txt
@@ -1,10 +1,12 @@
 extraTags:
 - elemental
 - epic
 icon: ItemLootShield_UltraRare
 id: armor_ice
+obsolete: 'true'
+obsoleteMigrateTo: armor_ice_10
 slot: Armor
 soulbound: 'true'
 statMods:
 - amount: '28'
   math: add
diff --git config_181114_114/Items/armor/armor_lightning.txt config_181128_2048/Items/armor/armor_lightning.txt
index be922da..66e5699 100644
--- config_181114_114/Items/armor/armor_lightning.txt
+++ config_181128_2048/Items/armor/armor_lightning.txt
@@ -1,10 +1,12 @@
 extraTags:
 - elemental
 - epic
 icon: ItemLootShield_UltraRare
 id: armor_lightning
+obsolete: 'true'
+obsoleteMigrateTo: armor_lightning_10
 slot: Armor
 soulbound: 'true'
 statMods:
 - amount: '28'
   math: add
diff --git config_181114_114/Items/armor/armor_poison.txt config_181128_2048/Items/armor/armor_poison.txt
index 257d664..7c7ad7e 100644
--- config_181114_114/Items/armor/armor_poison.txt
+++ config_181128_2048/Items/armor/armor_poison.txt
@@ -1,10 +1,12 @@
 extraTags:
 - elemental
 - epic
 icon: ItemLootShield_UltraRare
 id: armor_poison
+obsolete: 'true'
+obsoleteMigrateTo: armor_poison_10
 slot: Armor
 soulbound: 'true'
 statMods:
 - amount: '28'
   math: add
diff --git config_181114_114/Items/armor/armor_water.txt config_181128_2048/Items/armor/armor_water.txt
index 03c72a7..660dff9 100644
--- config_181114_114/Items/armor/armor_water.txt
+++ config_181128_2048/Items/armor/armor_water.txt
@@ -1,10 +1,12 @@
 extraTags:
 - elemental
 - epic
 icon: ItemLootShield_UltraRare
 id: armor_water
+obsolete: 'true'
+obsoleteMigrateTo: armor_water_10
 slot: Armor
 soulbound: 'true'
 statMods:
 - amount: '28'
   math: add
diff --git config_181114_114/Quests/quests_crafting.txt config_181128_2048/Quests/quests_crafting.txt
index 95e8c92..1db7fbb 100644
--- config_181114_114/Quests/quests_crafting.txt
+++ config_181128_2048/Quests/quests_crafting.txt
@@ -7,21 +7,10 @@
   template: 'true'
   tier: '-1'
   type: crafting
 - goals:
   - items:
-    - id: craft_redsteel
-    target: '30'
-    type: collect
-  id: craft_laser_fire
-  inherit:
-  - crafting_template
-  requirements:
-    isAdmin: 'true'
-  rewardTier: '8'
-- goals:
-  - items:
     - id: craft_yellowsteel
     target: '3'
     type: collect
   - items:
     - id: laser_lightning_8
diff --git config_181114_114/Quests/quests_daily.txt config_181128_2048/Quests/quests_daily.txt
index 53dd67f..c973557 100644
--- config_181114_114/Quests/quests_daily.txt
+++ config_181128_2048/Quests/quests_daily.txt
@@ -1,8 +1,30 @@
 - activateTimeout: '1'
   autoComplete: 'true'
   goals:
+  - target: '1'
+    type: kill
+    units:
+    - id: meowza
+  id: dungeon_finalboss_01
+  joinActivateUnits:
+  - meowzalasergateWE
+  joinIfNoPlayers: 'true'
+  joinTimeout: '1'
+  replayConfig: afterTimeout
+  replayConfigTimeout: 0:01
+  requirements:
+    planeLevelMax: '20'
+    planeLevelMin: '0'
+    quests:
+    - id: tut_complete
+  source: trigger
+  tier: '10'
+  timeLimit: 00:30
+- activateTimeout: '1'
+  autoComplete: 'true'
+  goals:
   - guidanceEnabled: 'false'
     target: '1'
     type: encounter
     units:
     - id: thiefkey
diff --git config_181114_114/Quests/quests_tutorial.txt config_181128_2048/Quests/quests_tutorial.txt
index eef9502..022f961 100644
--- config_181114_114/Quests/quests_tutorial.txt
+++ config_181128_2048/Quests/quests_tutorial.txt
@@ -8,25 +8,22 @@
   joinTimeout: '0'
   listSortPriority: '-10000'
   permanent: 'true'
   replayConfig: never
   requirements:
-    planeLevelMax: '1000'
-    planeLevelMin: '0'
+    finishedTutorial: 'true'
   showInaccessible: 'false'
   source: auto
   tier: '1'
 - completeAtGiver: tavern
   goals: []
   id: tut_01_2
   joinTimeout: '0'
   listSortPriority: '-10000'
   permanent: 'true'
   replayConfig: never
   requirements:
-    planeLevelMax: '1000'
-    planeLevelMin: '0'
     quests:
     - delay: 0:00:05
       id: tut_01
   showInaccessible: 'false'
   source: auto
@@ -41,12 +38,10 @@
   joinTimeout: '0'
   listSortPriority: '-10000'
   permanent: 'true'
   replayConfig: never
   requirements:
-    planeLevelMax: '1000'
-    planeLevelMin: '0'
     quests:
     - id: tut_01_2
   rewardTier: '2'
   showInaccessible: 'false'
   source: giver
@@ -63,12 +58,10 @@
   joinTimeout: '0'
   listSortPriority: '-10000'
   permanent: 'true'
   replayConfig: never
   requirements:
-    planeLevelMax: '1000'
-    planeLevelMin: '0'
     quests:
     - delay: 0:00:05
       id: tut_02
   showInaccessible: 'false'
   source: auto
@@ -83,12 +76,10 @@
   joinTimeout: '0'
   listSortPriority: '-10000'
   permanent: 'true'
   replayConfig: never
   requirements:
-    planeLevelMax: '1000'
-    planeLevelMin: '0'
     quests:
     - id: tut_03
   showInaccessible: 'false'
   source: giver
   tier: '3'
@@ -104,12 +95,10 @@
   joinTimeout: '0'
   listSortPriority: '-10000'
   permanent: 'true'
   replayConfig: never
   requirements:
-    planeLevelMax: '1000'
-    planeLevelMin: '0'
     quests:
     - delay: 0:00:05
       id: tut_04
   showInaccessible: 'false'
   source: auto
diff --git config_181114_114/Texts/en-US/bark.txt config_181128_2048/Texts/en-US/bark.txt
index 9bc0588..f15eeeb 100644
--- config_181114_114/Texts/en-US/bark.txt
+++ config_181128_2048/Texts/en-US/bark.txt
@@ -436,10 +436,14 @@ convoytri_1:
   randomOptions:
   - text: Tri Shutdown
 convoytri_2:
   randomOptions:
   - text: Tri Shutdown2
+crafting_beginner:
+  randomOptions:
+  - text: You need to reach level 20 at least once with a plane to craft stuff. Drop by soon!
+    weight: '1'
 crawlerDEATH:
   randomOptions:
   - text: 'No!
 
       The harvest must continue!'
@@ -823,10 +827,70 @@ krakenDEATH:
       will hear of this...'
 meowzablocker:
   randomOptions:
   - text: Please vacate the entry area. Lesser animals are not allowed.
     weight: '1'
+meowzablocker2:
+  randomOptions:
+  - text: <color=red>COMMENCING INCINERATION!!!</color> May Meowza feast on your souls...
+    weight: '1'
+meowzablocker_countdown_01:
+  randomOptions:
+  - text: Incineration in <color=red>1 second</color>. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_02:
+  randomOptions:
+  - text: Incineration in <color=red>2 seconds</color>. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_03:
+  randomOptions:
+  - text: Incineration in <color=red>3 seconds</color>. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_04:
+  randomOptions:
+  - text: Incineration in <color=red>4 seconds</color>. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_05:
+  randomOptions:
+  - text: Incineration in <color=red>5 seconds</color>. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_06:
+  randomOptions:
+  - text: Incineration in <color=red>6 seconds</color>. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_07:
+  randomOptions:
+  - text: Incineration in <color=red>7 seconds</color>. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_08:
+  randomOptions:
+  - text: Incineration in <color=red>8 seconds</color>. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_09:
+  randomOptions:
+  - text: Incineration in <color=red>9 seconds</color>. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_10:
+  randomOptions:
+  - text: Incineration in <color=red>10 seconds</color>. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_15:
+  randomOptions:
+  - text: Incineration in 15 seconds. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_20:
+  randomOptions:
+  - text: Incineration in 20 seconds. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_25:
+  randomOptions:
+  - text: Incineration in 25 seconds. Please vacate the entry area.
+    weight: '1'
+meowzablocker_countdown_30:
+  randomOptions:
+  - text: Incineration in 30 seconds. Please vacate the entry area.
+    weight: '1'
 newtutorial2ally1:
   randomOptions:
   - text: Ah, you're back!
 newtutorial2ally1_2:
   randomOptions:
diff --git config_181114_114/Texts/en-US/events.txt config_181128_2048/Texts/en-US/events.txt
index b99ce91..2dcafdc 100644
--- config_181114_114/Texts/en-US/events.txt
+++ config_181128_2048/Texts/en-US/events.txt
@@ -248,10 +248,16 @@ news_egret_eggs:
   description: 'This update is bumper one, with: a completely overhauled pilot skill system, a new secure trade interface, and many more changes and improvements.
 
     '
   header_image: EventHeader_Updates
   title: 'News: Elaborate Egret Eggs'
+news_fledgling_flamingo:
+  description: 'Lots of fixes and improvements to new skill and trade systems, more widespread dynamic difficulty, and other changes.
+
+    '
+  header_image: EventHeader_Updates
+  title: 'News: Fledgling Flamingo Foveae'
 playtest_event:
   description: "Welcome to the latest Steambirds playtest. Be kind to one another. Explore the game. Have fun. Good skies! \n\n<b><size=18><color=ffffffff>Schedule</color></size></b>\n {0}{1}\n"
   ending_server_message: The playtest is over!
   header_image: EventHeader_Updates
   starting_server_message: Playtest is starting now!
diff --git config_181114_114/Texts/en-US/quests.txt config_181128_2048/Texts/en-US/quests.txt
index def512f..7ce7182 100644
--- config_181114_114/Texts/en-US/quests.txt
+++ config_181128_2048/Texts/en-US/quests.txt
@@ -964,10 +964,18 @@ dailyreward_Tuesday:
   description: Claim your daily reward here!
   title: 'Daily Reward: Tuesday'
 dailyreward_Wednesday:
   description: Claim your daily reward here!
   title: 'Daily Reward: Wednesday'
+dungeon_finalboss_01:
+  description: This is the real deal.  Fight Meowza!
+  dialogueOnStart:
+  - sergeant: Mother of God... It's the lair of <color=#FBB040>Meowza</color>!!
+  - sergeant: His war machine is the <color=#FBB040>strongest in the world</color>.
+  - sergeant: Fancy yourself to be an ace pilot? Otherwise, you'll be his breakfast.
+  goal_0: <color=#FBB040>KILL MEOWZA</color>
+  title: Kill the Emperor
 dungeon_rescue_01:
   description: Escort our drill through the monster-filled caves. Reach the end to get the best rewards.
   dialogueOnStart:
   - sergeant: This one's a doozy. Hope you brought backup.
   - sergeant: <color=#FBB040>Defend the drill</color> all the way to the end of these caves and <color=#FBB040>find the buried treasures.</color>
diff --git config_181114_114/Texts/en-US/ui.txt config_181128_2048/Texts/en-US/ui.txt
index b69c301..a58a98e 100644
--- config_181114_114/Texts/en-US/ui.txt
+++ config_181128_2048/Texts/en-US/ui.txt
@@ -442,23 +442,25 @@ login_error_confirm_doesnt_match: Confirmation doesn't match password
 login_error_confirm_password: Please confirm password
 login_error_supply_email_address: Please supply an email address
 login_error_supply_password: Please supply a password
 login_error_supply_username: Please supply a username
 login_error_valid_email_address: Please supply a valid email address
+login_error_valid_username: Contains disallowed characters
 login_forgot_password: Forgot your password?
 login_forgot_password_info: Select this to retrieve it
 login_login: Login
 login_new_player_subtitle: Select this to register
 login_new_player_title: New player?
 login_password: Password
 login_register: Register
 login_request_reset: Request Reset
 login_reset: Reset
 login_retype_password: Retype Password
 login_sign_in: Sign in
 login_submit: Submit
 login_username: Username
+login_username_blacklist_chars: '!@#|"\'
 login_username_email_placeholder_login: Type your username or Email here
 login_username_or_email: Username or Email
 login_username_placeholder: Choose a username
 login_username_placeholder_login: Type your username here
 menu_back: Back
@@ -679,11 +681,11 @@ pilot_school_notify_respec: Respecced all skills
 pilot_school_notify_up: Upgraded <color=#E5C46B>{0}</color> to <color=#E5C46B>level {1}</color> ({2})
 pilot_school_progress_label: '{0} Pilot XP to Rank {1}'
 pilot_school_title: Career Record
 pilot_skill_action_cooldown: 'Cooldown: {0}s'
 pilot_skill_action_duration: 'Duration: {0}s'
-pilot_skill_action_duration_stacks: 'Duration: {0}s (stacks)'
+pilot_skill_action_duration_stacks: 'Duration: {0}s (stacks up to {1} times)'
 pilot_skill_action_energy: '{0} steam'
 pilot_skill_action_health: '{0} armor'
 pilot_skill_condition_class: When flying {0}
 pilot_skill_condition_energy_above: Steam at least {0}%
 pilot_skill_condition_energy_below: Steam below {0}%
@@ -828,11 +830,13 @@ quick_chat_title_Warning: Warning
 quick_chat_title_Wings: Wings
 quick_chat_whee: Whee!
 radar_mission: 'Target
 
   <color=#ffa500ff>{0}</color>'
-radar_teleport: '[{0}] to teleport'
+radar_teleport: '[{0}] or click
+
+  to teleport'
 restart_announce: Everybody grab everything! We need to shutdown this Rebel City for a short while. This way we can hide from their scanners.
 restart_countdown: '{0}...'
 restart_now: Going dark for a short while.
 session_anti_addiction_disconnect: Anti addiction limit reached. Sorry.
 shutdown_announce: Server is going down soon. Quickly grab your loot.
diff --git config_181114_114/Texts/en-US/units.txt config_181128_2048/Texts/en-US/units.txt
index 6fc76f9..fac2874 100644
--- config_181114_114/Texts/en-US/units.txt
+++ config_181128_2048/Texts/en-US/units.txt
@@ -58,21 +58,21 @@ DQ_SP_2XMID_gasstation_commandturret: Water Cannon
 DQ_SP_2XMID_gasstation_gastank: Fuel Tank
 DQ_SP_2XMID_gasstation_turret: Water Cannon
 DQ_SP_5XHMT_heist_barracks: Bank Barracks
 DQ_SP_5XHMT_heist_barracksguard: Bank Watch
 DQ_SP_5XHMT_heist_hackconsole: Lock Console
-DQ_SP_5XHMT_heist_hackdoorchain: Locked Door
+DQ_SP_5XHMT_heist_hackdoorchain_wallgate: Locked Door
 DQ_SP_5XHMT_heist_hackdoorchainsignal: Locked Door
 DQ_SP_5XHMT_heist_riotguard: Bank Guard
 DQ_SP_5XHMT_heist_riotguardshield: Bank Guard Shield
 DQ_SP_5XHMT_heist_treasure: Coin Cache
 DQ_SP_5XHMT_heist_turret: Bank Turret
-DQ_SP_5XHMT_mine_avalancheparent: Avalanche Worm
+DQ_SP_5XHMT_mine_avalancheparent_destructiblewall: Avalanche Worm
 DQ_SP_5XHMT_mine_avalanchesignal: Avalanche Worm
 DQ_SP_5XHMT_mine_avalancheworm: Avalanche Worm
-DQ_SP_5XHMT_mine_keystone: Keystone
-DQ_SP_5XHMT_mine_rock: Rock
+DQ_SP_5XHMT_mine_keystone_destructiblewall: Keystone
+DQ_SP_5XHMT_mine_rock_destructiblewall: Rock
 DQ_SP_5XHMT_mine_snakemancer: Snakemancer
 DQ_SP_5XHMT_mine_snakemancersnake01: Spark Snake
 DQ_SP_5XHMT_mine_snakemancersnake01neck: Spark Snake
 DQ_SP_5XHMT_mine_snakemancersnake02: Spark Snake
 DQ_SP_5XHMT_mine_snakemancersnake03: Spark Snake
@@ -120,10 +120,11 @@ allyturret9: Sunken Turret
 altar: Guard Barracks
 angel2: Mecha-Angel
 apophis: Apophis
 apophisleg: Apophis Leg
 apophistail: Apophis Tail
+arena2_destructiblewall1: Wall
 arena2ballnchain: Chains
 arena2ballnchainminion: Chains
 arena2beehex: Hornet
 arena2bonusswarm: Bonus Pinata
 arena2lasereye: Laser X
@@ -134,11 +135,10 @@ arena2spotterexploder: Death Wish
 arena2spotterspawner: Arena Master
 arena2stardog: Underdog
 arena2tripod: Corpse Cleaner
 arena2tripodminion: Corpse Minion
 arena2tripodminionmaster: Hex
-arena2wall1: Wall
 arena2warper: Smoke Ninja
 arena2warpergrenade: Smoke Ninja
 arena2wave_harassers_1: Arena Master
 arena2wave_harassers_2: Arena Master
 arena2wave_harassers_3: Arena Master
@@ -365,10 +365,11 @@ escort_01_goal: Destination
 escort_01_master: Mobile Bird Com Tower
 escort_01_missile: Missile
 escort_01_missilespawner: Missile
 escort_01_reward: Reward
 escort_01_startbutton: Mission Beacon
+escort_wallgate: Vault Door
 escortairstrike: Bomb Striker
 escortairstrikebomb: Bomb Striker
 escortbomb: Magnet Bomb
 escortbombspawner: Magnet Bomb
 escortboss: Deep Guardian
@@ -399,11 +400,10 @@ escorttrain2: Stone Worm Segment
 escorttrainmaster: Stone Worm
 escortturret: Ancient Turret
 escortturretmissile: Missile
 escortturretspawner: Shock Turret
 escortturretstrong: Large Ancient Turret
-escortwallgate: Vault Door
 eventchest: Mysterious Gift
 eventchestA: Gift from the Deep
 eventchestB: Greater Gift from the Deep
 evo: Orphan
 evo2: Enraged Orphan
@@ -433,10 +433,11 @@ firingghostbullet: Firing Ghost Bullet
 fivestar: Scavenger Scanner
 fivestarleader: Scavenger Scanner
 flakblimp: Chuck
 flakblimp2: Brother Bomber
 flakblimp2exploder: Brother Bomber
+flakblimpbig: Big Charlie
 flakblimpexploder: Chuck
 flakblimpexploderstrong: Chuck
 flakboss: Robo Bomber
 flakbossexploder: Robo Bomber
 flakleader: Sister Bomber
@@ -471,11 +472,13 @@ gridbosssaucer: Cation Beam
 gridleader: Zookeeper
 grindhousedungeontreasure: Treasure
 grunt: Rubble Rat
 gruntleader: Rubble Rat
 hammerplanet: Crowd Control
-hammerplanet2: Crowd Control
+hammerplanet2: Crowd Control II
+hammerplanet2_hammer: Crowd Control II
+hammerplanet_hammer: Crowd Control
 hawk: Mecha-pheasant
 hawkleader: Mecha-hawk
 healattacker: Water Base
 healbase: Water Base
 healdrone: Water Base
@@ -604,11 +607,11 @@ meowzaC1m2: Godleader Meowza
 meowzaC2: Godleader Meowza
 meowzaC2m: Godleader Meowza
 meowzaD2: Godleader Meowza
 meowzaD2m: Godleader Meowza
 meowzaDEATH: Throne of Meowza
-meowzablocker: The Vice
+meowzablocker: The Viceroy
 meowzafinallaserminion: Godleader Meowza
 meowzahealthleader2: Godleader Meowza
 meowzahealthnode: Godleader Meowza
 meowzahealthnode2: Godleader Meowza
 meowzahurtsnake: Supplicant of Meowza
diff --git config_181114_114/Texts/qps-ploc/units.txt config_181128_2048/Texts/qps-ploc/units.txt
index 843d496..c9660a6 100644
--- config_181114_114/Texts/qps-ploc/units.txt
+++ config_181128_2048/Texts/qps-ploc/units.txt
@@ -58,21 +58,21 @@ DQ_SP_2XMID_gasstation_commandturret: '[! Ŵåţéŕẋẋ Çåññöñẋẋ
 DQ_SP_2XMID_gasstation_gastank: '[! Ƒûéļẋẋ Ţåñķẋẋ !]'
 DQ_SP_2XMID_gasstation_turret: '[! Ŵåţéŕẋẋ Çåññöñẋẋ !]'
 DQ_SP_5XHMT_heist_barracks: '[! Ɓåñķẋẋ Ɓåŕŕåçķšẋẋẋ !]'
 DQ_SP_5XHMT_heist_barracksguard: '[! Ɓåñķẋẋ Ŵåţçĥẋẋ !]'
 DQ_SP_5XHMT_heist_hackconsole: '[! Ļöçķẋẋ Çöñšöļéẋẋẋ !]'
-DQ_SP_5XHMT_heist_hackdoorchain: '[! Ļöçķéðẋẋ Ðööŕẋẋ !]'
+DQ_SP_5XHMT_heist_hackdoorchain_wallgate: '[! Ļöçķéðẋẋ Ðööŕẋẋ !]'
 DQ_SP_5XHMT_heist_hackdoorchainsignal: '[! Ļöçķéðẋẋ Ðööŕẋẋ !]'
 DQ_SP_5XHMT_heist_riotguard: '[! Ɓåñķẋẋ Ĝûåŕðẋẋ !]'
 DQ_SP_5XHMT_heist_riotguardshield: '[! Ɓåñķẋẋ Ĝûåŕðẋẋ Šĥîéļðẋẋ !]'
 DQ_SP_5XHMT_heist_treasure: '[! Çöîñẋẋ Çåçĥéẋẋ !]'
 DQ_SP_5XHMT_heist_turret: '[! Ɓåñķẋẋ Ţûŕŕéţẋẋ !]'
-DQ_SP_5XHMT_mine_avalancheparent: '[! Åṽåļåñçĥéẋẋẋ Ŵöŕɱẋẋ !]'
+DQ_SP_5XHMT_mine_avalancheparent_destructiblewall: '[! Åṽåļåñçĥéẋẋẋ Ŵöŕɱẋẋ !]'
 DQ_SP_5XHMT_mine_avalanchesignal: '[! Åṽåļåñçĥéẋẋẋ Ŵöŕɱẋẋ !]'
 DQ_SP_5XHMT_mine_avalancheworm: '[! Åṽåļåñçĥéẋẋẋ Ŵöŕɱẋẋ !]'
-DQ_SP_5XHMT_mine_keystone: '[! Ķéýšţöñéẋẋẋ !]'
-DQ_SP_5XHMT_mine_rock: '[! Ŕöçķẋẋ !]'
+DQ_SP_5XHMT_mine_keystone_destructiblewall: '[! Ķéýšţöñéẋẋẋ !]'
+DQ_SP_5XHMT_mine_rock_destructiblewall: '[! Ŕöçķẋẋ !]'
 DQ_SP_5XHMT_mine_snakemancer: '[! Šñåķéɱåñçéŕẋẋẋẋ !]'
 DQ_SP_5XHMT_mine_snakemancersnake01: '[! Šþåŕķẋẋ Šñåķéẋẋ !]'
 DQ_SP_5XHMT_mine_snakemancersnake01neck: '[! Šþåŕķẋẋ Šñåķéẋẋ !]'
 DQ_SP_5XHMT_mine_snakemancersnake02: '[! Šþåŕķẋẋ Šñåķéẋẋ !]'
 DQ_SP_5XHMT_mine_snakemancersnake03: '[! Šþåŕķẋẋ Šñåķéẋẋ !]'
@@ -120,10 +120,11 @@ allyturret9: '[! Šûñķéñẋẋ Ţûŕŕéţẋẋ !]'
 altar: '[! Ĝûåŕðẋẋ Ɓåŕŕåçķšẋẋẋ !]'
 angel2: '[! Ṁéçĥå‐Åñĝéļẋẋẋẋ !]'
 apophis: '[! Åþöþĥîšẋẋẋ !]'
 apophisleg: '[! Åþöþĥîšẋẋẋ Ļéĝẋ !]'
 apophistail: '[! Åþöþĥîšẋẋẋ Ţåîļẋẋ !]'
+arena2_destructiblewall1: '[! Ŵåļļẋẋ !]'
 arena2ballnchain: '[! Çĥåîñšẋẋ !]'
 arena2ballnchainminion: '[! Çĥåîñšẋẋ !]'
 arena2beehex: '[! Ĥöŕñéţẋẋ !]'
 arena2bonusswarm: '[! Ɓöñûšẋẋ Þîñåţåẋẋ !]'
 arena2lasereye: '[! Ļåšéŕẋẋ Ẋẋ !]'
@@ -134,11 +135,10 @@ arena2spotterexploder: '[! Ðéåţĥẋẋ Ŵîšĥẋẋ !]'
 arena2spotterspawner: '[! Åŕéñåẋẋ Ṁåšţéŕẋẋ !]'
 arena2stardog: '[! Ûñðéŕðöĝẋẋẋ !]'
 arena2tripod: '[! Çöŕþšéẋẋ Çļéåñéŕẋẋẋ !]'
 arena2tripodminion: '[! Çöŕþšéẋẋ Ṁîñîöñẋẋ !]'
 arena2tripodminionmaster: '[! Ĥéẋẋ !]'
-arena2wall1: '[! Ŵåļļẋẋ !]'
 arena2warper: '[! Šɱöķéẋẋ Ñîñĵåẋẋ !]'
 arena2warpergrenade: '[! Šɱöķéẋẋ Ñîñĵåẋẋ !]'
 arena2wave_harassers_1: '[! Åŕéñåẋẋ Ṁåšţéŕẋẋ !]'
 arena2wave_harassers_2: '[! Åŕéñåẋẋ Ṁåšţéŕẋẋ !]'
 arena2wave_harassers_3: '[! Åŕéñåẋẋ Ṁåšţéŕẋẋ !]'
@@ -365,10 +365,11 @@ escort_01_goal: '[! Ðéšţîñåţîöñẋẋẋẋ !]'
 escort_01_master: '[! Ṁöƀîļéẋẋ Ɓîŕðẋẋ Çöɱẋ Ţöŵéŕẋẋ !]'
 escort_01_missile: '[! Ṁîššîļéẋẋẋ !]'
 escort_01_missilespawner: '[! Ṁîššîļéẋẋẋ !]'
 escort_01_reward: '[! Ŕéŵåŕðẋẋ !]'
 escort_01_startbutton: '[! Ṁîššîöñẋẋẋ Ɓéåçöñẋẋ !]'
+escort_wallgate: '[! Ṽåûļţẋẋ Ðööŕẋẋ !]'
 escortairstrike: '[! Ɓöɱƀẋẋ Šţŕîķéŕẋẋẋ !]'
 escortairstrikebomb: '[! Ɓöɱƀẋẋ Šţŕîķéŕẋẋẋ !]'
 escortbomb: '[! Ṁåĝñéţẋẋ Ɓöɱƀẋẋ !]'
 escortbombspawner: '[! Ṁåĝñéţẋẋ Ɓöɱƀẋẋ !]'
 escortboss: '[! Ðééþẋẋ Ĝûåŕðîåñẋẋẋ !]'
@@ -399,11 +400,10 @@ escorttrain2: '[! Šţöñéẋẋ Ŵöŕɱẋẋ Šéĝɱéñţẋẋẋ !]
 escorttrainmaster: '[! Šţöñéẋẋ Ŵöŕɱẋẋ !]'
 escortturret: '[! Åñçîéñţẋẋẋ Ţûŕŕéţẋẋ !]'
 escortturretmissile: '[! Ṁîššîļéẋẋẋ !]'
 escortturretspawner: '[! Šĥöçķẋẋ Ţûŕŕéţẋẋ !]'
 escortturretstrong: '[! Ļåŕĝéẋẋ Åñçîéñţẋẋẋ Ţûŕŕéţẋẋ !]'
-escortwallgate: '[! Ṽåûļţẋẋ Ðööŕẋẋ !]'
 eventchest: '[! Ṁýšţéŕîöûšẋẋẋẋ Ĝîƒţẋẋ !]'
 eventchestA: '[! Ĝîƒţẋẋ ƒŕöɱẋẋ ţĥéẋ Ðééþẋẋ !]'
 eventchestB: '[! Ĝŕéåţéŕẋẋẋ Ĝîƒţẋẋ ƒŕöɱẋẋ ţĥéẋ Ðééþẋẋ !]'
 evo: '[! Öŕþĥåñẋẋ !]'
 evo2: '[! Éñŕåĝéðẋẋẋ Öŕþĥåñẋẋ !]'
diff --git config_181114_114/Texts/qps-plocs/units.txt config_181128_2048/Texts/qps-plocs/units.txt
index 487e13b..1f5b002 100644
--- config_181114_114/Texts/qps-plocs/units.txt
+++ config_181128_2048/Texts/qps-plocs/units.txt
@@ -58,21 +58,21 @@ DQ_SP_2XMID_gasstation_commandturret: '************'
 DQ_SP_2XMID_gasstation_gastank: '*********'
 DQ_SP_2XMID_gasstation_turret: '************'
 DQ_SP_5XHMT_heist_barracks: '*************'
 DQ_SP_5XHMT_heist_barracksguard: '**********'
 DQ_SP_5XHMT_heist_hackconsole: '************'
-DQ_SP_5XHMT_heist_hackdoorchain: '***********'
+DQ_SP_5XHMT_heist_hackdoorchain_wallgate: '***********'
 DQ_SP_5XHMT_heist_hackdoorchainsignal: '***********'
 DQ_SP_5XHMT_heist_riotguard: '**********'
 DQ_SP_5XHMT_heist_riotguardshield: '*****************'
 DQ_SP_5XHMT_heist_treasure: '**********'
 DQ_SP_5XHMT_heist_turret: '***********'
-DQ_SP_5XHMT_mine_avalancheparent: '**************'
+DQ_SP_5XHMT_mine_avalancheparent_destructiblewall: '**************'
 DQ_SP_5XHMT_mine_avalanchesignal: '**************'
 DQ_SP_5XHMT_mine_avalancheworm: '**************'
-DQ_SP_5XHMT_mine_keystone: '********'
-DQ_SP_5XHMT_mine_rock: '****'
+DQ_SP_5XHMT_mine_keystone_destructiblewall: '********'
+DQ_SP_5XHMT_mine_rock_destructiblewall: '****'
 DQ_SP_5XHMT_mine_snakemancer: '***********'
 DQ_SP_5XHMT_mine_snakemancersnake01: '***********'
 DQ_SP_5XHMT_mine_snakemancersnake01neck: '***********'
 DQ_SP_5XHMT_mine_snakemancersnake02: '***********'
 DQ_SP_5XHMT_mine_snakemancersnake03: '***********'
@@ -120,10 +120,11 @@ allyturret9: '*************'
 altar: '**************'
 angel2: '***********'
 apophis: '*******'
 apophisleg: '***********'
 apophistail: '************'
+arena2_destructiblewall1: '****'
 arena2ballnchain: '******'
 arena2ballnchainminion: '******'
 arena2beehex: '******'
 arena2bonusswarm: '************'
 arena2lasereye: '*******'
@@ -134,11 +135,10 @@ arena2spotterexploder: '**********'
 arena2spotterspawner: '************'
 arena2stardog: '********'
 arena2tripod: '**************'
 arena2tripodminion: '*************'
 arena2tripodminionmaster: '***'
-arena2wall1: '****'
 arena2warper: '***********'
 arena2warpergrenade: '***********'
 arena2wave_harassers_1: '************'
 arena2wave_harassers_2: '************'
 arena2wave_harassers_3: '************'
@@ -365,10 +365,11 @@ escort_01_goal: '***********'
 escort_01_master: '*********************'
 escort_01_missile: '*******'
 escort_01_missilespawner: '*******'
 escort_01_reward: '******'
 escort_01_startbutton: '**************'
+escort_wallgate: '**********'
 escortairstrike: '************'
 escortairstrikebomb: '************'
 escortbomb: '***********'
 escortbombspawner: '***********'
 escortboss: '*************'
@@ -399,11 +400,10 @@ escorttrain2: '******************'
 escorttrainmaster: '**********'
 escortturret: '**************'
 escortturretmissile: '*******'
 escortturretspawner: '************'
 escortturretstrong: '********************'
-escortwallgate: '**********'
 eventchest: '***************'
 eventchestA: '******************'
 eventchestB: '**************************'
 evo: '******'
 evo2: '**************'
diff --git config_181114_114/Texts/zh-CN/units.txt config_181128_2048/Texts/zh-CN/units.txt
index 6919863..6a43b28 100644
--- config_181114_114/Texts/zh-CN/units.txt
+++ config_181128_2048/Texts/zh-CN/units.txt
@@ -197,10 +197,11 @@ elementallightningarmor: 元素闪电装甲
 elementallightningweakness: 元素闪电弱点
 elementalpoisonarmor: 元素毒素装甲
 elementalpoisonweakness: 元素毒素弱点
 elementalwaterarmor: 元素水装甲
 elementalwaterweakness: 元素水弱点
+escort_wallgate: 金库门
 escortairstrike: 炸弹突击者
 escortairstrikebomb: 炸弹突击者
 escortbomb: 磁力炸弹
 escortbombspawner: 磁力炸弹
 escortboss: 深渊守护者
@@ -229,11 +230,10 @@ escorttrain2: 石虫段
 escorttrainmaster: 石虫
 escortturret: 远古炮塔
 escortturretmissile: 导弹
 escortturretspawner: 冲击炮塔
 escortturretstrong: 大型远古炮塔
-escortwallgate: 金库门
 eventchest: 神秘礼物
 eventchestA: 深渊之礼
 eventchestB: 深渊馈赠
 evo: 孤儿
 evo2: 愤怒孤儿
diff --git config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_13LOW_willowisp_T2/DQ_CS_13LOW_willowisp.txt config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_13LOW_willowisp_T2/DQ_CS_13LOW_willowisp.txt
index e5b6ddc..09dd166 100644
--- config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_13LOW_willowisp_T2/DQ_CS_13LOW_willowisp.txt	
+++ config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_13LOW_willowisp_T2/DQ_CS_13LOW_willowisp.txt	
@@ -10,11 +10,11 @@ gunMounts:
   flashOffset: '0.25'
   gunTemplateName: willowispGun
   mountAngle: '0'
   mountName: infinite
   sfx:
-    sound: Enemy Laser Loop5
+    sound: Enemy Loop Poison Ghost
   slewRate: '10'
   sprinklerFlyback: 'true'
   sprinklerIncrementAngle: '65'
   sprinklerStartAngle: '-5'
   sprinklerTurnbackAngle: '1000000'
diff --git config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_13LOW_willowisp_T2/DQ_CS_13LOW_willowispleader.txt config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_13LOW_willowisp_T2/DQ_CS_13LOW_willowispleader.txt
index 7632249..a9c53ad 100644
--- config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_13LOW_willowisp_T2/DQ_CS_13LOW_willowispleader.txt	
+++ config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_13LOW_willowisp_T2/DQ_CS_13LOW_willowispleader.txt	
@@ -10,11 +10,12 @@ gunMounts:
   flashOffset: '0.25'
   gunTemplateName: willowispGun
   mountAngle: '0'
   mountName: infinite
   sfx:
-    sound: Enemy Laser Loop5
+    pitch: '0.75'
+    sound: Enemy Loop Poison Ghost
   slewRate: '10'
   sprinklerFlyback: 'true'
   sprinklerIncrementAngle: '65'
   sprinklerStartAngle: '-5'
   sprinklerTurnbackAngle: '1000000'
diff --git config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_41MTN_vampire/DQ_CS_41MTN_vampire.txt config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_41MTN_vampire/DQ_CS_41MTN_vampire.txt
index 3b1d158..b1d280b 100644
--- config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_41MTN_vampire/DQ_CS_41MTN_vampire.txt	
+++ config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_41MTN_vampire/DQ_CS_41MTN_vampire.txt	
@@ -40,11 +40,11 @@ gunMounts:
 - fireMode: SprinklerTurnback
   firingArc: '0'
   flashOffset: '0'
   gunTypeConfig:
     bulletPrefab: supershortlightningBullet
-    bulletSize: '0.25'
+    bulletSize: '0.5'
     burst: '100000'
     cooldown: '0'
     damage: '0'
     lifetime: '0.25'
     multi: '2'
@@ -84,11 +84,12 @@ gunMounts:
   mountName: spear2
   offset:
   - '0.9'
   - '4'
   sfx:
-    sound: 'null'
+    pitch: '1'
+    sound: Enemy Loop Electricity
   slewRate: '0'
 gunTypes:
 - bulletPrefab: spinnerBullet
   burst: '5'
   cooldown: '1.5'
diff --git config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_12LOW_gridboss_T3/DQ_KS_12LOW_gridboss.txt config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_12LOW_gridboss_T3/DQ_KS_12LOW_gridboss.txt
index ba7de25..fef3c92 100644
--- config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_12LOW_gridboss_T3/DQ_KS_12LOW_gridboss.txt	
+++ config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_12LOW_gridboss_T3/DQ_KS_12LOW_gridboss.txt	
@@ -1,7 +1,7 @@
 art: EnemyGuardTurretQuest
-artScale: '2'
+artScale: '2.25'
 bankSmoothing: '10000'
 colliderRadius: '.8'
 colliderX: '0'
 colliderY: '0'
 energyRegenRate: '0'
diff --git config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_destroyablewall.txt config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_wallgate.txt
similarity index 86%
rename from config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_destroyablewall.txt
rename to config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_wallgate.txt
index 503edd2..a6bf093 100644
--- config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_destroyablewall.txt	
+++ config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_wallgate.txt	
@@ -12,8 +12,8 @@ maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
 spawnInvulnerabilitySeconds: '100000'
-templateName: DQ_SP_2XMID_gasstation_destroyablewall
+templateName: DQ_SP_2XMID_gasstation_wallgate
 tier: '2'
 xpMultiplier: '0'
diff --git config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_hackdoorchain.txt config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_hackdoorchain_wallgate.txt
similarity index 85%
rename from config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_hackdoorchain.txt
rename to config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_hackdoorchain_wallgate.txt
index 7475cf4..2f713a6 100644
--- config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_hackdoorchain.txt	
+++ config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_hackdoorchain_wallgate.txt	
@@ -11,8 +11,8 @@ maxEnergyPoints: '1'
 maxHitPoints: '10000000'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
 spawnInvulnerabilitySeconds: '100000'
-templateName: DQ_SP_5XHMT_heist_hackdoorchain
+templateName: DQ_SP_5XHMT_heist_hackdoorchain_wallgate
 tier: '8'
 xpMultiplier: '0'
diff --git config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_avalancheparent.txt config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_avalancheparent_destructiblewall.txt
similarity index 82%
rename from config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_avalancheparent.txt
rename to config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_avalancheparent_destructiblewall.txt
index 2732a22..01c40e6 100644
--- config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_avalancheparent.txt	
+++ config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_avalancheparent_destructiblewall.txt	
@@ -11,9 +11,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '5'
 maxSpeed: '0.0'
 maxTurnRate: '180'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '0'
-templateName: DQ_SP_5XHMT_mine_avalancheparent
+templateName: DQ_SP_5XHMT_mine_avalancheparent_destructiblewall
 tier: '8'
 xpMultiplier: '0'
diff --git config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_rock.txt config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_keystone_destructiblewall.txt
similarity index 83%
rename from config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_rock.txt
rename to config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_keystone_destructiblewall.txt
index ec59325..8eca239 100644
--- config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_rock.txt	
+++ config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_keystone_destructiblewall.txt	
@@ -11,9 +11,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '5'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '0'
-templateName: DQ_SP_5XHMT_mine_rock
+templateName: DQ_SP_5XHMT_mine_keystone_destructiblewall
 tier: '8'
 xpMultiplier: '0'
diff --git config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_keystone.txt config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_rock_destructiblewall.txt
similarity index 84%
rename from config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_keystone.txt
rename to config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_rock_destructiblewall.txt
index 860e306..4c53760 100644
--- config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_keystone.txt	
+++ config_181128_2048/Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_rock_destructiblewall.txt	
@@ -11,9 +11,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '5'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '0'
-templateName: DQ_SP_5XHMT_mine_keystone
+templateName: DQ_SP_5XHMT_mine_rock_destructiblewall
 tier: '8'
 xpMultiplier: '0'
diff --git config_181114_114/Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_arena2entrance/SP_5XHMT_arena2entrance_mazerunnersnake.txt config_181114_114/Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_arena2entrance/SP_5XHMT_arena2entrance_mazerunnersnake.txt
deleted file mode 100644
index 8b1ad15..0000000
diff --git config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialportalmaker.txt config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialportalmaker.txt
index b6f3abd..fa82877 100644
--- config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialportalmaker.txt	
+++ config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialportalmaker.txt	
@@ -1,10 +1,11 @@
 art: '!EnemyInvisible'
 artScale: '5.0'
 colliderRadius: '0'
 colliderX: '0'
 colliderY: '0'
+damageThreshold: '0'
 energyRegenRate: '0'
 explosionPrefab: planeExplosionEmpty
 healthRegenRate: '0'
 isVisibleInRadar: 'false'
 maxEnergyPoints: '1'
diff --git config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialwall.txt config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialwall.txt
index c114ebe..6ced8f3 100644
--- config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialwall.txt	
+++ config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialwall.txt	
@@ -10,9 +10,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '40'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '0'
 templateName: tutorialwall
 tier: '0'
 xpMultiplier: '0'
diff --git config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialwall0.txt config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialwall0.txt
index bd3ecc0..dc9adec 100644
--- config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialwall0.txt	
+++ config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialwall0.txt	
@@ -10,9 +10,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '40'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '0'
 templateName: tutorialwall0
 tier: '0'
 xpMultiplier: '0'
diff --git config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialwallboss.txt config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialwallboss.txt
index 4fbbb48..1b2048f 100644
--- config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialwallboss.txt	
+++ config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialwallboss.txt	
@@ -10,9 +10,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '40'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '0'
 templateName: tutorialwallboss
 tier: '0'
 xpMultiplier: '0'
diff --git config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialwallcloud.txt config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialwallcloud.txt
index b41be35..88bdc0d 100644
--- config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialwallcloud.txt	
+++ config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialwallcloud.txt	
@@ -10,9 +10,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '40'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '0'
 templateName: tutorialwallcloud
 tier: '0'
 xpMultiplier: '0'
diff --git config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialwallcloud_short.txt config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialwallcloud_short.txt
index 9eb62dc..2d86e07 100644
--- config_181114_114/Units/00 - Tutorial Dungeon/unit_tutorialwallcloud_short.txt	
+++ config_181128_2048/Units/00 - Tutorial Dungeon/unit_tutorialwallcloud_short.txt	
@@ -10,9 +10,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '40'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '0'
 templateName: tutorialwallcloud_short
 tier: '0'
 xpMultiplier: '0'
diff --git config_181114_114/Units/01 - Beach/BOS2_trainA01.txt config_181128_2048/Units/01 - Beach/BOS2_trainA01.txt
index 2621d80..852e0bc 100644
--- config_181114_114/Units/01 - Beach/BOS2_trainA01.txt	
+++ config_181128_2048/Units/01 - Beach/BOS2_trainA01.txt	
@@ -16,10 +16,12 @@ gunMounts:
   firingArc: '180'
   flashOffset: '0.5'
   gunTemplateName: trainAHeadNoChildrenGun
   mountAngle: '0'
   mountName: nochildrengun
+  sfx:
+    pitch: '0.5'
   slewRate: '180'
 gunTypes:
 - burst: '3'
   cooldown: '2'
   damage: '1'
diff --git config_181114_114/Units/11 - Lowlands (City) - WWI_SteamPunk/GRP1_crow.txt config_181128_2048/Units/11 - Lowlands (City) - WWI_SteamPunk/GRP1_crow.txt
index 6b2be9c..7083f0d 100644
--- config_181114_114/Units/11 - Lowlands (City) - WWI_SteamPunk/GRP1_crow.txt	
+++ config_181128_2048/Units/11 - Lowlands (City) - WWI_SteamPunk/GRP1_crow.txt	
@@ -3,29 +3,36 @@ artScale: '1'
 colliderRadius: '1.1'
 colliderX: '0'
 colliderY: '0'
 energyRegenRate: '0'
 gunMounts:
-- fireMode: Hose
-  firingArc: '27'
+- fireMode: Aimed
+  firingArc: '720'
   flashOffset: '0.4'
   gunTemplateName: crowfire
   mountAngle: '0'
   mountName: main
-  slewRate: '40'
+  slewRate: '90'
 gunTypes:
-- burst: '3'
+- burst: '5'
   cooldown: '3.5'
   damage: '0.35'
   lifetime: '1.8'
-  multi: '3'
+  multi: '1'
   multiSpread: '5'
   name: crowfire
   rof: '5'
   speed: '6'
   spread: '2'
 healthRegenRate: '0'
+loot:
+  loot1:
+    lootTableId: tier2leader
+  loot2:
+    lootTable:
+    - weight: '100'
+    lootTableId: tier2leader
 maxEnergyPoints: '1'
 maxHitPoints: '20'
 maxSpeed: '2.2'
 maxTurnRate: '60'
 minSpeed: '1.5'
@@ -49,5 +56,6 @@ particlePositions:
   - '0'
   - '0'
 spawnInvulnerabilitySeconds: '2'
 templateName: crow
 tier: '2'
+xpMultiplier: '3'
diff --git config_181114_114/Units/12 - Lowlands (Ruins) - Fantasy(Common)/BOS2_gridboss.txt config_181128_2048/Units/12 - Lowlands (Ruins) - Fantasy(Common)/BOS2_gridboss.txt
index 3308fe6..3bf9471 100644
--- config_181114_114/Units/12 - Lowlands (Ruins) - Fantasy(Common)/BOS2_gridboss.txt	
+++ config_181128_2048/Units/12 - Lowlands (Ruins) - Fantasy(Common)/BOS2_gridboss.txt	
@@ -1,7 +1,7 @@
-art: EnemyGuardTurret
-artScale: '1'
+art: EnemyGuardTurretQuest
+artScale: '1.5'
 bankSmoothing: '10000'
 colliderRadius: '.8'
 colliderX: '0'
 colliderY: '0'
 energyRegenRate: '0'
diff --git config_181114_114/Units/23 - Midlands (Rural) - Water_Aquatic/SLO2_squid.txt config_181128_2048/Units/23 - Midlands (Rural) - Water_Aquatic/SLO2_squid.txt
index 7867a4e..9d74c30 100644
--- config_181114_114/Units/23 - Midlands (Rural) - Water_Aquatic/SLO2_squid.txt	
+++ config_181128_2048/Units/23 - Midlands (Rural) - Water_Aquatic/SLO2_squid.txt	
@@ -1,7 +1,7 @@
-art: EnemyDarkSquid
-artScale: '1'
+art: EnemyKraken
+artScale: '0.5'
 colliderHeight: '1.4'
 colliderWidth: '0.4'
 colliderX: '0'
 colliderY: '0'
 elementSusceptibilityIds:
diff --git config_181114_114/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain02.txt config_181128_2048/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain02.txt
index 949251c..75094f3 100644
--- config_181114_114/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain02.txt	
+++ config_181128_2048/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain02.txt	
@@ -49,8 +49,9 @@ maxEnergyPoints: '1'
 maxHitPoints: '20'
 maxSpeed: '8'
 maxTurnRate: '90'
 minSpeed: '0.6'
 showStats: never
+spawnInvulnerabilitySeconds: '6'
 templateName: bosstrain02
 tier: '6'
 xpMultiplier: '0'
diff --git config_181114_114/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain03.txt config_181128_2048/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain03.txt
index a03e55c..62d656d 100644
--- config_181114_114/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain03.txt	
+++ config_181128_2048/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain03.txt	
@@ -53,8 +53,9 @@ maxEnergyPoints: '1'
 maxHitPoints: '15'
 maxSpeed: '8'
 maxTurnRate: '90'
 minSpeed: '0.6'
 showStats: never
+spawnInvulnerabilitySeconds: '6'
 templateName: bosstrain03
 tier: '6'
 xpMultiplier: '0'
diff --git config_181114_114/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain04.txt config_181128_2048/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain04.txt
index 2310192..6563947 100644
--- config_181114_114/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain04.txt	
+++ config_181128_2048/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain04.txt	
@@ -49,8 +49,9 @@ maxEnergyPoints: '1'
 maxHitPoints: '20'
 maxSpeed: '8'
 maxTurnRate: '90'
 minSpeed: '0.6'
 showStats: never
+spawnInvulnerabilitySeconds: '6'
 templateName: bosstrain04
 tier: '6'
 xpMultiplier: '0'
diff --git config_181114_114/Units/41 - Mountains (City) - SpaceTravel/SLO3_lightcycle.txt config_181128_2048/Units/41 - Mountains (City) - SpaceTravel/SLO3_lightcycle.txt
index 81f31d5..2bbb9b9 100644
--- config_181114_114/Units/41 - Mountains (City) - SpaceTravel/SLO3_lightcycle.txt	
+++ config_181128_2048/Units/41 - Mountains (City) - SpaceTravel/SLO3_lightcycle.txt	
@@ -13,27 +13,27 @@ gunMounts:
   mountName: lightcycleFireTrailMount
   offset:
   - '0'
   - '-0.2'
   sfx:
-    pitch: '3'
+    pitch: '1.5'
     sound: Enemy Laser Loop3
   slewRate: '0'
 gunTypes:
 - bulletPrefab: octagonBullet
   bulletSize: '2.0'
-  burst: '8'
+  burst: '12'
   cooldown: '0'
-  damage: '1'
+  damage: '0.6'
   lifetime: '5'
   name: lightcycleFireTrailGun
-  rof: '5'
+  rof: '10'
   speed: '0.0'
   spread: '0'
 healthRegenRate: '0'
 maxEnergyPoints: '1'
-maxHitPoints: '20'
+maxHitPoints: '15'
 maxSpeed: '0'
 maxTurnRate: '360'
 minSpeed: '0'
 particlePositions:
 - name: darkSmokeSlow
diff --git config_181114_114/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet.txt config_181128_2048/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet.txt
index 72fd483..c1b4021 100644
--- config_181114_114/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet.txt	
+++ config_181128_2048/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet.txt	
@@ -3,136 +3,10 @@ artScale: '1'
 bankSmoothing: '10000'
 colliderRadius: '0.6'
 colliderX: '0'
 colliderY: '0'
 energyRegenRate: '0'
-gunMounts:
-- fireMode: SprinklerTurnback
-  firingArc: '0'
-  flashOffset: '3.5'
-  gunTypeConfig:
-    bulletPrefab: ringBullet
-    bulletSize: '4'
-    burst: '2000000'
-    cooldown: '2'
-    damage: '0.5'
-    lifetime: '0.25'
-    multi: '1'
-    multiSpread: '0'
-    name: hammer
-    rof: '10'
-    speed: '0'
-    spread: '0'
-  mountAngle: '0'
-  mountName: main
-  sfx:
-    sound: Enemy Laser Loop5
-  slewRate: '0'
-  sprinklerFlyback: 'true'
-  sprinklerIncrementAngle: '18'
-  sprinklerStartAngle: '0'
-  sprinklerTurnbackAngle: '5000000'
-- fireMode: SprinklerTurnback
-  firingArc: '0'
-  flashOffset: '2'
-  gunTypeConfig:
-    bulletPrefab: ringBullet
-    bulletSize: '1'
-    burst: '1'
-    cooldown: '200000'
-    damage: '0.25'
-    lifetime: '0.25'
-    multi: '1'
-    multiSpread: '0'
-    name: hammer
-    rof: '10'
-    speed: '0'
-    spread: '0'
-  mountAngle: '0'
-  mountName: main2
-  sfx:
-    sound: 'null'
-  slewRate: '0'
-  sprinklerFlyback: 'true'
-  sprinklerIncrementAngle: '18'
-  sprinklerStartAngle: '0'
-  sprinklerTurnbackAngle: '5000000'
-- fireMode: SprinklerTurnback
-  firingArc: '0'
-  flashOffset: '1.5'
-  gunTypeConfig:
-    bulletPrefab: ringBullet
-    bulletSize: '1'
-    burst: '1'
-    cooldown: '200000'
-    damage: '0.25'
-    lifetime: '0.25'
-    multi: '1'
-    multiSpread: '0'
-    name: hammer
-    rof: '10'
-    speed: '0'
-    spread: '0'
-  mountAngle: '0'
-  mountName: main3
-  sfx:
-    sound: 'null'
-  slewRate: '0'
-  sprinklerFlyback: 'true'
-  sprinklerIncrementAngle: '18'
-  sprinklerStartAngle: '0'
-  sprinklerTurnbackAngle: '5000000'
-- fireMode: SprinklerTurnback
-  firingArc: '0'
-  flashOffset: '1'
-  gunTypeConfig:
-    bulletPrefab: ringBullet
-    bulletSize: '1'
-    burst: '1'
-    cooldown: '200000'
-    damage: '0.25'
-    lifetime: '0.25'
-    multi: '1'
-    multiSpread: '0'
-    name: hammer
-    rof: '10'
-    speed: '0'
-    spread: '0'
-  mountAngle: '0'
-  mountName: main4
-  sfx:
-    sound: 'null'
-  slewRate: '0'
-  sprinklerFlyback: 'true'
-  sprinklerIncrementAngle: '18'
-  sprinklerStartAngle: '0'
-  sprinklerTurnbackAngle: '5000000'
-- fireMode: SprinklerTurnback
-  firingArc: '0'
-  flashOffset: '1.5'
-  gunTypeConfig:
-    bulletPrefab: ringBullet
-    bulletSize: '1'
-    burst: '1'
-    cooldown: '200000'
-    damage: '0.25'
-    lifetime: '0.25'
-    multi: '1'
-    multiSpread: '0'
-    name: hammer
-    rof: '10'
-    speed: '0'
-    spread: '0'
-  mountAngle: '0'
-  mountName: main5
-  sfx:
-    sound: 'null'
-  slewRate: '0'
-  sprinklerFlyback: 'true'
-  sprinklerIncrementAngle: '18'
-  sprinklerStartAngle: '0'
-  sprinklerTurnbackAngle: '5000000'
 hashOverride: '6001'
 healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '10'
 maxSpeed: '5'
diff --git config_181114_114/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet2.txt config_181128_2048/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet2.txt
index f127157..92d54d6 100644
--- config_181114_114/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet2.txt	
+++ config_181128_2048/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet2.txt	
@@ -3,104 +3,10 @@ artScale: '1'
 bankSmoothing: '10000'
 colliderRadius: '1'
 colliderX: '0'
 colliderY: '0'
 energyRegenRate: '0'
-gunMounts:
-- fireMode: SprinklerTurnback
-  firingArc: '0'
-  flashOffset: '6'
-  gunTypeConfig:
-    bulletPrefab: ringBullet
-    bulletSize: '4'
-    burst: '2000000'
-    cooldown: '2'
-    damage: '0.5'
-    lifetime: '0.5'
-    multi: '1'
-    multiSpread: '0'
-    name: hammer
-    rof: '10'
-    speed: '0'
-    spread: '0'
-  mountAngle: '0'
-  mountName: main
-  sfx:
-    sound: Enemy Laser Loop5
-  slewRate: '0'
-  sprinklerFlyback: 'true'
-  sprinklerIncrementAngle: '5'
-  sprinklerStartAngle: '0'
-  sprinklerTurnbackAngle: '5000000'
-- fireMode: SprinklerTurnback
-  firingArc: '0'
-  flashOffset: '4'
-  gunTypeConfig:
-    bulletPrefab: ringBullet
-    bulletSize: '4'
-    burst: '2000000'
-    cooldown: '2'
-    damage: '0.5'
-    lifetime: '0.5'
-    multi: '1'
-    multiSpread: '0'
-    name: hammer
-    rof: '10'
-    speed: '0'
-    spread: '0'
-  mountAngle: '0'
-  mountName: main2
-  sfx:
-    sound: 'null'
-  slewRate: '0'
-  sprinklerFlyback: 'true'
-  sprinklerIncrementAngle: '-6'
-  sprinklerStartAngle: '0'
-  sprinklerTurnbackAngle: '-5000000'
-- fireMode: SprinklerTurnback
-  firingArc: '0'
-  flashOffset: '2'
-  gunTypeConfig:
-    bulletPrefab: ringBullet
-    bulletSize: '4'
-    burst: '2000000'
-    cooldown: '2'
-    damage: '0.5'
-    lifetime: '0.5'
-    multi: '1'
-    multiSpread: '0'
-    name: hammer
-    rof: '10'
-    speed: '0'
-    spread: '0'
-  mountAngle: '0'
-  mountName: main3
-  sfx:
-    sound: 'null'
-  slewRate: '0'
-  sprinklerFlyback: 'true'
-  sprinklerIncrementAngle: '6.5'
-  sprinklerStartAngle: '0'
-  sprinklerTurnbackAngle: '5000000'
-- fireMode: JustShootDammit
-  firingArc: '0'
-  flashOffset: '1'
-  gunTypeConfig:
-    bulletSize: '2'
-    burst: '1'
-    cooldown: '3'
-    damage: '1'
-    lifetime: '5'
-    multi: '12'
-    multiSpread: '124'
-    name: hammer
-    rof: '1'
-    speed: '2'
-    spread: '0'
-  mountAngle: '0'
-  mountName: main4
-  slewRate: '0'
 healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '50'
 maxSpeed: '2'
 maxTurnRate: '45'
diff --git config_181128_2048/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet2_hammer.txt config_181128_2048/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet2_hammer.txt
new file mode 100644
index 0000000..adf837d
--- /dev/null
+++ config_181128_2048/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet2_hammer.txt	
@@ -0,0 +1,208 @@
+art: '!EnemyInvisible'
+artScale: '1'
+colliderRadius: '0'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: planeExplosionEmpty
+gunMounts:
+- fireMode: SprinklerTurnback
+  firingArc: '0'
+  flashOffset: '6'
+  gunTypeConfig:
+    bulletPrefab: ringBullet
+    bulletSize: '4'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.5'
+    lifetime: '0.5'
+    multi: '1'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main
+  sfx:
+    sound: Enemy Laser Loop5
+  slewRate: '0'
+  sprinklerFlyback: 'true'
+  sprinklerIncrementAngle: '5'
+  sprinklerStartAngle: '0'
+  sprinklerTurnbackAngle: '5000000'
+- fireMode: SprinklerTurnback
+  firingArc: '0'
+  flashOffset: '3'
+  gunTypeConfig:
+    bulletPalette: all_color
+    bulletPrefab: supershortlightningBullet
+    bulletSize: '0.9'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.0'
+    lifetime: '0.25'
+    multi: '1'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main_2
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerFlyback: 'true'
+  sprinklerIncrementAngle: '5'
+  sprinklerStartAngle: '0'
+  sprinklerTurnbackAngle: '5000000'
+- fireMode: SprinklerTurnback
+  firingArc: '0'
+  flashOffset: '4'
+  gunTypeConfig:
+    bulletPrefab: ringBullet
+    bulletSize: '4'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.5'
+    lifetime: '0.5'
+    multi: '1'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main2
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerFlyback: 'true'
+  sprinklerIncrementAngle: '-6'
+  sprinklerStartAngle: '0'
+  sprinklerTurnbackAngle: '-5000000'
+- fireMode: SprinklerTurnback
+  firingArc: '0'
+  flashOffset: '2'
+  gunTypeConfig:
+    bulletPalette: all_color
+    bulletPrefab: supershortlightningBullet
+    bulletSize: '0.6'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.0'
+    lifetime: '0.25'
+    multi: '1'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main2_2
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerFlyback: 'true'
+  sprinklerIncrementAngle: '-6'
+  sprinklerStartAngle: '0'
+  sprinklerTurnbackAngle: '-5000000'
+- fireMode: SprinklerTurnback
+  firingArc: '0'
+  flashOffset: '2'
+  gunTypeConfig:
+    bulletPrefab: ringBullet
+    bulletSize: '4'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.5'
+    lifetime: '0.5'
+    multi: '1'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main3
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerFlyback: 'true'
+  sprinklerIncrementAngle: '6.5'
+  sprinklerStartAngle: '0'
+  sprinklerTurnbackAngle: '5000000'
+- fireMode: SprinklerTurnback
+  firingArc: '0'
+  flashOffset: '1'
+  gunTypeConfig:
+    bulletPalette: all_color
+    bulletPrefab: supershortlightningBullet
+    bulletSize: '0.3'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.0'
+    lifetime: '0.25'
+    multi: '1'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main3_2
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerFlyback: 'true'
+  sprinklerIncrementAngle: '6.5'
+  sprinklerStartAngle: '0'
+  sprinklerTurnbackAngle: '5000000'
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '1'
+  gunTypeConfig:
+    bulletSize: '2'
+    burst: '1'
+    cooldown: '3'
+    damage: '1'
+    lifetime: '5'
+    multi: '12'
+    multiSpread: '124'
+    name: hammer
+    rof: '1'
+    speed: '2'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main4
+  slewRate: '0'
+healthRegenRate: '0'
+maxEnergyPoints: '1'
+maxHitPoints: '100000'
+maxSpeed: '10'
+maxTurnRate: '0'
+minSpeed: '10'
+particlePositions:
+- name: darkSmokeSlow
+  pos:
+  - '0.02'
+  - '-1.6'
+  - '-0.19'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
+- name: darkSmokeSlow
+  pos:
+  - '0.02'
+  - '-1.5'
+  - '-0.29'
+  rot:
+  - '0'
+  - '0'
+  - '0'
+showStats: never
+templateName: hammerplanet2_hammer
+tier: '8'
+xpMultiplier: '0'
diff --git config_181128_2048/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet_hammer.txt config_181128_2048/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet_hammer.txt
new file mode 100644
index 0000000..12f2ba4
--- /dev/null
+++ config_181128_2048/Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet_hammer.txt	
@@ -0,0 +1,79 @@
+art: '!EnemyInvisible'
+artScale: '1'
+colliderRadius: '0'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: planeExplosionEmpty
+gunMounts:
+- fireMode: SprinklerTurnback
+  firingArc: '0'
+  flashOffset: '3.5'
+  gunTypeConfig:
+    bulletPrefab: ringBullet
+    bulletSize: '4'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.5'
+    lifetime: '0.25'
+    multi: '1'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main
+  sfx:
+    sound: Enemy Laser Loop5
+  slewRate: '0'
+  sprinklerFlyback: 'true'
+  sprinklerIncrementAngle: '18'
+  sprinklerStartAngle: '0'
+  sprinklerTurnbackAngle: '5000000'
+- fireMode: SprinklerTurnback
+  firingArc: '0'
+  flashOffset: '1.75'
+  gunTypeConfig:
+    bulletPalette: all_color
+    bulletPrefab: supershortlightningBullet
+    bulletSize: '0.38'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.0'
+    lifetime: '0.25'
+    multi: '1'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main4
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerFlyback: 'true'
+  sprinklerIncrementAngle: '18'
+  sprinklerStartAngle: '0'
+  sprinklerTurnbackAngle: '5000000'
+healthRegenRate: '0'
+maxEnergyPoints: '1'
+maxHitPoints: '10'
+maxSpeed: '10'
+maxTurnRate: '0'
+minSpeed: '10'
+particlePositions:
+- name: darkSmokeSlow
+  pos:
+  - '0'
+  - '-0.31'
+  - '-0.452'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
+showStats: never
+templateName: hammerplanet_hammer
+tier: '8'
+xpMultiplier: '0'
diff --git config_181114_114/Units/60D- Snake Dungeon/zzz_snakedungeondestroyablewall.txt config_181128_2048/Units/60D- Snake Dungeon/zzz_snakedungeondestroyablewall.txt
index 51029c9..3bfe207 100644
--- config_181114_114/Units/60D- Snake Dungeon/zzz_snakedungeondestroyablewall.txt	
+++ config_181128_2048/Units/60D- Snake Dungeon/zzz_snakedungeondestroyablewall.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: snakedungeondestroyablewall
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/60D- Snake Dungeon/zzz_snakedungeondestroyablewallstrong.txt config_181128_2048/Units/60D- Snake Dungeon/zzz_snakedungeondestroyablewallstrong.txt
index 3dc3a64..26f3ff8 100644
--- config_181114_114/Units/60D- Snake Dungeon/zzz_snakedungeondestroyablewallstrong.txt	
+++ config_181128_2048/Units/60D- Snake Dungeon/zzz_snakedungeondestroyablewallstrong.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '45'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: snakedungeondestroyablewallstrong
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/61D - Ice Dungeon/zzz_icedungeondestroyablewall.txt config_181128_2048/Units/61D - Ice Dungeon/zzz_icedungeondestroyablewall.txt
index 6d42755..f240537 100644
--- config_181114_114/Units/61D - Ice Dungeon/zzz_icedungeondestroyablewall.txt	
+++ config_181128_2048/Units/61D - Ice Dungeon/zzz_icedungeondestroyablewall.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '100'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: icedungeondestroyablewall
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/61D - Pacifist Dungeon/BOS_bigspiraldestroyablewall.txt config_181128_2048/Units/61D - Pacifist Dungeon/BOS_bigspiraldestroyablewall.txt
index 95ac8a4..e7ac7b0 100644
--- config_181114_114/Units/61D - Pacifist Dungeon/BOS_bigspiraldestroyablewall.txt	
+++ config_181128_2048/Units/61D - Pacifist Dungeon/BOS_bigspiraldestroyablewall.txt	
@@ -12,10 +12,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '10'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: bigspiraldestroyablewall
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/61D - Pacifist Dungeon/BOS_bigspiralindestructiblewall.txt config_181128_2048/Units/61D - Pacifist Dungeon/BOS_bigspiralindestructiblewall.txt
index 23fddd9..27c2ffb 100644
--- config_181114_114/Units/61D - Pacifist Dungeon/BOS_bigspiralindestructiblewall.txt	
+++ config_181128_2048/Units/61D - Pacifist Dungeon/BOS_bigspiralindestructiblewall.txt	
@@ -11,9 +11,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '30'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '3000'
 templateName: bigspiralindestructiblewall
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/61D - Pacifist Dungeon/zzz_fairygate.txt config_181128_2048/Units/61D - Pacifist Dungeon/zzz_fairygate.txt
index 4faebd7..5946a52 100644
--- config_181114_114/Units/61D - Pacifist Dungeon/zzz_fairygate.txt	
+++ config_181128_2048/Units/61D - Pacifist Dungeon/zzz_fairygate.txt	
@@ -10,9 +10,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '999999999'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '100000'
 templateName: fairygate
 tier: '0'
 xpMultiplier: '0'
diff --git config_181114_114/Units/62D - Fire Dungeon/zzz_prisoncage.txt config_181128_2048/Units/62D - Fire Dungeon/zzz_prisoncage.txt
index 63dff8d..a85c312 100644
--- config_181114_114/Units/62D - Fire Dungeon/zzz_prisoncage.txt	
+++ config_181128_2048/Units/62D - Fire Dungeon/zzz_prisoncage.txt	
@@ -10,9 +10,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '10'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: always
+showStats: never
 spawnInvulnerabilitySeconds: '0'
 templateName: prisoncage
 tier: '10'
 xpMultiplier: '0'
diff --git config_181128_2048/Units/63D - Bomb Dungeon/SLO1_flakblimpbig.txt config_181128_2048/Units/63D - Bomb Dungeon/SLO1_flakblimpbig.txt
new file mode 100644
index 0000000..5d540ce
--- /dev/null
+++ config_181128_2048/Units/63D - Bomb Dungeon/SLO1_flakblimpbig.txt	
@@ -0,0 +1,17 @@
+art: EnemyCharlie_Prefab
+artScale: '3'
+colliderHeight: '1.4'
+colliderWidth: '0.8'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+healthRegenRate: '0'
+maxEnergyPoints: '1'
+maxHitPoints: '30'
+maxSpeed: '0.6'
+maxTurnRate: '180'
+minSpeed: '0.3'
+spawnInvulnerabilitySeconds: '2'
+templateName: flakblimpbig
+tier: '2'
+xpMultiplier: '3.6'
diff --git config_181114_114/Units/63D - Bomb Dungeon/SLO1_flakblimpexploderstrong.txt config_181128_2048/Units/63D - Bomb Dungeon/SLO1_flakblimpexploderstrong.txt
index 4275559..eae7920 100644
--- config_181114_114/Units/63D - Bomb Dungeon/SLO1_flakblimpexploderstrong.txt	
+++ config_181128_2048/Units/63D - Bomb Dungeon/SLO1_flakblimpexploderstrong.txt	
@@ -1,7 +1,7 @@
 art: EnemyRoboMine
-artScale: '1'
+artScale: '1.3'
 colliderRadius: '0.3'
 colliderX: '0'
 colliderY: '0'
 energyRegenRate: '0'
 explosionPrefab: Explosion_Hazard_Mild
@@ -15,11 +15,11 @@ gunMounts:
   slewRate: '0'
 gunTypes:
 - bulletPrefab: leisurelyBullet
   burst: '4'
   cooldown: '3'
-  damage: '1'
+  damage: '1.3'
   lifetime: '1.5'
   multi: '12'
   multiSpread: '30'
   name: flakblimpGrenadeLauncherstrong
   rof: '1'
diff --git config_181114_114/Units/63D - Bomb Dungeon/zzz_bombdungeondestroyablewall.txt config_181128_2048/Units/63D - Bomb Dungeon/zzz_bombdungeondestroyablewall.txt
index 2e548d1..6ed17a1 100644
--- config_181114_114/Units/63D - Bomb Dungeon/zzz_bombdungeondestroyablewall.txt	
+++ config_181128_2048/Units/63D - Bomb Dungeon/zzz_bombdungeondestroyablewall.txt	
@@ -12,10 +12,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: bombdungeondestroyablewall
 tier: '2'
 xpMultiplier: '0'
diff --git config_181114_114/Units/63D - Bomb Dungeon/zzz_bombdungeondestroyablewallstrong.txt config_181128_2048/Units/63D - Bomb Dungeon/zzz_bombdungeondestroyablewallstrong.txt
index 314cd99..17b0b24 100644
--- config_181114_114/Units/63D - Bomb Dungeon/zzz_bombdungeondestroyablewallstrong.txt	
+++ config_181128_2048/Units/63D - Bomb Dungeon/zzz_bombdungeondestroyablewallstrong.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '60'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: bombdungeondestroyablewallstrong
 tier: '2'
 xpMultiplier: '0'
diff --git config_181114_114/Units/63D - Bomb Dungeon/zzz_bombdungeontreasureBIG.txt config_181128_2048/Units/63D - Bomb Dungeon/zzz_bombdungeontreasureBIG.txt
index a452414..82581a9 100644
--- config_181114_114/Units/63D - Bomb Dungeon/zzz_bombdungeontreasureBIG.txt	
+++ config_181128_2048/Units/63D - Bomb Dungeon/zzz_bombdungeontreasureBIG.txt	
@@ -35,10 +35,11 @@ isVisibleInRadar: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '10000'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: always
 showStats: never
 spawnInvulnerabilitySeconds: '0'
 templateName: bombdungeontreasureBIG
 tier: '2'
 xpMultiplier: '0'
diff --git config_181114_114/Units/64D - Obstacle Dungeon/SLO_mazedrawer.txt config_181128_2048/Units/64D - Obstacle Dungeon/SLO_mazedrawer.txt
index b85e018..a25c7f3 100644
--- config_181114_114/Units/64D - Obstacle Dungeon/SLO_mazedrawer.txt	
+++ config_181128_2048/Units/64D - Obstacle Dungeon/SLO_mazedrawer.txt	
@@ -19,11 +19,11 @@ gunMounts:
   flashOffset: '1'
   gunTemplateName: mazedrawerGun3shot2
   mountAngle: '0'
   mountName: 3shotrotate
   sfx:
-    sound: Enemy Laser Loop2
+    sound: Enemy Laser Loop3
   slewRate: '0'
 - fireMode: JustShootDammit
   firingArc: '0'
   flashOffset: '1'
   gunTemplateName: mazedrawerGun5shot1
@@ -36,28 +36,28 @@ gunMounts:
   gunTemplateName: mazedrawerGun5shot2
   mountAngle: '0'
   mountName: 5shotrotate
   slewRate: '0'
 gunTypes:
-- burst: '10'
-  cooldown: '0.5'
-  damage: '1.5'
+- burst: '100000000'
+  cooldown: '0'
+  damage: '0.5'
   lifetime: '5.5'
   multi: '3'
   multiSpread: '120'
   name: mazedrawerGun3shot1
-  rof: '1.5'
+  rof: '4.5'
   speed: '1.5'
   spread: '0'
-- burst: '16'
-  cooldown: '0.3'
-  damage: '1.5'
+- burst: '160000000'
+  cooldown: '0'
+  damage: '0.5'
   lifetime: '5.5'
   multi: '3'
   multiSpread: '120'
   name: mazedrawerGun3shot2
-  rof: '4'
+  rof: '12'
   speed: '1.5'
   spread: '0'
 - burst: '10'
   cooldown: '0.5'
   damage: '1.5'
diff --git config_181114_114/Units/64D - Obstacle Dungeon/zzz_obstacledungeondestroyablewall.txt config_181128_2048/Units/64D - Obstacle Dungeon/zzz_obstacledungeondestroyablewall.txt
index 525b3ab..3f66126 100644
--- config_181114_114/Units/64D - Obstacle Dungeon/zzz_obstacledungeondestroyablewall.txt	
+++ config_181128_2048/Units/64D - Obstacle Dungeon/zzz_obstacledungeondestroyablewall.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: obstacledungeondestroyablewall
 tier: '3'
 xpMultiplier: '0'
diff --git config_181114_114/Units/64D - Obstacle Dungeon/zzz_obstacledungeondestroyablewallstrong.txt config_181128_2048/Units/64D - Obstacle Dungeon/zzz_obstacledungeondestroyablewallstrong.txt
index 0c935a2..5b5dd70 100644
--- config_181114_114/Units/64D - Obstacle Dungeon/zzz_obstacledungeondestroyablewallstrong.txt	
+++ config_181128_2048/Units/64D - Obstacle Dungeon/zzz_obstacledungeondestroyablewallstrong.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '60'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: obstacledungeondestroyablewallstrong
 tier: '3'
 xpMultiplier: '0'
diff --git config_181114_114/Units/64D - Obstacle Dungeon/zzz_obstacledungeontreasureBIG.txt config_181128_2048/Units/64D - Obstacle Dungeon/zzz_obstacledungeontreasureBIG.txt
index 5959f88..3f6b589 100644
--- config_181114_114/Units/64D - Obstacle Dungeon/zzz_obstacledungeontreasureBIG.txt	
+++ config_181128_2048/Units/64D - Obstacle Dungeon/zzz_obstacledungeontreasureBIG.txt	
@@ -35,10 +35,11 @@ isVisibleInRadar: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '10000'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: always
 showStats: never
 spawnInvulnerabilitySeconds: '0'
 templateName: obstacledungeontreasureBIG
 tier: '3'
 xpMultiplier: '0'
diff --git config_181114_114/Units/65D - Grindhouse Dungeon/zzz_grindhousedungeondestroyablewall.txt config_181128_2048/Units/65D - Grindhouse Dungeon/zzz_grindhousedungeondestroyablewall.txt
index d3be286..532f11a 100644
--- config_181114_114/Units/65D - Grindhouse Dungeon/zzz_grindhousedungeondestroyablewall.txt	
+++ config_181128_2048/Units/65D - Grindhouse Dungeon/zzz_grindhousedungeondestroyablewall.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: grindhousedungeondestroyablewall
 tier: '6'
 xpMultiplier: '0'
diff --git config_181114_114/Units/65D - Grindhouse Dungeon/zzz_grindhousedungeondestroyablewallstrong.txt config_181128_2048/Units/65D - Grindhouse Dungeon/zzz_grindhousedungeondestroyablewallstrong.txt
index 092c4f9..ea4e8b9 100644
--- config_181114_114/Units/65D - Grindhouse Dungeon/zzz_grindhousedungeondestroyablewallstrong.txt	
+++ config_181128_2048/Units/65D - Grindhouse Dungeon/zzz_grindhousedungeondestroyablewallstrong.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: grindhousedungeondestroyablewallstrong
 tier: '6'
 xpMultiplier: '0'
diff --git config_181114_114/Units/66D - Space Dungeon/zzz_spacedungeondestroyablewall.txt config_181128_2048/Units/66D - Space Dungeon/zzz_spacedungeondestroyablewall.txt
index 1c7f3ce..c0eae4d 100644
--- config_181114_114/Units/66D - Space Dungeon/zzz_spacedungeondestroyablewall.txt	
+++ config_181128_2048/Units/66D - Space Dungeon/zzz_spacedungeondestroyablewall.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: spacedungeondestroyablewall
 tier: '3'
 xpMultiplier: '0'
diff --git config_181114_114/Units/67D - Thief Dungeon/BOS_thiefchesttreasure.txt config_181128_2048/Units/67D - Thief Dungeon/BOS_thiefchesttreasure.txt
index 05a7a13..c32292a 100644
--- config_181114_114/Units/67D - Thief Dungeon/BOS_thiefchesttreasure.txt	
+++ config_181128_2048/Units/67D - Thief Dungeon/BOS_thiefchesttreasure.txt	
@@ -3,10 +3,11 @@ artScale: '1.5'
 cameraZoomMultiplier: '1.25'
 cameraZoomRadius: '24.00'
 colliderRadius: '1'
 colliderX: '0'
 colliderY: '0'
+damageThreshold: '0'
 effectImmunities:
 - Confuse
 energyRegenRate: '0'
 explosionPrefab: ExplosionBig_NoDebris
 hashOverride: '7797'
diff --git config_181114_114/Units/68D - Eyeball Dungeon/zzz_eyedungeondestroyablewall.txt config_181128_2048/Units/68D - Eyeball Dungeon/zzz_eyedungeondestroyablewall.txt
index a26f0d1..4a3f3e0 100644
--- config_181114_114/Units/68D - Eyeball Dungeon/zzz_eyedungeondestroyablewall.txt	
+++ config_181128_2048/Units/68D - Eyeball Dungeon/zzz_eyedungeondestroyablewall.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: eyedungeondestroyablewall
 tier: '9'
 xpMultiplier: '0'
diff --git config_181114_114/Units/68D - Eyeball Dungeon/zzz_eyedungeondestroyablewallstrong.txt config_181128_2048/Units/68D - Eyeball Dungeon/zzz_eyedungeondestroyablewallstrong.txt
index 3bbb516..a4e9694 100644
--- config_181114_114/Units/68D - Eyeball Dungeon/zzz_eyedungeondestroyablewallstrong.txt	
+++ config_181128_2048/Units/68D - Eyeball Dungeon/zzz_eyedungeondestroyablewallstrong.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: eyedungeondestroyablewallstrong
 tier: '9'
 xpMultiplier: '0'
diff --git config_181114_114/Units/69D - Temple Dungeon/zzz_templedungeondestroyablewall.txt config_181128_2048/Units/69D - Temple Dungeon/zzz_templedungeondestroyablewall.txt
index ede6191..abe5044 100644
--- config_181114_114/Units/69D - Temple Dungeon/zzz_templedungeondestroyablewall.txt	
+++ config_181128_2048/Units/69D - Temple Dungeon/zzz_templedungeondestroyablewall.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: templedungeondestroyablewall
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/69D - Temple Dungeon/zzz_templedungeondestroyablewallstrong.txt config_181128_2048/Units/69D - Temple Dungeon/zzz_templedungeondestroyablewallstrong.txt
index 3a0bcb1..4820026 100644
--- config_181114_114/Units/69D - Temple Dungeon/zzz_templedungeondestroyablewallstrong.txt	
+++ config_181128_2048/Units/69D - Temple Dungeon/zzz_templedungeondestroyablewallstrong.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '60'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: templedungeondestroyablewallstrong
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/71D - Escort Mission Dungeon/xxx_escortlasergate.txt config_181128_2048/Units/71D - Escort Mission Dungeon/xxx_escortlasergate.txt
index 8db1ed0..a5eb180 100644
--- config_181114_114/Units/71D - Escort Mission Dungeon/xxx_escortlasergate.txt	
+++ config_181128_2048/Units/71D - Escort Mission Dungeon/xxx_escortlasergate.txt	
@@ -14,41 +14,48 @@ gunMounts:
   mountAngle: '-90'
   mountName: main
   offset:
   - '1'
   - '0'
+  sfx:
+    sound: Enemy Laser Loop5
+    volume: '0.5'
   slewRate: '0'
 - fireMode: JustShootDammit
   firingArc: '0'
   flashOffset: '0'
   gunTemplateName: escortlasergateGun
   mountAngle: '90'
   mountName: main2
   offset:
   - '-1'
   - '0.5'
+  sfx:
+    sound: 'null'
   slewRate: '0'
   syncOffset: '0.0'
   syncTo: main
 - fireMode: JustShootDammit
   firingArc: '0'
   flashOffset: '0'
   gunTemplateName: escortlasergateGun
   mountAngle: '90'
   mountName: main3
   offset:
   - '-1'
   - '-0.5'
+  sfx:
+    sound: 'null'
   slewRate: '0'
   syncOffset: '0.0'
   syncTo: main
 gunTypes:
 - bulletPrefab: laserBullet
-  bulletSize: '1'
+  bulletSize: '2'
   burst: '10000'
   cooldown: '0'
-  damage: '0.1'
+  damage: '0.25'
   lifetime: '1.5'
   multi: '6'
   multiOffset:
   - '1.5'
   - '0'
diff --git config_181114_114/Units/71D - Escort Mission Dungeon/unit_escortwallgate.txt config_181128_2048/Units/71D - Escort Mission Dungeon/zzz_escort_wallgate.txt
similarity index 92%
rename from config_181114_114/Units/71D - Escort Mission Dungeon/unit_escortwallgate.txt
rename to config_181128_2048/Units/71D - Escort Mission Dungeon/zzz_escort_wallgate.txt
index 86c8799..744d286 100644
--- config_181114_114/Units/71D - Escort Mission Dungeon/unit_escortwallgate.txt	
+++ config_181128_2048/Units/71D - Escort Mission Dungeon/zzz_escort_wallgate.txt	
@@ -12,8 +12,8 @@ maxEnergyPoints: '1'
 maxHitPoints: '999999999'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
 spawnInvulnerabilitySeconds: '0'
-templateName: escortwallgate
+templateName: escort_wallgate
 tier: '0'
 xpMultiplier: '0'
diff --git config_181114_114/Units/71D - Escort Mission Dungeon/zzz_escortdungeondestroyablewall.txt config_181128_2048/Units/71D - Escort Mission Dungeon/zzz_escortdungeondestroyablewall.txt
index d1fefbb..a94e4fa 100644
--- config_181114_114/Units/71D - Escort Mission Dungeon/zzz_escortdungeondestroyablewall.txt	
+++ config_181128_2048/Units/71D - Escort Mission Dungeon/zzz_escortdungeondestroyablewall.txt	
@@ -11,10 +11,11 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '200'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: escortdungeondestroyablewall
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/72D - Arena Dungeon 1/zzz_arenadungeontreasureBIG.txt config_181128_2048/Units/72D - Arena Dungeon 1/zzz_arenadungeontreasureBIG.txt
index 1cf9464..1573043 100644
--- config_181114_114/Units/72D - Arena Dungeon 1/zzz_arenadungeontreasureBIG.txt	
+++ config_181128_2048/Units/72D - Arena Dungeon 1/zzz_arenadungeontreasureBIG.txt	
@@ -35,10 +35,11 @@ isVisibleInRadar: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '10000'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: always
 showStats: never
 spawnInvulnerabilitySeconds: '0'
 templateName: arenadungeontreasureBIG
 tier: '5'
 xpMultiplier: '0'
diff --git config_181114_114/Units/73D - Arena Dungeon 2/unit_arena2wall1.txt config_181128_2048/Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall1.txt
similarity index 85%
rename from config_181114_114/Units/73D - Arena Dungeon 2/unit_arena2wall1.txt
rename to config_181128_2048/Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall1.txt
index e770849..1be6a11 100644
--- config_181114_114/Units/73D - Arena Dungeon 2/unit_arena2wall1.txt	
+++ config_181128_2048/Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall1.txt	
@@ -10,9 +10,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '20'
-templateName: arena2wall1
+templateName: arena2_destructiblewall1
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/73D - Arena Dungeon 2/unit_arena2wall3.txt config_181128_2048/Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall2.txt
similarity index 85%
rename from config_181114_114/Units/73D - Arena Dungeon 2/unit_arena2wall3.txt
rename to config_181128_2048/Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall2.txt
index b16a808..8254fa4 100644
--- config_181114_114/Units/73D - Arena Dungeon 2/unit_arena2wall3.txt	
+++ config_181128_2048/Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall2.txt	
@@ -10,9 +10,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '20'
-templateName: arena2wall3
+templateName: arena2_destructiblewall2
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/73D - Arena Dungeon 2/unit_arena2wall2.txt config_181128_2048/Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall3.txt
similarity index 85%
rename from config_181114_114/Units/73D - Arena Dungeon 2/unit_arena2wall2.txt
rename to config_181128_2048/Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall3.txt
index 851a5b7..716e162 100644
--- config_181114_114/Units/73D - Arena Dungeon 2/unit_arena2wall2.txt	
+++ config_181128_2048/Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall3.txt	
@@ -10,9 +10,10 @@ isWall: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '35'
 maxSpeed: '0.0'
 maxTurnRate: '0'
 minSpeed: '0.0'
+showName: never
 spawnInvulnerabilitySeconds: '20'
-templateName: arena2wall2
+templateName: arena2_destructiblewall3
 tier: '10'
 xpMultiplier: '0'
diff --git config_181114_114/Units/99D - Boss Dungeon/unit_meowzablocker.txt config_181128_2048/Units/99D - Boss Dungeon/unit_meowzablocker.txt
index 970e1b3..c60d2f5 100644
--- config_181114_114/Units/99D - Boss Dungeon/unit_meowzablocker.txt	
+++ config_181128_2048/Units/99D - Boss Dungeon/unit_meowzablocker.txt	
@@ -9,55 +9,62 @@ energyRegenRate: '0'
 explosionPrefab: ExplosionSmall
 gunMounts:
 - fireMode: Aimed
   firingArc: '360'
   flashOffset: '0.5'
-  gunTemplateName: meowzablockergun
+  gunTemplateName: meowzablockergun1
   mountAngle: '0'
   mountName: main
   slewRate: '180'
 - fireMode: JustShootDammit
   firingArc: '360'
-  flashOffset: '0.5'
-  gunTemplateName: meowzablockerwallgun
+  flashOffset: '0'
+  gunTemplateName: meowzablockergun2
   mountAngle: '0'
-  mountName: wall
+  mountName: circle
   sfx:
-    pitch: '0.5'
-    sound: Enemy Laser Loop8
-    volume: '0.75'
+    sound: Enemy Shotgun Deadly
   slewRate: '0'
 gunTypes:
 - bulletPrefab: ringBullet
   burst: '100000'
   cooldown: '0'
   damage: '2'
+  effect: Burn
+  effectAmount: '5'
+  effectDamage: '1'
+  effectTime: '20'
   lifetime: '5'
-  multi: '1'
-  multiSpread: '0'
-  name: meowzablockergun
+  multi: '5'
+  multiSpread: '72'
+  name: meowzablockergun1
   rof: '0.7'
-  speed: '3'
+  speed: '6'
   spread: '0'
 - bulletPrefab: laserBullet
-  bulletSize: '3'
-  burst: '100000'
-  cooldown: '0'
+  bulletSize: '1.5'
+  burst: '1'
+  cooldown: '12'
   damage: '2'
+  effect: Burn
+  effectAmount: '5'
+  effectDamage: '1'
+  effectTime: '20'
   isPiercing: 'true'
-  lifetime: '7'
-  multi: '2'
-  multiSpread: '180'
-  name: meowzablockerwallgun
-  rof: '7.5'
-  speed: '3.75'
+  lifetime: '16'
+  multi: '144'
+  multiSpread: '2.5'
+  name: meowzablockergun2
+  rof: '1'
+  speed: '1.5'
   spread: '0'
 healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '100000001'
 maxSpeed: '0'
 maxTurnRate: '360'
 minSpeed: '0'
-spawnInvulnerabilitySeconds: '0'
+showName: never
+spawnInvulnerabilitySeconds: '1000000'
 templateName: meowzablocker
-tier: '10'
+tier: '0'
 xpMultiplier: '0'
diff --git config_181128_2048/Units/99D - Boss Dungeon/unit_meowzalasergateWE.txt config_181128_2048/Units/99D - Boss Dungeon/unit_meowzalasergateWE.txt
new file mode 100644
index 0000000..162b2ef
--- /dev/null
+++ config_181128_2048/Units/99D - Boss Dungeon/unit_meowzalasergateWE.txt	
@@ -0,0 +1,136 @@
+art: '!EnemyInvisible'
+artScale: '1'
+colliderRadius: '0'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: planeExplosionEmpty
+gunMounts:
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '0'
+  gunTemplateName: meowzalasergateNSWarnGun
+  mountAngle: '0'
+  mountName: warning
+  offset:
+  - '0'
+  - '0'
+  sfx:
+    sound: Enemy Laser Loop5
+    volume: '0.5'
+  slewRate: '0'
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '0'
+  gunTemplateName: meowzalasergateNSWarnGun
+  mountAngle: '180'
+  mountName: warning2
+  offset:
+  - '0.9'
+  - '0'
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  syncOffset: '0'
+  syncTo: warning
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '0'
+  gunTemplateName: meowzalasergateNSWarnGun
+  mountAngle: '180'
+  mountName: warning3
+  offset:
+  - '-0.9'
+  - '0'
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  syncOffset: '0'
+  syncTo: warning
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '0'
+  gunTemplateName: meowzalasergateNSGun
+  mountAngle: '0'
+  mountName: main
+  offset:
+  - '0'
+  - '0'
+  sfx:
+    sound: Enemy Laser Loop5
+  slewRate: '0'
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '0'
+  gunTemplateName: meowzalasergateNSGun
+  mountAngle: '180'
+  mountName: main2
+  offset:
+  - '0.9'
+  - '0'
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  syncOffset: '0'
+  syncTo: main
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '0'
+  gunTemplateName: meowzalasergateNSGun
+  mountAngle: '180'
+  mountName: main3
+  offset:
+  - '-0.9'
+  - '0'
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  syncOffset: '0'
+  syncTo: main
+gunTypes:
+- bulletPalette: all_color
+  bulletPrefab: starBullet
+  bulletSize: '0.6'
+  burst: '240'
+  cooldown: '1000000'
+  damage: '0.0'
+  lifetime: '1.5'
+  multi: '6'
+  multiOffset:
+  - '0'
+  - '1.5'
+  multiSpread: '0'
+  name: meowzalasergateNSWarnGun
+  rof: '2'
+  speed: '1'
+  spread: '0'
+- bulletPrefab: starBullet
+  bulletSize: '2'
+  burst: '10000000'
+  cooldown: '0'
+  damage: '3'
+  effect: Burn
+  effectAmount: '10'
+  effectDamage: '1'
+  effectTime: '20'
+  lifetime: '1.5'
+  multi: '6'
+  multiOffset:
+  - '0'
+  - '1.5'
+  multiSpread: '0'
+  name: meowzalasergateNSGun
+  rof: '2'
+  speed: '1'
+  spread: '0'
+healthRegenRate: '0'
+isVisibleInRadar: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1000'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: meowzalasergateWE
+tier: '0'
+xpMultiplier: '0'
diff --git config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_33HGH_sniper/DQ_KS_33HGH_reward.txt config_181128_2048/Units/99D - Boss Dungeon/unit_meowzaportalmaker.txt
similarity index 52%
rename from config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_33HGH_sniper/DQ_KS_33HGH_reward.txt
rename to config_181128_2048/Units/99D - Boss Dungeon/unit_meowzaportalmaker.txt
index 762f12d..616a9be 100644
--- config_181114_114/Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_33HGH_sniper/DQ_KS_33HGH_reward.txt	
+++ config_181128_2048/Units/99D - Boss Dungeon/unit_meowzaportalmaker.txt	
@@ -1,21 +1,20 @@
-art: EnemyQuestTransparent
-artScale: '1'
-colliderRadius: '1.2'
+art: '!EnemyInvisible'
+artScale: '5.0'
+colliderRadius: '0'
 colliderX: '0'
 colliderY: '0'
+damageThreshold: '0'
 energyRegenRate: '0'
 explosionPrefab: planeExplosionEmpty
 healthRegenRate: '0'
 isVisibleInRadar: 'false'
-isVisibleToAI: 'false'
 maxEnergyPoints: '1'
-maxHitPoints: '10000000'
+maxHitPoints: '60'
 maxSpeed: '0'
 maxTurnRate: '0'
 minSpeed: '0'
-showStats: never
-spawnInvulnerabilitySeconds: '0'
-templateName: DQ_KS_33HGH_reward
+showGunSignal: 'true'
+spawnInvulnerabilitySeconds: '2000000'
+templateName: meowzaportalmaker
 tier: '0'
 xpMultiplier: '0'
-xpRadius: '30'
diff --git config_181128_2048/Units/99D - Boss Dungeon/zzz_meowzadungeondestroyablewall.txt config_181128_2048/Units/99D - Boss Dungeon/zzz_meowzadungeondestroyablewall.txt
new file mode 100644
index 0000000..21a1bb8
--- /dev/null
+++ config_181128_2048/Units/99D - Boss Dungeon/zzz_meowzadungeondestroyablewall.txt	
@@ -0,0 +1,21 @@
+art: '!EnemyWallGate'
+artScale: '1'
+colliderRadius: '1.3'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionDestructableTerrain
+healthRegenRate: '0'
+isVisibleInRadar: 'false'
+isWall: 'true'
+maxEnergyPoints: '1'
+maxHitPoints: '35'
+maxSpeed: '0.0'
+maxTurnRate: '0'
+minSpeed: '0.0'
+showName: never
+showStats: always
+spawnInvulnerabilitySeconds: '30'
+templateName: meowzadungeondestroyablewall
+tier: '10'
+xpMultiplier: '0'
diff --git config_181114_114/global.txt config_181128_2048/global.txt
index 4072c9e..006b0b2 100644
--- config_181114_114/global.txt
+++ config_181128_2048/global.txt
@@ -57,10 +57,12 @@ debugLogs:
   tag: store
 - isInChat: 'true'
   tag: payment
 - isInChat: 'false'
   tag: legal
+- isInChat: 'true'
+  tag: skills
 debugShowMarkers: 'false'
 debugShowMeteredUpdates: 'false'
 debugShowPVS: 'false'
 defaultCloud: Poison
 defaultDamageThreshold: '0.005'
@@ -92,11 +94,11 @@ doesntSendCrashesToRaygun: 'true'
 doesntSendCrashesToSentry: 'false'
 doesntSpawnDungeons: 'false'
 dontSpawnWithinDistOfPlayer: '60'
 drawDebugPointsForSpawns: 'false'
 dungeonExitAppearAnimationSpeedup: '3'
-dungeonMarkerSpawnRadius: '12'
+dungeonMarkerSpawnRadius: '15'
 dungeonPortalStayOpenForSeconds: '30'
 elementalItemTier: '50'
 enableOptionsMenu: 'true'
 enableResetToTutorialKey: 'false'
 enableRewired: 'true'
@@ -566,10 +568,11 @@ playerTiers:
 - level: '20'
   tier: '9'
 - level: '20'
   tier: '10'
 questEncounterDistanceFactor: '1.0'
+questEncounterDistanceMin: '15.0'
 questEndTimeLow: '300'
 questEndTimeWarn: '60'
 questGuidanceEnabled: 'true'
 questGuidanceHysteresis: '15'
 questGuidanceInterval: '8'
@@ -646,11 +649,11 @@ ultraRareItemTier: '100'
 usePermadeath: 'true'
 usingWalls: 'false'
 wallStopsEnemyBullets: 'true'
 wallStopsPlayerBullets: 'true'
 wallTurnRadius: '0.5'
-xpCollectRadius: '15'
+xpCollectRadius: '18'
 xpTargets:
 - level: '2'
   xp: '50'
 - level: '3'
   xp: '200'
diff --git config_181114_114/index.txt config_181128_2048/index.txt
index 03887ba..be39e18 100644
--- config_181114_114/index.txt
+++ config_181128_2048/index.txt
@@ -464,11 +464,13 @@
 - Units/51 - HighMountains (City) - Alien_Hologram/GRP3_highmountainhunter
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO1_bunny
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO-barrager
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO-barragermissile
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet
+- Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet_hammer
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet2
+- Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet2_hammer
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO-hyperdrive
 - Units/54 - Cancer Event/BOS1_spiderboss
 - Units/54 - Cancer Event/BOS1_spiderbossblink
 - Units/54 - Cancer Event/BOS1_spiderbossDEATH
 - Units/54 - Cancer Event/BOS1_spiderbossfence
@@ -677,10 +679,11 @@
 - Units/63D - Bomb Dungeon/BOS1_bombbossDEATH
 - Units/63D - Bomb Dungeon/BOS1_bombbossexploder
 - Units/63D - Bomb Dungeon/BOS2_fatblimp
 - Units/63D - Bomb Dungeon/SLO1_bomberjetexploder
 - Units/63D - Bomb Dungeon/SLO1_flakblimp
+- Units/63D - Bomb Dungeon/SLO1_flakblimpbig
 - Units/63D - Bomb Dungeon/SLO1_flakblimpexploder
 - Units/63D - Bomb Dungeon/SLO1_flakblimpexploderstrong
 - Units/63D - Bomb Dungeon/SLO3_bomberjet
 - Units/63D - Bomb Dungeon/unit_altar
 - Units/63D - Bomb Dungeon/unit_bombbarrel
@@ -938,16 +941,16 @@
 - Units/71D - Escort Mission Dungeon/unit_escortturret
 - Units/71D - Escort Mission Dungeon/unit_escortturretpillar
 - Units/71D - Escort Mission Dungeon/unit_escortturretspawner
 - Units/71D - Escort Mission Dungeon/unit_escortturretstrong
 - Units/71D - Escort Mission Dungeon/unit_escortturretstrongspawner
-- Units/71D - Escort Mission Dungeon/unit_escortwallgate
 - Units/71D - Escort Mission Dungeon/xxx_escortblank
 - Units/71D - Escort Mission Dungeon/xxx_escortbossstopper
 - Units/71D - Escort Mission Dungeon/xxx_escortexit
 - Units/71D - Escort Mission Dungeon/xxx_escortlasergate
 - Units/71D - Escort Mission Dungeon/xxx_escortturretmissile
+- Units/71D - Escort Mission Dungeon/zzz_escort_wallgate
 - Units/71D - Escort Mission Dungeon/zzz_escortdungeondestroyablewall
 - Units/71D - Escort Mission Dungeon/zzz_escortdungeontreasure
 - Units/71D - Escort Mission Dungeon/zzz_escortdungeontreasure2
 - Units/71D - Escort Mission Dungeon/zzz_escortdungeontreasure3
 - Units/72D - Arena Dungeon 1/BOS_arenamaster
@@ -1008,17 +1011,17 @@
 - Units/73D - Arena Dungeon 2/unit_arena2spotterspawner
 - Units/73D - Arena Dungeon 2/unit_arena2stardog
 - Units/73D - Arena Dungeon 2/unit_arena2tripod
 - Units/73D - Arena Dungeon 2/unit_arena2tripodminion
 - Units/73D - Arena Dungeon 2/unit_arena2tripodminionmaster
-- Units/73D - Arena Dungeon 2/unit_arena2wall1
-- Units/73D - Arena Dungeon 2/unit_arena2wall2
-- Units/73D - Arena Dungeon 2/unit_arena2wall3
 - Units/73D - Arena Dungeon 2/unit_arena2warper
 - Units/73D - Arena Dungeon 2/unit_arena2warpergrenade
 - Units/73D - Arena Dungeon 2/unit_beartrap
 - Units/73D - Arena Dungeon 2/unit_beartrap2
+- Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall1
+- Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall2
+- Units/73D - Arena Dungeon 2/zzz_arena2_destructiblewall3
 - Units/99D - Boss Dungeon/BOS1_meowza
 - Units/99D - Boss Dungeon/BOS1_meowzaDEATH
 - Units/99D - Boss Dungeon/BOS2_meowzafinallaserminion
 - Units/99D - Boss Dungeon/BOS2_meowzahealthleader2
 - Units/99D - Boss Dungeon/BOS2_meowzahealthnode
@@ -1042,14 +1045,17 @@
 - Units/99D - Boss Dungeon/phx_meowzanuke1m1
 - Units/99D - Boss Dungeon/phx_meowzanuke1m2
 - Units/99D - Boss Dungeon/unit_meowzablocker
 - Units/99D - Boss Dungeon/unit_meowzahurtsnake
 - Units/99D - Boss Dungeon/unit_meowzahurtsnakespawner
+- Units/99D - Boss Dungeon/unit_meowzalasergateWE
+- Units/99D - Boss Dungeon/unit_meowzaportalmaker
 - Units/99D - Boss Dungeon/unit_meowzastardog
 - Units/99D - Boss Dungeon/unit_meowzastardogspawner1
 - Units/99D - Boss Dungeon/unit_meowzastardogspawner2
 - Units/99D - Boss Dungeon/unit_meowzaturtle
+- Units/99D - Boss Dungeon/zzz_meowzadungeondestroyablewall
 - Units/Items/unit_allymine
 - Units/Items/unit_allymine1
 - Units/Items/unit_allymine10
 - Units/Items/unit_allymine2
 - Units/Items/unit_allymine3
@@ -1185,41 +1191,40 @@
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_23MID_whaleshark_T3/DQ_KS_23MID_whalesharkANGRY2
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_23MID_whaleshark_T3/DQ_KS_23MID_whalesharkDEATH
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_31HGH_flakboss/DQ_KS_31HGH_flakboss
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_31HGH_flakboss/DQ_KS_31HGH_flakbossexploder
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_32HGH_berserker/DQ_KS_32HGH_berserker
-- Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_33HGH_sniper/DQ_KS_33HGH_reward
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_33HGH_sniper/DQ_KS_33HGH_sniper
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_33HGH_sniper/DQ_KS_33HGH_sniper2
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_33HGH_sniper/DQ_KS_33HGH_snipermaster
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_41MTN_bosstrain01/DQ_KS_41MTN_bosstrain01
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_41MTN_bosstrain01/DQ_KS_41MTN_bosstrain01grenade
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_41MTN_bosstrain01/DQ_KS_41MTN_bosstrain02
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_41MTN_bosstrain01/DQ_KS_41MTN_bosstrain03
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_51HMT_hyperdrive/DQ_KS_51HMT_hyperdrive
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_KS_51HMT_hyperdrive/DQ_KS_51HMT_hyperdriveminion
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_command
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_commandDEATH
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_commandturret
-- Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_destroyablewall
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_gastank
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_gastankboom
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_turret
+- Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_2XMID_gasstation/DQ_SP_2XMID_gasstation_wallgate
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_barracks
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_barracksguard
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_hackconsole
-- Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_hackdoorchain
+- Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_hackdoorchain_wallgate
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_hackdoorchainsignal
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_riotguard
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_riotguardshield
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_treasure
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_heist/DQ_SP_5XHMT_heist_turret
-- Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_avalancheparent
+- Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_avalancheparent_destructiblewall
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_avalanchesignal
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_avalancheworm
-- Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_keystone
-- Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_rock
+- Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_keystone_destructiblewall
+- Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_rock_destructiblewall
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_snakemancer
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_snakemancersnake01
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_snakemancersnake01neck
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_snakemancersnake02
 - Units/00 - Quest Enemies/Daily Quests - Special/DQ_SP_5XHMT_mine/DQ_SP_5XHMT_mine_snakemancersnake03
@@ -1234,11 +1239,10 @@
 - Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_arena2entrance/SP_5XHMT_arena2entrance_mazerunnergonorth_switcher
 - Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_arena2entrance/SP_5XHMT_arena2entrance_mazerunnergosouth
 - Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_arena2entrance/SP_5XHMT_arena2entrance_mazerunnergosouth_switcher
 - Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_arena2entrance/SP_5XHMT_arena2entrance_mazerunnergowest
 - Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_arena2entrance/SP_5XHMT_arena2entrance_mazerunnergowest_switcher
-- Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_arena2entrance/SP_5XHMT_arena2entrance_mazerunnersnake
 - Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_arena2entrance/SP_5XHMT_arena2entrance_treasure
 - Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_arena2entrance/SP_5XHMT_arena2entrance_treasurelocked
 - Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_fireentrance/SP_5XHMT_fireentrance_flamebatleader
 - Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_fireentrance/SP_5XHMT_fireentrance_treasure
 - Units/00 - Quest Enemies/Setpiece Quests/SP_5XHMT_fireentrance/SP_5XHMT_fireentrance_treasurelocked
diff --git config_181114_114/news.txt config_181128_2048/news.txt
index 49fea1a..b0cc89e 100644
--- config_181114_114/news.txt
+++ config_181128_2048/news.txt
@@ -16,8 +16,12 @@ news_dandy_duck:
   Url: https://community.steambirds.com/blog/336
 news_egret_eggs:
   IsVisibleToClient: 'true'
   Time: 2018-11-07 13:00
   Url: https://community.steambirds.com/blog/337
+news_fledgling_flamingo:
+  IsVisibleToClient: 'true'
+  Time: 2018-11-14 20:00
+  Url: https://community.steambirds.com/blog/338
 test_news:
   IsVisibleToClient: 'false'
   Time: 2018-05-31 00:00
diff --git config_181114_114/skills.txt config_181128_2048/skills.txt
index 0420e46..72b2aa3 100644
--- config_181114_114/skills.txt
+++ config_181128_2048/skills.txt
@@ -215,11 +215,11 @@
   id: hog_3b
   label: 3-B
   maxLevel: '10'
   triggers:
   - actions:
-    - cooldown: '4'
+    - cooldown: '3'
       duration: '1'
       mods:
       - statMod:
           amount: '2'
           math: multiply
@@ -242,11 +242,11 @@
   id: hog_4b
   label: 4-B
   maxLevel: '5'
   triggers:
   - actions:
-    - cooldown: '2'
+    - cooldown: '1'
       duration: '1'
       mods:
       - statMod:
           amount: '0.8'
           math: multiply
@@ -361,11 +361,11 @@
   id: olfaithful_3b
   label: 3-B
   maxLevel: '5'
   triggers:
   - actions:
-    - cooldown: '5'
+    - cooldown: '3'
       duration: '2'
       mods:
       - statMod:
           amount: '2.0'
           math: multiply
@@ -473,11 +473,11 @@
   id: shieldmaiden_2a
   label: 2-A
   maxLevel: '5'
   triggers:
   - actions:
-    - cooldown: '3'
+    - cooldown: '2'
       duration: '1'
       mods:
       - statMod:
           amount: '1.4'
           math: multiply
@@ -543,11 +543,11 @@
   id: shieldmaiden_4a
   label: 4-A
   maxLevel: '5'
   triggers:
   - actions:
-    - cooldown: '3'
+    - cooldown: '1'
       duration: '2'
       mods:
       - statMod:
           amount: '2'
           math: multiply
@@ -645,11 +645,11 @@
   id: raptor_3a
   label: 3-A
   maxLevel: '5'
   triggers:
   - actions:
-    - cooldown: '5'
+    - cooldown: '3'
       duration: '2'
       mods:
       - statMod:
           amount: '1.5'
           math: multiply
@@ -756,11 +756,11 @@
   id: paladin_2a
   label: 2-A
   maxLevel: '5'
   triggers:
   - actions:
-    - cooldown: '2.5'
+    - cooldown: '0.5'
       duration: '2'
       mods:
       - statMod:
           amount: '1.5'
           math: multiply
@@ -779,11 +779,11 @@
   id: paladin_3a
   label: 3-A
   maxLevel: '5'
   triggers:
   - actions:
-    - cooldown: '2.5'
+    - cooldown: '0.5'
       duration: '2'
       mods:
       - statMod:
           amount: '1.5'
           math: multiply
@@ -802,11 +802,11 @@
   id: paladin_4b
   label: 4-B
   maxLevel: '1'
   triggers:
   - actions:
-    - cooldown: '1.5'
+    - cooldown: '0.5'
       duration: '1'
       mods:
       - statMod:
           amount: '0.0'
           math: multiply
@@ -879,11 +879,11 @@
   id: assault_1a
   label: 1-A
   maxLevel: '5'
   triggers:
   - actions:
-    - cooldown: '1.5'
+    - cooldown: '0.5'
       duration: '1'
       mods:
       - statMod:
           amount: '1.5'
           math: multiply
@@ -902,24 +902,23 @@
   id: assault_1b
   label: 1-B
   maxLevel: '5'
   triggers:
   - actions:
-    - cooldown: '2'
-      duration: '2'
+    - duration: '2'
       mods:
       - statMod:
           amount: '0.8'
           math: multiply
           name: damageReceivedMod
       - statMod:
           amount: '0.99'
           leveling: 'true'
           math: multiply
           name: damageReceivedMod
       - effectIcon: effecticon_armorboost
-      modsStack: 'true'
+      stacks: '3'
     trigger: OnKill
 - conditions:
   - planeClass: assault
   cost: '2'
   icon: skillicon_assault
@@ -949,11 +948,11 @@
           amount: '1.03'
           leveling: 'true'
           math: multiply
           name: bashDamageMod
       - effectIcon: effecticon_damageboost
-      modsStack: 'true'
+      stacks: '3'
     trigger: OnKill
 - conditions:
   - planeClass: assault
   cost: '3'
   icon: skillicon_assault
@@ -1321,11 +1320,11 @@
   id: sniper_4a
   label: 4-A
   maxLevel: '5'
   triggers:
   - actions:
-    - cooldown: '1.5'
+    - cooldown: '0.5'
       duration: '1'
       mods:
       - statMod:
           amount: '1.5'
           math: multiply
@@ -1622,11 +1621,11 @@
           amount: '0.99'
           leveling: 'true'
           math: multiply
           name: damageReceivedMod
       - effectIcon: effecticon_armorboost
-      modsStack: 'true'
+      stacks: '3'
     trigger: OnKill
 - cost: '1'
   icon: skillicon_armor
   id: armor_1a
   label: 1-A