ldtk 0.3.0

A crate for reading the LDtk 2D tile map format.
Documentation
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
{
	"__header__": {
		"fileType": "LDtk Project JSON",
		"app": "LDtk",
		"doc": "https://ldtk.io/json",
		"schema": "https://ldtk.io/files/JSON_SCHEMA.json",
		"appAuthor": "Sebastien 'deepnight' Benard",
		"appVersion": "0.8.1",
		"url": "https://ldtk.io"
	},
	"jsonVersion": "0.8.1",
	"nextUid": 45,
	"worldLayout": "LinearVertical",
	"worldGridWidth": 256,
	"worldGridHeight": 256,
	"defaultPivotX": 0.5,
	"defaultPivotY": 0.5,
	"defaultGridSize": 16,
	"defaultLevelWidth": 256,
	"defaultLevelHeight": 256,
	"bgColor": "#373852",
	"defaultLevelBgColor": "#6E6F8B",
	"minifyJson": false,
	"externalLevels": false,
	"exportTiled": false,
	"exportPng": false,
	"pngFilePattern": null,
	"backupOnSave": false,
	"backupLimit": 10,
	"flags": ["DiscardPreCsvIntGrid"],
	"defs": { "layers": [
		{
			"__type": "Entities",
			"identifier": "Entities",
			"type": "Entities",
			"uid": 13,
			"gridSize": 16,
			"displayOpacity": 1,
			"pxOffsetX": 0,
			"pxOffsetY": 0,
			"requiredTags": [],
			"excludedTags": [],
			"intGridValues": [{ "value": 1, "identifier": null, "color": "#000000" }],
			"autoTilesetDefUid": null,
			"autoRuleGroups": [],
			"autoSourceLayerDefUid": null,
			"tilesetDefUid": null,
			"tilePivotX": 0,
			"tilePivotY": 0
		},
		{
			"__type": "IntGrid",
			"identifier": "IntGrid_8px_grid",
			"type": "IntGrid",
			"uid": 34,
			"gridSize": 8,
			"displayOpacity": 1,
			"pxOffsetX": 0,
			"pxOffsetY": 0,
			"requiredTags": [],
			"excludedTags": [],
			"intGridValues": [{ "value": 1, "identifier": null, "color": "#00FF7A" }],
			"autoTilesetDefUid": null,
			"autoRuleGroups": [],
			"autoSourceLayerDefUid": null,
			"tilesetDefUid": null,
			"tilePivotX": 0,
			"tilePivotY": 0
		},
		{
			"__type": "AutoLayer",
			"identifier": "PureAutoLayer",
			"type": "AutoLayer",
			"uid": 26,
			"gridSize": 16,
			"displayOpacity": 1,
			"pxOffsetX": 0,
			"pxOffsetY": 0,
			"requiredTags": [],
			"excludedTags": [],
			"intGridValues": [{ "value": 1, "identifier": null, "color": "#000000" }],
			"autoTilesetDefUid": 2,
			"autoRuleGroups": [{
				"uid": 27,
				"name": "Test",
				"active": true,
				"collapsed": false,
				"rules": [
					{
						"uid": 28,
						"active": true,
						"size": 1,
						"tileIds": [180],
						"chance": 1,
						"breakOnMatch": true,
						"pattern": [3],
						"flipX": false,
						"flipY": false,
						"xModulo": 1,
						"yModulo": 1,
						"checker": "None",
						"tileMode": "Single",
						"pivotX": 0,
						"pivotY": 0,
						"perlinActive": false,
						"perlinSeed": 8580464,
						"perlinScale": 0.2,
						"perlinOctaves": 2
					}
				]
			}],
			"autoSourceLayerDefUid": 1,
			"tilesetDefUid": null,
			"tilePivotX": 0,
			"tilePivotY": 0
		},
		{
			"__type": "IntGrid",
			"identifier": "IntGrid_classic",
			"type": "IntGrid",
			"uid": 1,
			"gridSize": 16,
			"displayOpacity": 1,
			"pxOffsetX": 0,
			"pxOffsetY": 0,
			"requiredTags": [],
			"excludedTags": [],
			"intGridValues": [
				{ "value": 1, "identifier": "first", "color": "#000000" },
				{ "value": 2, "identifier": "second", "color": "#00B0FF" },
				{ "value": 3, "identifier": "third_used_in_autoLayer", "color": "#FF0000" }
			],
			"autoTilesetDefUid": null,
			"autoRuleGroups": [],
			"autoSourceLayerDefUid": null,
			"tilesetDefUid": null,
			"tilePivotX": 0,
			"tilePivotY": 0
		},
		{
			"__type": "IntGrid",
			"identifier": "IntGrid_with_rules",
			"type": "IntGrid",
			"uid": 3,
			"gridSize": 16,
			"displayOpacity": 1,
			"pxOffsetX": 0,
			"pxOffsetY": 0,
			"requiredTags": [],
			"excludedTags": [],
			"intGridValues": [{ "value": 1, "identifier": "walls", "color": "#D19E4D" }],
			"autoTilesetDefUid": 2,
			"autoRuleGroups": [{
				"uid": 4,
				"name": "walls",
				"active": true,
				"collapsed": false,
				"rules": [
					{
						"uid": 8,
						"active": true,
						"size": 3,
						"tileIds": [104,105],
						"chance": 1,
						"breakOnMatch": true,
						"pattern": [0,0,0,0,1,1,0,-1,-1],
						"flipX": false,
						"flipY": false,
						"xModulo": 2,
						"yModulo": 1,
						"checker": "None",
						"tileMode": "Stamp",
						"pivotX": 0,
						"pivotY": 0,
						"perlinActive": false,
						"perlinSeed": 3086357,
						"perlinScale": 0.2,
						"perlinOctaves": 2
					},
					{
						"uid": 9,
						"active": true,
						"size": 3,
						"tileIds": [104,105],
						"chance": 1,
						"breakOnMatch": true,
						"pattern": [0,-1,-1,0,1,1,0,0,0],
						"flipX": false,
						"flipY": false,
						"xModulo": 2,
						"yModulo": 1,
						"checker": "None",
						"tileMode": "Stamp",
						"pivotX": 0,
						"pivotY": 0,
						"perlinActive": false,
						"perlinSeed": 3086357,
						"perlinScale": 0.2,
						"perlinOctaves": 2
					},
					{
						"uid": 6,
						"active": true,
						"size": 5,
						"tileIds": [8,28,9,29],
						"chance": 1,
						"breakOnMatch": true,
						"pattern": [0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,1,0,0,0,1,1,0],
						"flipX": false,
						"flipY": false,
						"xModulo": 2,
						"yModulo": 2,
						"checker": "None",
						"tileMode": "Stamp",
						"pivotX": 0,
						"pivotY": 0,
						"perlinActive": false,
						"perlinSeed": 4215655,
						"perlinScale": 0.2,
						"perlinOctaves": 2
					},
					{
						"uid": 7,
						"active": true,
						"size": 3,
						"tileIds": [164],
						"chance": 1,
						"breakOnMatch": true,
						"pattern": [0,-1,0,-1,1,0,0,0,0],
						"flipX": true,
						"flipY": true,
						"xModulo": 1,
						"yModulo": 1,
						"checker": "None",
						"tileMode": "Single",
						"pivotX": 0,
						"pivotY": 0,
						"perlinActive": false,
						"perlinSeed": 8557859,
						"perlinScale": 0.2,
						"perlinOctaves": 2
					},
					{
						"uid": 5,
						"active": true,
						"size": 1,
						"tileIds": [140],
						"chance": 1,
						"breakOnMatch": true,
						"pattern": [1],
						"flipX": false,
						"flipY": false,
						"xModulo": 1,
						"yModulo": 1,
						"checker": "None",
						"tileMode": "Single",
						"pivotX": 0,
						"pivotY": 0,
						"perlinActive": false,
						"perlinSeed": 1571824,
						"perlinScale": 0.2,
						"perlinOctaves": 2
					}
				]
			}],
			"autoSourceLayerDefUid": null,
			"tilesetDefUid": null,
			"tilePivotX": 0,
			"tilePivotY": 0
		},
		{
			"__type": "Tiles",
			"identifier": "Tiles",
			"type": "Tiles",
			"uid": 14,
			"gridSize": 16,
			"displayOpacity": 1,
			"pxOffsetX": 0,
			"pxOffsetY": 0,
			"requiredTags": [],
			"excludedTags": [],
			"intGridValues": [{ "value": 1, "identifier": null, "color": "#000000" }],
			"autoTilesetDefUid": null,
			"autoRuleGroups": [],
			"autoSourceLayerDefUid": null,
			"tilesetDefUid": 2,
			"tilePivotX": 0,
			"tilePivotY": 0
		}
	], "entities": [
		{
			"identifier": "EntityFieldsTest",
			"uid": 15,
			"tags": [],
			"width": 32,
			"height": 32,
			"resizableX": false,
			"resizableY": false,
			"keepAspectRatio": false,
			"fillOpacity": 1,
			"lineOpacity": 1,
			"hollow": false,
			"color": "#00A5FF",
			"renderMode": "Ellipse",
			"showName": true,
			"tilesetId": null,
			"tileId": null,
			"tileRenderMode": "Stretch",
			"maxCount": 0,
			"limitScope": "PerLevel",
			"limitBehavior": "DiscardOldOnes",
			"pivotX": 0.5,
			"pivotY": 0.5,
			"fieldDefs": [
				{
					"identifier": "Integer",
					"__type": "Int",
					"uid": 16,
					"type": "F_Int",
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "Float",
					"__type": "Float",
					"uid": 17,
					"type": "F_Float",
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "Boolean",
					"__type": "Bool",
					"uid": 18,
					"type": "F_Bool",
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "String_singleLine",
					"__type": "String",
					"uid": 19,
					"type": "F_String",
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "String_multiLines",
					"__type": "String",
					"uid": 20,
					"type": "F_Text",
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "Enum",
					"__type": "LocalEnum.SomeEnum",
					"uid": 22,
					"type": { "id": "F_Enum", "params": [21] },
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "Color",
					"__type": "Color",
					"uid": 23,
					"type": "F_Color",
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": { "id": "V_Int", "params": [0] },
					"textLangageMode": null
				},
				{
					"identifier": "Point",
					"__type": "Point",
					"uid": 24,
					"type": "F_Point",
					"isArray": false,
					"canBeNull": true,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "PointStar",
					"editorDisplayPos": "Center",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "FilePath",
					"__type": "FilePath",
					"uid": 35,
					"type": "F_Path",
					"isArray": false,
					"canBeNull": true,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "Array_Integer",
					"__type": "Array<Int>",
					"uid": 25,
					"type": "F_Int",
					"isArray": true,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "Array_Enum",
					"__type": "Array<LocalEnum.SomeEnum>",
					"uid": 29,
					"type": { "id": "F_Enum", "params": [21] },
					"isArray": true,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "Array_points",
					"__type": "Array<Point>",
					"uid": 30,
					"type": "F_Point",
					"isArray": true,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "PointPath",
					"editorDisplayPos": "Center",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "Array_multilines",
					"__type": "Array<String>",
					"uid": 37,
					"type": "F_Text",
					"isArray": true,
					"canBeNull": true,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": "LangXml"
				}
			]
		},
		{
			"identifier": "Labels",
			"uid": 10,
			"tags": [],
			"width": 8,
			"height": 8,
			"resizableX": false,
			"resizableY": false,
			"keepAspectRatio": false,
			"fillOpacity": 1,
			"lineOpacity": 1,
			"hollow": false,
			"color": "#000000",
			"renderMode": "Cross",
			"showName": false,
			"tilesetId": null,
			"tileId": null,
			"tileRenderMode": "Stretch",
			"maxCount": 0,
			"limitScope": "PerLevel",
			"limitBehavior": "DiscardOldOnes",
			"pivotX": 0.5,
			"pivotY": 0.5,
			"fieldDefs": [
				{
					"identifier": "text",
					"__type": "String",
					"uid": 11,
					"type": "F_Text",
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "ValueOnly",
					"editorDisplayPos": "Center",
					"editorAlwaysShow": false,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "color",
					"__type": "Color",
					"uid": 12,
					"type": "F_Color",
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "Hidden",
					"editorDisplayPos": "Beneath",
					"editorAlwaysShow": false,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": { "id": "V_Int", "params": [8361387] },
					"textLangageMode": null
				}
			]
		},
		{
			"identifier": "RectRegion",
			"uid": 39,
			"tags": ["region"],
			"width": 16,
			"height": 16,
			"resizableX": true,
			"resizableY": true,
			"keepAspectRatio": false,
			"fillOpacity": 1,
			"lineOpacity": 1,
			"hollow": true,
			"color": "#A094D9",
			"renderMode": "Rectangle",
			"showName": true,
			"tilesetId": null,
			"tileId": null,
			"tileRenderMode": "Stretch",
			"maxCount": 0,
			"limitScope": "PerLevel",
			"limitBehavior": "MoveLastOne",
			"pivotX": 0,
			"pivotY": 0,
			"fieldDefs": [
				{
					"identifier": "SomeEnum",
					"__type": "LocalEnum.SomeEnum",
					"uid": 40,
					"type": { "id": "F_Enum", "params": [21] },
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Above",
					"editorAlwaysShow": false,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "Integer",
					"__type": "Int",
					"uid": 41,
					"type": "F_Int",
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Above",
					"editorAlwaysShow": true,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				}
			]
		},
		{
			"identifier": "CircleRegion",
			"uid": 42,
			"tags": ["region"],
			"width": 16,
			"height": 16,
			"resizableX": true,
			"resizableY": true,
			"keepAspectRatio": true,
			"fillOpacity": 1,
			"lineOpacity": 1,
			"hollow": true,
			"color": "#95D994",
			"renderMode": "Ellipse",
			"showName": true,
			"tilesetId": null,
			"tileId": null,
			"tileRenderMode": "Stretch",
			"maxCount": 0,
			"limitScope": "PerLevel",
			"limitBehavior": "MoveLastOne",
			"pivotX": 0.5,
			"pivotY": 0.5,
			"fieldDefs": [
				{
					"identifier": "SomeEnum",
					"__type": "LocalEnum.SomeEnum",
					"uid": 43,
					"type": { "id": "F_Enum", "params": [21] },
					"isArray": false,
					"canBeNull": false,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Above",
					"editorAlwaysShow": false,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				},
				{
					"identifier": "text",
					"__type": "String",
					"uid": 44,
					"type": "F_String",
					"isArray": false,
					"canBeNull": true,
					"arrayMinLength": null,
					"arrayMaxLength": null,
					"editorDisplayMode": "NameAndValue",
					"editorDisplayPos": "Above",
					"editorAlwaysShow": false,
					"editorCutLongValues": true,
					"min": null,
					"max": null,
					"regex": null,
					"acceptFileTypes": null,
					"defaultOverride": null,
					"textLangageMode": null
				}
			]
		}
	], "tilesets": [
		{
			"identifier": "Inca_front_by_Kronbits_extended",
			"uid": 2,
			"relPath": "atlas/Inca_front_by_Kronbits-extended.png",
			"pxWid": 320,
			"pxHei": 224,
			"tileGridSize": 16,
			"spacing": 0,
			"padding": 0,
			"savedSelections": [
				{ "ids": [241,261,242,262], "mode": "Stamp" },
				{ "ids": [6,26,7,27], "mode": "Stamp" },
				{ "ids": [2,22,3,23], "mode": "Stamp" },
				{ "ids": [42,62,43,63], "mode": "Stamp" },
				{ "ids": [44,64,45,65], "mode": "Stamp" },
				{ "ids": [46,66,47,67], "mode": "Stamp" },
				{ "ids": [88,89], "mode": "Stamp" }
			],
			"cachedPixelData": {
				"opaqueTiles": "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111",
				"averageColors": "f965f964fa65f965f854f854fa65f964fa64f964fa64fa64fa64f964f088f088f088f088f088f088f854f854f854f854f954f854f854f844f954f854f954fa64fa64f954f088f088f088f088f088f088f965f964f965f964f965f954f965f954fa65f965fa54fa64fa64f954f088f088f088f088f088f088f744f744f854f844f854f854f634f533f644f633f954f954f954f854f088f088f088f088f088f088f954f954f964f854f964f954f964f854f964f85430001000f088f088f088f088f088f088f088f088f854f754f964f964f954f854f954f854f854f854f088f088f088f088f088f088f088f088f088f088f855f854f965f964f965f964f965f964f965f964f088f088f088f088f088f088f088f088f088f088f854f854f744f854f954f954f854f965f964f954f088f088f088f088f088f088f088f088f088f088f854f854f854f854f954f964f954f965f854f954f088f088f088f088f088f088f088f088f088f088f854f854f964f855f854f854f954f854f854f964f088f088f088f088f088f088f088f088f088f088f965f854f744f854f643f088f088f088f088f088f088f088f088f088f088f088f088f088f088f088f854f643f643f754f754f088f088f088f088f088f088f088f088f088f088f088f088f088f088f088fa65f965f954f744f566f088f088f088f088f088f088f088f088f088f088f088f088f088f088f088f965f965f954f744f088f088f088f088f088f088f088f088f088f088f088f088f088f088f088f088"
			}
		},
		{
			"identifier": "_Soul_s_RPG_Graphics_Icons",
			"uid": 31,
			"relPath": "atlas/RPG Graphics Icons by 7Soul's.png",
			"pxWid": 256,
			"pxHei": 2048,
			"tileGridSize": 16,
			"spacing": 0,
			"padding": 0,
			"savedSelections": [],
			"cachedPixelData": {
				"opaqueTiles": "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000100000000100000000000000000000111000000001111101100001100110000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000100000000100000000000000000000111000000001111101100001100110000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
				"averageColors": "985498548854655587537963763386559b639b739b9496939497969b977a9b8a9a63966597779bbb676667666766666666666667666767676666666666666777697769876a9767876798678a688969896987677768886999788a9b765a968877799987668765a978b876a87879ab7987ba98b953c843b854a854b853b999b888b888c975ba65c976b888b852c763b888b744b666a78ad877c777c573c545c867a942aa51a972a471a175a48aa55aaa69a843a344a566a999ba65ba75ba85b785b786b78ab87aba79b975b776b877baa9ba53ba62ba72b772b685b779b768ba68b954b754b865ba98c877c977c987c787c787c789c778c979c877c777c788c999b943ba51b962b471b175b47ab54aba59b743b344b566b999b966c976c986c786c687c789c77ac979c877c677c777c999a953aa53a963a773a764a778a858aa57a953a754a865a9876843a842a843a854a8559843a999a888a999ab97ab75a975ba65aaaab765a568a868a944aa54a964a674a575a568a658aa59a854a555a666a9994ba9886497325a87569b586587436a635a983a77798b74557b734864895676948baa974399525666688869658b6597823a9847847a9c78337c738a7583887b648aaa689978968aa89a435842a59b5a85aa43697577777ca776667a7659975a97799978887997898a9b7a6693ab938b97a56a976588888ca8977877775aaa5a978a5369929a618a768a826b82873394818c979bb79d978b866ba68b9578327a639b968a466b8888328953758a7a74ca748a75858b68aa8b878c8877947c97b766bc9389547ca8859b6965997598539a44a97687547ca8886468538b96a96496326a62695378539657956878548aaa7c8478828b6a89539a869a9a9b86aa87ba6297437692a692865385485684aa88cb9888539853995398549977774399889889988899769b7598649a5398899866945697599a429b629a7295829385936b955a9a699953945596679aaa99769a76998697969687978a97799a79997797779888999968438742984287438743985297779777a999ba97ba65a864895385757853aa75a33495587545777667468a7568548854995299529962986297639756985599559853974298549975a766a866a876a676a676a678a667a768a766a666a666a777872389418952836181648149833888488633833384458aaa88228951896284718264825a8448895987438223855589987796bb64a69c8a8c6987bca5b5568abbc8bbbdba5998788868885a988b74696465566877687768876787678767786778687868776667677768888b768c868ca6879686a8879c877b8c8b8a77856688888bba8c98bb757a657ca97c983ca969896a746b735a868666b455744576777666366768566666666657678aaab77876777aaa7aaa3aaa6a976888688859988cb9ba857a857cb97ca83ca9699a6ba76ba85aaa8888b677766679997888399968796888688859998a87ba6579647b977a873a876885698769877a887a987ba978987899789b788b7b8b7988788978897aab8a428b718b9286938286858c865a8b6a8864844586668aaa69326a616b8265826185647b65596a6a6853634465666aaa6a426b616b8265826286648b665a6b6a6853644566666aaaaa99aa99aaa9a8a9a8aaa89ba99baa9aaaa9a8999aaa9aaa99aa99ab99ab9aab9aaa9aaa99aa9aaaa9aa9abb99aa69aaabaaaaa9abb9a9a9a9bba9aba9abaabbabaaaaaaa99aaaaaabbba9ab59aa8a998a998aa9a9aa88a988aa889b899b8a9a8a998899899a8abb89aa79ab47998a998a998aa988a988aa889b899b8a9a8a999aaa8899899a8abb89aa59aa9a999a999aa998a998ab9a99989b999b9a9a9aa9989999aa9abb98aa79ab9caa9aa99baa9cba99ba99bb99ac9aac9bab9baa99aa9aaa99a99ccc9abb59aaaaaaaaaaaaaaa9aaa9aba9ab999b99aaaaaaaaaaa9aaaaaaaabba9aa59aa7aaa7aaa7aaa999b79aa79aa79ab79ab7aaa7aaa799a79aa7aab79aa99ab389a6aaa6aaa6aaa69aa69aa69ab69ab6aaa6aaa9a9a69aa6aaa6abb69aa389a9aaa999999aa9abb99aa89ab8a9989998aa988a988aa889a899a8a9a8999889989998aaa899a589a8aaa8aaa8aaa89aa89ab89ab89ab8aaa8aaa899a89aa8abb89aa589a8a9989998aa988a988aa889a899b8a9a89998899899a8aab899a589a7aaa7aaa7aaa79aa79aa79ab79ab7aaa7aaa79aa7aaa7abb79aa389a9baa9aa99ba999a999ab99ab99ab9b9a9aaa999a99aa9bbc99ab58aa9aaacb76cb85cb96ca85ca86ca87cb87cb87cb86ca86cb86cb87ab76ac85ab86aa96a986aa89aa78ac88aa76a976aa87ab98ab75ab75ab95a995a886a989a979ab88aa76a976aa87ab999b879c879c979b979b979b989b879c879b879b879b879b975c755c845ca559a557a8599b597a5c9a5b7658765a995cbabb75bb85bb95b985b996b98ab979bb89ba75b876b986bba9ba77bb87bb97b897b898b89bb88abb8ab988b788b888baaab966ba76ba86b686b687b68ab779ba79b776b666b777b999aca9ada9adb9acb9acb9acb9aca9ada9aca9aca9aca9acb9acccacccacccacccacccacccacccacccacccacccacccaccccb76cc75cc86ca85ca86ca88ca78cc78cb76ca76ca76cb98c644c754c764c464c465c457c447c756c544c444c455c677bb76bb75bb85b985b986b989b978bb88ba75b976ba76bb98db64dc74db94d794d597d79cd77bdc8ada65d666d877d998db65dc75db85d795d697d79bd87bdb8ad976d666d877d998db75dc85db86da95d997da99da88dc88db86d976da87db97cb86cca88c97ab97bb868db98dcabdbaadb9adb9ab87cc867b97c998bc97a998bbaa8ccc8dddbdddacccacccaa86ab97a667a8888998998999889a976789b99589438a969a889a988989999997739878787778777877777777777778777877777777777777777777988898889888988898889889988898889888977798889888a877a887a887a787a777a789a778a878a877a677a777a88887779899899969996888a7776777988898887997799779977997799779987998799779977987799779979a979a979a979a979a979a989a989a979a9799979a979a97aa86aa96aa97a996a996a998a997aa87aa96a986a986aa9789979aa98baa6aa96a99aa9669979a979a98ca64c965ca8798889899e999b964ba88bbbbbc96abbbab9abb86a999ab97bbbbca77cb87cb97c897c798c89bc88acb8aca87c788c888cabbbb88bc98bca8b9a8b8a9b9acb99bbc9bba98b889b999bbbbb9aaaaaac7799c96ab73fa648b74939983999188b688889bbabdc8abf479789a96899569b479b86486437853a642f17592968175829796936896b3717472b7a4b6929886e643bbbb9abbb9ac99aa9c8a9d9bbc8abc8abddcfca8f975fa989879c3388337a4386a43a9338933a868f848f848f869f637f757a769f99bf426aa8b9a77879b998af779f7768a75c89bf955f259ca87aaaacba8a78bd999c9a98b74e245968a7789875386877764d582f56adb8a8a978559c9339a58a758aaa7aaa79aa79ba78ba7aaa7aaa7aaa7aaa78ba78ba77ca3aca39cb39cb36cb3a89aa8aaa8ab98ab88aba8aa989aa8aba8aa88ab88ab769ca6ac97ac97ac67acacbbaccc8baa8999aaaa7a998baa7a998cba9bba7bbaabbaabba8bba9aa9bbbaaa99aaaa99999888baaa88889a9989888998aaa98aa9aaa8aaa98a98a998caa99cccab998a9a9a889b69ba767ba5bbbb8ba98a95caa9cc87aa82abab8655b99a99bca7acf68b879c9b528b529a32ba668683b7a4c683f4647a9699729767b963ba8689657974a964fa759b8789758b97986c698ab64a775abb85ba739978e562bbba9bbabba89aa999bc9acdb9bcb8bdbdcdfbacf869f99a9887c4558444a455658ba47b847ba469f58bf57bf68bf469f567a777fa89f975aba998898a969897f867f7798965ca98f79cfa43ca98aaa9c99aaa8ad693c9ab87ace94394627987897589877866d964f964d8ac8a8a8455c47b969ba679497679654789758758659a9648764776498648544889387746654864479359ab4aa8577548654a757a989b8778aba6987987ba95787676667a97785379ab99887888687698779a889988a89989779b97a966a88865699a74aa87a786889878649556aa8678769a65787772868864a9867888733579867932768a7964668a897765627a76797787778a87986678756985997667768a96778768439448768985598876aa76878aa4868865aa868865875489768853888789879987a9779785998a9a87999997788987a9679865a78a9a558a98a8889675b87999758a9949987b8648ab959849879a96487645554a98484349ab5988598858876889687958885856598778885877598749765799587757855899467958676a877a995a9849994854787a6b977a999b9879bc97a97a99bba7798776667ba979547abb79878ba9778869777879799989658a97aa7768768965679bc4877866a985676566546a9869536999887758776a757877877786777a9878676777885556877a76753597568976687677787732876569766987767577788a85a98739876a76389aa497587689853876366639973854388968774877588759875877677758886988598759777a66578aa78868679a87586657775a965965589a5899487678696454767a678658657a96763558675b996a866742986966676aaa698888658a977999aa87789bb7888977ba86766673337a97782279ac888878998888a999877789989a779ba978996aaaab9779bba7a97a98bba7698865556ba969436abb59997bbb7b99789a69a8689a7a99788878877a997a998999889a7b8779889a9987778ba87a65687658765a998aaa977a7ba839766a75368b867649659986386536773986385338994865478847897863578957796755486858895a865b994878567498686a85599a49799744999900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
			}
		}
	], "enums": [{ "identifier": "SomeEnum", "uid": 21, "values": [
		{ "id": "A", "tileId": 60, "__tileSrcRect": [192,48,16,16] },
		{ "id": "B", "tileId": 1145, "__tileSrcRect": [144,1136,16,16] },
		{ "id": "C", "tileId": 678, "__tileSrcRect": [96,672,16,16] },
		{ "id": "D", "tileId": 1723, "__tileSrcRect": [176,1712,16,16] }
	], "iconTilesetUid": 31, "externalRelPath": null, "externalFileChecksum": null }], "externalEnums": [], "levelFields": [
		{
			"identifier": "desc",
			"__type": "String",
			"uid": 38,
			"type": "F_Text",
			"isArray": false,
			"canBeNull": true,
			"arrayMinLength": null,
			"arrayMaxLength": null,
			"editorDisplayMode": "ValueOnly",
			"editorDisplayPos": "Above",
			"editorAlwaysShow": false,
			"editorCutLongValues": false,
			"min": null,
			"max": null,
			"regex": null,
			"acceptFileTypes": null,
			"defaultOverride": null,
			"textLangageMode": null
		}
	] },
	"levels": [
		{
			"identifier": "Level1",
			"uid": 0,
			"worldX": 0,
			"worldY": 0,
			"pxWid": 680,
			"pxHei": 568,
			"__bgColor": "#6E6F8B",
			"bgColor": null,
			"bgRelPath": null,
			"bgPos": null,
			"bgPivotX": 0.5,
			"bgPivotY": 0.5,
			"__bgPos": null,
			"externalRelPath": null,
			"fieldInstances": [{
				"__identifier": "desc",
				"__value": "This file can be used to check if an API supports LDtk file format properly. \n\nIt uses all important LDtk features.",
				"__type": "String",
				"defUid": 38,
				"realEditorValues": [{
					"id": "V_String",
					"params": [
						"This file can be used to check if an API supports LDtk file format properly. \n\nIt uses all important LDtk features."
					]
				}]
			}],
			"layerInstances": [
				{
					"__identifier": "Entities",
					"__type": "Entities",
					"__cWid": 43,
					"__cHei": 36,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 0,
					"layerDefUid": 13,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 7679736,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": [
						{
							"__identifier": "Labels",
							"__grid": [5,5],
							"__pivot": [0.5,0.5],
							"__tile": null,
							"width": 8,
							"height": 8,
							"defUid": 10,
							"px": [88,88],
							"fieldInstances": [
								{
									"__identifier": "text",
									"__value": "IntGrid (classic)",
									"__type": "String",
									"defUid": 11,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["IntGrid (classic)"]
									}]
								},
								{ "__identifier": "color", "__value": "#7F95AB", "__type": "Color", "defUid": 12, "realEditorValues": [] }
							]
						},
						{
							"__identifier": "Labels",
							"__grid": [14,5],
							"__pivot": [0.5,0.5],
							"__tile": null,
							"width": 8,
							"height": 8,
							"defUid": 10,
							"px": [232,88],
							"fieldInstances": [
								{
									"__identifier": "text",
									"__value": "IntGrid (with rules)",
									"__type": "String",
									"defUid": 11,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["IntGrid (with rules)"]
									}]
								},
								{ "__identifier": "color", "__value": "#7F95AB", "__type": "Color", "defUid": 12, "realEditorValues": [] }
							]
						},
						{
							"__identifier": "Labels",
							"__grid": [29,5],
							"__pivot": [0.5,0.5],
							"__tile": null,
							"width": 8,
							"height": 8,
							"defUid": 10,
							"px": [472,88],
							"fieldInstances": [
								{
									"__identifier": "text",
									"__value": "Tiles",
									"__type": "String",
									"defUid": 11,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["Tiles"]
									}]
								},
								{ "__identifier": "color", "__value": "#7F95AB", "__type": "Color", "defUid": 12, "realEditorValues": [] }
							]
						},
						{
							"__identifier": "EntityFieldsTest",
							"__grid": [9,19],
							"__pivot": [0.5,0.5],
							"__tile": null,
							"width": 32,
							"height": 32,
							"defUid": 15,
							"px": [152,312],
							"fieldInstances": [
								{
									"__identifier": "Integer",
									"__value": 1,
									"__type": "Int",
									"defUid": 16,
									"realEditorValues": [{ "id": "V_Int", "params": [1] }]
								},
								{
									"__identifier": "Float",
									"__value": 1.5,
									"__type": "Float",
									"defUid": 17,
									"realEditorValues": [{ "id": "V_Float", "params": [1.5] }]
								},
								{
									"__identifier": "Boolean",
									"__value": false,
									"__type": "Bool",
									"defUid": 18,
									"realEditorValues": [null]
								},
								{
									"__identifier": "String_singleLine",
									"__value": "foo",
									"__type": "String",
									"defUid": 19,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["foo"]
									}]
								},
								{
									"__identifier": "String_multiLines",
									"__value": "foo\nbar",
									"__type": "String",
									"defUid": 20,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["foo\nbar"]
									}]
								},
								{
									"__identifier": "Enum",
									"__value": "A",
									"__type": "LocalEnum.SomeEnum",
									"defUid": 22,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["A"]
									}]
								},
								{
									"__identifier": "Color",
									"__value": "#D181E8",
									"__type": "Color",
									"defUid": 23,
									"realEditorValues": [{ "id": "V_Int", "params": [13730280] }]
								},
								{
									"__identifier": "Point",
									"__value": { "cx": 4, "cy": 17 },
									"__type": "Point",
									"defUid": 24,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["4,17"]
									}]
								},
								{
									"__identifier": "Array_Integer",
									"__value": [1,2,3],
									"__type": "Array<Int>",
									"defUid": 25,
									"realEditorValues": [ { "id": "V_Int", "params": [1] }, { "id": "V_Int", "params": [2] }, { "id": "V_Int", "params": [3] } ]
								},
								{
									"__identifier": "Array_Enum",
									"__value": [ "A", "B", "C" ],
									"__type": "Array<LocalEnum.SomeEnum>",
									"defUid": 29,
									"realEditorValues": [ {
										"id": "V_String",
										"params": ["A"]
									}, {
										"id": "V_String",
										"params": ["B"]
									}, {
										"id": "V_String",
										"params": ["C"]
									} ]
								},
								{
									"__identifier": "Array_points",
									"__value": [ { "cx": 14, "cy": 19 }, { "cx": 14, "cy": 17 }, { "cx": 18, "cy": 17 }, { "cx": 18, "cy": 19 } ],
									"__type": "Array<Point>",
									"defUid": 30,
									"realEditorValues": [ {
										"id": "V_String",
										"params": ["14,19"]
									}, {
										"id": "V_String",
										"params": ["14,17"]
									}, {
										"id": "V_String",
										"params": ["18,17"]
									}, {
										"id": "V_String",
										"params": ["18,19"]
									} ]
								},
								{
									"__identifier": "FilePath",
									"__value": "README.md",
									"__type": "FilePath",
									"defUid": 35,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["README.md"]
									}]
								},
								{
									"__identifier": "Array_multilines",
									"__value": [ "<foo/>\n<bar>5</bar>", "<hello>world</hello>" ],
									"__type": "Array<String>",
									"defUid": 37,
									"realEditorValues": [ {
										"id": "V_String",
										"params": ["<foo/>\n<bar>5</bar>"]
									}, {
										"id": "V_String",
										"params": ["<hello>world</hello>"]
									} ]
								}
							]
						},
						{
							"__identifier": "Labels",
							"__grid": [21,5],
							"__pivot": [0.5,0.5],
							"__tile": null,
							"width": 8,
							"height": 8,
							"defUid": 10,
							"px": [344,88],
							"fieldInstances": [
								{
									"__identifier": "text",
									"__value": "PureAutoLayers",
									"__type": "String",
									"defUid": 11,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["PureAutoLayers"]
									}]
								},
								{ "__identifier": "color", "__value": "#7F95AB", "__type": "Color", "defUid": 12, "realEditorValues": [] }
							]
						},
						{
							"__identifier": "Labels",
							"__grid": [21,6],
							"__pivot": [0.5,0.5],
							"__tile": null,
							"width": 8,
							"height": 8,
							"defUid": 10,
							"px": [344,104],
							"fieldInstances": [
								{
									"__identifier": "text",
									"__value": "(based on IntGrid_classic)",
									"__type": "String",
									"defUid": 11,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["(based on IntGrid_classic)"]
									}]
								},
								{
									"__identifier": "color",
									"__value": "#7182B1",
									"__type": "Color",
									"defUid": 12,
									"realEditorValues": [{ "id": "V_Int", "params": [7439025] }]
								}
							]
						},
						{
							"__identifier": "Labels",
							"__grid": [37,5],
							"__pivot": [0.5,0.5],
							"__tile": null,
							"width": 8,
							"height": 8,
							"defUid": 10,
							"px": [600,88],
							"fieldInstances": [
								{
									"__identifier": "text",
									"__value": "IntGrid with a 8px grid size",
									"__type": "String",
									"defUid": 11,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["IntGrid with a 8px grid size"]
									}]
								},
								{ "__identifier": "color", "__value": "#7F95AB", "__type": "Color", "defUid": 12, "realEditorValues": [] }
							]
						},
						{
							"__identifier": "RectRegion",
							"__grid": [23,19],
							"__pivot": [0,0],
							"__tile": null,
							"width": 128,
							"height": 80,
							"defUid": 39,
							"px": [368,304],
							"fieldInstances": [
								{
									"__identifier": "SomeEnum",
									"__value": "A",
									"__type": "LocalEnum.SomeEnum",
									"defUid": 40,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["A"]
									}]
								},
								{
									"__identifier": "Integer",
									"__value": 1,
									"__type": "Int",
									"defUid": 41,
									"realEditorValues": [{ "id": "V_Int", "params": [1] }]
								}
							]
						},
						{
							"__identifier": "CircleRegion",
							"__grid": [36,27],
							"__pivot": [0.5,0.5],
							"__tile": null,
							"width": 112,
							"height": 112,
							"defUid": 42,
							"px": [584,440],
							"fieldInstances": [
								{
									"__identifier": "SomeEnum",
									"__value": "B",
									"__type": "LocalEnum.SomeEnum",
									"defUid": 43,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["B"]
									}]
								},
								{
									"__identifier": "text",
									"__value": "hello",
									"__type": "String",
									"defUid": 44,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["hello"]
									}]
								}
							]
						}
					]
				},
				{
					"__identifier": "IntGrid_8px_grid",
					"__type": "IntGrid",
					"__cWid": 85,
					"__cHei": 71,
					"__gridSize": 8,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 0,
					"layerDefUid": 34,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,
						0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,
						1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,
						0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,
						1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [],
					"seed": 7676281,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "PureAutoLayer",
					"__type": "AutoLayer",
					"__cWid": 43,
					"__cHei": 36,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 0,
					"layerDefUid": 26,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [
						{ "px": [304,112], "src": [0,144], "f": 0, "t": 180, "d": [28,320] },
						{ "px": [320,112], "src": [0,144], "f": 0, "t": 180, "d": [28,321] },
						{ "px": [336,112], "src": [0,144], "f": 0, "t": 180, "d": [28,322] },
						{ "px": [352,112], "src": [0,144], "f": 0, "t": 180, "d": [28,323] },
						{ "px": [368,112], "src": [0,144], "f": 0, "t": 180, "d": [28,324] },
						{ "px": [384,112], "src": [0,144], "f": 0, "t": 180, "d": [28,325] },
						{ "px": [304,128], "src": [0,144], "f": 0, "t": 180, "d": [28,363] },
						{ "px": [320,128], "src": [0,144], "f": 0, "t": 180, "d": [28,364] },
						{ "px": [336,128], "src": [0,144], "f": 0, "t": 180, "d": [28,365] },
						{ "px": [352,128], "src": [0,144], "f": 0, "t": 180, "d": [28,366] },
						{ "px": [368,128], "src": [0,144], "f": 0, "t": 180, "d": [28,367] },
						{ "px": [384,128], "src": [0,144], "f": 0, "t": 180, "d": [28,368] },
						{ "px": [304,144], "src": [0,144], "f": 0, "t": 180, "d": [28,406] },
						{ "px": [320,144], "src": [0,144], "f": 0, "t": 180, "d": [28,407] },
						{ "px": [336,144], "src": [0,144], "f": 0, "t": 180, "d": [28,408] },
						{ "px": [352,144], "src": [0,144], "f": 0, "t": 180, "d": [28,409] },
						{ "px": [368,144], "src": [0,144], "f": 0, "t": 180, "d": [28,410] },
						{ "px": [384,144], "src": [0,144], "f": 0, "t": 180, "d": [28,411] },
						{ "px": [304,160], "src": [0,144], "f": 0, "t": 180, "d": [28,449] },
						{ "px": [320,160], "src": [0,144], "f": 0, "t": 180, "d": [28,450] },
						{ "px": [336,160], "src": [0,144], "f": 0, "t": 180, "d": [28,451] },
						{ "px": [352,160], "src": [0,144], "f": 0, "t": 180, "d": [28,452] },
						{ "px": [368,160], "src": [0,144], "f": 0, "t": 180, "d": [28,453] },
						{ "px": [384,160], "src": [0,144], "f": 0, "t": 180, "d": [28,454] },
						{ "px": [304,176], "src": [0,144], "f": 0, "t": 180, "d": [28,492] },
						{ "px": [320,176], "src": [0,144], "f": 0, "t": 180, "d": [28,493] },
						{ "px": [336,176], "src": [0,144], "f": 0, "t": 180, "d": [28,494] },
						{ "px": [352,176], "src": [0,144], "f": 0, "t": 180, "d": [28,495] },
						{ "px": [368,176], "src": [0,144], "f": 0, "t": 180, "d": [28,496] },
						{ "px": [384,176], "src": [0,144], "f": 0, "t": 180, "d": [28,497] },
						{ "px": [304,192], "src": [0,144], "f": 0, "t": 180, "d": [28,535] },
						{ "px": [320,192], "src": [0,144], "f": 0, "t": 180, "d": [28,536] },
						{ "px": [336,192], "src": [0,144], "f": 0, "t": 180, "d": [28,537] },
						{ "px": [352,192], "src": [0,144], "f": 0, "t": 180, "d": [28,538] },
						{ "px": [368,192], "src": [0,144], "f": 0, "t": 180, "d": [28,539] },
						{ "px": [384,192], "src": [0,144], "f": 0, "t": 180, "d": [28,540] }
					],
					"seed": 1802598,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "IntGrid_classic",
					"__type": "IntGrid",
					"__cWid": 43,
					"__cHei": 36,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 0,
					"layerDefUid": 1,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,
						0,0,0,0,0,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,
						2,2,1,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,1,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,0,0,0,0,0,0,0,0,
						0,0,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,
						0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [],
					"seed": 2892918,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "IntGrid_with_rules",
					"__type": "IntGrid",
					"__cWid": 43,
					"__cHei": 36,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 0,
					"layerDefUid": 3,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,
						1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [
						{ "px": [208,112], "src": [0,112], "f": 0, "t": 140, "d": [5,314] },
						{ "px": [240,112], "src": [0,112], "f": 0, "t": 140, "d": [5,316] },
						{ "px": [176,128], "src": [0,112], "f": 0, "t": 140, "d": [5,355] },
						{ "px": [208,128], "src": [0,112], "f": 0, "t": 140, "d": [5,357] },
						{ "px": [240,128], "src": [0,112], "f": 0, "t": 140, "d": [5,359] },
						{ "px": [256,128], "src": [0,112], "f": 0, "t": 140, "d": [5,360] },
						{ "px": [176,144], "src": [0,112], "f": 0, "t": 140, "d": [5,398] },
						{ "px": [192,144], "src": [0,112], "f": 0, "t": 140, "d": [5,399] },
						{ "px": [208,144], "src": [0,112], "f": 0, "t": 140, "d": [5,400] },
						{ "px": [224,144], "src": [0,112], "f": 0, "t": 140, "d": [5,401] },
						{ "px": [240,144], "src": [0,112], "f": 0, "t": 140, "d": [5,402] },
						{ "px": [256,144], "src": [0,112], "f": 0, "t": 140, "d": [5,403] },
						{ "px": [176,160], "src": [0,112], "f": 0, "t": 140, "d": [5,441] },
						{ "px": [208,160], "src": [0,112], "f": 0, "t": 140, "d": [5,443] },
						{ "px": [240,160], "src": [0,112], "f": 0, "t": 140, "d": [5,445] },
						{ "px": [256,160], "src": [0,112], "f": 0, "t": 140, "d": [5,446] },
						{ "px": [176,176], "src": [0,112], "f": 0, "t": 140, "d": [5,484] },
						{ "px": [192,176], "src": [0,112], "f": 0, "t": 140, "d": [5,485] },
						{ "px": [208,176], "src": [0,112], "f": 0, "t": 140, "d": [5,486] },
						{ "px": [224,176], "src": [0,112], "f": 0, "t": 140, "d": [5,487] },
						{ "px": [240,176], "src": [0,112], "f": 0, "t": 140, "d": [5,488] },
						{ "px": [256,176], "src": [0,112], "f": 0, "t": 140, "d": [5,489] },
						{ "px": [208,192], "src": [0,112], "f": 0, "t": 140, "d": [5,529] },
						{ "px": [240,192], "src": [0,112], "f": 0, "t": 140, "d": [5,531] },
						{ "px": [176,112], "src": [64,128], "f": 0, "t": 164, "d": [7,312] },
						{ "px": [256,112], "src": [64,128], "f": 1, "t": 164, "d": [7,317] },
						{ "px": [176,192], "src": [64,128], "f": 2, "t": 164, "d": [7,527] },
						{ "px": [256,192], "src": [64,128], "f": 3, "t": 164, "d": [7,532] },
						{ "px": [192,128], "src": [128,0], "f": 0, "t": 8, "d": [6,356] },
						{ "px": [192,144], "src": [128,16], "f": 0, "t": 28, "d": [6,356] },
						{ "px": [208,128], "src": [144,0], "f": 0, "t": 9, "d": [6,356] },
						{ "px": [208,144], "src": [144,16], "f": 0, "t": 29, "d": [6,356] },
						{ "px": [224,128], "src": [128,0], "f": 0, "t": 8, "d": [6,358] },
						{ "px": [224,144], "src": [128,16], "f": 0, "t": 28, "d": [6,358] },
						{ "px": [240,128], "src": [144,0], "f": 0, "t": 9, "d": [6,358] },
						{ "px": [240,144], "src": [144,16], "f": 0, "t": 29, "d": [6,358] },
						{ "px": [192,160], "src": [128,0], "f": 0, "t": 8, "d": [6,442] },
						{ "px": [192,176], "src": [128,16], "f": 0, "t": 28, "d": [6,442] },
						{ "px": [208,160], "src": [144,0], "f": 0, "t": 9, "d": [6,442] },
						{ "px": [208,176], "src": [144,16], "f": 0, "t": 29, "d": [6,442] },
						{ "px": [224,160], "src": [128,0], "f": 0, "t": 8, "d": [6,444] },
						{ "px": [224,176], "src": [128,16], "f": 0, "t": 28, "d": [6,444] },
						{ "px": [240,160], "src": [144,0], "f": 0, "t": 9, "d": [6,444] },
						{ "px": [240,176], "src": [144,16], "f": 0, "t": 29, "d": [6,444] },
						{ "px": [192,112], "src": [64,80], "f": 0, "t": 104, "d": [9,313] },
						{ "px": [208,112], "src": [80,80], "f": 0, "t": 105, "d": [9,313] },
						{ "px": [224,112], "src": [64,80], "f": 0, "t": 104, "d": [9,315] },
						{ "px": [240,112], "src": [80,80], "f": 0, "t": 105, "d": [9,315] },
						{ "px": [192,192], "src": [64,80], "f": 0, "t": 104, "d": [8,528] },
						{ "px": [208,192], "src": [80,80], "f": 0, "t": 105, "d": [8,528] },
						{ "px": [224,192], "src": [64,80], "f": 0, "t": 104, "d": [8,530] },
						{ "px": [240,192], "src": [80,80], "f": 0, "t": 105, "d": [8,530] }
					],
					"seed": 8219889,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "Tiles",
					"__type": "Tiles",
					"__cWid": 43,
					"__cHei": 36,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 0,
					"layerDefUid": 14,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 1504355,
					"overrideTilesetUid": null,
					"gridTiles": [
						{ "px": [432,112], "src": [16,192], "f": 0, "t": 241, "d": [328] },
						{ "px": [448,112], "src": [32,192], "f": 0, "t": 242, "d": [329] },
						{ "px": [464,112], "src": [128,64], "f": 2, "t": 88, "d": [330] },
						{ "px": [480,112], "src": [144,64], "f": 2, "t": 89, "d": [331] },
						{ "px": [496,112], "src": [96,0], "f": 0, "t": 6, "d": [332] },
						{ "px": [512,112], "src": [112,0], "f": 0, "t": 7, "d": [333] },
						{ "px": [432,128], "src": [16,208], "f": 0, "t": 261, "d": [371] },
						{ "px": [448,128], "src": [32,208], "f": 0, "t": 262, "d": [372] },
						{ "px": [464,128], "src": [128,64], "f": 0, "t": 88, "d": [373] },
						{ "px": [480,128], "src": [144,64], "f": 0, "t": 89, "d": [374] },
						{ "px": [496,128], "src": [96,16], "f": 0, "t": 26, "d": [375] },
						{ "px": [512,128], "src": [112,16], "f": 0, "t": 27, "d": [376] },
						{ "px": [448,144], "src": [64,112], "f": 0, "t": 144, "d": [415] },
						{ "px": [464,144], "src": [96,32], "f": 0, "t": 46, "d": [416] },
						{ "px": [480,144], "src": [112,32], "f": 0, "t": 47, "d": [417] },
						{ "px": [496,144], "src": [64,112], "f": 1, "t": 144, "d": [418] },
						{ "px": [448,160], "src": [64,112], "f": 2, "t": 144, "d": [458] },
						{ "px": [464,160], "src": [96,48], "f": 0, "t": 66, "d": [459] },
						{ "px": [480,160], "src": [112,48], "f": 0, "t": 67, "d": [460] },
						{ "px": [496,160], "src": [64,112], "f": 3, "t": 144, "d": [461] },
						{ "px": [432,176], "src": [32,32], "f": 0, "t": 42, "d": [500] },
						{ "px": [448,176], "src": [48,32], "f": 0, "t": 43, "d": [501] },
						{ "px": [464,176], "src": [128,64], "f": 2, "t": 88, "d": [502] },
						{ "px": [480,176], "src": [144,64], "f": 2, "t": 89, "d": [503] },
						{ "px": [496,176], "src": [64,32], "f": 0, "t": 44, "d": [504] },
						{ "px": [512,176], "src": [80,32], "f": 0, "t": 45, "d": [505] },
						{ "px": [432,192], "src": [32,48], "f": 0, "t": 62, "d": [543] },
						{ "px": [448,192], "src": [48,48], "f": 0, "t": 63, "d": [544] },
						{ "px": [464,192], "src": [128,64], "f": 0, "t": 88, "d": [545] },
						{ "px": [480,192], "src": [144,64], "f": 0, "t": 89, "d": [546] },
						{ "px": [496,192], "src": [64,48], "f": 0, "t": 64, "d": [547] },
						{ "px": [512,192], "src": [80,48], "f": 0, "t": 65, "d": [548] }
					],
					"entityInstances": []
				}
			],
			"__neighbours": [{ "levelUid": 32, "dir": "s" }]
		},
		{
			"identifier": "Level2",
			"uid": 32,
			"worldX": 0,
			"worldY": 600,
			"pxWid": 256,
			"pxHei": 256,
			"__bgColor": "#6E6F8B",
			"bgColor": null,
			"bgRelPath": null,
			"bgPos": null,
			"bgPivotX": 0.5,
			"bgPivotY": 0.5,
			"__bgPos": null,
			"externalRelPath": null,
			"fieldInstances": [{ "__identifier": "desc", "__value": null, "__type": "String", "defUid": 38, "realEditorValues": [] }],
			"layerInstances": [
				{
					"__identifier": "Entities",
					"__type": "Entities",
					"__cWid": 16,
					"__cHei": 16,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 32,
					"layerDefUid": 13,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 8894473,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": [
						{
							"__identifier": "EntityFieldsTest",
							"__grid": [7,5],
							"__pivot": [0.5,0.5],
							"__tile": null,
							"width": 32,
							"height": 32,
							"defUid": 15,
							"px": [120,88],
							"fieldInstances": [
								{
									"__identifier": "Integer",
									"__value": 2,
									"__type": "Int",
									"defUid": 16,
									"realEditorValues": [{ "id": "V_Int", "params": [2] }]
								},
								{
									"__identifier": "Float",
									"__value": 2.5,
									"__type": "Float",
									"defUid": 17,
									"realEditorValues": [{ "id": "V_Float", "params": [2.5] }]
								},
								{
									"__identifier": "Boolean",
									"__value": false,
									"__type": "Bool",
									"defUid": 18,
									"realEditorValues": [{
										"id": "V_Bool",
										"params": [ false ]
									}]
								},
								{
									"__identifier": "String_singleLine",
									"__value": "bar",
									"__type": "String",
									"defUid": 19,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["bar"]
									}]
								},
								{
									"__identifier": "String_multiLines",
									"__value": "hello\nworld",
									"__type": "String",
									"defUid": 20,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["hello\nworld"]
									}]
								},
								{
									"__identifier": "Enum",
									"__value": "D",
									"__type": "LocalEnum.SomeEnum",
									"defUid": 22,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["D"]
									}]
								},
								{
									"__identifier": "Color",
									"__value": "#D63C3C",
									"__type": "Color",
									"defUid": 23,
									"realEditorValues": [{ "id": "V_Int", "params": [14040124] }]
								},
								{ "__identifier": "Point", "__value": null, "__type": "Point", "defUid": 24, "realEditorValues": [] },
								{
									"__identifier": "Array_Integer",
									"__value": [10,0,20],
									"__type": "Array<Int>",
									"defUid": 25,
									"realEditorValues": [ { "id": "V_Int", "params": [10] }, null, { "id": "V_Int", "params": [20] } ]
								},
								{ "__identifier": "Array_Enum", "__value": [], "__type": "Array<LocalEnum.SomeEnum>", "defUid": 29, "realEditorValues": [] },
								{ "__identifier": "Array_points", "__value": [], "__type": "Array<Point>", "defUid": 30, "realEditorValues": [] },
								{
									"__identifier": "FilePath",
									"__value": "README.md",
									"__type": "FilePath",
									"defUid": 35,
									"realEditorValues": [{
										"id": "V_String",
										"params": ["README.md"]
									}]
								},
								{ "__identifier": "Array_multilines", "__value": [], "__type": "Array<String>", "defUid": 37, "realEditorValues": [] }
							]
						}
					]
				},
				{
					"__identifier": "IntGrid_8px_grid",
					"__type": "IntGrid",
					"__cWid": 32,
					"__cHei": 32,
					"__gridSize": 8,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 32,
					"layerDefUid": 34,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [],
					"seed": 2324562,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "PureAutoLayer",
					"__type": "AutoLayer",
					"__cWid": 16,
					"__cHei": 16,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 32,
					"layerDefUid": 26,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 106526,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "IntGrid_classic",
					"__type": "IntGrid",
					"__cWid": 16,
					"__cHei": 16,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 32,
					"layerDefUid": 1,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [],
					"seed": 3262174,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "IntGrid_with_rules",
					"__type": "IntGrid",
					"__cWid": 16,
					"__cHei": 16,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 32,
					"layerDefUid": 3,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,
						1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,
						0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,0,
						0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,
						1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,
						0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,
						1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [
						{ "px": [48,16], "src": [0,112], "f": 0, "t": 140, "d": [5,19] },
						{ "px": [80,16], "src": [0,112], "f": 0, "t": 140, "d": [5,21] },
						{ "px": [112,16], "src": [0,112], "f": 0, "t": 140, "d": [5,23] },
						{ "px": [144,16], "src": [0,112], "f": 0, "t": 140, "d": [5,25] },
						{ "px": [176,16], "src": [0,112], "f": 0, "t": 140, "d": [5,27] },
						{ "px": [208,16], "src": [0,112], "f": 0, "t": 140, "d": [5,29] },
						{ "px": [16,32], "src": [0,112], "f": 0, "t": 140, "d": [5,33] },
						{ "px": [48,32], "src": [0,112], "f": 0, "t": 140, "d": [5,35] },
						{ "px": [64,32], "src": [0,112], "f": 0, "t": 140, "d": [5,36] },
						{ "px": [80,32], "src": [0,112], "f": 0, "t": 140, "d": [5,37] },
						{ "px": [96,32], "src": [0,112], "f": 0, "t": 140, "d": [5,38] },
						{ "px": [112,32], "src": [0,112], "f": 0, "t": 140, "d": [5,39] },
						{ "px": [128,32], "src": [0,112], "f": 0, "t": 140, "d": [5,40] },
						{ "px": [144,32], "src": [0,112], "f": 0, "t": 140, "d": [5,41] },
						{ "px": [160,32], "src": [0,112], "f": 0, "t": 140, "d": [5,42] },
						{ "px": [176,32], "src": [0,112], "f": 0, "t": 140, "d": [5,43] },
						{ "px": [208,32], "src": [0,112], "f": 0, "t": 140, "d": [5,45] },
						{ "px": [224,32], "src": [0,112], "f": 0, "t": 140, "d": [5,46] },
						{ "px": [16,48], "src": [0,112], "f": 0, "t": 140, "d": [5,49] },
						{ "px": [32,48], "src": [0,112], "f": 0, "t": 140, "d": [5,50] },
						{ "px": [48,48], "src": [0,112], "f": 0, "t": 140, "d": [5,51] },
						{ "px": [80,48], "src": [0,112], "f": 0, "t": 140, "d": [5,53] },
						{ "px": [112,48], "src": [0,112], "f": 0, "t": 140, "d": [5,55] },
						{ "px": [144,48], "src": [0,112], "f": 0, "t": 140, "d": [5,57] },
						{ "px": [176,48], "src": [0,112], "f": 0, "t": 140, "d": [5,59] },
						{ "px": [192,48], "src": [0,112], "f": 0, "t": 140, "d": [5,60] },
						{ "px": [208,48], "src": [0,112], "f": 0, "t": 140, "d": [5,61] },
						{ "px": [224,48], "src": [0,112], "f": 0, "t": 140, "d": [5,62] },
						{ "px": [16,64], "src": [0,112], "f": 0, "t": 140, "d": [5,65] },
						{ "px": [48,64], "src": [0,112], "f": 0, "t": 140, "d": [5,67] },
						{ "px": [208,64], "src": [0,112], "f": 0, "t": 140, "d": [5,77] },
						{ "px": [224,64], "src": [0,112], "f": 0, "t": 140, "d": [5,78] },
						{ "px": [16,80], "src": [0,112], "f": 0, "t": 140, "d": [5,81] },
						{ "px": [32,80], "src": [0,112], "f": 0, "t": 140, "d": [5,82] },
						{ "px": [48,80], "src": [0,112], "f": 0, "t": 140, "d": [5,83] },
						{ "px": [192,80], "src": [0,112], "f": 0, "t": 140, "d": [5,92] },
						{ "px": [208,80], "src": [0,112], "f": 0, "t": 140, "d": [5,93] },
						{ "px": [224,80], "src": [0,112], "f": 0, "t": 140, "d": [5,94] },
						{ "px": [16,96], "src": [0,112], "f": 0, "t": 140, "d": [5,97] },
						{ "px": [48,96], "src": [0,112], "f": 0, "t": 140, "d": [5,99] },
						{ "px": [208,96], "src": [0,112], "f": 0, "t": 140, "d": [5,109] },
						{ "px": [224,96], "src": [0,112], "f": 0, "t": 140, "d": [5,110] },
						{ "px": [16,112], "src": [0,112], "f": 0, "t": 140, "d": [5,113] },
						{ "px": [32,112], "src": [0,112], "f": 0, "t": 140, "d": [5,114] },
						{ "px": [48,112], "src": [0,112], "f": 0, "t": 140, "d": [5,115] },
						{ "px": [192,112], "src": [0,112], "f": 0, "t": 140, "d": [5,124] },
						{ "px": [208,112], "src": [0,112], "f": 0, "t": 140, "d": [5,125] },
						{ "px": [224,112], "src": [0,112], "f": 0, "t": 140, "d": [5,126] },
						{ "px": [16,128], "src": [0,112], "f": 0, "t": 140, "d": [5,129] },
						{ "px": [48,128], "src": [0,112], "f": 0, "t": 140, "d": [5,131] },
						{ "px": [208,128], "src": [0,112], "f": 0, "t": 140, "d": [5,141] },
						{ "px": [224,128], "src": [0,112], "f": 0, "t": 140, "d": [5,142] },
						{ "px": [16,144], "src": [0,112], "f": 0, "t": 140, "d": [5,145] },
						{ "px": [32,144], "src": [0,112], "f": 0, "t": 140, "d": [5,146] },
						{ "px": [48,144], "src": [0,112], "f": 0, "t": 140, "d": [5,147] },
						{ "px": [192,144], "src": [0,112], "f": 0, "t": 140, "d": [5,156] },
						{ "px": [208,144], "src": [0,112], "f": 0, "t": 140, "d": [5,157] },
						{ "px": [224,144], "src": [0,112], "f": 0, "t": 140, "d": [5,158] },
						{ "px": [16,160], "src": [0,112], "f": 0, "t": 140, "d": [5,161] },
						{ "px": [48,160], "src": [0,112], "f": 0, "t": 140, "d": [5,163] },
						{ "px": [208,160], "src": [0,112], "f": 0, "t": 140, "d": [5,173] },
						{ "px": [224,160], "src": [0,112], "f": 0, "t": 140, "d": [5,174] },
						{ "px": [16,176], "src": [0,112], "f": 0, "t": 140, "d": [5,177] },
						{ "px": [32,176], "src": [0,112], "f": 0, "t": 140, "d": [5,178] },
						{ "px": [48,176], "src": [0,112], "f": 0, "t": 140, "d": [5,179] },
						{ "px": [192,176], "src": [0,112], "f": 0, "t": 140, "d": [5,188] },
						{ "px": [208,176], "src": [0,112], "f": 0, "t": 140, "d": [5,189] },
						{ "px": [224,176], "src": [0,112], "f": 0, "t": 140, "d": [5,190] },
						{ "px": [16,192], "src": [0,112], "f": 0, "t": 140, "d": [5,193] },
						{ "px": [48,192], "src": [0,112], "f": 0, "t": 140, "d": [5,195] },
						{ "px": [80,192], "src": [0,112], "f": 0, "t": 140, "d": [5,197] },
						{ "px": [112,192], "src": [0,112], "f": 0, "t": 140, "d": [5,199] },
						{ "px": [144,192], "src": [0,112], "f": 0, "t": 140, "d": [5,201] },
						{ "px": [176,192], "src": [0,112], "f": 0, "t": 140, "d": [5,203] },
						{ "px": [208,192], "src": [0,112], "f": 0, "t": 140, "d": [5,205] },
						{ "px": [224,192], "src": [0,112], "f": 0, "t": 140, "d": [5,206] },
						{ "px": [16,208], "src": [0,112], "f": 0, "t": 140, "d": [5,209] },
						{ "px": [32,208], "src": [0,112], "f": 0, "t": 140, "d": [5,210] },
						{ "px": [48,208], "src": [0,112], "f": 0, "t": 140, "d": [5,211] },
						{ "px": [64,208], "src": [0,112], "f": 0, "t": 140, "d": [5,212] },
						{ "px": [80,208], "src": [0,112], "f": 0, "t": 140, "d": [5,213] },
						{ "px": [96,208], "src": [0,112], "f": 0, "t": 140, "d": [5,214] },
						{ "px": [112,208], "src": [0,112], "f": 0, "t": 140, "d": [5,215] },
						{ "px": [128,208], "src": [0,112], "f": 0, "t": 140, "d": [5,216] },
						{ "px": [144,208], "src": [0,112], "f": 0, "t": 140, "d": [5,217] },
						{ "px": [160,208], "src": [0,112], "f": 0, "t": 140, "d": [5,218] },
						{ "px": [176,208], "src": [0,112], "f": 0, "t": 140, "d": [5,219] },
						{ "px": [192,208], "src": [0,112], "f": 0, "t": 140, "d": [5,220] },
						{ "px": [208,208], "src": [0,112], "f": 0, "t": 140, "d": [5,221] },
						{ "px": [224,208], "src": [0,112], "f": 0, "t": 140, "d": [5,222] },
						{ "px": [48,224], "src": [0,112], "f": 0, "t": 140, "d": [5,227] },
						{ "px": [80,224], "src": [0,112], "f": 0, "t": 140, "d": [5,229] },
						{ "px": [112,224], "src": [0,112], "f": 0, "t": 140, "d": [5,231] },
						{ "px": [144,224], "src": [0,112], "f": 0, "t": 140, "d": [5,233] },
						{ "px": [176,224], "src": [0,112], "f": 0, "t": 140, "d": [5,235] },
						{ "px": [208,224], "src": [0,112], "f": 0, "t": 140, "d": [5,237] },
						{ "px": [16,16], "src": [64,128], "f": 0, "t": 164, "d": [7,17] },
						{ "px": [224,16], "src": [64,128], "f": 1, "t": 164, "d": [7,30] },
						{ "px": [16,224], "src": [64,128], "f": 2, "t": 164, "d": [7,225] },
						{ "px": [224,224], "src": [64,128], "f": 3, "t": 164, "d": [7,238] },
						{ "px": [32,32], "src": [128,0], "f": 0, "t": 8, "d": [6,34] },
						{ "px": [32,48], "src": [128,16], "f": 0, "t": 28, "d": [6,34] },
						{ "px": [48,32], "src": [144,0], "f": 0, "t": 9, "d": [6,34] },
						{ "px": [48,48], "src": [144,16], "f": 0, "t": 29, "d": [6,34] },
						{ "px": [192,32], "src": [128,0], "f": 0, "t": 8, "d": [6,44] },
						{ "px": [192,48], "src": [128,16], "f": 0, "t": 28, "d": [6,44] },
						{ "px": [208,32], "src": [144,0], "f": 0, "t": 9, "d": [6,44] },
						{ "px": [208,48], "src": [144,16], "f": 0, "t": 29, "d": [6,44] },
						{ "px": [32,64], "src": [128,0], "f": 0, "t": 8, "d": [6,66] },
						{ "px": [32,80], "src": [128,16], "f": 0, "t": 28, "d": [6,66] },
						{ "px": [48,64], "src": [144,0], "f": 0, "t": 9, "d": [6,66] },
						{ "px": [48,80], "src": [144,16], "f": 0, "t": 29, "d": [6,66] },
						{ "px": [192,64], "src": [128,0], "f": 0, "t": 8, "d": [6,76] },
						{ "px": [192,80], "src": [128,16], "f": 0, "t": 28, "d": [6,76] },
						{ "px": [208,64], "src": [144,0], "f": 0, "t": 9, "d": [6,76] },
						{ "px": [208,80], "src": [144,16], "f": 0, "t": 29, "d": [6,76] },
						{ "px": [32,96], "src": [128,0], "f": 0, "t": 8, "d": [6,98] },
						{ "px": [32,112], "src": [128,16], "f": 0, "t": 28, "d": [6,98] },
						{ "px": [48,96], "src": [144,0], "f": 0, "t": 9, "d": [6,98] },
						{ "px": [48,112], "src": [144,16], "f": 0, "t": 29, "d": [6,98] },
						{ "px": [192,96], "src": [128,0], "f": 0, "t": 8, "d": [6,108] },
						{ "px": [192,112], "src": [128,16], "f": 0, "t": 28, "d": [6,108] },
						{ "px": [208,96], "src": [144,0], "f": 0, "t": 9, "d": [6,108] },
						{ "px": [208,112], "src": [144,16], "f": 0, "t": 29, "d": [6,108] },
						{ "px": [32,128], "src": [128,0], "f": 0, "t": 8, "d": [6,130] },
						{ "px": [32,144], "src": [128,16], "f": 0, "t": 28, "d": [6,130] },
						{ "px": [48,128], "src": [144,0], "f": 0, "t": 9, "d": [6,130] },
						{ "px": [48,144], "src": [144,16], "f": 0, "t": 29, "d": [6,130] },
						{ "px": [192,128], "src": [128,0], "f": 0, "t": 8, "d": [6,140] },
						{ "px": [192,144], "src": [128,16], "f": 0, "t": 28, "d": [6,140] },
						{ "px": [208,128], "src": [144,0], "f": 0, "t": 9, "d": [6,140] },
						{ "px": [208,144], "src": [144,16], "f": 0, "t": 29, "d": [6,140] },
						{ "px": [32,160], "src": [128,0], "f": 0, "t": 8, "d": [6,162] },
						{ "px": [32,176], "src": [128,16], "f": 0, "t": 28, "d": [6,162] },
						{ "px": [48,160], "src": [144,0], "f": 0, "t": 9, "d": [6,162] },
						{ "px": [48,176], "src": [144,16], "f": 0, "t": 29, "d": [6,162] },
						{ "px": [192,160], "src": [128,0], "f": 0, "t": 8, "d": [6,172] },
						{ "px": [192,176], "src": [128,16], "f": 0, "t": 28, "d": [6,172] },
						{ "px": [208,160], "src": [144,0], "f": 0, "t": 9, "d": [6,172] },
						{ "px": [208,176], "src": [144,16], "f": 0, "t": 29, "d": [6,172] },
						{ "px": [32,192], "src": [128,0], "f": 0, "t": 8, "d": [6,194] },
						{ "px": [32,208], "src": [128,16], "f": 0, "t": 28, "d": [6,194] },
						{ "px": [48,192], "src": [144,0], "f": 0, "t": 9, "d": [6,194] },
						{ "px": [48,208], "src": [144,16], "f": 0, "t": 29, "d": [6,194] },
						{ "px": [192,192], "src": [128,0], "f": 0, "t": 8, "d": [6,204] },
						{ "px": [192,208], "src": [128,16], "f": 0, "t": 28, "d": [6,204] },
						{ "px": [208,192], "src": [144,0], "f": 0, "t": 9, "d": [6,204] },
						{ "px": [208,208], "src": [144,16], "f": 0, "t": 29, "d": [6,204] },
						{ "px": [32,16], "src": [64,80], "f": 0, "t": 104, "d": [9,18] },
						{ "px": [48,16], "src": [80,80], "f": 0, "t": 105, "d": [9,18] },
						{ "px": [64,16], "src": [64,80], "f": 0, "t": 104, "d": [9,20] },
						{ "px": [80,16], "src": [80,80], "f": 0, "t": 105, "d": [9,20] },
						{ "px": [96,16], "src": [64,80], "f": 0, "t": 104, "d": [9,22] },
						{ "px": [112,16], "src": [80,80], "f": 0, "t": 105, "d": [9,22] },
						{ "px": [128,16], "src": [64,80], "f": 0, "t": 104, "d": [9,24] },
						{ "px": [144,16], "src": [80,80], "f": 0, "t": 105, "d": [9,24] },
						{ "px": [160,16], "src": [64,80], "f": 0, "t": 104, "d": [9,26] },
						{ "px": [176,16], "src": [80,80], "f": 0, "t": 105, "d": [9,26] },
						{ "px": [192,16], "src": [64,80], "f": 0, "t": 104, "d": [9,28] },
						{ "px": [208,16], "src": [80,80], "f": 0, "t": 105, "d": [9,28] },
						{ "px": [64,192], "src": [64,80], "f": 0, "t": 104, "d": [9,196] },
						{ "px": [80,192], "src": [80,80], "f": 0, "t": 105, "d": [9,196] },
						{ "px": [96,192], "src": [64,80], "f": 0, "t": 104, "d": [9,198] },
						{ "px": [112,192], "src": [80,80], "f": 0, "t": 105, "d": [9,198] },
						{ "px": [128,192], "src": [64,80], "f": 0, "t": 104, "d": [9,200] },
						{ "px": [144,192], "src": [80,80], "f": 0, "t": 105, "d": [9,200] },
						{ "px": [160,192], "src": [64,80], "f": 0, "t": 104, "d": [9,202] },
						{ "px": [176,192], "src": [80,80], "f": 0, "t": 105, "d": [9,202] },
						{ "px": [64,48], "src": [64,80], "f": 0, "t": 104, "d": [8,52] },
						{ "px": [80,48], "src": [80,80], "f": 0, "t": 105, "d": [8,52] },
						{ "px": [96,48], "src": [64,80], "f": 0, "t": 104, "d": [8,54] },
						{ "px": [112,48], "src": [80,80], "f": 0, "t": 105, "d": [8,54] },
						{ "px": [128,48], "src": [64,80], "f": 0, "t": 104, "d": [8,56] },
						{ "px": [144,48], "src": [80,80], "f": 0, "t": 105, "d": [8,56] },
						{ "px": [160,48], "src": [64,80], "f": 0, "t": 104, "d": [8,58] },
						{ "px": [176,48], "src": [80,80], "f": 0, "t": 105, "d": [8,58] },
						{ "px": [32,224], "src": [64,80], "f": 0, "t": 104, "d": [8,226] },
						{ "px": [48,224], "src": [80,80], "f": 0, "t": 105, "d": [8,226] },
						{ "px": [64,224], "src": [64,80], "f": 0, "t": 104, "d": [8,228] },
						{ "px": [80,224], "src": [80,80], "f": 0, "t": 105, "d": [8,228] },
						{ "px": [96,224], "src": [64,80], "f": 0, "t": 104, "d": [8,230] },
						{ "px": [112,224], "src": [80,80], "f": 0, "t": 105, "d": [8,230] },
						{ "px": [128,224], "src": [64,80], "f": 0, "t": 104, "d": [8,232] },
						{ "px": [144,224], "src": [80,80], "f": 0, "t": 105, "d": [8,232] },
						{ "px": [160,224], "src": [64,80], "f": 0, "t": 104, "d": [8,234] },
						{ "px": [176,224], "src": [80,80], "f": 0, "t": 105, "d": [8,234] },
						{ "px": [192,224], "src": [64,80], "f": 0, "t": 104, "d": [8,236] },
						{ "px": [208,224], "src": [80,80], "f": 0, "t": 105, "d": [8,236] }
					],
					"seed": 5440332,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "Tiles",
					"__type": "Tiles",
					"__cWid": 16,
					"__cHei": 16,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 32,
					"layerDefUid": 14,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 5395320,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				}
			],
			"__neighbours": [ { "levelUid": 33, "dir": "s" }, { "levelUid": 0, "dir": "n" } ]
		},
		{
			"identifier": "Level3",
			"uid": 33,
			"worldX": 0,
			"worldY": 888,
			"pxWid": 256,
			"pxHei": 160,
			"__bgColor": "#6E6F8B",
			"bgColor": null,
			"bgRelPath": null,
			"bgPos": null,
			"bgPivotX": 0.5,
			"bgPivotY": 0.5,
			"__bgPos": null,
			"externalRelPath": null,
			"fieldInstances": [{ "__identifier": "desc", "__value": null, "__type": "String", "defUid": 38, "realEditorValues": [] }],
			"layerInstances": [
				{
					"__identifier": "Entities",
					"__type": "Entities",
					"__cWid": 16,
					"__cHei": 10,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 33,
					"layerDefUid": 13,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 8894473,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "IntGrid_8px_grid",
					"__type": "IntGrid",
					"__cWid": 32,
					"__cHei": 20,
					"__gridSize": 8,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 33,
					"layerDefUid": 34,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [],
					"seed": 9843615,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "PureAutoLayer",
					"__type": "AutoLayer",
					"__cWid": 16,
					"__cHei": 10,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 33,
					"layerDefUid": 26,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 106526,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "IntGrid_classic",
					"__type": "IntGrid",
					"__cWid": 16,
					"__cHei": 10,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 33,
					"layerDefUid": 1,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,
						0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [],
					"seed": 3262174,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "IntGrid_with_rules",
					"__type": "IntGrid",
					"__cWid": 16,
					"__cHei": 10,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 33,
					"layerDefUid": 3,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,
						1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,
						1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [
						{ "px": [80,48], "src": [0,112], "f": 0, "t": 140, "d": [5,53] },
						{ "px": [112,48], "src": [0,112], "f": 0, "t": 140, "d": [5,55] },
						{ "px": [144,48], "src": [0,112], "f": 0, "t": 140, "d": [5,57] },
						{ "px": [80,64], "src": [0,112], "f": 0, "t": 140, "d": [5,69] },
						{ "px": [112,64], "src": [0,112], "f": 0, "t": 140, "d": [5,71] },
						{ "px": [144,64], "src": [0,112], "f": 0, "t": 140, "d": [5,73] },
						{ "px": [176,64], "src": [0,112], "f": 0, "t": 140, "d": [5,75] },
						{ "px": [64,80], "src": [0,112], "f": 0, "t": 140, "d": [5,84] },
						{ "px": [80,80], "src": [0,112], "f": 0, "t": 140, "d": [5,85] },
						{ "px": [96,80], "src": [0,112], "f": 0, "t": 140, "d": [5,86] },
						{ "px": [112,80], "src": [0,112], "f": 0, "t": 140, "d": [5,87] },
						{ "px": [128,80], "src": [0,112], "f": 0, "t": 140, "d": [5,88] },
						{ "px": [144,80], "src": [0,112], "f": 0, "t": 140, "d": [5,89] },
						{ "px": [160,80], "src": [0,112], "f": 0, "t": 140, "d": [5,90] },
						{ "px": [176,80], "src": [0,112], "f": 0, "t": 140, "d": [5,91] },
						{ "px": [80,96], "src": [0,112], "f": 0, "t": 140, "d": [5,101] },
						{ "px": [112,96], "src": [0,112], "f": 0, "t": 140, "d": [5,103] },
						{ "px": [144,96], "src": [0,112], "f": 0, "t": 140, "d": [5,105] },
						{ "px": [176,48], "src": [64,128], "f": 1, "t": 164, "d": [7,59] },
						{ "px": [176,96], "src": [64,128], "f": 3, "t": 164, "d": [7,107] },
						{ "px": [64,64], "src": [128,0], "f": 0, "t": 8, "d": [6,68] },
						{ "px": [64,80], "src": [128,16], "f": 0, "t": 28, "d": [6,68] },
						{ "px": [80,64], "src": [144,0], "f": 0, "t": 9, "d": [6,68] },
						{ "px": [80,80], "src": [144,16], "f": 0, "t": 29, "d": [6,68] },
						{ "px": [96,64], "src": [128,0], "f": 0, "t": 8, "d": [6,70] },
						{ "px": [96,80], "src": [128,16], "f": 0, "t": 28, "d": [6,70] },
						{ "px": [112,64], "src": [144,0], "f": 0, "t": 9, "d": [6,70] },
						{ "px": [112,80], "src": [144,16], "f": 0, "t": 29, "d": [6,70] },
						{ "px": [128,64], "src": [128,0], "f": 0, "t": 8, "d": [6,72] },
						{ "px": [128,80], "src": [128,16], "f": 0, "t": 28, "d": [6,72] },
						{ "px": [144,64], "src": [144,0], "f": 0, "t": 9, "d": [6,72] },
						{ "px": [144,80], "src": [144,16], "f": 0, "t": 29, "d": [6,72] },
						{ "px": [160,64], "src": [128,0], "f": 0, "t": 8, "d": [6,74] },
						{ "px": [160,80], "src": [128,16], "f": 0, "t": 28, "d": [6,74] },
						{ "px": [176,64], "src": [144,0], "f": 0, "t": 9, "d": [6,74] },
						{ "px": [176,80], "src": [144,16], "f": 0, "t": 29, "d": [6,74] },
						{ "px": [64,48], "src": [64,80], "f": 0, "t": 104, "d": [9,52] },
						{ "px": [80,48], "src": [80,80], "f": 0, "t": 105, "d": [9,52] },
						{ "px": [96,48], "src": [64,80], "f": 0, "t": 104, "d": [9,54] },
						{ "px": [112,48], "src": [80,80], "f": 0, "t": 105, "d": [9,54] },
						{ "px": [128,48], "src": [64,80], "f": 0, "t": 104, "d": [9,56] },
						{ "px": [144,48], "src": [80,80], "f": 0, "t": 105, "d": [9,56] },
						{ "px": [160,48], "src": [64,80], "f": 0, "t": 104, "d": [9,58] },
						{ "px": [176,48], "src": [80,80], "f": 0, "t": 105, "d": [9,58] },
						{ "px": [64,96], "src": [64,80], "f": 0, "t": 104, "d": [8,100] },
						{ "px": [80,96], "src": [80,80], "f": 0, "t": 105, "d": [8,100] },
						{ "px": [96,96], "src": [64,80], "f": 0, "t": 104, "d": [8,102] },
						{ "px": [112,96], "src": [80,80], "f": 0, "t": 105, "d": [8,102] },
						{ "px": [128,96], "src": [64,80], "f": 0, "t": 104, "d": [8,104] },
						{ "px": [144,96], "src": [80,80], "f": 0, "t": 105, "d": [8,104] },
						{ "px": [160,96], "src": [64,80], "f": 0, "t": 104, "d": [8,106] },
						{ "px": [176,96], "src": [80,80], "f": 0, "t": 105, "d": [8,106] }
					],
					"seed": 5440332,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "Tiles",
					"__type": "Tiles",
					"__cWid": 16,
					"__cHei": 10,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 33,
					"layerDefUid": 14,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 5395320,
					"overrideTilesetUid": null,
					"gridTiles": [
						{ "px": [16,16], "src": [32,0], "f": 0, "t": 2, "d": [17] },
						{ "px": [32,16], "src": [48,0], "f": 0, "t": 3, "d": [18] },
						{ "px": [208,16], "src": [32,32], "f": 0, "t": 42, "d": [29] },
						{ "px": [224,16], "src": [48,32], "f": 0, "t": 43, "d": [30] },
						{ "px": [16,32], "src": [32,16], "f": 0, "t": 22, "d": [33] },
						{ "px": [32,32], "src": [48,16], "f": 0, "t": 23, "d": [34] },
						{ "px": [208,32], "src": [32,48], "f": 0, "t": 62, "d": [45] },
						{ "px": [224,32], "src": [48,48], "f": 0, "t": 63, "d": [46] },
						{ "px": [16,112], "src": [64,32], "f": 0, "t": 44, "d": [113] },
						{ "px": [32,112], "src": [80,32], "f": 0, "t": 45, "d": [114] },
						{ "px": [208,112], "src": [96,0], "f": 0, "t": 6, "d": [125] },
						{ "px": [224,112], "src": [112,0], "f": 0, "t": 7, "d": [126] },
						{ "px": [16,128], "src": [64,48], "f": 0, "t": 64, "d": [129] },
						{ "px": [32,128], "src": [80,48], "f": 0, "t": 65, "d": [130] },
						{ "px": [208,128], "src": [96,16], "f": 0, "t": 26, "d": [141] },
						{ "px": [224,128], "src": [112,16], "f": 0, "t": 27, "d": [142] }
					],
					"entityInstances": []
				}
			],
			"__neighbours": [ { "levelUid": 36, "dir": "s" }, { "levelUid": 32, "dir": "n" } ]
		},
		{
			"identifier": "Level4",
			"uid": 36,
			"worldX": 0,
			"worldY": 1080,
			"pxWid": 272,
			"pxHei": 192,
			"__bgColor": "#6E6F8B",
			"bgColor": null,
			"bgRelPath": "atlas/Beach by deepnight.png",
			"bgPos": "Cover",
			"bgPivotX": 0.5,
			"bgPivotY": 0.5,
			"__bgPos": { "topLeftPx": [0,0], "scale": [0.85,0.85], "cropRect": [0,7.058823529411768,320,225.88235294117646] },
			"externalRelPath": null,
			"fieldInstances": [{
				"__identifier": "desc",
				"__value": "Level background image",
				"__type": "String",
				"defUid": 38,
				"realEditorValues": [{
					"id": "V_String",
					"params": ["Level background image"]
				}]
			}],
			"layerInstances": [
				{
					"__identifier": "Entities",
					"__type": "Entities",
					"__cWid": 17,
					"__cHei": 12,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 36,
					"layerDefUid": 13,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 3655473,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "IntGrid_8px_grid",
					"__type": "IntGrid",
					"__cWid": 34,
					"__cHei": 24,
					"__gridSize": 8,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 36,
					"layerDefUid": 34,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [],
					"seed": 3866698,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "PureAutoLayer",
					"__type": "AutoLayer",
					"__cWid": 17,
					"__cHei": 12,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 36,
					"layerDefUid": 26,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 5193927,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "IntGrid_classic",
					"__type": "IntGrid",
					"__cWid": 17,
					"__cHei": 12,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": null,
					"__tilesetRelPath": null,
					"levelId": 36,
					"layerDefUid": 1,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [],
					"seed": 6618746,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "IntGrid_with_rules",
					"__type": "IntGrid",
					"__cWid": 17,
					"__cHei": 12,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 36,
					"layerDefUid": 3,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,
						0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,
						1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
					],
					"autoLayerTiles": [
						{ "px": [208,96], "src": [0,112], "f": 0, "t": 140, "d": [5,115] },
						{ "px": [192,112], "src": [0,112], "f": 0, "t": 140, "d": [5,131] },
						{ "px": [208,112], "src": [0,112], "f": 0, "t": 140, "d": [5,132] },
						{ "px": [192,128], "src": [0,112], "f": 0, "t": 140, "d": [5,148] },
						{ "px": [208,128], "src": [0,112], "f": 0, "t": 140, "d": [5,149] },
						{ "px": [16,144], "src": [0,112], "f": 0, "t": 140, "d": [5,154] },
						{ "px": [48,144], "src": [0,112], "f": 0, "t": 140, "d": [5,156] },
						{ "px": [208,144], "src": [0,112], "f": 0, "t": 140, "d": [5,166] },
						{ "px": [240,144], "src": [0,112], "f": 0, "t": 140, "d": [5,168] },
						{ "px": [256,144], "src": [0,112], "f": 0, "t": 140, "d": [5,169] },
						{ "px": [80,160], "src": [0,112], "f": 0, "t": 140, "d": [5,175] },
						{ "px": [80,176], "src": [0,112], "f": 0, "t": 140, "d": [5,192] },
						{ "px": [208,80], "src": [64,128], "f": 1, "t": 164, "d": [7,98] },
						{ "px": [80,144], "src": [64,128], "f": 1, "t": 164, "d": [7,158] },
						{ "px": [192,96], "src": [128,0], "f": 0, "t": 8, "d": [6,114] },
						{ "px": [192,112], "src": [128,16], "f": 0, "t": 28, "d": [6,114] },
						{ "px": [208,96], "src": [144,0], "f": 0, "t": 9, "d": [6,114] },
						{ "px": [208,112], "src": [144,16], "f": 0, "t": 29, "d": [6,114] },
						{ "px": [192,80], "src": [64,80], "f": 0, "t": 104, "d": [9,97] },
						{ "px": [208,80], "src": [80,80], "f": 0, "t": 105, "d": [9,97] },
						{ "px": [64,144], "src": [64,80], "f": 0, "t": 104, "d": [9,157] },
						{ "px": [80,144], "src": [80,80], "f": 0, "t": 105, "d": [9,157] },
						{ "px": [0,144], "src": [64,80], "f": 0, "t": 104, "d": [8,153] },
						{ "px": [16,144], "src": [80,80], "f": 0, "t": 105, "d": [8,153] },
						{ "px": [32,144], "src": [64,80], "f": 0, "t": 104, "d": [8,155] },
						{ "px": [48,144], "src": [80,80], "f": 0, "t": 105, "d": [8,155] },
						{ "px": [192,144], "src": [64,80], "f": 0, "t": 104, "d": [8,165] },
						{ "px": [208,144], "src": [80,80], "f": 0, "t": 105, "d": [8,165] },
						{ "px": [224,144], "src": [64,80], "f": 0, "t": 104, "d": [8,167] },
						{ "px": [240,144], "src": [80,80], "f": 0, "t": 105, "d": [8,167] }
					],
					"seed": 7313278,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				},
				{
					"__identifier": "Tiles",
					"__type": "Tiles",
					"__cWid": 17,
					"__cHei": 12,
					"__gridSize": 16,
					"__opacity": 1,
					"__pxTotalOffsetX": 0,
					"__pxTotalOffsetY": 0,
					"__tilesetDefUid": 2,
					"__tilesetRelPath": "atlas/Inca_front_by_Kronbits-extended.png",
					"levelId": 36,
					"layerDefUid": 14,
					"pxOffsetX": 0,
					"pxOffsetY": 0,
					"visible": true,
					"intGridCsv": [],
					"autoLayerTiles": [],
					"seed": 4655507,
					"overrideTilesetUid": null,
					"gridTiles": [],
					"entityInstances": []
				}
			],
			"__neighbours": [{ "levelUid": 33, "dir": "n" }]
		}
	]
}