Directory structure of our decompressed bundle_ctr.ipk file.
|    1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
 | +---cache
¦   +---itf_cooked
¦       +---ctr
¦           ¦   atlascontainer.ckd
¦           ¦   sgscontainer.ckd
¦           ¦   
¦           +---enginedata
¦           ¦   +---actortemplates
¦           ¦   ¦       subscene.tpl.ckd
¦           ¦   ¦       texturegraphiccomponent.tpl.ckd
¦           ¦   ¦       texturegraphiccomponent_2d.tpl.ckd
¦           ¦   ¦       
¦           ¦   +---defaultloadingscreen
¦           ¦   ¦   +---camera
¦           ¦   ¦           fixedcamera.tpl.ckd
¦           ¦   ¦           
¦           ¦   +---gameconfig
¦           ¦   ¦       camerashakeconfig.isg.ckd
¦           ¦   ¦       cheatsmanager.isg.ckd
¦           ¦   ¦       cinematicdialogs.isg.ckd
¦           ¦   ¦       factionconfig.isg.ckd
¦           ¦   ¦       fonteffectpresets.isg.ckd
¦           ¦   ¦       gameconfig.isg.ckd
¦           ¦   ¦       itemconfig.isg.ckd
¦           ¦   ¦       localisationconfig.isg.ckd
¦           ¦   ¦       localisationtrc.isg.ckd
¦           ¦   ¦       menuconfig.isg.ckd
¦           ¦   ¦       minigamedata.isg.ckd
¦           ¦   ¦       missionconfig.isg.ckd
¦           ¦   ¦       mobileguideiconmanagerconfig.isg.ckd
¦           ¦   ¦       padrumbleconfig.isg.ckd
¦           ¦   ¦       pickupconfig.isg.ckd
¦           ¦   ¦       soundconfig.isg.ckd
¦           ¦   ¦       switchcharacterconfig.isg.ckd
¦           ¦   ¦       textconfig.isg.ckd
¦           ¦   ¦       tutorialmanager.isg.ckd
¦           ¦   ¦       uiconfigdata.isg.ckd
¦           ¦   ¦       zinput.isg.ckd
¦           ¦   ¦       
¦           ¦   +---inputs
¦           ¦   ¦   ¦   input_ctr.isg.ckd
¦           ¦   ¦   ¦   
¦           ¦   ¦   +---cutscene
¦           ¦   ¦   ¦       input_ctr.isg.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---menu
¦           ¦   ¦           input_menu_ctr.isg.ckd
¦           ¦   ¦           
¦           ¦   +---misc
¦           ¦   ¦   +---fonts
¦           ¦   ¦   ¦       mylifecoach65.tfn.ckd
¦           ¦   ¦   ¦       mylifecoach65.tga.ckd
¦           ¦   ¦   ¦       mylifecoach66.tfn.ckd
¦           ¦   ¦   ¦       mylifecoach66.tga.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---trc
¦           ¦   ¦           homenixsign.tga.ckd
¦           ¦   ¦           
¦           ¦   +---textures
¦           ¦           cooking.png.ckd
¦           ¦           outofmemory.png.ckd
¦           ¦           
¦           +---gamematerial
¦           ¦       basicground.gmt.ckd
¦           ¦       basicground_grass.gmt.ckd
¦           ¦       basicground_grass_nosolid.gmt.ckd
¦           ¦       basicground_metal.gmt.ckd
¦           ¦       basicground_nosolid_grass.gmt.ckd
¦           ¦       basicground_water.gmt.ckd
¦           ¦       basicground_wind.gmt.ckd
¦           ¦       basicground_wood.gmt.ckd
¦           ¦       basicground_wood_nosolid.gmt.ckd
¦           ¦       basicliana_v.gmt.ckd
¦           ¦       damageground_lava.gmt.ckd
¦           ¦       damageground_spikes.gmt.ckd
¦           ¦       dangerous.gmt.ckd
¦           ¦       dangerous_onlyforenemy.gmt.ckd
¦           ¦       deadly.gmt.ckd
¦           ¦       enemyattack_noshadow.gmt.ckd
¦           ¦       platform_djembe.gmt.ckd
¦           ¦       swiming.gmt.ckd
¦           ¦       
¦           +---sound
¦           ¦   ¦   blank.wav.ckd
¦           ¦   ¦   
¦           ¦   +---100_ambiances
¦           ¦   ¦   +---100_common
¦           ¦   ¦   ¦       amb_treasureroom_lp.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---101_forest
¦           ¦   ¦   ¦       amb_forest_normal_lp.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---102_cave
¦           ¦   ¦   ¦       amb_cavern_lp.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---103_lake
¦           ¦   ¦   ¦       amb_lake_lp.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---105_town
¦           ¦   ¦           amb_town_lp.wav.ckd
¦           ¦   ¦           
¦           ¦   +---300_music
¦           ¦   ¦   +---300_common
¦           ¦   ¦   ¦   +---bossbattle
¦           ¦   ¦   ¦   ¦       music_bossbattle.wav.ckd
¦           ¦   ¦   ¦   ¦       music_evilspiritbattle.wav.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---minigame
¦           ¦   ¦   ¦   ¦       music_puzzle.wav.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---result_loading
¦           ¦   ¦   ¦   ¦       loading_results_1.wav.ckd
¦           ¦   ¦   ¦   ¦       loading_results_2.wav.ckd
¦           ¦   ¦   ¦   ¦       loading_results_3.wav.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---twist
¦           ¦   ¦   ¦           music_happentwist.wav.ckd
¦           ¦   ¦   ¦           
¦           ¦   ¦   +---301_forest
¦           ¦   ¦   ¦       music_forest_dark.wav.ckd
¦           ¦   ¦   ¦       music_forest_gnomeworld.wav.ckd
¦           ¦   ¦   ¦       music_forest_standard.wav.ckd
¦           ¦   ¦   ¦       music_forest_twisted.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---302_cave
¦           ¦   ¦   ¦       music_cave_standard.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---303_lake
¦           ¦   ¦   ¦       music_lake_standard.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---304_oldmines
¦           ¦   ¦   ¦       music_guardianroom.wav.ckd
¦           ¦   ¦   ¦       music_oldmines_standard.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---310_worldmap
¦           ¦   ¦   ¦       music_worldmap.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---311_mysteryshack
¦           ¦   ¦   ¦       music_giftshop.wav.ckd
¦           ¦   ¦   ¦       music_opening.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---312_junkyard
¦           ¦   ¦   ¦       music_junkyard_standard.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---313_town
¦           ¦   ¦           music_town_standard.wav.ckd
¦           ¦   ¦           
¦           ¦   +---500_gpe
¦           ¦   ¦   +---510_common
¦           ¦   ¦           gpe_cagedoor_impact_01.wav.ckd
¦           ¦   ¦           gpe_cagedoor_move_lp.wav.ckd
¦           ¦   ¦           gpe_switchcharacter.wav.ckd
¦           ¦   ¦           
¦           ¦   +---600_sfx
¦           ¦   ¦   +---610_common
¦           ¦   ¦   ¦       sfx_charginglamp.wav.ckd
¦           ¦   ¦   ¦       sfx_crystalpicked.wav.ckd
¦           ¦   ¦   ¦       sfx_crystalpicked_chain.wav.ckd
¦           ¦   ¦   ¦       sfx_crystalspawn.wav.ckd
¦           ¦   ¦   ¦       sfx_grapplinghookswitch_chain.wav.ckd
¦           ¦   ¦   ¦       sfx_jingle_clue.wav.ckd
¦           ¦   ¦   ¦       sfx_jingle_mission_complete.wav.ckd
¦           ¦   ¦   ¦       sfx_jingle_mission_recieved.wav.ckd
¦           ¦   ¦   ¦       sfx_jingle_newtoolweapon.wav.ckd
¦           ¦   ¦   ¦       sfx_jingle_surprise_short.wav.ckd
¦           ¦   ¦   ¦       sfx_jingle_victory.wav.ckd
¦           ¦   ¦   ¦       sfx_revealarea.wav.ckd
¦           ¦   ¦   ¦       sfx_rocks_fall_heavy.wav.ckd
¦           ¦   ¦   ¦       sfx_rocks_move_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_rocks_shake_01.wav.ckd
¦           ¦   ¦   ¦       sfx_short_quake.wav.ckd
¦           ¦   ¦   ¦       sfx_steeringwheel.wav.ckd
¦           ¦   ¦   ¦       sfx_timersignal.wav.ckd
¦           ¦   ¦   ¦       sfx_turnonlamp.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---611_minigame
¦           ¦   ¦   ¦   +---lightandshadow
¦           ¦   ¦   ¦           sfx_broken_spell.wav.ckd
¦           ¦   ¦   ¦           sfx_closespotframe.wav.ckd
¦           ¦   ¦   ¦           sfx_crystal_break_01.wav.ckd
¦           ¦   ¦   ¦           sfx_crystal_shine.wav.ckd
¦           ¦   ¦   ¦           sfx_keyunlocked.wav.ckd
¦           ¦   ¦   ¦           sfx_lightcorrect.wav.ckd
¦           ¦   ¦   ¦           sfx_lightwrong.wav.ckd
¦           ¦   ¦   ¦           
¦           ¦   ¦   +---612_pickup
¦           ¦   ¦   ¦       sfx_pickup_health.wav.ckd
¦           ¦   ¦   ¦       sfx_pickup_sq_object.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---613_environment
¦           ¦   ¦   ¦       sfx_environmenet_door_move.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_birdsflutter.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_car.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_contraptionactive_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_dinosaurfly.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_dinosaurscreech.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_elevator.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_fallingplatform.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_fallingtree.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_fallingtree_scratching.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_forest_night.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_geyser_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_geyser_pop.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_goat.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_lava_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_minecart_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_mushroombounce.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_mushroomclose.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_mushroomgrow.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_mushroomopen.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_pushpull_fallimpact.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_pushpull_move_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_rain_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_rat.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_river_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_switch.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_thunder_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_volcano_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_environment_windy_lp.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---614_projectile
¦           ¦   ¦   ¦       sfx_projectile_explode.wav.ckd
¦           ¦   ¦   ¦       sfx_projectile_throw_aura.wav.ckd
¦           ¦   ¦   ¦       sfx_projectile_throw_darkgnome.wav.ckd
¦           ¦   ¦   ¦       sfx_projectile_throw_eyeball.wav.ckd
¦           ¦   ¦   ¦       sfx_projectile_throw_fireball.wav.ckd
¦           ¦   ¦   ¦       sfx_projectile_throw_tornado.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---620_character
¦           ¦   ¦   ¦       sfx_character_diveinwater_02.wav.ckd
¦           ¦   ¦   ¦       sfx_character_diveoutwater_01.wav.ckd
¦           ¦   ¦   ¦       sfx_character_hit_ground.wav.ckd
¦           ¦   ¦   ¦       sfx_character_jump.wav.ckd
¦           ¦   ¦   ¦       sfx_stan_smoke.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---621_player
¦           ¦   ¦   ¦       sfx_player_dead.wav.ckd
¦           ¦   ¦   ¦       sfx_player_dipper_attack_punch_chargedup.wav.ckd
¦           ¦   ¦   ¦       sfx_player_dipper_attack_punch_chargerelease.wav.ckd
¦           ¦   ¦   ¦       sfx_player_dipper_attack_punch_chargingup.wav.ckd
¦           ¦   ¦   ¦       sfx_player_dipper_attack_punch_standard.wav.ckd
¦           ¦   ¦   ¦       sfx_player_flashlight_grow.wav.ckd
¦           ¦   ¦   ¦       sfx_player_flashlight_shrink.wav.ckd
¦           ¦   ¦   ¦       sfx_player_grapplinghook_draw.wav.ckd
¦           ¦   ¦   ¦       sfx_player_grapplinghook_shoot.wav.ckd
¦           ¦   ¦   ¦       sfx_player_grapplinghook_stick.wav.ckd
¦           ¦   ¦   ¦       sfx_player_grapplinghook_swing.wav.ckd
¦           ¦   ¦   ¦       sfx_player_mabel_attack_punch_chargedup.wav.ckd
¦           ¦   ¦   ¦       sfx_player_mabel_attack_punch_chargerelease.wav.ckd
¦           ¦   ¦   ¦       sfx_player_mabel_attack_punch_chargingup.wav.ckd
¦           ¦   ¦   ¦       sfx_player_mabel_attack_punch_standard.wav.ckd
¦           ¦   ¦   ¦       sfx_player_rope_jump.wav.ckd
¦           ¦   ¦   ¦       sfx_player_rope_swing.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---622_enemy
¦           ¦   ¦   ¦       sfx_aura_activate.wav.ckd
¦           ¦   ¦   ¦       sfx_aura_deactivate.wav.ckd
¦           ¦   ¦   ¦       sfx_aura_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_campfire_attack_big.wav.ckd
¦           ¦   ¦   ¦       sfx_campfire_attack_small.wav.ckd
¦           ¦   ¦   ¦       sfx_campfire_idle_crackle_lp.wav.ckd
¦           ¦   ¦   ¦       sfx_darkfriends_disappear.wav.ckd
¦           ¦   ¦   ¦       sfx_darkgnome_charge.wav.ckd
¦           ¦   ¦   ¦       sfx_darkgrunklestan_charge.wav.ckd
¦           ¦   ¦   ¦       sfx_darkgrunklestan_spottarget.wav.ckd
¦           ¦   ¦   ¦       sfx_darksoos_attack_laser.wav.ckd
¦           ¦   ¦   ¦       sfx_darkwaddles_spottarget.wav.ckd
¦           ¦   ¦   ¦       sfx_darkwaddles_stomp_impact.wav.ckd
¦           ¦   ¦   ¦       sfx_darkwaddles_stomp_jump.wav.ckd
¦           ¦   ¦   ¦       sfx_darkwendy_axeattack.wav.ckd
¦           ¦   ¦   ¦       sfx_darkwendy_spottarget.wav.ckd
¦           ¦   ¦   ¦       sfx_enemy_receivecrush.wav.ckd
¦           ¦   ¦   ¦       sfx_enemy_white_glow_fade.wav.ckd
¦           ¦   ¦   ¦       sfx_flyingtotem_charge.wav.ckd
¦           ¦   ¦   ¦       sfx_flyingtotem_spottarget.wav.ckd
¦           ¦   ¦   ¦       sfx_flyingtotem_vomitprojectile.wav.ckd
¦           ¦   ¦   ¦       sfx_flyingtotem_wing.wav.ckd
¦           ¦   ¦   ¦       sfx_gnome_chargeattack.wav.ckd
¦           ¦   ¦   ¦       sfx_gnome_death.wav.ckd
¦           ¦   ¦   ¦       sfx_gnome_roaming.wav.ckd
¦           ¦   ¦   ¦       sfx_gnome_spottarget.wav.ckd
¦           ¦   ¦   ¦       sfx_gnome_vomit.wav.ckd
¦           ¦   ¦   ¦       sfx_totem_death.wav.ckd
¦           ¦   ¦   ¦       sfx_walkingtotem_attack.wav.ckd
¦           ¦   ¦   ¦       sfx_walkingtotem_spottarget.wav.ckd
¦           ¦   ¦   ¦       sfx_walkingtotem_walk.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---623_boss
¦           ¦   ¦   ¦       sfx_boss_cinematic_roaring.wav.ckd
¦           ¦   ¦   ¦       sfx_boss_jumpfly.wav.ckd
¦           ¦   ¦   ¦       sfx_boss_stomp_jump.wav.ckd
¦           ¦   ¦   ¦       sfx_boss_stomp_landing.wav.ckd
¦           ¦   ¦   ¦       sfx_darkjeff_chestcore_break.wav.ckd
¦           ¦   ¦   ¦       sfx_darkjeff_cinematic_roaring.wav.ckd
¦           ¦   ¦   ¦       sfx_evilspirit_chestcore_break.wav.ckd
¦           ¦   ¦   ¦       sfx_evilspirit_cinematic_roaring.wav.ckd
¦           ¦   ¦   ¦       sfx_guardian_chestcore_break.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---630_sequenceplayer
¦           ¦   ¦   ¦   +---common
¦           ¦   ¦   ¦   ¦       gemulet_1.wav.ckd
¦           ¦   ¦   ¦   ¦       gemulet_2.wav.ckd
¦           ¦   ¦   ¦   ¦       gemulet_3.wav.ckd
¦           ¦   ¦   ¦   ¦       gemulet_4.wav.ckd
¦           ¦   ¦   ¦   ¦       sfx_collectgemulet.wav.ckd
¦           ¦   ¦   ¦   ¦       sfx_levelcomphighfive.wav.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---gnomeforest
¦           ¦   ¦   ¦   ¦       sfx_gemuletplaced.wav.ckd
¦           ¦   ¦   ¦   ¦       sfx_shmebulockwallcrush.wav.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---shack
¦           ¦   ¦   ¦   ¦       sfx_firstfndflyingtotem.wav.ckd
¦           ¦   ¦   ¦   ¦       sfx_goateatgems.wav.ckd
¦           ¦   ¦   ¦   ¦       sfx_itemsplaced.wav.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---twistedgnomeforest
¦           ¦   ¦   ¦   ¦       sfx_twistedworld.wav.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---twistedshack
¦           ¦   ¦   ¦   ¦       sfx_twistedmuseumgroundshake.wav.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---twistedtown
¦           ¦   ¦   ¦           sfx_darkjeff_explode.wav.ckd
¦           ¦   ¦   ¦           sfx_evilspirit_cinematic_appear.wav.ckd
¦           ¦   ¦   ¦           sfx_evilspirit_explode.wav.ckd
¦           ¦   ¦   ¦           
¦           ¦   ¦   +---640_worldmap
¦           ¦   ¦   ¦       sfx_foundsecretpoint.wav.ckd
¦           ¦   ¦   ¦       sfx_levelenter.wav.ckd
¦           ¦   ¦   ¦       sfx_levelunlocked.wav.ckd
¦           ¦   ¦   ¦       sfx_returnfromlevel.wav.ckd
¦           ¦   ¦   ¦       
¦           ¦   ¦   +---641_twistedgnomeforest
¦           ¦   ¦           sfx_auradisappear.wav.ckd
¦           ¦   ¦           sfx_auradisappear_smoke.wav.ckd
¦           ¦   ¦           sfx_contraptionpowerdown.wav.ckd
¦           ¦   ¦           
¦           ¦   +---common
¦           ¦   ¦   +---ambiences
¦           ¦   ¦   ¦   +---00_common
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_dinosaurfly.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_dinosaurscreech.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_rain.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_river.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_thunder.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_towncar.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_treasureroom.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_windy.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_windzone.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---01_forest
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_forest_night.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_forest_normal.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_forest_river.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_forest_wind.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---02_cave
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_cave.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_cave_lava.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_cave_volcano.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---03_lake
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_lake_cave.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_lake_fall.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_lake_normal.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---04_twistforest
¦           ¦   ¦   ¦   ¦       triggerinterpolator_ambient_twistforest_contraptionactive.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---05_town
¦           ¦   ¦   ¦           ambient_twisttown_windy.tpl.ckd
¦           ¦   ¦   ¦           triggerinterpolator_ambient_town.tpl.ckd
¦           ¦   ¦   ¦           
¦           ¦   ¦   +---music_trees
¦           ¦   ¦   ¦   +---01_forest
¦           ¦   ¦   ¦   ¦       musictree_forest.tpl.ckd
¦           ¦   ¦   ¦   ¦       musictree_twistforest.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_forest_dark.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_forest_gnomeworld.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_forest_standard.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_forest_twisted.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_forest_twistedforcescroll.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_gnomeforest_firstharf.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---02_cave
¦           ¦   ¦   ¦   ¦       musictree_cave.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_cave_standard.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---03_lake
¦           ¦   ¦   ¦   ¦       musictree_lake.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_lake_standard.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---04_oldmines
¦           ¦   ¦   ¦   ¦       musictree_oldmines.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_oldmines_guardianroom.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_oldmines_standard.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---10_worldmap
¦           ¦   ¦   ¦   ¦       musictree_worldmap.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---11_mysteryshack
¦           ¦   ¦   ¦   ¦       musictree_mysteryshack.tpl.ckd
¦           ¦   ¦   ¦   ¦       musictree_mysteryshack_twisted.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_mysteryshack_giftshop.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_mysteryshack_twisted_startpaused.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---12_junkyard
¦           ¦   ¦   ¦   ¦       musictree_junkyard.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_junkyard.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---13_town
¦           ¦   ¦   ¦   ¦       musictree_town.tpl.ckd
¦           ¦   ¦   ¦   ¦       triggermusic_town.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---20_title
¦           ¦   ¦   ¦   ¦       musictree_title.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---21_result
¦           ¦   ¦   ¦   ¦       result_soundcomponent.tpl.ckd
¦           ¦   ¦   ¦   ¦       
¦           ¦   ¦   ¦   +---common
¦           ¦   ¦   ¦           music_simpleplayer.tpl.ckd
¦           ¦   ¦   ¦           music_stop.tpl.ckd
¦           ¦   ¦   ¦           music_stop_3s.tpl.ckd
¦           ¦   ¦   ¦           triggermusic_puzzle.tpl.ckd
¦           ¦   ¦   ¦           
¦           ¦   ¦   +---sfx
¦           ¦   ¦           door_move_sound.tpl.ckd
¦           ¦   ¦           triggersound_revealarea.tpl.ckd
¦           ¦   ¦           
¦           ¦   +---ui
¦           ¦       +---common
¦           ¦               sfx_artifact_collect.wav.ckd
¦           ¦               sfx_button_back.wav.ckd
¦           ¦               sfx_button_book.wav.ckd
¦           ¦               sfx_button_invalid.wav.ckd
¦           ¦               sfx_button_map.wav.ckd
¦           ¦               sfx_button_validate.wav.ckd
¦           ¦               sfx_journal_hint.wav.ckd
¦           ¦               sfx_journal_questlog_write.wav.ckd
¦           ¦               sfx_move.wav.ckd
¦           ¦               sfx_result_sporefinish.wav.ckd
¦           ¦               sfx_soundmenu_sebar.wav.ckd
¦           ¦               
¦           +---world
¦               +---00_forest
¦               ¦   +---common
¦               ¦   ¦   +---actor
¦               ¦   ¦   ¦   +---forestobjectparts
¦               ¦   ¦   ¦   ¦   ¦   forestobjectparts_twist.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           forestobjectparts.asc.ckd
¦               ¦   ¦   ¦   ¦           forest_object3_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---forestobjectparts2
¦               ¦   ¦   ¦       ¦   forestobjectparts2_twist.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               forestobjectparts2.asc.ckd
¦               ¦   ¦   ¦               forest_object4.pbk.ckd
¦               ¦   ¦   ¦               forest_object4.tga.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---frieze
¦               ¦   ¦       ¦   background_clouds.fcg.ckd
¦               ¦   ¦       ¦   background_deepforest.fcg.ckd
¦               ¦   ¦       ¦   background_mountainrange.fcg.ckd
¦               ¦   ¦       ¦   details_forest_atlas_01.fcg.ckd
¦               ¦   ¦       ¦   details_forest_atlas_01.tga.ckd
¦               ¦   ¦       ¦   fakedarken.fcg.ckd
¦               ¦   ¦       ¦   fakedarken.tga.ckd
¦               ¦   ¦       ¦   forest_grid_square.fcg.ckd
¦               ¦   ¦       ¦   forest_grid_square.tga.ckd
¦               ¦   ¦       ¦   forest_ground_square.fcg.ckd
¦               ¦   ¦       ¦   forest_ground_square.tga.ckd
¦               ¦   ¦       ¦   forest_ground_square_fill.tga.ckd
¦               ¦   ¦       ¦   gf_treelarge.fcg.ckd
¦               ¦   ¦       ¦   grass_02.fcg.ckd
¦               ¦   ¦       ¦   grass_02_fill.tga.ckd
¦               ¦   ¦       ¦   ground_wallup_01.fcg.ckd
¦               ¦   ¦       ¦   ground_wallup_01.tga.ckd
¦               ¦   ¦       ¦   irongate.fcg.ckd
¦               ¦   ¦       ¦   irongate.tga.ckd
¦               ¦   ¦       ¦   low_grass_00.fcg.ckd
¦               ¦   ¦       ¦   low_grass_00.tga.ckd
¦               ¦   ¦       ¦   low_grass_00_fill.tga.ckd
¦               ¦   ¦       ¦   treebranches.fcg.ckd
¦               ¦   ¦       ¦   treebranches.tga.ckd
¦               ¦   ¦       ¦   wood_platform.fcg.ckd
¦               ¦   ¦       ¦   wood_platform.tga.ckd
¦               ¦   ¦       ¦   
¦               ¦   ¦       +---twist
¦               ¦   ¦               bg_tree_001_twist.fcg.ckd
¦               ¦   ¦               forest_ground_square_twist.fcg.ckd
¦               ¦   ¦               forest_object2_twist.fcg.ckd
¦               ¦   ¦               forest_object2_twist.tga.ckd
¦               ¦   ¦               gf_treelarge_twist.fcg.ckd
¦               ¦   ¦               grass_02_twist.fcg.ckd
¦               ¦   ¦               grass_04_twist01.fcg.ckd
¦               ¦   ¦               ground_nocol_twist.fcg.ckd
¦               ¦   ¦               ground_nocol_z_twist.fcg.ckd
¦               ¦   ¦               ground_wallup_01_twist.fcg.ckd
¦               ¦   ¦               ground_wallup_01_twist.tga.ckd
¦               ¦   ¦               ground_wallup_01_z_twist.fcg.ckd
¦               ¦   ¦               nightsky.fcg.ckd
¦               ¦   ¦               nightsky.tga.ckd
¦               ¦   ¦               treebranches_twist.fcg.ckd
¦               ¦   ¦               treebranches_twist.tga.ckd
¦               ¦   ¦               treeconifer_twist.fcg.ckd
¦               ¦   ¦               treeconifer_twist.tga.ckd
¦               ¦   ¦               tree_far_twist.fcg.ckd
¦               ¦   ¦               tree_far_twist.tga.ckd
¦               ¦   ¦               wood_platform_twist.fcg.ckd
¦               ¦   ¦               wood_platform_twist.tga.ckd
¦               ¦   ¦               
¦               ¦   +---darkfriends
¦               ¦   ¦   +---subscene
¦               ¦   ¦       ¦   subscene_forest2_darkfriends_grunklestan.isc.ckd
¦               ¦   ¦       ¦   subscene_forest2_darkfriends_soos.isc.ckd
¦               ¦   ¦       ¦   subscene_forest2_darkfriends_waddles.isc.ckd
¦               ¦   ¦       ¦   subscene_forest2_darkfriends_wendy.isc.ckd
¦               ¦   ¦       ¦   
¦               ¦   ¦       +---subscene
¦               ¦   ¦           +---graph
¦               ¦   ¦           ¦       subscene_forest2_darkfriends_grunklestan_graph.isc.ckd
¦               ¦   ¦           ¦       subscene_forest2_darkfriends_soos_graph.isc.ckd
¦               ¦   ¦           ¦       subscene_forest2_darkfriends_waddles_graph.isc.ckd
¦               ¦   ¦           ¦       subscene_forest2_darkfriends_wendy_graph.isc.ckd
¦               ¦   ¦           ¦       
¦               ¦   ¦           +---ld
¦               ¦   ¦           ¦       subscene_forest2_darkfriends_grunklestan_ld.isc.ckd
¦               ¦   ¦           ¦       subscene_forest2_darkfriends_soos_ld.isc.ckd
¦               ¦   ¦           ¦       subscene_forest2_darkfriends_waddles_ld.isc.ckd
¦               ¦   ¦           ¦       subscene_forest2_darkfriends_wendy_ld.isc.ckd
¦               ¦   ¦           ¦       
¦               ¦   ¦           +---sound
¦               ¦   ¦                   subscene_forest2_darkfriends_grunklestan_sound.isc.ckd
¦               ¦   ¦                   subscene_forest2_darkfriends_soos_sound.isc.ckd
¦               ¦   ¦                   subscene_forest2_darkfriends_waddles_sound.isc.ckd
¦               ¦   ¦                   subscene_forest2_darkfriends_wendy_sound.isc.ckd
¦               ¦   ¦                   
¦               ¦   +---guardian
¦               ¦   ¦   +---actor
¦               ¦   ¦   ¦   +---tweenrock
¦               ¦   ¦   ¦           tween_rocktype_boss.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---scene
¦               ¦   ¦       +---subscene
¦               ¦   ¦           ¦   subscene_forest2_guardianroom.isc.ckd
¦               ¦   ¦           ¦   
¦               ¦   ¦           +---subscene
¦               ¦   ¦               +---graph
¦               ¦   ¦               ¦       subscene_forest2_guardianroom_graph.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---ld
¦               ¦   ¦               ¦       subscene_forest2_guardianroom_ld.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---sound
¦               ¦   ¦                       subscene_forest2_guardianroom_sound.isc.ckd
¦               ¦   ¦                       
¦               ¦   +---stage01
¦               ¦   ¦   +---actor
¦               ¦   ¦   ¦   +---mission
¦               ¦   ¦   ¦   ¦       a1_1_2_finddarkness_sound.tpl.ckd
¦               ¦   ¦   ¦   ¦       changecostumecomponent.tpl.ckd
¦               ¦   ¦   ¦   ¦       gnomeforest_soundcomponent.tpl.ckd
¦               ¦   ¦   ¦   ¦       missionupgradeweaponitemfx.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---mushroomplatform
¦               ¦   ¦   ¦       ¦   mushroomplatform.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               mushroomplatform_a1.pbk.ckd
¦               ¦   ¦   ¦               mushroomplatform_a1.tga.ckd
¦               ¦   ¦   ¦               mushroomplatform_a2.pbk.ckd
¦               ¦   ¦   ¦               mushroomplatform_a2.tga.ckd
¦               ¦   ¦   ¦               mushroomplatform_squeleton.skl.ckd
¦               ¦   ¦   ¦               stand.anm.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---frieze
¦               ¦   ¦   ¦   ¦   autoscrolleaura.fcg.ckd
¦               ¦   ¦   ¦   ¦   autoscrolleaura.tga.ckd
¦               ¦   ¦   ¦   ¦   autoscrolleaura_fill.fcg.ckd
¦               ¦   ¦   ¦   ¦   autoscrolleaura_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   background_shack.fcg.ckd
¦               ¦   ¦   ¦   ¦   background_shack.tga.ckd
¦               ¦   ¦   ¦   ¦   ground_grass_001.fcg.ckd
¦               ¦   ¦   ¦   ¦   ground_grass_002.fcg.ckd
¦               ¦   ¦   ¦   ¦   ground_nocol.fcg.ckd
¦               ¦   ¦   ¦   ¦   ground_nocol_z.fcg.ckd
¦               ¦   ¦   ¦   ¦   rope.fcg.ckd
¦               ¦   ¦   ¦   ¦   separateaura.fcg.ckd
¦               ¦   ¦   ¦   ¦   separateaura.tga.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---gnome
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_deco.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_deco.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_deco_near.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_deco_near.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_ground.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_ground.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_ground_b.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_ground_b.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_ground_bank.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_ground_bank.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_ground_square.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_ground_square.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_ground_square_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_lithograph.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_lithograph.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_mosswall.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_mosswall.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_signboard.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_signboard.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_treebush.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_treebush.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_treebush_fill.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_gnome_treebush_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---twist
¦               ¦   ¦   ¦   ¦           forest_gnome_deco_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_deco_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_ground_bank_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_ground_bank_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_ground_b_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_ground_b_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_ground_square_fill_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_ground_square_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_ground_square_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_ground_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_ground_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_lithograph_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_lithograph_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_mosswall_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_mosswall_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_signboard_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_signboard_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_treebush_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_treebush_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_treebush_twist_fill.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_gnome_treebush_twist_fill.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---largetree
¦               ¦   ¦   ¦   ¦   ¦   forest_tree_side.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_tree_side.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   forest_tree_side_noz.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   gf_treelarge.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   gf_treelarge.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   largetree_inside.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   largetree_inside.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   largetree_inside_fill.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   largetree_inside_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   largetree_outside_fill.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   largetree_outside_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   treeentrance.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   treeentrance.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---twist
¦               ¦   ¦   ¦   ¦           forest_tree_side_noz_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_tree_side_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           forest_tree_side_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           gf_treelarge_pile_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           gf_treelarge_pile_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           gf_treelarge_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           gf_treelarge_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           largetree_inside_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           largetree_inside_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           largetree_inside_twist_fill.fcg.ckd
¦               ¦   ¦   ¦   ¦           largetree_inside_twist_fill.tga.ckd
¦               ¦   ¦   ¦   ¦           largetree_outside_twist_fill.fcg.ckd
¦               ¦   ¦   ¦   ¦           largetree_outside_twist_fill.tga.ckd
¦               ¦   ¦   ¦   ¦           treeentrance_twist.fcg.ckd
¦               ¦   ¦   ¦   ¦           treeentrance_twist.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---largetreetemplates
¦               ¦   ¦   ¦   ¦       largetree_01.tsc.ckd
¦               ¦   ¦   ¦   ¦       largetree_02.tsc.ckd
¦               ¦   ¦   ¦   ¦       largetree_03.tsc.ckd
¦               ¦   ¦   ¦   ¦       largetree_09.tsc.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---twist
¦               ¦   ¦   ¦           ground_grass_001_twist.fcg.ckd
¦               ¦   ¦   ¦           ground_grass_002_twist.fcg.ckd
¦               ¦   ¦   ¦           rope_twist.fcg.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---fx
¦               ¦   ¦   ¦   +---gnome_photon
¦               ¦   ¦   ¦           fx_gnome_photon.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---scene
¦               ¦   ¦       ¦   forest_stage01.isc.ckd
¦               ¦   ¦       ¦   forest_stage01_twist.isc.ckd
¦               ¦   ¦       ¦   
¦               ¦   ¦       +---forest_stage01
¦               ¦   ¦       ¦   ¦   subscene_forest_stage01.isc.ckd
¦               ¦   ¦       ¦   ¦   
¦               ¦   ¦       ¦   +---subscene
¦               ¦   ¦       ¦       +---cine
¦               ¦   ¦       ¦       ¦       a1_1_flyingtotem_intunnel.tpl.ckd
¦               ¦   ¦       ¦       ¦       a1_2_forcescroll.tpl.ckd
¦               ¦   ¦       ¦       ¦       a1_3_jefffallamong.tpl.ckd
¦               ¦   ¦       ¦       ¦       a1_5a_stanpopup.tpl.ckd
¦               ¦   ¦       ¦       ¦       a1_5_dipperpunchcrushwall.tpl.ckd
¦               ¦   ¦       ¦       ¦       a1_5_first_wallcrush.tpl.ckd
¦               ¦   ¦       ¦       ¦       a1_5_gnome_advent.tpl.ckd
¦               ¦   ¦       ¦       ¦       a2_1_gnomeexpress_open.tpl.ckd
¦               ¦   ¦       ¦       ¦       a2_5_twist_camerashake.tpl.ckd
¦               ¦   ¦       ¦       ¦       ax_commongnome_hootstart.tpl.ckd
¦               ¦   ¦       ¦       ¦       subscene_forest_stage01_cine.isc.ckd
¦               ¦   ¦       ¦       ¦       
¦               ¦   ¦       ¦       +---fx
¦               ¦   ¦       ¦       ¦       subscene_forest_stage01_fx.isc.ckd
¦               ¦   ¦       ¦       ¦       
¦               ¦   ¦       ¦       +---graph
¦               ¦   ¦       ¦       ¦       subscene_forest_stage01_graph.isc.ckd
¦               ¦   ¦       ¦       ¦       
¦               ¦   ¦       ¦       +---ld
¦               ¦   ¦       ¦       ¦       mission_forest_stage01.isc.ckd
¦               ¦   ¦       ¦       ¦       subscene_forest_stage01_ld.isc.ckd
¦               ¦   ¦       ¦       ¦       
¦               ¦   ¦       ¦       +---sound
¦               ¦   ¦       ¦               subscene_forest_stage01_sound.isc.ckd
¦               ¦   ¦       ¦               
¦               ¦   ¦       +---forest_stage01_twist
¦               ¦   ¦           ¦   subscene_forest_stage01_twist.isc.ckd
¦               ¦   ¦           ¦   
¦               ¦   ¦           +---actor
¦               ¦   ¦           ¦   +---mission
¦               ¦   ¦           ¦           a2_7_gh_sequenceactivator.tpl.ckd
¦               ¦   ¦           ¦           contraptionaggregate.tpl.ckd
¦               ¦   ¦           ¦           twistgnome_missionsound.tpl.ckd
¦               ¦   ¦           ¦           
¦               ¦   ¦           +---subscene
¦               ¦   ¦               +---cine
¦               ¦   ¦               ¦       a2_5_darkjeff_advent.tpl.ckd
¦               ¦   ¦               ¦       a2_7_gh1woodfall.tpl.ckd
¦               ¦   ¦               ¦       a2_7_waddlesandbarrel.tpl.ckd
¦               ¦   ¦               ¦       subscene_forest_stage01_twist_cine.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---fx
¦               ¦   ¦               ¦       subscene_forest_stage01_twist_fx.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---graph
¦               ¦   ¦               ¦       subscene_forest_stage01_twist_graph.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---ld
¦               ¦   ¦               ¦       subscene_forest_stage01_twist_ld.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---sound
¦               ¦   ¦                       subscene_forest_stage01_twist_sound.isc.ckd
¦               ¦   ¦                       
¦               ¦   +---stage02
¦               ¦       +---actors
¦               ¦       ¦   +---forestcaveparts
¦               ¦       ¦       ¦   forestcaveparts.tpl.ckd
¦               ¦       ¦       ¦   
¦               ¦       ¦       +---animation
¦               ¦       ¦               forestcaveparts.asc.ckd
¦               ¦       ¦               
¦               ¦       +---frieze
¦               ¦       ¦       box.fcg.ckd
¦               ¦       ¦       forest2_background.fcg.ckd
¦               ¦       ¦       forest2_bg_mountainrange.fcg.ckd
¦               ¦       ¦       forest2_birch_tree.fcg.ckd
¦               ¦       ¦       forest2_birch_tree.tga.ckd
¦               ¦       ¦       forest2_bushes.fcg.ckd
¦               ¦       ¦       forest2_cave_atlas.pbk.ckd
¦               ¦       ¦       forest2_cave_atlas.tga.ckd
¦               ¦       ¦       forest2_cave_ground_square.fcg.ckd
¦               ¦       ¦       forest2_cave_ground_square_nocol.fcg.ckd
¦               ¦       ¦       forest2_dark_clouds.fcg.ckd
¦               ¦       ¦       forest2_dirt_ground.fcg.ckd
¦               ¦       ¦       forest2_downed_tree.fcg.ckd
¦               ¦       ¦       forest2_eyetreeline.fcg.ckd
¦               ¦       ¦       forest2_grass_ground_square.fcg.ckd
¦               ¦       ¦       forest2_grass_ground_square_nocol.fcg.ckd
¦               ¦       ¦       forest2_groundmoss_square.fcg.ckd
¦               ¦       ¦       forest2_ground_grass.fcg.ckd
¦               ¦       ¦       forest2_ground_square.fcg.ckd
¦               ¦       ¦       forest2_ground_square_nocol.fcg.ckd
¦               ¦       ¦       forest2_hollow_tree_bottom.fcg.ckd
¦               ¦       ¦       forest2_hollow_tree_bottom.tga.ckd
¦               ¦       ¦       forest2_hollow_tree_top.fcg.ckd
¦               ¦       ¦       forest2_hollow_tree_top.tga.ckd
¦               ¦       ¦       forest2_light_clouds.fcg.ckd
¦               ¦       ¦       forest2_moss_atlas.fcg.ckd
¦               ¦       ¦       forest2_moss_atlas.tga.ckd
¦               ¦       ¦       forest2_object.fcg.ckd
¦               ¦       ¦       forest2_object_ani.fcg.ckd
¦               ¦       ¦       forest2_object_ani_slow.fcg.ckd
¦               ¦       ¦       forest2_river.fcg.ckd
¦               ¦       ¦       forest2_storm.fcg.ckd
¦               ¦       ¦       forest2_sunrays.fcg.ckd
¦               ¦       ¦       forest2_sunset.fcg.ckd
¦               ¦       ¦       forest2_tree_far.fcg.ckd
¦               ¦       ¦       forest2_waterfall.fcg.ckd
¦               ¦       ¦       forest2_waterfall.tga.ckd
¦               ¦       ¦       forest_eyetree.fcg.ckd
¦               ¦       ¦       forest_eyetree.tga.ckd
¦               ¦       ¦       multibearfar.fcg.ckd
¦               ¦       ¦       multibearfar.tga.ckd
¦               ¦       ¦       
¦               ¦       +---scene
¦               ¦           ¦   forest_stage02.isc.ckd
¦               ¦           ¦   
¦               ¦           +---forest_stage02
¦               ¦               ¦   subscene_forest_stage02.isc.ckd
¦               ¦               ¦   
¦               ¦               +---subscene
¦               ¦                   +---cine
¦               ¦                   ¦       act2_3_earthguardian.tpl.ckd
¦               ¦                   ¦       subscene_forest_stage02_cine.isc.ckd
¦               ¦                   ¦       
¦               ¦                   +---fx
¦               ¦                   ¦       subscene_forest_stage02_fx.isc.ckd
¦               ¦                   ¦       
¦               ¦                   +---graph
¦               ¦                   ¦       subscene_forest_stage02_graph.isc.ckd
¦               ¦                   ¦       
¦               ¦                   +---ld
¦               ¦                   ¦       stage_02_mission.isc.ckd
¦               ¦                   ¦       subscene_forest_stage02_ld.isc.ckd
¦               ¦                   ¦       
¦               ¦                   +---sound
¦               ¦                           subscene_forest_stage02_sound.isc.ckd
¦               ¦                           
¦               +---01_cave
¦               ¦   +---common
¦               ¦   ¦   +---actor
¦               ¦   ¦   ¦   +---cave_art
¦               ¦   ¦   ¦   ¦   ¦   cave_art.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           cave_art.asc.ckd
¦               ¦   ¦   ¦   ¦           cave_art_a01.pbk.ckd
¦               ¦   ¦   ¦   ¦           cave_art_a01.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---cliffparts
¦               ¦   ¦   ¦   ¦   ¦   cliffparts.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           cliffparts.asc.ckd
¦               ¦   ¦   ¦   ¦           cliff_parts_a01.pbk.ckd
¦               ¦   ¦   ¦   ¦           cliff_parts_a01.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---cliffparts2
¦               ¦   ¦   ¦   ¦   ¦   cliffparts2.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           cliffpartsb.asc.ckd
¦               ¦   ¦   ¦   ¦           cliff_parts_a02.pbk.ckd
¦               ¦   ¦   ¦   ¦           cliff_parts_a02.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---dinoparts
¦               ¦   ¦   ¦   ¦   ¦   dinoparts.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           dinoparts.asc.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---door_z
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦   ¦       doortype_forest_a1.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       doortype_forest_a1.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       doortype_forest_a2.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       doortype_forest_a2.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       doortype_forest_a3.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       doortype_forest_a3.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       door_z_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦   ¦       open.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       stand.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦           door_z.tpl.ckd
¦               ¦   ¦   ¦   ¦           door_z_novisual.tpl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---fallingplatform
¦               ¦   ¦   ¦   ¦       fallingplatform_sound.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---minecart
¦               ¦   ¦   ¦   ¦       minecartsound.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---nestparts
¦               ¦   ¦   ¦   ¦   ¦   nestparts.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           nestparts.asc.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---pterodactyl
¦               ¦   ¦   ¦   ¦   ¦   pterodactyl.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           pterodactyl.asc.ckd
¦               ¦   ¦   ¦   ¦           pterodactyl_a01.pbk.ckd
¦               ¦   ¦   ¦   ¦           pterodactyl_a01.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---scaffolding
¦               ¦   ¦   ¦       ¦   scaffolding.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               scaffolding.asc.ckd
¦               ¦   ¦   ¦               scaffolding_a01.pbk.ckd
¦               ¦   ¦   ¦               scaffolding_a01.tga.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---frieze
¦               ¦   ¦   ¦   ¦   cavebgfill.fcg.ckd
¦               ¦   ¦   ¦   ¦   cavebgfill.tga.ckd
¦               ¦   ¦   ¦   ¦   cavebgfillnew.fcg.ckd
¦               ¦   ¦   ¦   ¦   cavebgfillnew.tga.ckd
¦               ¦   ¦   ¦   ¦   cavebg_all.fcg.ckd
¦               ¦   ¦   ¦   ¦   cavebg_all.tga.ckd
¦               ¦   ¦   ¦   ¦   cavefill.tga.ckd
¦               ¦   ¦   ¦   ¦   cavefill_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   cavefill_square.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_bg.tga.ckd
¦               ¦   ¦   ¦   ¦   cave_fgnew.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_fgnew.tga.ckd
¦               ¦   ¦   ¦   ¦   cliffbgfill.fcg.ckd
¦               ¦   ¦   ¦   ¦   cliff_dinos_atlas.pbk.ckd
¦               ¦   ¦   ¦   ¦   cliff_dinos_atlas.tga.ckd
¦               ¦   ¦   ¦   ¦   cliff_parts_atlas.fcg.ckd
¦               ¦   ¦   ¦   ¦   cliff_parts_atlas.pbk.ckd
¦               ¦   ¦   ¦   ¦   cliff_parts_atlas.tga.ckd
¦               ¦   ¦   ¦   ¦   cliff_sunrays.fcg.ckd
¦               ¦   ¦   ¦   ¦   cliff_woodfloor.fcg.ckd
¦               ¦   ¦   ¦   ¦   cliff_woodfloor.tga.ckd
¦               ¦   ¦   ¦   ¦   darkfade.fcg.ckd
¦               ¦   ¦   ¦   ¦   darkfade.tga.ckd
¦               ¦   ¦   ¦   ¦   fakedarken.fcg.ckd
¦               ¦   ¦   ¦   ¦   lift_rope.fcg.ckd
¦               ¦   ¦   ¦   ¦   lift_rope.tga.ckd
¦               ¦   ¦   ¦   ¦   lift_support_a.fcg.ckd
¦               ¦   ¦   ¦   ¦   lift_support_a.tga.ckd
¦               ¦   ¦   ¦   ¦   lift_support_b.fcg.ckd
¦               ¦   ¦   ¦   ¦   lift_support_b.tga.ckd
¦               ¦   ¦   ¦   ¦   mcguckett_silhouette.fcg.ckd
¦               ¦   ¦   ¦   ¦   mcguckett_silhouette.tga.ckd
¦               ¦   ¦   ¦   ¦   nest_grass.tga.ckd
¦               ¦   ¦   ¦   ¦   nest_grass_nocol.fcg.ckd
¦               ¦   ¦   ¦   ¦   nest_grass_rear_nocol.fcg.ckd
¦               ¦   ¦   ¦   ¦   nest_ground.fcg.ckd
¦               ¦   ¦   ¦   ¦   nest_straw.fcg.ckd
¦               ¦   ¦   ¦   ¦   rails2.fcg.ckd
¦               ¦   ¦   ¦   ¦   rails2.tga.ckd
¦               ¦   ¦   ¦   ¦   wind_guardian_died.fcg.ckd
¦               ¦   ¦   ¦   ¦   wind_guardian_died.tga.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---cave_largetreetemplates
¦               ¦   ¦   ¦           cave_largetree_1.tsc.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---subscene
¦               ¦   ¦       +---tresureroom
¦               ¦   ¦           ¦   treasureroom_cave.isc.ckd
¦               ¦   ¦           ¦   
¦               ¦   ¦           +---treasureroom_cave
¦               ¦   ¦               ¦   subscene_treasureroom_cave.isc.ckd
¦               ¦   ¦               ¦   
¦               ¦   ¦               +---subscene
¦               ¦   ¦                   +---fx
¦               ¦   ¦                   ¦       treasureroom_cave_fx.isc.ckd
¦               ¦   ¦                   ¦       
¦               ¦   ¦                   +---graph
¦               ¦   ¦                   ¦       treasureroom_cave_graph.isc.ckd
¦               ¦   ¦                   ¦       
¦               ¦   ¦                   +---ld
¦               ¦   ¦                   ¦       treasureroom_cave_ld.isc.ckd
¦               ¦   ¦                   ¦       
¦               ¦   ¦                   +---sound
¦               ¦   ¦                           treasureroom_cave_sound.isc.ckd
¦               ¦   ¦                           
¦               ¦   +---guardianroom
¦               ¦   ¦   +---scene
¦               ¦   ¦       +---subscene
¦               ¦   ¦           ¦   subscene_cliff1_guardianroom.isc.ckd
¦               ¦   ¦           ¦   subscene_cliff2_guardianroom.isc.ckd
¦               ¦   ¦           ¦   
¦               ¦   ¦           +---subscene
¦               ¦   ¦               +---cine
¦               ¦   ¦               ¦       subscene_cliff1_guardianroom_cine.isc.ckd
¦               ¦   ¦               ¦       subscene_cliff2_guardianroom_cine.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---fx
¦               ¦   ¦               ¦       subscene_cliff1_guardianroom_fx.isc.ckd
¦               ¦   ¦               ¦       subscene_cliff2_guardianroom_fx.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---graph
¦               ¦   ¦               ¦       subscene_cliff1_guardianroom_graph.isc.ckd
¦               ¦   ¦               ¦       subscene_cliff2_guardianroom_graph.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---ld
¦               ¦   ¦               ¦       subscene_cliff1_guardianroom_ld.isc.ckd
¦               ¦   ¦               ¦       subscene_cliff2_guardianroom_ld.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---sound
¦               ¦   ¦                       subscene_cliff1_guardianroom_sound.isc.ckd
¦               ¦   ¦                       subscene_cliff2_guardianroom_sound.isc.ckd
¦               ¦   ¦                       
¦               ¦   +---stage01
¦               ¦   ¦   +---actor
¦               ¦   ¦   ¦   +---fx_flame
¦               ¦   ¦   ¦       ¦   fx_flame.tpl.ckd
¦               ¦   ¦   ¦       ¦   vertexflame.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               fx_flame.asc.ckd
¦               ¦   ¦   ¦               fx_flame.pbk.ckd
¦               ¦   ¦   ¦               fx_flame.tga.ckd
¦               ¦   ¦   ¦               fx_flame_squeleton.skl.ckd
¦               ¦   ¦   ¦               stand.anm.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---frieze
¦               ¦   ¦   ¦   ¦   cave_background_clouds.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_deepforest.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_forground_bush.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_grass_02.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_ground_square.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_lake_ground_grass.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_lake_object_anm.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_low_grass_00.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_mountainrange.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_platform.tga.ckd
¦               ¦   ¦   ¦   ¦   cave_platform2.tga.ckd
¦               ¦   ¦   ¦   ¦   cave_platform2_nosolid.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_platform_nosolid.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_walkway.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_walkway.tga.ckd
¦               ¦   ¦   ¦   ¦   cave_walkway_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   cave_walkway_nocol.fcg.ckd
¦               ¦   ¦   ¦   ¦   cave_wallup_01.fcg.ckd
¦               ¦   ¦   ¦   ¦   fx_embers.fcg.ckd
¦               ¦   ¦   ¦   ¦   fx_embers.tga.ckd
¦               ¦   ¦   ¦   ¦   fx_firefrieze.tga.ckd
¦               ¦   ¦   ¦   ¦   fx_firescroll.fcg.ckd
¦               ¦   ¦   ¦   ¦   fx_magma.fcg.ckd
¦               ¦   ¦   ¦   ¦   fx_magma90_10m.fcg.ckd
¦               ¦   ¦   ¦   ¦   fx_magmafast.fcg.ckd
¦               ¦   ¦   ¦   ¦   fx_magmafast90_10m.fcg.ckd
¦               ¦   ¦   ¦   ¦   fx_magmaflat_fadeborder.fcg.ckd
¦               ¦   ¦   ¦   ¦   magmastones_alpha.fcg.ckd
¦               ¦   ¦   ¦   ¦   magmastones_alpha.tga.ckd
¦               ¦   ¦   ¦   ¦   magmastones_alpha_10m.fcg.ckd
¦               ¦   ¦   ¦   ¦   magma_alpha.tga.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---cave_largetreetemplates
¦               ¦   ¦   ¦       ¦   cave_largetree_10.tsc.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---dark
¦               ¦   ¦   ¦               cave_dark_largetree_12.tsc.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---scene
¦               ¦   ¦   ¦   ¦   cave_stage01.isc.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---cave_stage01
¦               ¦   ¦   ¦       ¦   subscene_cave_stage01.isc.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---subscene
¦               ¦   ¦   ¦           +---cine
¦               ¦   ¦   ¦           ¦       act2_4_fireguardian.tpl.ckd
¦               ¦   ¦   ¦           ¦       subscene_cave_stage01_cine.isc.ckd
¦               ¦   ¦   ¦           ¦       
¦               ¦   ¦   ¦           +---fx
¦               ¦   ¦   ¦           ¦       subscene_cave_stage01_fx.isc.ckd
¦               ¦   ¦   ¦           ¦       
¦               ¦   ¦   ¦           +---graph
¦               ¦   ¦   ¦           ¦       subscene_cave_stage01_graph.isc.ckd
¦               ¦   ¦   ¦           ¦       
¦               ¦   ¦   ¦           +---ld
¦               ¦   ¦   ¦           ¦       subscene_cave_mission.isc.ckd
¦               ¦   ¦   ¦           ¦       subscene_cave_stage01_ld.isc.ckd
¦               ¦   ¦   ¦           ¦       
¦               ¦   ¦   ¦           +---sound
¦               ¦   ¦   ¦                   subscene_cave_stage01_sound.isc.ckd
¦               ¦   ¦   ¦                   
¦               ¦   ¦   +---tween
¦               ¦   ¦           loopingscrollv.tpl.ckd
¦               ¦   ¦           
¦               ¦   +---stage02
¦               ¦       +---frieze
¦               ¦       ¦       cave_backplate.fcg.ckd
¦               ¦       ¦       cave_backplate.tga.ckd
¦               ¦       ¦       cave_fg.fcg.ckd
¦               ¦       ¦       cave_fg.tga.ckd
¦               ¦       ¦       cave_ground.fcg.ckd
¦               ¦       ¦       cave_ground_square.fcg.ckd
¦               ¦       ¦       cave_ground_square_nocol.fcg.ckd
¦               ¦       ¦       cave_low_grass_00.fcg.ckd
¦               ¦       ¦       
¦               ¦       +---scene
¦               ¦           ¦   cave_stage02.isc.ckd
¦               ¦           ¦   
¦               ¦           +---cave_stage02
¦               ¦               ¦   subscene_cave_stage02.isc.ckd
¦               ¦               ¦   
¦               ¦               +---subscene
¦               ¦                   +---cine
¦               ¦                   ¦       a2_1_mcgadvent.tpl.ckd
¦               ¦                   ¦       a2_1_puzzle_lookat.tpl.ckd
¦               ¦                   ¦       a2_1_walkingtotem_advent.tpl.ckd
¦               ¦                   ¦       subscene_cave_stage02_cine.isc.ckd
¦               ¦                   ¦       
¦               ¦                   +---fx
¦               ¦                   ¦       subscene_cave_stage02_fx.isc.ckd
¦               ¦                   ¦       
¦               ¦                   +---graph
¦               ¦                   ¦       subscene_cave_stage02_graph.isc.ckd
¦               ¦                   ¦       
¦               ¦                   +---ld
¦               ¦                   ¦       subscene_cave_stage02_ld.isc.ckd
¦               ¦                   ¦       subscene_cave_stage02_mission.isc.ckd
¦               ¦                   ¦       
¦               ¦                   +---sound
¦               ¦                           subscene_cave_stage02_sound.isc.ckd
¦               ¦                           
¦               +---02_lake
¦               ¦   +---common
¦               ¦   ¦   +---actor
¦               ¦   ¦   ¦   +---lakeobjectparts
¦               ¦   ¦   ¦   ¦   ¦   lakeobjectparts.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           lakeobjectparts.asc.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---water_fall
¦               ¦   ¦   ¦       ¦   water_fall.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               stand.anm.ckd
¦               ¦   ¦   ¦               waterfall_03.pbk.ckd
¦               ¦   ¦   ¦               waterfall_03.tga.ckd
¦               ¦   ¦   ¦               water_fall_squeleton.skl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---frieze
¦               ¦   ¦   ¦   ¦   background_deepforest2.fcg.ckd
¦               ¦   ¦   ¦   ¦   bg_clouds.fcg.ckd
¦               ¦   ¦   ¦   ¦   bg_far_ground.fcg.ckd
¦               ¦   ¦   ¦   ¦   bg_far_ground.tga.ckd
¦               ¦   ¦   ¦   ¦   bg_far_mountain.fcg.ckd
¦               ¦   ¦   ¦   ¦   bg_far_mountain.tga.ckd
¦               ¦   ¦   ¦   ¦   bg_far_reflection.fcg.ckd
¦               ¦   ¦   ¦   ¦   bg_far_reflection.tga.ckd
¦               ¦   ¦   ¦   ¦   bridge_prop2_down.fcg.ckd
¦               ¦   ¦   ¦   ¦   bridge_prop2_down.tga.ckd
¦               ¦   ¦   ¦   ¦   bridge_prop_down.fcg.ckd
¦               ¦   ¦   ¦   ¦   bridge_prop_down.tga.ckd
¦               ¦   ¦   ¦   ¦   bridge_prop_up.fcg.ckd
¦               ¦   ¦   ¦   ¦   bridge_prop_up.tga.ckd
¦               ¦   ¦   ¦   ¦   bridge_woodfloor.fcg.ckd
¦               ¦   ¦   ¦   ¦   bridge_woodfloor.tga.ckd
¦               ¦   ¦   ¦   ¦   lake_ground.fcg.ckd
¦               ¦   ¦   ¦   ¦   lake_ground_grass.fcg.ckd
¦               ¦   ¦   ¦   ¦   lake_ground_square.fcg.ckd
¦               ¦   ¦   ¦   ¦   lake_ground_square_water.fcg.ckd
¦               ¦   ¦   ¦   ¦   lake_object.fcg.ckd
¦               ¦   ¦   ¦   ¦   lake_object_anm.fcg.ckd
¦               ¦   ¦   ¦   ¦   lake_river.fcg.ckd
¦               ¦   ¦   ¦   ¦   lake_river.tga.ckd
¦               ¦   ¦   ¦   ¦   lake_rock.fcg.ckd
¦               ¦   ¦   ¦   ¦   lake_rock.tga.ckd
¦               ¦   ¦   ¦   ¦   lake_tile_ground.fcg.ckd
¦               ¦   ¦   ¦   ¦   lake_water.fcg.ckd
¦               ¦   ¦   ¦   ¦   lake_water.tga.ckd
¦               ¦   ¦   ¦   ¦   tree01.fcg.ckd
¦               ¦   ¦   ¦   ¦   tree02.fcg.ckd
¦               ¦   ¦   ¦   ¦   tree02.tga.ckd
¦               ¦   ¦   ¦   ¦   tree03.fcg.ckd
¦               ¦   ¦   ¦   ¦   tree03.tga.ckd
¦               ¦   ¦   ¦   ¦   tree_far.fcg.ckd
¦               ¦   ¦   ¦   ¦   waterfall.fcg.ckd
¦               ¦   ¦   ¦   ¦   waterfall.tga.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---fluid
¦               ¦   ¦   ¦           bayoufluid.fcg.ckd
¦               ¦   ¦   ¦           bayoufluid.tga.ckd
¦               ¦   ¦   ¦           bayoufluid_long.fcg.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---fx
¦               ¦   ¦       +---reflection
¦               ¦   ¦       ¦       lake_reflection.tpl.ckd
¦               ¦   ¦       ¦       
¦               ¦   ¦       +---water_drop
¦               ¦   ¦           ¦   water_drop.tpl.ckd
¦               ¦   ¦           ¦   
¦               ¦   ¦           +---texture
¦               ¦   ¦                   water_drop.tga.ckd
¦               ¦   ¦                   
¦               ¦   +---guardianroom
¦               ¦   ¦   +---scene
¦               ¦   ¦       +---subscene
¦               ¦   ¦           ¦   subscene_lake_guardianroom.isc.ckd
¦               ¦   ¦           ¦   
¦               ¦   ¦           +---subscene
¦               ¦   ¦               +---cine
¦               ¦   ¦               ¦       subscene_lake_guardianroom_cine.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---fx
¦               ¦   ¦               ¦       subscene_lake_guardianroom_fx.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---graph
¦               ¦   ¦               ¦       subscene_lake_guardianroom_graph.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---ld
¦               ¦   ¦               ¦       subscene_lake_guardianroom_ld.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---sound
¦               ¦   ¦                       subscene_lake_guardianroom_sound.isc.ckd
¦               ¦   ¦                       
¦               ¦   +---stage01
¦               ¦   ¦   +---frieze
¦               ¦   ¦   ¦       lake_stage01_other.fcg.ckd
¦               ¦   ¦   ¦       lake_stage01_other.tga.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---scene
¦               ¦   ¦       ¦   lake_stage01.isc.ckd
¦               ¦   ¦       ¦   
¦               ¦   ¦       +---lake_stage01
¦               ¦   ¦           ¦   subscene_lake_stage01.isc.ckd
¦               ¦   ¦           ¦   
¦               ¦   ¦           +---subscene
¦               ¦   ¦               +---cine
¦               ¦   ¦               ¦       act2_2_flyingtutorial.tpl.ckd
¦               ¦   ¦               ¦       act2_2_waterguardian.tpl.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---fx
¦               ¦   ¦               ¦       subscene_lake_stage01_fx.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---graph
¦               ¦   ¦               ¦       subscene_lake_stage01_graph.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---ld
¦               ¦   ¦               ¦       lake_stage01_mission.isc.ckd
¦               ¦   ¦               ¦       subscene_lake_stage01_ld.isc.ckd
¦               ¦   ¦               ¦       
¦               ¦   ¦               +---sound
¦               ¦   ¦                       subscene_lake_stage01_sound.isc.ckd
¦               ¦   ¦                       
¦               ¦   +---stage02
¦               ¦       +---frieze
¦               ¦               bg_far_forest03.fcg.ckd
¦               ¦               bg_far_mountain02.fcg.ckd
¦               ¦               bg_far_mountain02.tga.ckd
¦               ¦               bg_lake_cloud02_.fcg.ckd
¦               ¦               bg_lake_cloud02_.tga.ckd
¦               ¦               lake_ivy.fcg.ckd
¦               ¦               lake_ivy.tga.ckd
¦               ¦               lake_stage02_ground_square.fcg.ckd
¦               ¦               lake_stage02_ground_square.tga.ckd
¦               ¦               lake_stage02_ground_square_fill.tga.ckd
¦               ¦               lake_waterfall_fog_fill.fcg.ckd
¦               ¦               lake_waterfall_fog_fill.tga.ckd
¦               ¦               lake_water_platform.fcg.ckd
¦               ¦               lake_water_platform_fill.tga.ckd
¦               ¦               lake_water_platform_top.fcg.ckd
¦               ¦               lake_water_platform_top.tga.ckd
¦               ¦               
¦               +---10_mysteryshack
¦               ¦   ¦   mysteryshack.isc.ckd
¦               ¦   ¦   mysteryshack_twist.isc.ckd
¦               ¦   ¦   
¦               ¦   +---actors
¦               ¦   ¦   +---collectionroom
¦               ¦   ¦   ¦       collectionroomitemcontroller.tpl.ckd
¦               ¦   ¦   ¦       darkjeff_spawner.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---living
¦               ¦   ¦   ¦       missionupgradeitem.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---mission
¦               ¦   ¦           epiloguechangecostumecomponent.tpl.ckd
¦               ¦   ¦           shackout_soundcomponent.tpl.ckd
¦               ¦   ¦           twistedcollectionroom_soundcomponent.tpl.ckd
¦               ¦   ¦           
¦               ¦   +---frieze
¦               ¦   ¦   ¦   bg_tree_001.fcg.ckd
¦               ¦   ¦   ¦   bg_tree_001.tga.ckd
¦               ¦   ¦   ¦   fakedarken.fcg.ckd
¦               ¦   ¦   ¦   fakedarken.tga.ckd
¦               ¦   ¦   ¦   shack_bottompit_grass.fcg.ckd
¦               ¦   ¦   ¦   shack_bottompit_grass_flat.fcg.ckd
¦               ¦   ¦   ¦   shack_bottompit_ground.fcg.ckd
¦               ¦   ¦   ¦   shack_bottompit_ground.tga.ckd
¦               ¦   ¦   ¦   shack_bottompit_hole.fcg.ckd
¦               ¦   ¦   ¦   shack_bottompit_hole.tga.ckd
¦               ¦   ¦   ¦   shack_bottompit_trunk.fcg.ckd
¦               ¦   ¦   ¦   shack_exe_background.fcg.ckd
¦               ¦   ¦   ¦   shack_exe_background.tga.ckd
¦               ¦   ¦   ¦   shack_exe_mysteryshack.fcg.ckd
¦               ¦   ¦   ¦   shack_exe_mysteryshack.tga.ckd
¦               ¦   ¦   ¦   shack_ext_grass.fcg.ckd
¦               ¦   ¦   ¦   shack_ext_grass.tga.ckd
¦               ¦   ¦   ¦   shack_ext_ground.fcg.ckd
¦               ¦   ¦   ¦   shack_ext_ground.tga.ckd
¦               ¦   ¦   ¦   shack_ext_ground_background.fcg.ckd
¦               ¦   ¦   ¦   shack_giftshop_deco.fcg.ckd
¦               ¦   ¦   ¦   shack_giftshop_deco.tga.ckd
¦               ¦   ¦   ¦   shack_giftshop_door.fcg.ckd
¦               ¦   ¦   ¦   shack_giftshop_door.tga.ckd
¦               ¦   ¦   ¦   shack_giftshop_floor.fcg.ckd
¦               ¦   ¦   ¦   shack_giftshop_floor.tga.ckd
¦               ¦   ¦   ¦   shack_giftshop_floorlighting.fcg.ckd
¦               ¦   ¦   ¦   shack_giftshop_floorlighting.tga.ckd
¦               ¦   ¦   ¦   shack_giftshop_front_deco.fcg.ckd
¦               ¦   ¦   ¦   shack_giftshop_front_deco.tga.ckd
¦               ¦   ¦   ¦   shack_giftshop_wall.fcg.ckd
¦               ¦   ¦   ¦   shack_giftshop_wall.tga.ckd
¦               ¦   ¦   ¦   shack_giftshop_windowlighting.fcg.ckd
¦               ¦   ¦   ¦   shack_giftshop_windowlighting.tga.ckd
¦               ¦   ¦   ¦   shack_living_carpet.fcg.ckd
¦               ¦   ¦   ¦   shack_living_carpet.tga.ckd
¦               ¦   ¦   ¦   shack_living_deco.fcg.ckd
¦               ¦   ¦   ¦   shack_living_deco.tga.ckd
¦               ¦   ¦   ¦   shack_living_deco_z.fcg.ckd
¦               ¦   ¦   ¦   shack_living_floor.fcg.ckd
¦               ¦   ¦   ¦   shack_living_floor.tga.ckd
¦               ¦   ¦   ¦   shack_living_pillar.fcg.ckd
¦               ¦   ¦   ¦   shack_living_pillar.tga.ckd
¦               ¦   ¦   ¦   shack_living_pillar2.fcg.ckd
¦               ¦   ¦   ¦   shack_living_pillar2.tga.ckd
¦               ¦   ¦   ¦   shack_living_pillar3.fcg.ckd
¦               ¦   ¦   ¦   shack_living_pillar3.tga.ckd
¦               ¦   ¦   ¦   shack_living_wall.fcg.ckd
¦               ¦   ¦   ¦   shack_living_wall.tga.ckd
¦               ¦   ¦   ¦   shack_living_wall2.fcg.ckd
¦               ¦   ¦   ¦   shack_living_wall2.tga.ckd
¦               ¦   ¦   ¦   shack_living_wallside.fcg.ckd
¦               ¦   ¦   ¦   shack_living_wallside.tga.ckd
¦               ¦   ¦   ¦   shack_living_wall_flat.fcg.ckd
¦               ¦   ¦   ¦   shack_museum_carpet.fcg.ckd
¦               ¦   ¦   ¦   shack_museum_carpet.tga.ckd
¦               ¦   ¦   ¦   shack_museum_deco.fcg.ckd
¦               ¦   ¦   ¦   shack_museum_deco.tga.ckd
¦               ¦   ¦   ¦   shack_museum_deco_1.fcg.ckd
¦               ¦   ¦   ¦   shack_museum_deco_1.tga.ckd
¦               ¦   ¦   ¦   shack_museum_floor_square.fcg.ckd
¦               ¦   ¦   ¦   shack_museum_floor_square.tga.ckd
¦               ¦   ¦   ¦   shack_museum_floor_square_fill.tga.ckd
¦               ¦   ¦   ¦   shack_museum_partition.fcg.ckd
¦               ¦   ¦   ¦   shack_museum_partition.tga.ckd
¦               ¦   ¦   ¦   shack_museum_pillar1.fcg.ckd
¦               ¦   ¦   ¦   shack_museum_pillar1.tga.ckd
¦               ¦   ¦   ¦   shack_museum_wall.fcg.ckd
¦               ¦   ¦   ¦   shack_museum_wall.tga.ckd
¦               ¦   ¦   ¦   shack_museum_wallside.fcg.ckd
¦               ¦   ¦   ¦   shack_museum_wallside.tga.ckd
¦               ¦   ¦   ¦   shack_museum_wallside_1.fcg.ckd
¦               ¦   ¦   ¦   shack_opening_background.fcg.ckd
¦               ¦   ¦   ¦   shack_opening_background.tga.ckd
¦               ¦   ¦   ¦   shack_opening_powerpole.fcg.ckd
¦               ¦   ¦   ¦   shack_opening_powerpole.tga.ckd
¦               ¦   ¦   ¦   shack_opening_watertower.fcg.ckd
¦               ¦   ¦   ¦   shack_opening_watertower.tga.ckd
¦               ¦   ¦   ¦   
¦               ¦   ¦   +---twist
¦               ¦   ¦           shack_museum_carpet_twist.fcg.ckd
¦               ¦   ¦           shack_museum_carpet_twist.tga.ckd
¦               ¦   ¦           shack_museum_deco_1_twist.fcg.ckd
¦               ¦   ¦           shack_museum_deco_1_twist.tga.ckd
¦               ¦   ¦           shack_museum_deco_twist.fcg.ckd
¦               ¦   ¦           shack_museum_deco_twist.tga.ckd
¦               ¦   ¦           shack_museum_floor_square_fill_twist.tga.ckd
¦               ¦   ¦           shack_museum_floor_square_twist.fcg.ckd
¦               ¦   ¦           shack_museum_floor_square_twist.tga.ckd
¦               ¦   ¦           shack_museum_partition_twist.fcg.ckd
¦               ¦   ¦           shack_museum_partition_twist.tga.ckd
¦               ¦   ¦           shack_museum_wallside_1_twist.fcg.ckd
¦               ¦   ¦           shack_museum_wallside_twist.fcg.ckd
¦               ¦   ¦           shack_museum_wallside_twist.tga.ckd
¦               ¦   ¦           shack_museum_wall_twist.fcg.ckd
¦               ¦   ¦           shack_museum_wall_twist.tga.ckd
¦               ¦   ¦           
¦               ¦   +---fx
¦               ¦   ¦   +---sparkle
¦               ¦   ¦       ¦   museum_sparkle.tpl.ckd
¦               ¦   ¦       ¦   
¦               ¦   ¦       +---texture
¦               ¦   ¦               sparkle.tga.ckd
¦               ¦   ¦               
¦               ¦   +---subscene
¦               ¦       ¦   subscene_mysteryshack_bottomlesspit.isc.ckd
¦               ¦       ¦   subscene_mysteryshack_ext.isc.ckd
¦               ¦       ¦   subscene_mysteryshack_giftshop.isc.ckd
¦               ¦       ¦   subscene_mysteryshack_livingroom.isc.ckd
¦               ¦       ¦   subscene_mysteryshack_museum.isc.ckd
¦               ¦       ¦   subscene_mysteryshack_opening.isc.ckd
¦               ¦       ¦   subscene_mysteryshack_twistext.isc.ckd
¦               ¦       ¦   subscene_mysteryshack_twistmuseum.isc.ckd
¦               ¦       ¦   
¦               ¦       +---subscene
¦               ¦           +---cine
¦               ¦           ¦       a1_1_00_enemyadvent.tpl.ckd
¦               ¦           ¦       a2_6a_twist_outshack_guardianadvent.tpl.ckd
¦               ¦           ¦       a2_6_3_collectionview.tpl.ckd
¦               ¦           ¦       a2_6_4_twist_shackview.tpl.ckd
¦               ¦           ¦       epilogue_bottomlesspit_endgamereward.tpl.ckd
¦               ¦           ¦       epilogue_bottomlesspit_endgamerewardafter.tpl.ckd
¦               ¦           ¦       epilogue_bottomlesspit_gemulet.tpl.ckd
¦               ¦           ¦       epilogue_bottomlesspit_goat.tpl.ckd
¦               ¦           ¦       subscene_mysteryshack_livingroom_cine.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_museum_cine.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_museum_twist_cine.isc.ckd
¦               ¦           ¦       
¦               ¦           +---fx
¦               ¦           ¦       subscene_mysteryshack_bottomlesspit_fx.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_livingroom_fx.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_museum_fx.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_museum_twist_fx.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_opening_fx.isc.ckd
¦               ¦           ¦       
¦               ¦           +---graph
¦               ¦           ¦       subscene_mysteryshack_bottomlesspit_graph.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_ext_graph.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_ext_twist_graph.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_giftshop_graph.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_livingroom_graph.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_museum_graph.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_museum_twist_graph.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_opening_graph.isc.ckd
¦               ¦           ¦       
¦               ¦           +---ld
¦               ¦           ¦       subscene_mysteryshack_bottomlesspit_ld.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_ext_ld.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_ext_twist_ld.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_giftshop_ld.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_livingroom_ld.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_museum_ld.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_museum_twist_ld.isc.ckd
¦               ¦           ¦       subscene_mysteryshack_opening_ld.isc.ckd
¦               ¦           ¦       
¦               ¦           +---sound
¦               ¦                   subscene_mysteryshack_bottomlesspit_sound.isc.ckd
¦               ¦                   subscene_mysteryshack_ext_sound.isc.ckd
¦               ¦                   subscene_mysteryshack_ext_twist_sound.isc.ckd
¦               ¦                   subscene_mysteryshack_giftshop_sound.isc.ckd
¦               ¦                   subscene_mysteryshack_livingroom_sound.isc.ckd
¦               ¦                   subscene_mysteryshack_museum_sound.isc.ckd
¦               ¦                   subscene_mysteryshack_museum_twist_sound.isc.ckd
¦               ¦                   subscene_mysteryshack_opening_sound.isc.ckd
¦               ¦                   
¦               +---11_junkyard
¦               ¦   ¦   junkyard.isc.ckd
¦               ¦   ¦   
¦               ¦   +---frieze
¦               ¦   ¦       junkyard_background.fcg.ckd
¦               ¦   ¦       junkyard_background.tga.ckd
¦               ¦   ¦       junkyard_front.fcg.ckd
¦               ¦   ¦       junkyard_front.tga.ckd
¦               ¦   ¦       junkyard_object.fcg.ckd
¦               ¦   ¦       junkyard_object.tga.ckd
¦               ¦   ¦       
¦               ¦   +---subscene
¦               ¦       ¦   subscene_junkyard.isc.ckd
¦               ¦       ¦   
¦               ¦       +---subscene
¦               ¦           +---fx
¦               ¦           ¦       subscene_junkyard_fx.isc.ckd
¦               ¦           ¦       
¦               ¦           +---graph
¦               ¦           ¦       subscene_junkyard_graph.isc.ckd
¦               ¦           ¦       
¦               ¦           +---ld
¦               ¦           ¦       subscene_junkyard_ld.isc.ckd
¦               ¦           ¦       
¦               ¦           +---sound
¦               ¦                   subscene_junkyard_sound.isc.ckd
¦               ¦                   
¦               +---12_town
¦               ¦   ¦   town.isc.ckd
¦               ¦   ¦   town_twist.isc.ckd
¦               ¦   ¦   
¦               ¦   +---actor
¦               ¦   ¦   +---jeff
¦               ¦   ¦   ¦   ¦   jeff.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦           jeff.pbk.ckd
¦               ¦   ¦   ¦           jeff.tga.ckd
¦               ¦   ¦   ¦           jeff_squeleton.skl.ckd
¦               ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---mission
¦               ¦   ¦   ¦       twistedtown_soundcomponent.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---place
¦               ¦   ¦           npccontrolpoint.tpl.ckd
¦               ¦   ¦           npcplacecontroller.tpl.ckd
¦               ¦   ¦           npcplacepoint.tpl.ckd
¦               ¦   ¦           
¦               ¦   +---frieze
¦               ¦   ¦   ¦   town_fence_01.fcg.ckd
¦               ¦   ¦   ¦   town_fence_01.tga.ckd
¦               ¦   ¦   ¦   town_houses.fcg.ckd
¦               ¦   ¦   ¦   town_houses.tga.ckd
¦               ¦   ¦   ¦   town_houses_road.fcg.ckd
¦               ¦   ¦   ¦   town_houses_roadside.fcg.ckd
¦               ¦   ¦   ¦   town_road.fcg.ckd
¦               ¦   ¦   ¦   town_road.tga.ckd
¦               ¦   ¦   ¦   town_road02b.fcg.ckd
¦               ¦   ¦   ¦   town_road02b.tga.ckd
¦               ¦   ¦   ¦   town_road_noline.fcg.ckd
¦               ¦   ¦   ¦   town_road_noline.tga.ckd
¦               ¦   ¦   ¦   
¦               ¦   ¦   +---twist
¦               ¦   ¦           background_deepforest_twist.fcg.ckd
¦               ¦   ¦           background_mountainrange_twist.fcg.ckd
¦               ¦   ¦           lake_ground_grass_twist.fcg.ckd
¦               ¦   ¦           town_fence_01_twist.fcg.ckd
¦               ¦   ¦           town_fence_01_twist.tga.ckd
¦               ¦   ¦           town_gateaura_twist.fcg.ckd
¦               ¦   ¦           town_gate_twist.fcg.ckd
¦               ¦   ¦           town_gate_twist.tga.ckd
¦               ¦   ¦           town_houses_roadside_twist.fcg.ckd
¦               ¦   ¦           town_houses_road_twist.fcg.ckd
¦               ¦   ¦           town_houses_twist.fcg.ckd
¦               ¦   ¦           town_houses_twist.tga.ckd
¦               ¦   ¦           town_road02b_twist.fcg.ckd
¦               ¦   ¦           town_road02b_twist.tga.ckd
¦               ¦   ¦           town_road_noline_twist.fcg.ckd
¦               ¦   ¦           town_road_noline_twist.tga.ckd
¦               ¦   ¦           town_road_twist.fcg.ckd
¦               ¦   ¦           town_road_twist.tga.ckd
¦               ¦   ¦           town_vine_twist.fcg.ckd
¦               ¦   ¦           town_vine_twist.tga.ckd
¦               ¦   ¦           
¦               ¦   +---subscene
¦               ¦       ¦   subscene_town_mainstreet.isc.ckd
¦               ¦       ¦   subscene_town_mainstreet_twist.isc.ckd
¦               ¦       ¦   
¦               ¦       +---subscene
¦               ¦           +---cine
¦               ¦           ¦       a_3_01_twisttown_close.tpl.ckd
¦               ¦           ¦       a_3_01_twisttown_evilspirit_dead.tpl.ckd
¦               ¦           ¦       a_3_01_twisttown_evilspirit_first.tpl.ckd
¦               ¦           ¦       a_3_01_twisttown_evilsprit_jeffmagic.tpl.ckd
¦               ¦           ¦       a_3_01_twisttown_open.tpl.ckd
¦               ¦           ¦       
¦               ¦           +---graph
¦               ¦           ¦       subscene_town_mainstreet_graph.isc.ckd
¦               ¦           ¦       subscene_town_mainstreet_graph_twist.isc.ckd
¦               ¦           ¦       
¦               ¦           +---ld
¦               ¦           ¦       subscene_town_mainstreet_ld.isc.ckd
¦               ¦           ¦       subscene_town_mainstreet_twist_ld.isc.ckd
¦               ¦           ¦       
¦               ¦           +---sound
¦               ¦                   subscene_town_mainstreet_sound.isc.ckd
¦               ¦                   subscene_town_mainstreet_twist_sound.isc.ckd
¦               ¦                   
¦               +---common
¦               ¦   +---camera
¦               ¦   ¦   +---camera
¦               ¦   ¦       +---components
¦               ¦   ¦               camera.tpl.ckd
¦               ¦   ¦               cameramodifier.tpl.ckd
¦               ¦   ¦               cameramodifiermission_startpaused.tpl.ckd
¦               ¦   ¦               cameramodifier_noignorez.tpl.ckd
¦               ¦   ¦               cameratargetwithprefetch.tpl.ckd
¦               ¦   ¦               gameplayremotecamera.act.ckd
¦               ¦   ¦               gameplayremotecamera.tpl.ckd
¦               ¦   ¦               
¦               ¦   +---cinematic
¦               ¦   ¦   +---characters
¦               ¦   ¦   ¦   +---candy
¦               ¦   ¦   ¦   ¦   ¦   candy.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   candy.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           candy_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           candy_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           candy_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           happy.anm.ckd
¦               ¦   ¦   ¦   ¦           sad.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---darkgnome
¦               ¦   ¦   ¦   ¦   ¦   darkgnome.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   darkgnome.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           attack.anm.ckd
¦               ¦   ¦   ¦   ¦           darkgnome_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           darkgnome_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           darkgnome_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---darkjeff
¦               ¦   ¦   ¦   ¦   ¦   darkjeff.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   darkjeff.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           angry.anm.ckd
¦               ¦   ¦   ¦   ¦           darkjeff_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           darkjeff_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           darkjeff_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           sick.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---dipper
¦               ¦   ¦   ¦   ¦   ¦   dipper.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   dipper.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           angry.anm.ckd
¦               ¦   ¦   ¦   ¦           bracertextures.anm.ckd
¦               ¦   ¦   ¦   ¦           determined.anm.ckd
¦               ¦   ¦   ¦   ¦           dipper_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           dipper_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           dipper_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           forced_smile.anm.ckd
¦               ¦   ¦   ¦   ¦           happy.anm.ckd
¦               ¦   ¦   ¦   ¦           hilarious.anm.ckd
¦               ¦   ¦   ¦   ¦           laugh.anm.ckd
¦               ¦   ¦   ¦   ¦           sad.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           surprise.anm.ckd
¦               ¦   ¦   ¦   ¦           suspicious.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---evilspirit
¦               ¦   ¦   ¦   ¦   ¦   evilspirit.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   evilspirit.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           evilspirit_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           evilspirit_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           evilspirit_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---grenda
¦               ¦   ¦   ¦   ¦   ¦   grenda.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   grenda.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           grenda_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           grenda_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           grenda_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           happy.anm.ckd
¦               ¦   ¦   ¦   ¦           sad.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---grunklestan
¦               ¦   ¦   ¦   ¦   ¦   grunklestan.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   grunklestan.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   grunklestan_black.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   grunklestan_black.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           angry.anm.ckd
¦               ¦   ¦   ¦   ¦           dazed.anm.ckd
¦               ¦   ¦   ¦   ¦           grunklestan_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           grunklestan_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           grunklestan_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           happy.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---guardian
¦               ¦   ¦   ¦   ¦   ¦   guardian.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   guardian_fire.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           guardian_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           guardian_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           guardian_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---jeff
¦               ¦   ¦   ¦   ¦   ¦   jeff.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   jeff.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   jeff_black.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   jeff_black.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           angry.anm.ckd
¦               ¦   ¦   ¦   ¦           happy.anm.ckd
¦               ¦   ¦   ¦   ¦           jeff_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           jeff_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           jeff_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           nervous.anm.ckd
¦               ¦   ¦   ¦   ¦           sad.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---mabel
¦               ¦   ¦   ¦   ¦   ¦   mabelwithwip_l.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   mabelwithwip_r.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   mabel_l.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   mabel_l.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   mabel_r.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   mabel_r.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           l_angry.anm.ckd
¦               ¦   ¦   ¦   ¦           l_determined.anm.ckd
¦               ¦   ¦   ¦   ¦           l_forced_smile.anm.ckd
¦               ¦   ¦   ¦   ¦           l_happy.anm.ckd
¦               ¦   ¦   ¦   ¦           l_hilarious.anm.ckd
¦               ¦   ¦   ¦   ¦           l_laugh.anm.ckd
¦               ¦   ¦   ¦   ¦           l_sad.anm.ckd
¦               ¦   ¦   ¦   ¦           l_stand.anm.ckd
¦               ¦   ¦   ¦   ¦           l_surprise.anm.ckd
¦               ¦   ¦   ¦   ¦           l_suspicious.anm.ckd
¦               ¦   ¦   ¦   ¦           mabel_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           mabel_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           mabel_pack_upgrade01_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           mabel_pack_upgrade01_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           mabel_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           r_angry.anm.ckd
¦               ¦   ¦   ¦   ¦           r_determined.anm.ckd
¦               ¦   ¦   ¦   ¦           r_forced_smile.anm.ckd
¦               ¦   ¦   ¦   ¦           r_happy.anm.ckd
¦               ¦   ¦   ¦   ¦           r_hilarious.anm.ckd
¦               ¦   ¦   ¦   ¦           r_laugh.anm.ckd
¦               ¦   ¦   ¦   ¦           r_sad.anm.ckd
¦               ¦   ¦   ¦   ¦           r_stand.anm.ckd
¦               ¦   ¦   ¦   ¦           r_surprise.anm.ckd
¦               ¦   ¦   ¦   ¦           r_suspicious.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---mcguckett
¦               ¦   ¦   ¦   ¦   ¦   mcguckett.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   mcguckett.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   mcguckett_black.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   mcguckett_black.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           happy.anm.ckd
¦               ¦   ¦   ¦   ¦           mcguckett_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           mcguckett_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           mcguckett_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           sad.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---normalgnome
¦               ¦   ¦   ¦   ¦   ¦   normalgnome.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   normalgnome.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           angry.anm.ckd
¦               ¦   ¦   ¦   ¦           attack.anm.ckd
¦               ¦   ¦   ¦   ¦           normalgnome_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           normalgnome_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           normalgnome_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           surprised.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---pacifica
¦               ¦   ¦   ¦   ¦   ¦   pacifica.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   pacifica.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           happy.anm.ckd
¦               ¦   ¦   ¦   ¦           pacifica_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           pacifica_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           pacifica_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           sad.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---robbie
¦               ¦   ¦   ¦   ¦   ¦   robbie.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   robbie.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           robbie_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           robbie_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           robbie_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           r_happy.anm.ckd
¦               ¦   ¦   ¦   ¦           r_sad.anm.ckd
¦               ¦   ¦   ¦   ¦           r_stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---shmebulock
¦               ¦   ¦   ¦   ¦   ¦   shmebulock.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   shmebulock.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           happy.anm.ckd
¦               ¦   ¦   ¦   ¦           sad.anm.ckd
¦               ¦   ¦   ¦   ¦           shmebulock_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           shmebulock_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           shmebulock_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---soos
¦               ¦   ¦   ¦   ¦   ¦   soos.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   soos.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           r_happy.anm.ckd
¦               ¦   ¦   ¦   ¦           r_sad.anm.ckd
¦               ¦   ¦   ¦   ¦           r_stand.anm.ckd
¦               ¦   ¦   ¦   ¦           soos_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           soos_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           soos_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---waddles
¦               ¦   ¦   ¦   ¦   ¦   waddles.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   waddles.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           happy.anm.ckd
¦               ¦   ¦   ¦   ¦           sad.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           waddles_pack_dialogue_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           waddles_pack_dialogue_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           waddles_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---wendy
¦               ¦   ¦   ¦       ¦   wendy.act.ckd
¦               ¦   ¦   ¦       ¦   wendy.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               dazed.anm.ckd
¦               ¦   ¦   ¦               happy.anm.ckd
¦               ¦   ¦   ¦               stand.anm.ckd
¦               ¦   ¦   ¦               wendy_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦               wendy_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦               wendy_squeleton.skl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---triggers
¦               ¦   ¦           trigger_cinematicdialog.tpl.ckd
¦               ¦   ¦           trigger_cinematicdialog_characterofftrack.tpl.ckd
¦               ¦   ¦           trigger_cinematicdialog_characterofftrackstartpaused.tpl.ckd
¦               ¦   ¦           trigger_cinematicdialog_mcgukett.tpl.ckd
¦               ¦   ¦           trigger_rejectplayer.tpl.ckd
¦               ¦   ¦           trigger_rejectplayerforlead.tpl.ckd
¦               ¦   ¦           trigger_rejectplayerstartpausedformission.tpl.ckd
¦               ¦   ¦           
¦               ¦   +---enemy
¦               ¦   ¦   +---boss
¦               ¦   ¦   ¦   +---common
¦               ¦   ¦   ¦   ¦   ¦   protectingaura.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---windforces
¦               ¦   ¦   ¦   ¦           wind_bossrecover_paused.tpl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---darkjeff
¦               ¦   ¦   ¦   ¦       darkjeff.tpl.ckd
¦               ¦   ¦   ¦   ¦       darkjeff_firstappear.act.ckd
¦               ¦   ¦   ¦   ¦       darkjeff_firstappear.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---evilspirit
¦               ¦   ¦   ¦   ¦       evilspirit.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---forcefieldaura
¦               ¦   ¦   ¦   ¦   ¦   forcefieldaura.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   forcefieldaura.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   forcefieldauramaterial.msh.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           forcefieldaura_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           forcefieldaura_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           forcefieldaura_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---forcefieldbreak
¦               ¦   ¦   ¦   ¦   ¦   forcefieldbreak.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   forcefieldbreak.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   forcefieldbreak_forsoos.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   forcefieldbreak_forsoos.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           forcefieldbreak_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           forcefieldbreak_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           forcefieldbreak_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---forcefieldhole
¦               ¦   ¦   ¦   ¦   ¦   forcefieldhole.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   forcefieldhole.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   forcefieldholematerial.msh.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           forcefieldhole_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           forcefieldhole_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           forcefieldhole_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---guardian
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦       ¦       brokenglasstextures.anm.ckd
¦               ¦   ¦   ¦       ¦       escape_jump.anm.ckd
¦               ¦   ¦   ¦       ¦       fly_damage.anm.ckd
¦               ¦   ¦   ¦       ¦       fly_damagedown.anm.ckd
¦               ¦   ¦   ¦       ¦       fly_death.anm.ckd
¦               ¦   ¦   ¦       ¦       fly_stand.anm.ckd
¦               ¦   ¦   ¦       ¦       fly_turn.anm.ckd
¦               ¦   ¦   ¦       ¦       guardian_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦       ¦       guardian_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦       ¦       guardian_pack_darkjeff_001.pbk.ckd
¦               ¦   ¦   ¦       ¦       guardian_pack_darkjeff_001_0.tga.ckd
¦               ¦   ¦   ¦       ¦       guardian_pack_evilspirit_001.pbk.ckd
¦               ¦   ¦   ¦       ¦       guardian_pack_evilspirit_001_0.tga.ckd
¦               ¦   ¦   ¦       ¦       guardian_pack_fire_001.pbk.ckd
¦               ¦   ¦   ¦       ¦       guardian_pack_fire_001_0.tga.ckd
¦               ¦   ¦   ¦       ¦       guardian_pack_water_001.pbk.ckd
¦               ¦   ¦   ¦       ¦       guardian_pack_water_001_0.tga.ckd
¦               ¦   ¦   ¦       ¦       guardian_squeleton.skl.ckd
¦               ¦   ¦   ¦       ¦       ko_damage_rise.anm.ckd
¦               ¦   ¦   ¦       ¦       ko_damage_stand.anm.ckd
¦               ¦   ¦   ¦       ¦       ko_damage_ver.anm.ckd
¦               ¦   ¦   ¦       ¦       land_damagedown.anm.ckd
¦               ¦   ¦   ¦       ¦       land_damage_faint.anm.ckd
¦               ¦   ¦   ¦       ¦       land_damage_hor.anm.ckd
¦               ¦   ¦   ¦       ¦       land_death.anm.ckd
¦               ¦   ¦   ¦       ¦       land_jump.anm.ckd
¦               ¦   ¦   ¦       ¦       land_stand.anm.ckd
¦               ¦   ¦   ¦       ¦       land_standaura.anm.ckd
¦               ¦   ¦   ¦       ¦       land_standuturn.anm.ckd
¦               ¦   ¦   ¦       ¦       spawn_falling.anm.ckd
¦               ¦   ¦   ¦       ¦       spawn_landing.anm.ckd
¦               ¦   ¦   ¦       ¦       spawn_roaring.anm.ckd
¦               ¦   ¦   ¦       ¦       stand.anm.ckd
¦               ¦   ¦   ¦       ¦       
¦               ¦   ¦   ¦       +---earth_guardian
¦               ¦   ¦   ¦       ¦       earth_guardian.tpl.ckd
¦               ¦   ¦   ¦       ¦       
¦               ¦   ¦   ¦       +---fire_guardian
¦               ¦   ¦   ¦       ¦       fire_guardian.tpl.ckd
¦               ¦   ¦   ¦       ¦       fire_guardian_cinematic.tpl.ckd
¦               ¦   ¦   ¦       ¦       
¦               ¦   ¦   ¦       +---water_guardian
¦               ¦   ¦   ¦               water_guardian.tpl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---standardenemy
¦               ¦   ¦       +---campfire_totem
¦               ¦   ¦       ¦   ¦   campfire_totem_lv1.tpl.ckd
¦               ¦   ¦       ¦   ¦   campfire_totem_lv2.tpl.ckd
¦               ¦   ¦       ¦   ¦   campfire_totem_lv3.tpl.ckd
¦               ¦   ¦       ¦   ¦   
¦               ¦   ¦       ¦   +---animation
¦               ¦   ¦       ¦           attack_alldir.anm.ckd
¦               ¦   ¦       ¦           attack_upper.anm.ckd
¦               ¦   ¦       ¦           damage_faint.anm.ckd
¦               ¦   ¦       ¦           damage_hor.anm.ckd
¦               ¦   ¦       ¦           damage_ver.anm.ckd
¦               ¦   ¦       ¦           death_hor.anm.ckd
¦               ¦   ¦       ¦           death_ver.anm.ckd
¦               ¦   ¦       ¦           spiny_slime_pack_basic_001.pbk.ckd
¦               ¦   ¦       ¦           spiny_slime_pack_basic_001_0.tga.ckd
¦               ¦   ¦       ¦           spiny_slime_pack_dark_001.pbk.ckd
¦               ¦   ¦       ¦           spiny_slime_pack_dark_001_0.tga.ckd
¦               ¦   ¦       ¦           spiny_slime_pack_metal_001.pbk.ckd
¦               ¦   ¦       ¦           spiny_slime_pack_metal_001_0.tga.ckd
¦               ¦   ¦       ¦           spiny_slime_squeleton.skl.ckd
¦               ¦   ¦       ¦           stand.anm.ckd
¦               ¦   ¦       ¦           turn.anm.ckd
¦               ¦   ¦       ¦           walk.anm.ckd
¦               ¦   ¦       ¦           
¦               ¦   ¦       +---dark_friends
¦               ¦   ¦       ¦   +---common
¦               ¦   ¦       ¦   ¦   +---aura
¦               ¦   ¦       ¦   ¦       ¦   darkfriendsaura.tpl.ckd
¦               ¦   ¦       ¦   ¦       ¦   darktotemaura.tpl.ckd
¦               ¦   ¦       ¦   ¦       ¦   
¦               ¦   ¦       ¦   ¦       +---animation
¦               ¦   ¦       ¦   ¦               aura_pack_basic_001.pbk.ckd
¦               ¦   ¦       ¦   ¦               aura_pack_basic_001_0.tga.ckd
¦               ¦   ¦       ¦   ¦               aura_pack_totem_001.pbk.ckd
¦               ¦   ¦       ¦   ¦               aura_pack_totem_001_0.tga.ckd
¦               ¦   ¦       ¦   ¦               aura_squeleton.skl.ckd
¦               ¦   ¦       ¦   ¦               stand.anm.ckd
¦               ¦   ¦       ¦   ¦               totem.anm.ckd
¦               ¦   ¦       ¦   ¦               
¦               ¦   ¦       ¦   +---dark_gnome
¦               ¦   ¦       ¦   ¦       dark_gnome.tpl.ckd
¦               ¦   ¦       ¦   ¦       dark_gnome_cinematic.tpl.ckd
¦               ¦   ¦       ¦   ¦       dark_gnome_cinematic.tsc.ckd
¦               ¦   ¦       ¦   ¦       
¦               ¦   ¦       ¦   +---dark_grunklestan
¦               ¦   ¦       ¦   ¦       dark_grunklestan.tpl.ckd
¦               ¦   ¦       ¦   ¦       dark_grunklestan.tsc.ckd
¦               ¦   ¦       ¦   ¦       
¦               ¦   ¦       ¦   +---dark_soos
¦               ¦   ¦       ¦   ¦       dark_soos.tpl.ckd
¦               ¦   ¦       ¦   ¦       dark_soos.tsc.ckd
¦               ¦   ¦       ¦   ¦       
¦               ¦   ¦       ¦   +---dark_waddles
¦               ¦   ¦       ¦   ¦       dark_waddles.tpl.ckd
¦               ¦   ¦       ¦   ¦       dark_waddles_tutorial.tpl.ckd
¦               ¦   ¦       ¦   ¦       
¦               ¦   ¦       ¦   +---dark_wendy
¦               ¦   ¦       ¦           dark_wendy.tpl.ckd
¦               ¦   ¦       ¦           
¦               ¦   ¦       +---enemy_gnome
¦               ¦   ¦       ¦       enemy_gnome.tpl.ckd
¦               ¦   ¦       ¦       enemy_gnome_tuto.tpl.ckd
¦               ¦   ¦       ¦       enemy_gnome_tuto_onlywalk.act.ckd
¦               ¦   ¦       ¦       enemy_gnome_tuto_onlywalk.tpl.ckd
¦               ¦   ¦       ¦       enemy_shmebulock_tuto.tpl.ckd
¦               ¦   ¦       ¦       jeff_onlywalk.tpl.ckd
¦               ¦   ¦       ¦       
¦               ¦   ¦       +---flyingeagle_totem
¦               ¦   ¦       ¦   ¦   flyingeagle_totem_lv1.tpl.ckd
¦               ¦   ¦       ¦   ¦   flyingeagle_totem_lv1_tutorial_gnomeforest.tpl.ckd
¦               ¦   ¦       ¦   ¦   flyingeagle_totem_lv1_tutorial_lake.tpl.ckd
¦               ¦   ¦       ¦   ¦   flyingeagle_totem_lv2.tpl.ckd
¦               ¦   ¦       ¦   ¦   flyingeagle_totem_lv3.tpl.ckd
¦               ¦   ¦       ¦   ¦   flyingeagle_totem_tutorialnoneai.tpl.ckd
¦               ¦   ¦       ¦   ¦   
¦               ¦   ¦       ¦   +---animation
¦               ¦   ¦       ¦           arouse.anm.ckd
¦               ¦   ¦       ¦           asleep.anm.ckd
¦               ¦   ¦       ¦           attack.anm.ckd
¦               ¦   ¦       ¦           damage_hor.anm.ckd
¦               ¦   ¦       ¦           damage_ver.anm.ckd
¦               ¦   ¦       ¦           death_hor.anm.ckd
¦               ¦   ¦       ¦           flying_octopus_pack_basic_001.pbk.ckd
¦               ¦   ¦       ¦           flying_octopus_pack_basic_001_0.tga.ckd
¦               ¦   ¦       ¦           flying_octopus_pack_dark_001.pbk.ckd
¦               ¦   ¦       ¦           flying_octopus_pack_dark_001_0.tga.ckd
¦               ¦   ¦       ¦           flying_octopus_pack_metal_001.pbk.ckd
¦               ¦   ¦       ¦           flying_octopus_pack_metal_001_0.tga.ckd
¦               ¦   ¦       ¦           flying_octopus_squeleton.skl.ckd
¦               ¦   ¦       ¦           stand.anm.ckd
¦               ¦   ¦       ¦           turn.anm.ckd
¦               ¦   ¦       ¦           tutorial_flyaway.anm.ckd
¦               ¦   ¦       ¦           tutorial_grab.anm.ckd
¦               ¦   ¦       ¦           wake.anm.ckd
¦               ¦   ¦       ¦           walk.anm.ckd
¦               ¦   ¦       ¦           
¦               ¦   ¦       +---walking_totem
¦               ¦   ¦           ¦   walking_totem_lv1.tpl.ckd
¦               ¦   ¦           ¦   walking_totem_lv2.tpl.ckd
¦               ¦   ¦           ¦   walking_totem_lv2_tutorial.tpl.ckd
¦               ¦   ¦           ¦   walking_totem_lv2_tutorial.tsc.ckd
¦               ¦   ¦           ¦   walking_totem_lv3.tpl.ckd
¦               ¦   ¦           ¦   
¦               ¦   ¦           +---animation
¦               ¦   ¦                   attack.anm.ckd
¦               ¦   ¦                   damage_hor.anm.ckd
¦               ¦   ¦                   damage_ver.anm.ckd
¦               ¦   ¦                   death_hor.anm.ckd
¦               ¦   ¦                   enemy_stump_pack_basic_001.pbk.ckd
¦               ¦   ¦                   enemy_stump_pack_basic_001_0.tga.ckd
¦               ¦   ¦                   enemy_stump_pack_dark_001.pbk.ckd
¦               ¦   ¦                   enemy_stump_pack_dark_001_0.tga.ckd
¦               ¦   ¦                   enemy_stump_pack_metal_001.pbk.ckd
¦               ¦   ¦                   enemy_stump_pack_metal_001_0.tga.ckd
¦               ¦   ¦                   enemy_stump_squeleton.skl.ckd
¦               ¦   ¦                   stand.anm.ckd
¦               ¦   ¦                   turn.anm.ckd
¦               ¦   ¦                   walk.anm.ckd
¦               ¦   ¦                   
¦               ¦   +---feedback
¦               ¦   ¦       feedbacks.frt.ckd
¦               ¦   ¦       
¦               ¦   +---force
¦               ¦   ¦   +---wind
¦               ¦   ¦       +---components
¦               ¦   ¦       ¦       wind_gust.tpl.ckd
¦               ¦   ¦       ¦       wind_strong_interval.tpl.ckd
¦               ¦   ¦       ¦       wind_updraft.tpl.ckd
¦               ¦   ¦       ¦       wind_updraft_gradient.tpl.ckd
¦               ¦   ¦       ¦       wind_vertical_paused.tpl.ckd
¦               ¦   ¦       ¦       
¦               ¦   ¦       +---texture
¦               ¦   ¦               largewind.tga.ckd
¦               ¦   ¦               largewind02.tga.ckd
¦               ¦   ¦               
¦               ¦   +---friendly
¦               ¦   ¦   +---character
¦               ¦   ¦   ¦   +---candy
¦               ¦   ¦   ¦   ¦   ¦   candy.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           candy_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           candy_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           candy_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---goat
¦               ¦   ¦   ¦   ¦   ¦   goat.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           goat_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           goat_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           goat_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---grenda
¦               ¦   ¦   ¦   ¦   ¦   grenda.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           flip_textures.anm.ckd
¦               ¦   ¦   ¦   ¦           grenda_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           grenda_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           grenda_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---grunklestan
¦               ¦   ¦   ¦   ¦   ¦   grunklestan.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   grunklestanstartpaused.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   grunklestan_popup.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           dark_attack.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_damage_hor.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_damage_ver.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_death_hor.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_stand.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_turn.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_walk.anm.ckd
¦               ¦   ¦   ¦   ¦           dazed.anm.ckd
¦               ¦   ¦   ¦   ¦           flip_textures.anm.ckd
¦               ¦   ¦   ¦   ¦           grunklestan_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           grunklestan_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           grunklestan_pack_dark_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           grunklestan_pack_dark_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           grunklestan_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           happy.anm.ckd
¦               ¦   ¦   ¦   ¦           smoke.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           stand_captured.anm.ckd
¦               ¦   ¦   ¦   ¦           walk_turn.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---jeff
¦               ¦   ¦   ¦   ¦   ¦   jeff.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           dark_attack.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_damage_hor.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_damage_ver.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_death_hor.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_stand.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_turn.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_walk.anm.ckd
¦               ¦   ¦   ¦   ¦           jeff_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           jeff_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           jeff_pack_dark_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           jeff_pack_dark_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           jeff_pack_minion_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           jeff_pack_minion_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           jeff_pack_shmebulock_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           jeff_pack_shmebulock_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           jeff_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           mig_attack_bite.anm.ckd
¦               ¦   ¦   ¦   ¦           mig_attack_missile.anm.ckd
¦               ¦   ¦   ¦   ¦           mig_damage_hor.anm.ckd
¦               ¦   ¦   ¦   ¦           mig_damage_ver.anm.ckd
¦               ¦   ¦   ¦   ¦           mig_death.anm.ckd
¦               ¦   ¦   ¦   ¦           rainbow.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           stand_groggy.anm.ckd
¦               ¦   ¦   ¦   ¦           turn.anm.ckd
¦               ¦   ¦   ¦   ¦           walk.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---mcguckett
¦               ¦   ¦   ¦   ¦   ¦   mcguckett.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   mcguckettstartpaused.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           mcguckett_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           mcguckett_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           mcguckett_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---pacifica
¦               ¦   ¦   ¦   ¦   ¦   pacifica.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           pacifica_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           pacifica_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           pacifica_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---robbie
¦               ¦   ¦   ¦   ¦   ¦   robbie.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           flip_textures.anm.ckd
¦               ¦   ¦   ¦   ¦           robbie_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           robbie_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           robbie_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---soos
¦               ¦   ¦   ¦   ¦   ¦   soos.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   soosstartpaused.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           dark_attack.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_damage_hor.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_damage_ver.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_death_hor.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_stand.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_turn.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_walk.anm.ckd
¦               ¦   ¦   ¦   ¦           reversetextrues.anm.ckd
¦               ¦   ¦   ¦   ¦           soos_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           soos_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           soos_pack_dark_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           soos_pack_dark_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           soos_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           stand_captured.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---waddles
¦               ¦   ¦   ¦   ¦   ¦   waddles.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   waddles_startpaused.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           dark_attack.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_damage_hor.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_damage_ver.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_death_hor.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_stand.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_turn.anm.ckd
¦               ¦   ¦   ¦   ¦           dark_walk.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           stand_captured.anm.ckd
¦               ¦   ¦   ¦   ¦           waddles_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           waddles_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           waddles_pack_dark_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           waddles_pack_dark_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           waddles_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---wendy
¦               ¦   ¦   ¦       ¦   wendy.tpl.ckd
¦               ¦   ¦   ¦       ¦   wendy_startpaused.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               dark_attack.anm.ckd
¦               ¦   ¦   ¦               dark_damage_hor.anm.ckd
¦               ¦   ¦   ¦               dark_damage_ver.anm.ckd
¦               ¦   ¦   ¦               dark_death_hor.anm.ckd
¦               ¦   ¦   ¦               dark_stand.anm.ckd
¦               ¦   ¦   ¦               dark_turn.anm.ckd
¦               ¦   ¦   ¦               dark_walk.anm.ckd
¦               ¦   ¦   ¦               flip_textures.anm.ckd
¦               ¦   ¦   ¦               stand.anm.ckd
¦               ¦   ¦   ¦               stand_captured.anm.ckd
¦               ¦   ¦   ¦               wendy_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦               wendy_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦               wendy_pack_dark_001.pbk.ckd
¦               ¦   ¦   ¦               wendy_pack_dark_001_0.tga.ckd
¦               ¦   ¦   ¦               wendy_squeleton.skl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---checkpointsymbol
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       checkpointsymbol.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---texture
¦               ¦   ¦   ¦           checkpointsymbol.tga.ckd
¦               ¦   ¦   ¦           checkpointsymboltwist.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---getrunestone
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       fall.anm.ckd
¦               ¦   ¦   ¦   ¦       floating.anm.ckd
¦               ¦   ¦   ¦   ¦       getrunestone_a1.pbk.ckd
¦               ¦   ¦   ¦   ¦       getrunestone_a1.tga.ckd
¦               ¦   ¦   ¦   ¦       getrunestone_a2.pbk.ckd
¦               ¦   ¦   ¦   ¦       getrunestone_a2.tga.ckd
¦               ¦   ¦   ¦   ¦       getrunestone_a3.pbk.ckd
¦               ¦   ¦   ¦   ¦       getrunestone_a3.tga.ckd
¦               ¦   ¦   ¦   ¦       getrunestone_a4.pbk.ckd
¦               ¦   ¦   ¦   ¦       getrunestone_a4.tga.ckd
¦               ¦   ¦   ¦   ¦       getrunestone_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       stand.anm.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           getrunestone.tpl.ckd
¦               ¦   ¦   ¦           getrunestoneforbottomlespit.tpl.ckd
¦               ¦   ¦   ¦           getrunestoneforjeff.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---pickup
¦               ¦   ¦   ¦   +---healing
¦               ¦   ¦   ¦       ¦   healing.act.ckd
¦               ¦   ¦   ¦       ¦   healing.tpl.ckd
¦               ¦   ¦   ¦       ¦   healing_paused.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               healing.pbk.ckd
¦               ¦   ¦   ¦               healing.tga.ckd
¦               ¦   ¦   ¦               healing_pick.anm.ckd
¦               ¦   ¦   ¦               healing_picktolife.anm.ckd
¦               ¦   ¦   ¦               healing_spawn.anm.ckd
¦               ¦   ¦   ¦               healing_squeleton.skl.ckd
¦               ¦   ¦   ¦               healing_stand.anm.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---purse
¦               ¦   ¦   ¦   ¦   pursespawner_chain.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       purseflower.pbk.ckd
¦               ¦   ¦   ¦   ¦       purseflower.tga.ckd
¦               ¦   ¦   ¦   ¦       purseflower_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       stand.anm.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---effects
¦               ¦   ¦   ¦       +---embers
¦               ¦   ¦   ¦               embers.tga.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---pursecrystal
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦           pursecrystal.asc.ckd
¦               ¦   ¦   ¦           pursecrystal.pbk.ckd
¦               ¦   ¦   ¦           pursecrystal.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---pursecrystalchain
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           spawneffect.act.ckd
¦               ¦   ¦   ¦           spawneffect.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---score
¦               ¦   ¦   ¦   ¦   scoreai.act.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           scoreai.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---sharedgemulet
¦               ¦   ¦           contraptiongemulet.tpl.ckd
¦               ¦   ¦           twistgategemulet.tpl.ckd
¦               ¦   ¦           
¦               ¦   +---fx
¦               ¦   ¦   +---blowingleaves
¦               ¦   ¦   ¦       fx_blowingleaves.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---common
¦               ¦   ¦   ¦   ¦   dust.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---bird
¦               ¦   ¦   ¦       ¦   fx_bird_anim_01.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---texture
¦               ¦   ¦   ¦               fx_bird_anim_01.tga.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---contraption
¦               ¦   ¦   ¦       fx_contraption.tpl.ckd
¦               ¦   ¦   ¦       fx_contraption_depth.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---enemy
¦               ¦   ¦   ¦   +---boss
¦               ¦   ¦   ¦   ¦   +---boss_darkjef_release
¦               ¦   ¦   ¦   ¦   ¦       fx_darkjef_release.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---boss_darkjef_teleport
¦               ¦   ¦   ¦   ¦   ¦       fx_darkjef_teleport.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---boss_evilspirit_die
¦               ¦   ¦   ¦   ¦   ¦       fx_disappear_evilspirit_die.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---boss_evilspirit_summon
¦               ¦   ¦   ¦   ¦       ¦   fx_evilspirit_summon.tpl.ckd
¦               ¦   ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦   ¦       +---frieze
¦               ¦   ¦   ¦   ¦               fx_evilspirit_pillar.fcg.ckd
¦               ¦   ¦   ¦   ¦               
¦               ¦   ¦   ¦   +---bosswind
¦               ¦   ¦   ¦           fx_bosswind.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---fog
¦               ¦   ¦   ¦   +---frieze
¦               ¦   ¦   ¦           fx_fog_fill.fcg.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---lightning
¦               ¦   ¦   ¦   ¦   lightning.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦           fx_lightning.pbk.ckd
¦               ¦   ¦   ¦           fx_lightning.tga.ckd
¦               ¦   ¦   ¦           lightning.asc.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---overworld
¦               ¦   ¦   ¦   +---birds
¦               ¦   ¦   ¦   ¦       fx_overworld_birds.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---eyes
¦               ¦   ¦   ¦   ¦       fx_overworld_eyes.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---fish
¦               ¦   ¦   ¦   ¦       fx_overworld_fish.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---fog
¦               ¦   ¦   ¦   ¦       fx_overworld_whitefog.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---mist
¦               ¦   ¦   ¦   ¦       fx_overworld_mist.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---wave
¦               ¦   ¦   ¦           fx_overworld_wave_crescendo.tpl.ckd
¦               ¦   ¦   ¦           fx_overworld_wave_crescendoshallow.tpl.ckd
¦               ¦   ¦   ¦           fx_overworld_wave_decrescendo.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---platform
¦               ¦   ¦   ¦   +---hookspot
¦               ¦   ¦   ¦           hookspot_mist.fcg.ckd
¦               ¦   ¦   ¦           hookspot_mist.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---popupitem_sequence
¦               ¦   ¦   ¦       fx_star.tga.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---rain
¦               ¦   ¦   ¦       fx_rain.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---sequencesmoke
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦           idle.anm.ckd
¦               ¦   ¦   ¦           sequencesmoke_squeleton.skl.ckd
¦               ¦   ¦   ¦           sound_darkjeff_release.anm.ckd
¦               ¦   ¦   ¦           sound_evilspirit_die.anm.ckd
¦               ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---stageclear
¦               ¦   ¦   ¦   ¦   stageclear_starandimpact.act.ckd
¦               ¦   ¦   ¦   ¦   stageclear_starandimpact.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---stageclear_close
¦               ¦   ¦   ¦   ¦   ¦   stageclear_close.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   stageclear_close.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           stageclear_close.pbk.ckd
¦               ¦   ¦   ¦   ¦           stageclear_close.tga.ckd
¦               ¦   ¦   ¦   ¦           stageclear_close_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           start_close.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---stageclear_impact
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               stageclear.pbk.ckd
¦               ¦   ¦   ¦               stageclear.tga.ckd
¦               ¦   ¦   ¦               stageclear_impact_squeleton.skl.ckd
¦               ¦   ¦   ¦               stand.anm.ckd
¦               ¦   ¦   ¦               start_impact.anm.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---textures
¦               ¦   ¦   ¦   +---blowingleaves
¦               ¦   ¦   ¦   ¦       fx_blowingleaves.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---contraption
¦               ¦   ¦   ¦   ¦       contraption.tga.ckd
¦               ¦   ¦   ¦   ¦       contraption_release.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---dust
¦               ¦   ¦   ¦   ¦       dust.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---enemy
¦               ¦   ¦   ¦   ¦   +---boss
¦               ¦   ¦   ¦   ¦   ¦   +---boss_breakcore
¦               ¦   ¦   ¦   ¦   ¦   ¦       core_fragments.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   ¦   +---boss_evilspirit_die
¦               ¦   ¦   ¦   ¦   ¦   ¦       disappear_evilspirit_flash.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   ¦   +---boss_evilspirit_summon
¦               ¦   ¦   ¦   ¦   ¦           fx_evilspirit_flash.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦           fx_evilspirit_force_add.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦           fx_evilspirit_force_mul.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦           fx_evilspirit_pillar.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦           fx_evilspirit_screenflash.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   ¦   +---bossrecovery
¦               ¦   ¦   ¦   ¦   ¦       bossrecovery_aura.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       photon.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---bosstornado
¦               ¦   ¦   ¦   ¦   ¦       tornado.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---bosswind
¦               ¦   ¦   ¦   ¦   ¦       bosswind.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---death
¦               ¦   ¦   ¦   ¦   ¦       death_aura.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       death_aura_dark.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       death_aura_metal.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---disappear
¦               ¦   ¦   ¦   ¦   ¦       disappear_aura.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       disappear_evilspirit_sparkle.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---stun
¦               ¦   ¦   ¦   ¦           stomp_stun.tga.ckd
¦               ¦   ¦   ¦   ¦           whip_stun.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---fog
¦               ¦   ¦   ¦   ¦       fog_fill.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---friendly
¦               ¦   ¦   ¦   ¦       characterspawn.tga.ckd
¦               ¦   ¦   ¦   ¦       flash.tga.ckd
¦               ¦   ¦   ¦   ¦       fx_jeffmagic_powerup_sparkle.tga.ckd
¦               ¦   ¦   ¦   ¦       fx_jeffmagic_powerup_wave.tga.ckd
¦               ¦   ¦   ¦   ¦       gettools.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---healing
¦               ¦   ¦   ¦   ¦       healing.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---overworld
¦               ¦   ¦   ¦   ¦       overworld_allfx.tga.ckd
¦               ¦   ¦   ¦   ¦       overworld_fish.tga.ckd
¦               ¦   ¦   ¦   ¦       overworld_spore.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---pursecrystal
¦               ¦   ¦   ¦   ¦       fx_lumschainspawn_01.tga.ckd
¦               ¦   ¦   ¦   ¦       fx_lumsparticle_01.tga.ckd
¦               ¦   ¦   ¦   ¦       fx_raylight_01.tga.ckd
¦               ¦   ¦   ¦   ¦       fx_smalllight_01.tga.ckd
¦               ¦   ¦   ¦   ¦       pursecrystal_pick.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---rain
¦               ¦   ¦   ¦   ¦       fx_rain.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---rollingrock
¦               ¦   ¦   ¦   ¦       fx_rolling_rock.pbk.ckd
¦               ¦   ¦   ¦   ¦       fx_rolling_rock.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---shadows
¦               ¦   ¦   ¦   ¦       fx_circleblack_01.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---smoke_loop_birth
¦               ¦   ¦   ¦   ¦       smoke_loop_birth.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---smoke_one_birth
¦               ¦   ¦   ¦   ¦       smoke_one_birth.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---sunrays
¦               ¦   ¦   ¦   ¦       sunrays2.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---water
¦               ¦   ¦   ¦           fx_particleswater_02.tga.ckd
¦               ¦   ¦   ¦           water_flux_fluidfall.png.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---wind
¦               ¦   ¦       ¦   wind.tpl.ckd
¦               ¦   ¦       ¦   wind_paused.tpl.ckd
¦               ¦   ¦       ¦   
¦               ¦   ¦       +---windgust
¦               ¦   ¦               fx_wind.tga.ckd
¦               ¦   ¦               windlooping_nobl.tpl.ckd
¦               ¦   ¦               
¦               ¦   +---ldfrieze
¦               ¦   ¦   +---collision_line
¦               ¦   ¦   ¦       collision_deadline.fcg.ckd
¦               ¦   ¦   ¦       collision_line.fcg.ckd
¦               ¦   ¦   ¦       collision_line_damage.fcg.ckd
¦               ¦   ¦   ¦       collision_line_grass.fcg.ckd
¦               ¦   ¦   ¦       collision_line_lava.fcg.ckd
¦               ¦   ¦   ¦       collision_line_nosolid.fcg.ckd
¦               ¦   ¦   ¦       collision_line_nosound.fcg.ckd
¦               ¦   ¦   ¦       collision_line_water.fcg.ckd
¦               ¦   ¦   ¦       collision_line_wind.fcg.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---forcescroll
¦               ¦   ¦   ¦       forcescroll_deadly.fcg.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---grid
¦               ¦   ¦   ¦       gridfill.fcg.ckd
¦               ¦   ¦   ¦       gridfill.tga.ckd
¦               ¦   ¦   ¦       gridfill_killenemy.fcg.ckd
¦               ¦   ¦   ¦       gridfill_nosolid.fcg.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---schematic_ground
¦               ¦   ¦   ¦       white.tga.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---shadows
¦               ¦   ¦           50grey_fill.fcg.ckd
¦               ¦   ¦           50grey_fill.tga.ckd
¦               ¦   ¦           shadow.fcg.ckd
¦               ¦   ¦           shadow.tga.ckd
¦               ¦   ¦           
¦               ¦   +---levelart
¦               ¦   ¦   +---bloom
¦               ¦   ¦   ¦       bloom.tga.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---effects
¦               ¦   ¦   ¦       fx_fog.fcg.ckd
¦               ¦   ¦   ¦       rays.tga.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---lifeelements
¦               ¦   ¦   ¦   +---cordurouyboat
¦               ¦   ¦   ¦   ¦   ¦   cordurouyboat.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           cordurouyboat_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           cordurouyboat_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           cordurouyboat_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---deer
¦               ¦   ¦   ¦   ¦   ¦   deer.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           dashloopa.anm.ckd
¦               ¦   ¦   ¦   ¦           dashloopb.anm.ckd
¦               ¦   ¦   ¦   ¦           dashloopc.anm.ckd
¦               ¦   ¦   ¦   ¦           deer_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           deer_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           deer_pack_doe_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           deer_pack_doe_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           deer_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           eata.anm.ckd
¦               ¦   ¦   ¦   ¦           eatb.anm.ckd
¦               ¦   ¦   ¦   ¦           eatc.anm.ckd
¦               ¦   ¦   ¦   ¦           pausea.anm.ckd
¦               ¦   ¦   ¦   ¦           pauseb.anm.ckd
¦               ¦   ¦   ¦   ¦           pausec.anm.ckd
¦               ¦   ¦   ¦   ¦           straightdash.anm.ckd
¦               ¦   ¦   ¦   ¦           turndash.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---eagle
¦               ¦   ¦   ¦   ¦   ¦   eagle.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           eagle_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           eagle_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           eagle_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---flock_birds
¦               ¦   ¦   ¦   ¦   ¦   flock_birds.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           flock_birds_pack_brown_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           flock_birds_pack_brown_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           flock_birds_pack_red_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           flock_birds_pack_red_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           flock_birds_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           landing.anm.ckd
¦               ¦   ¦   ¦   ¦           offstand.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           takeoff.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---gobblewonker
¦               ¦   ¦   ¦   ¦   ¦   gobblewonker.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           gobblewonker_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           gobblewonker_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           gobblewonker_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           landing.anm.ckd
¦               ¦   ¦   ¦   ¦           offstand.anm.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           takeoff.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---opossum
¦               ¦   ¦   ¦   ¦   ¦   opossum.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           landing.anm.ckd
¦               ¦   ¦   ¦   ¦           offstand.anm.ckd
¦               ¦   ¦   ¦   ¦           opossum_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           opossum_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           opossum_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           takeoff.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---police
¦               ¦   ¦   ¦   ¦   ¦   police.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           police.asc.ckd
¦               ¦   ¦   ¦   ¦           sheriff_a01.pbk.ckd
¦               ¦   ¦   ¦   ¦           sheriff_a01.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---robbies_friends
¦               ¦   ¦   ¦   ¦   ¦   robbies_friends.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           robbies_friends.asc.ckd
¦               ¦   ¦   ¦   ¦           robbies_friends_a01.pbk.ckd
¦               ¦   ¦   ¦   ¦           robbies_friends_a01.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---small_birds
¦               ¦   ¦   ¦   ¦   ¦   small_bird.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           eata.anm.ckd
¦               ¦   ¦   ¦   ¦           eatb.anm.ckd
¦               ¦   ¦   ¦   ¦           eatc.anm.ckd
¦               ¦   ¦   ¦   ¦           eatd.anm.ckd
¦               ¦   ¦   ¦   ¦           flya.anm.ckd
¦               ¦   ¦   ¦   ¦           flyb.anm.ckd
¦               ¦   ¦   ¦   ¦           flyc.anm.ckd
¦               ¦   ¦   ¦   ¦           flyd.anm.ckd
¦               ¦   ¦   ¦   ¦           flyloopa.anm.ckd
¦               ¦   ¦   ¦   ¦           flyloopb.anm.ckd
¦               ¦   ¦   ¦   ¦           flyloopc.anm.ckd
¦               ¦   ¦   ¦   ¦           hopa.anm.ckd
¦               ¦   ¦   ¦   ¦           hopb.anm.ckd
¦               ¦   ¦   ¦   ¦           hopc.anm.ckd
¦               ¦   ¦   ¦   ¦           hopd.anm.ckd
¦               ¦   ¦   ¦   ¦           pausea.anm.ckd
¦               ¦   ¦   ¦   ¦           pauseb.anm.ckd
¦               ¦   ¦   ¦   ¦           pausec.anm.ckd
¦               ¦   ¦   ¦   ¦           paused.anm.ckd
¦               ¦   ¦   ¦   ¦           small_birds_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           small_birds_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           small_birds_pack_brown_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           small_birds_pack_brown_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           small_birds_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---squirrel
¦               ¦   ¦   ¦   ¦   ¦   squirrel.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           landing.anm.ckd
¦               ¦   ¦   ¦   ¦           offstand.anm.ckd
¦               ¦   ¦   ¦   ¦           squirrel_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦           squirrel_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦           squirrel_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦           takeoff.anm.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---static_npc
¦               ¦   ¦   ¦   ¦   ¦   static_npc.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           static_npc.asc.ckd
¦               ¦   ¦   ¦   ¦           static_npc_a01.pbk.ckd
¦               ¦   ¦   ¦   ¦           static_npc_a01.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---walking_npc
¦               ¦   ¦   ¦   ¦   ¦   walking_npc.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           walking_npc.asc.ckd
¦               ¦   ¦   ¦   ¦           walking_npc_a01.pbk.ckd
¦               ¦   ¦   ¦   ¦           walking_npc_a01.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---woodpecker
¦               ¦   ¦   ¦       ¦   woodpecker.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               flya.anm.ckd
¦               ¦   ¦   ¦               flyloopa.anm.ckd
¦               ¦   ¦   ¦               pecka.anm.ckd
¦               ¦   ¦   ¦               woodpecker_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦               woodpecker_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦               woodpecker_squeleton.skl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---light
¦               ¦   ¦       +---lightfrieze
¦               ¦   ¦       ¦       frontlightfill.fcg.ckd
¦               ¦   ¦       ¦       shadow.fcg.ckd
¦               ¦   ¦       ¦       white.tga.ckd
¦               ¦   ¦       ¦       
¦               ¦   ¦       +---lightresolver
¦               ¦   ¦           +---components
¦               ¦   ¦                   clearcolor.tpl.ckd
¦               ¦   ¦                   clearcolor2d.tpl.ckd
¦               ¦   ¦                   resolvebothmask.tpl.ckd
¦               ¦   ¦                   
¦               ¦   +---logicactor
¦               ¦   ¦   ¦   bouncetarget.tpl.ckd
¦               ¦   ¦   ¦   partnernotteleportzone.tpl.ckd
¦               ¦   ¦   ¦   stereoscopicsetter.tpl.ckd
¦               ¦   ¦   ¦   
¦               ¦   ¦   +---camera
¦               ¦   ¦   ¦   +---animator
¦               ¦   ¦   ¦       +---templates
¦               ¦   ¦   ¦               cameraanimatorcontrolpoint.tpl.ckd
¦               ¦   ¦   ¦               cameratranslateanimator.tpl.ckd
¦               ¦   ¦   ¦               cameratranslateanimator_formission.tpl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---checkpoint
¦               ¦   ¦   ¦   +---checkpoint_in
¦               ¦   ¦   ¦       +---components
¦               ¦   ¦   ¦               checkpoint_innovisual.tpl.ckd
¦               ¦   ¦   ¦               checkpoint_innovisualnotrigger.tpl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---controlpoint
¦               ¦   ¦   ¦       controlpoint.tpl.ckd
¦               ¦   ¦   ¦       maincontrolpoint.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---exitritual
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           gf_exitritual_hightouch.tpl.ckd
¦               ¦   ¦   ¦           gf_exitritual_hightouchwithmission.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---forcescroll
¦               ¦   ¦   ¦       forcescrollauracomponent.tpl.ckd
¦               ¦   ¦   ¦       forcescrollcontroller.tpl.ckd
¦               ¦   ¦   ¦       forcescrollnode.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---message
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           gf_showgenericmessageformission.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---mission
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           gf_mission_cameralook.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_cinematic_disable.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_component.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_eventsender.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_fielditem.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_fielditemnonevisual.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_fielditemwithexitritual.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_popupitem.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_questitem.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_questitemforenemydrop.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_refcomponent.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_teleport.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_trigger.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_triggerevent.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_triggereventstartpaused.tpl.ckd
¦               ¦   ¦   ¦           gf_mission_triggerstartpaused.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---sequenceplayer
¦               ¦   ¦   ¦       sendeventtomainplayer.tpl.ckd
¦               ¦   ¦   ¦       sendeventtomainplayerformission.tpl.ckd
¦               ¦   ¦   ¦       sendeventtomainplayerwithpartner.tpl.ckd
¦               ¦   ¦   ¦       sendeventtomainplayerwithpartnerformission.tpl.ckd
¦               ¦   ¦   ¦       sequenceplayersendfx.tpl.ckd
¦               ¦   ¦   ¦       sequenceposdata.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---soundduck
¦               ¦   ¦   ¦       missionsoundduckcomponent.tpl.ckd
¦               ¦   ¦   ¦       twistedworldduckcomponent.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---teleport
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           pageportal.tpl.ckd
¦               ¦   ¦   ¦           pageportal_oneway.tpl.ckd
¦               ¦   ¦   ¦           teleportportal.tpl.ckd
¦               ¦   ¦   ¦           teleportportalbasictarget.tpl.ckd
¦               ¦   ¦   ¦           translatemapportal.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---trigger
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           gf_conditionaltrigger.tpl.ckd
¦               ¦   ¦   ¦           gf_playerconditionaltriggerfortutorial.tpl.ckd
¦               ¦   ¦   ¦           gf_playerconditionaltrigger_box.tpl.ckd
¦               ¦   ¦   ¦           gf_trigger_box.tpl.ckd
¦               ¦   ¦   ¦           gf_trigger_notswitcharea.tpl.ckd
¦               ¦   ¦   ¦           trigger_box_once.tpl.ckd
¦               ¦   ¦   ¦           trigger_box_once_checkpoint.tpl.ckd
¦               ¦   ¦   ¦           trigger_box_openclose.tpl.ckd
¦               ¦   ¦   ¦           trigger_fade_in_out.tpl.ckd
¦               ¦   ¦   ¦           trigger_fade_out.tpl.ckd
¦               ¦   ¦   ¦           trigger_journalhint.tpl.ckd
¦               ¦   ¦   ¦           trigger_journalhintforconditional.tpl.ckd
¦               ¦   ¦   ¦           trigger_journalhintformission.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---tutorials
¦               ¦   ¦   ¦       tutorialchargepunchcomponent.tpl.ckd
¦               ¦   ¦   ¦       tutorialchargepunchcomponent_flying.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---tweening
¦               ¦   ¦   ¦   +---tweeneditortype
¦               ¦   ¦   ¦       +---components
¦               ¦   ¦   ¦               tween_door.tpl.ckd
¦               ¦   ¦   ¦               tween_elevator.tpl.ckd
¦               ¦   ¦   ¦               tween_fallingplatform.tpl.ckd
¦               ¦   ¦   ¦               tween_fallingtree.tpl.ckd
¦               ¦   ¦   ¦               tween_minecart.tpl.ckd
¦               ¦   ¦   ¦               tween_notype.tpl.ckd
¦               ¦   ¦   ¦               tween_notypeformission.tpl.ckd
¦               ¦   ¦   ¦               tween_rocktype.tpl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---zone
¦               ¦   ¦           enemysafeattackzone.tpl.ckd
¦               ¦   ¦           simpleaabbcomponent.tpl.ckd
¦               ¦   ¦           
¦               ¦   +---matshader
¦               ¦   ¦   ¦   add.msh.ckd
¦               ¦   ¦   ¦   addalpha.msh.ckd
¦               ¦   ¦   ¦   alphatest.msh.ckd
¦               ¦   ¦   ¦   default.msh.ckd
¦               ¦   ¦   ¦   mul.msh.ckd
¦               ¦   ¦   ¦   separateaddalpha.msh.ckd
¦               ¦   ¦   ¦   separatealpha.msh.ckd
¦               ¦   ¦   ¦   
¦               ¦   ¦   +---frontlightbuffer
¦               ¦   ¦   ¦       frontlight.msh.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---regularbuffer
¦               ¦   ¦           backlighted.msh.ckd
¦               ¦   ¦           
¦               ¦   +---minigame
¦               ¦   ¦   +---00_lightandshadow
¦               ¦   ¦   ¦   +---crystal
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦   ¦       charged.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_blue_001.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_blue_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_blue_x01.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_derknesslight_001.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_derknesslight_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_derknesslight_x01.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_pink_001.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_pink_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_pink_x01.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_yellow_001.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_yellow_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_pack_yellow_x01.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystal_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦   ¦       failure.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       highlight.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       highlight.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       sleep.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       stand.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦           crystal.tpl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---crystallight
¦               ¦   ¦   ¦   ¦   ¦   crystallight.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight_off_loop.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight_off_to_on.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight_on_loop.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight_on_to_off.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight_off_loop.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight_off_to_on.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight_on_loop.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight_on_to_off.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦           crystallight.tpl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---crystallightspot
¦               ¦   ¦   ¦   ¦   ¦   bloom_cover.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   bloom_mask.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   colorarea.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   darknesscovermaterial.msh.ckd
¦               ¦   ¦   ¦   ¦   ¦   darknessmaskmaterial.msh.ckd
¦               ¦   ¦   ¦   ¦   ¦   spot_darknesslight.tsc.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦   ¦       close.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       closeidle.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallightspot_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦   ¦       framereflection.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       framereflection.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       stand.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       colorblendlightspot.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallightspotframe.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       darknesslightspot.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---fx
¦               ¦   ¦   ¦   ¦       +---failedlight
¦               ¦   ¦   ¦   ¦           +---texture
¦               ¦   ¦   ¦   ¦                   fx_failedlight01.tga.ckd
¦               ¦   ¦   ¦   ¦                   fx_failedlight02.tga.ckd
¦               ¦   ¦   ¦   ¦                   
¦               ¦   ¦   ¦   +---crystallight_head
¦               ¦   ¦   ¦   ¦   ¦   crystallightheadmaterial.msh.ckd
¦               ¦   ¦   ¦   ¦   ¦   crystallight_head.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight_off_loop.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight_off_to_on.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight_on_loop.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystalderknesslight_on_to_off.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight_off_loop.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight_off_to_on.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight_on_loop.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight_on_to_off.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦       crystallight_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦           crystallight_head.tpl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---darkhaze
¦               ¦   ¦   ¦   ¦   ¦   darkhaze.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   darkhaze.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦   darkhazematerial.msh.ckd
¦               ¦   ¦   ¦   ¦   ¦   darkhazepreset.tsc.ckd
¦               ¦   ¦   ¦   ¦   ¦   darkhazepreset_01.tsc.ckd
¦               ¦   ¦   ¦   ¦   ¦   darkhazepreset_02.tsc.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦           darkhazefrieze.tpl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---darknesslightcrystal
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦           darknesslightcrystal.tpl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---frieze
¦               ¦   ¦   ¦   ¦   ¦   totem.fcg.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---texture
¦               ¦   ¦   ¦   ¦           totem.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---manager
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦           darknesslightconductor.tpl.ckd
¦               ¦   ¦   ¦   ¦           lightandshadowmanager.tpl.ckd
¦               ¦   ¦   ¦   ¦           ls_colordecider.tpl.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---scene
¦               ¦   ¦   ¦   ¦   ¦   lightandshadow_lv1.isc.ckd
¦               ¦   ¦   ¦   ¦   ¦   lightandshadow_lv2.isc.ckd
¦               ¦   ¦   ¦   ¦   ¦   lightandshadow_lv3.isc.ckd
¦               ¦   ¦   ¦   ¦   ¦   lightandshadow_lv4.isc.ckd
¦               ¦   ¦   ¦   ¦   ¦   lightandshadow_lv5.isc.ckd
¦               ¦   ¦   ¦   ¦   ¦   lightandshadow_lv6.isc.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---subscene
¦               ¦   ¦   ¦   ¦       ¦   subscene_lightandshadow_lv1.isc.ckd
¦               ¦   ¦   ¦   ¦       ¦   subscene_lightandshadow_lv2.isc.ckd
¦               ¦   ¦   ¦   ¦       ¦   subscene_lightandshadow_lv3.isc.ckd
¦               ¦   ¦   ¦   ¦       ¦   subscene_lightandshadow_lv4.isc.ckd
¦               ¦   ¦   ¦   ¦       ¦   subscene_lightandshadow_lv5.isc.ckd
¦               ¦   ¦   ¦   ¦       ¦   subscene_lightandshadow_lv6.isc.ckd
¦               ¦   ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦   ¦       +---subscene
¦               ¦   ¦   ¦   ¦           +---cine
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv5_cine.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv6_cine.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       
¦               ¦   ¦   ¦   ¦           +---fx
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv1_fx.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv3_fx.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv4_fx.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv5_fx.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv6_fx.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       
¦               ¦   ¦   ¦   ¦           +---graph
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv1_graph.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv2_graph.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv3_graph.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv4_graph.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv5_graph.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv6_graph.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       
¦               ¦   ¦   ¦   ¦           +---ld
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv1_ld.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv2_ld.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv3_ld.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv4_ld.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv5_ld.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       lightandshadow_lv6_ld.isc.ckd
¦               ¦   ¦   ¦   ¦           ¦       
¦               ¦   ¦   ¦   ¦           +---sound
¦               ¦   ¦   ¦   ¦                   lightandshadow_sound.isc.ckd
¦               ¦   ¦   ¦   ¦                   
¦               ¦   ¦   ¦   +---totemwing
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦       ¦       break.anm.ckd
¦               ¦   ¦   ¦       ¦       stand.anm.ckd
¦               ¦   ¦   ¦       ¦       totemwing.pbk.ckd
¦               ¦   ¦   ¦       ¦       totemwing.tga.ckd
¦               ¦   ¦   ¦       ¦       totemwing_squeleton.skl.ckd
¦               ¦   ¦   ¦       ¦       
¦               ¦   ¦   ¦       +---components
¦               ¦   ¦   ¦               totemwing.tpl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---01_matchingpicture
¦               ¦   ¦       +---actors
¦               ¦   ¦       ¦   +---breakobject_parts
¦               ¦   ¦       ¦   ¦   ¦   breakobject_parts.tpl.ckd
¦               ¦   ¦       ¦   ¦   ¦   
¦               ¦   ¦       ¦   ¦   +---animation
¦               ¦   ¦       ¦   ¦           breakobject_parts.asc.ckd
¦               ¦   ¦       ¦   ¦           breakobject_parts.pbk.ckd
¦               ¦   ¦       ¦   ¦           breakobject_parts.tga.ckd
¦               ¦   ¦       ¦   ¦           
¦               ¦   ¦       ¦   +---conductor
¦               ¦   ¦       ¦   ¦   +---components
¦               ¦   ¦       ¦   ¦           matchingpictureconductor.tpl.ckd
¦               ¦   ¦       ¦   ¦           
¦               ¦   ¦       ¦   +---flippedpiece
¦               ¦   ¦       ¦   ¦   +---components
¦               ¦   ¦       ¦   ¦           flippedpiece.tpl.ckd
¦               ¦   ¦       ¦   ¦           
¦               ¦   ¦       ¦   +---flippedpiecearranger
¦               ¦   ¦       ¦   ¦   +---components
¦               ¦   ¦       ¦   ¦           flippedpiecearranger_lv3.tpl.ckd
¦               ¦   ¦       ¦   ¦           flippedpiecearranger_lv5.tpl.ckd
¦               ¦   ¦       ¦   ¦           
¦               ¦   ¦       ¦   +---flippedpieceattach
¦               ¦   ¦       ¦   ¦   +---components
¦               ¦   ¦       ¦   ¦           flippedpieceattach.tpl.ckd
¦               ¦   ¦       ¦   ¦           
¦               ¦   ¦       ¦   +---handle
¦               ¦   ¦       ¦   ¦   +---animation
¦               ¦   ¦       ¦   ¦   ¦       base_down.anm.ckd
¦               ¦   ¦       ¦   ¦   ¦       base_up.anm.ckd
¦               ¦   ¦       ¦   ¦   ¦       base_up_idle.anm.ckd
¦               ¦   ¦       ¦   ¦   ¦       handle.pbk.ckd
¦               ¦   ¦       ¦   ¦   ¦       handle.tga.ckd
¦               ¦   ¦       ¦   ¦   ¦       handle_left.anm.ckd
¦               ¦   ¦       ¦   ¦   ¦       handle_right.anm.ckd
¦               ¦   ¦       ¦   ¦   ¦       handle_squeleton.skl.ckd
¦               ¦   ¦       ¦   ¦   ¦       idle.anm.ckd
¦               ¦   ¦       ¦   ¦   ¦       
¦               ¦   ¦       ¦   ¦   +---components
¦               ¦   ¦       ¦   ¦           handle.tpl.ckd
¦               ¦   ¦       ¦   ¦           
¦               ¦   ¦       ¦   +---rotatedpiece
¦               ¦   ¦       ¦       +---components
¦               ¦   ¦       ¦               rotatedpiece.tpl.ckd
¦               ¦   ¦       ¦               
¦               ¦   ¦       +---friezes
¦               ¦   ¦       ¦       matchingpicture_tile_ground.fcg.ckd
¦               ¦   ¦       ¦       mural_break_mono.fcg.ckd
¦               ¦   ¦       ¦       mural_break_mono.tga.ckd
¦               ¦   ¦       ¦       mural_lv1.fcg.ckd
¦               ¦   ¦       ¦       mural_lv1.tga.ckd
¦               ¦   ¦       ¦       mural_lv1_mono.fcg.ckd
¦               ¦   ¦       ¦       mural_lv1_mono.tga.ckd
¦               ¦   ¦       ¦       mural_lv2.fcg.ckd
¦               ¦   ¦       ¦       mural_lv2.tga.ckd
¦               ¦   ¦       ¦       mural_lv2_mono.fcg.ckd
¦               ¦   ¦       ¦       mural_lv2_mono.tga.ckd
¦               ¦   ¦       ¦       mural_lv3.fcg.ckd
¦               ¦   ¦       ¦       mural_lv3.tga.ckd
¦               ¦   ¦       ¦       mural_lv3_mono.fcg.ckd
¦               ¦   ¦       ¦       mural_lv3_mono.tga.ckd
¦               ¦   ¦       ¦       mural_lv4.fcg.ckd
¦               ¦   ¦       ¦       mural_lv4.tga.ckd
¦               ¦   ¦       ¦       mural_lv4_mono.fcg.ckd
¦               ¦   ¦       ¦       mural_lv4_mono.tga.ckd
¦               ¦   ¦       ¦       mural_lv5.fcg.ckd
¦               ¦   ¦       ¦       mural_lv5.tga.ckd
¦               ¦   ¦       ¦       mural_lv5_mono.fcg.ckd
¦               ¦   ¦       ¦       mural_lv5_mono.tga.ckd
¦               ¦   ¦       ¦       mural_lv6.fcg.ckd
¦               ¦   ¦       ¦       mural_lv6.tga.ckd
¦               ¦   ¦       ¦       mural_lv6_mono.fcg.ckd
¦               ¦   ¦       ¦       mural_lv6_mono.tga.ckd
¦               ¦   ¦       ¦       
¦               ¦   ¦       +---scene
¦               ¦   ¦           ¦   matchingpicture_lv1.isc.ckd
¦               ¦   ¦           ¦   matchingpicture_lv2.isc.ckd
¦               ¦   ¦           ¦   matchingpicture_lv3.isc.ckd
¦               ¦   ¦           ¦   matchingpicture_lv4.isc.ckd
¦               ¦   ¦           ¦   matchingpicture_lv5.isc.ckd
¦               ¦   ¦           ¦   matchingpicture_lv6.isc.ckd
¦               ¦   ¦           ¦   
¦               ¦   ¦           +---subscene
¦               ¦   ¦               ¦   subscene_matchingpicture_break.isc.ckd
¦               ¦   ¦               ¦   subscene_matchingpicture_lv1.isc.ckd
¦               ¦   ¦               ¦   subscene_matchingpicture_lv2.isc.ckd
¦               ¦   ¦               ¦   subscene_matchingpicture_lv3.isc.ckd
¦               ¦   ¦               ¦   subscene_matchingpicture_lv4.isc.ckd
¦               ¦   ¦               ¦   subscene_matchingpicture_lv5.isc.ckd
¦               ¦   ¦               ¦   subscene_matchingpicture_lv6.isc.ckd
¦               ¦   ¦               ¦   
¦               ¦   ¦               +---subscene
¦               ¦   ¦                   +---cine
¦               ¦   ¦                   ¦       matchingpicture_break_cine.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv1_cine.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv2_cine.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv3_cine.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv4_cine.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv5_cine.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv6_cine.isc.ckd
¦               ¦   ¦                   ¦       
¦               ¦   ¦                   +---fx
¦               ¦   ¦                   ¦       matchingpicture_break_fx.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv1_fx.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv2_fx.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv3_fx.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv4_fx.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv5_fx.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv6_fx.isc.ckd
¦               ¦   ¦                   ¦       
¦               ¦   ¦                   +---graph
¦               ¦   ¦                   ¦       matchingpicture_break_graph.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv1_graph.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv2_graph.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv3_graph.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv4_graph.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv5_graph.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv6_graph.isc.ckd
¦               ¦   ¦                   ¦       
¦               ¦   ¦                   +---ld
¦               ¦   ¦                   ¦       matchingpicture_break_ld.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv1_ld.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv2_ld.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv3_ld.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv4_ld.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv5_ld.isc.ckd
¦               ¦   ¦                   ¦       matchingpicture_lv6_ld.isc.ckd
¦               ¦   ¦                   ¦       
¦               ¦   ¦                   +---sound
¦               ¦   ¦                           matchingpicture_break_sound.isc.ckd
¦               ¦   ¦                           matchingpicture_lv1_sound.isc.ckd
¦               ¦   ¦                           matchingpicture_lv2_sound.isc.ckd
¦               ¦   ¦                           matchingpicture_lv3_sound.isc.ckd
¦               ¦   ¦                           matchingpicture_lv4_sound.isc.ckd
¦               ¦   ¦                           matchingpicture_lv5_sound.isc.ckd
¦               ¦   ¦                           matchingpicture_lv6_sound.isc.ckd
¦               ¦   ¦                           
¦               ¦   +---platform
¦               ¦   ¦   +---bouncemushroomtolayer
¦               ¦   ¦   ¦   ¦   bouncetarget.tpl.ckd
¦               ¦   ¦   ¦   ¦   bouncetargetwithprefetch.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       awy_bump.anm.ckd
¦               ¦   ¦   ¦   ¦       awy_charge.anm.ckd
¦               ¦   ¦   ¦   ¦       awy_close.anm.ckd
¦               ¦   ¦   ¦   ¦       awy_open.anm.ckd
¦               ¦   ¦   ¦   ¦       awy_open_idle.anm.ckd
¦               ¦   ¦   ¦   ¦       bouncemushroomtolayer_a1.pbk.ckd
¦               ¦   ¦   ¦   ¦       bouncemushroomtolayer_a1.tga.ckd
¦               ¦   ¦   ¦   ¦       bouncemushroomtolayer_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       bump.anm.ckd
¦               ¦   ¦   ¦   ¦       fwd_bump.anm.ckd
¦               ¦   ¦   ¦   ¦       fwd_charge.anm.ckd
¦               ¦   ¦   ¦   ¦       fwd_close.anm.ckd
¦               ¦   ¦   ¦   ¦       fwd_open.anm.ckd
¦               ¦   ¦   ¦   ¦       fwd_open_idle.anm.ckd
¦               ¦   ¦   ¦   ¦       idle.anm.ckd
¦               ¦   ¦   ¦   ¦       stand.anm.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       bouncemushroomtolayer_away.tpl.ckd
¦               ¦   ¦   ¦   ¦       bouncemushroomtolayer_forward.tpl.ckd
¦               ¦   ¦   ¦   ¦       bouncetolayercameracontroller.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---vertexmesh
¦               ¦   ¦   ¦       +---bouncemushroomtolayer_decoration
¦               ¦   ¦   ¦           ¦   bouncemushroomtolayer_decoration.tpl.ckd
¦               ¦   ¦   ¦           ¦   
¦               ¦   ¦   ¦           +---animation
¦               ¦   ¦   ¦                   bouncemushroomtolayer_decoration.asc.ckd
¦               ¦   ¦   ¦                   bouncemushroomtolayer_decoration.pbk.ckd
¦               ¦   ¦   ¦                   bouncemushroomtolayer_decoration.tga.ckd
¦               ¦   ¦   ¦                   
¦               ¦   ¦   +---bouncemushroomtolayer_totemeye
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       bouncemushroomtolayer_totemeye.pbk.ckd
¦               ¦   ¦   ¦   ¦       bouncemushroomtolayer_totemeye.tga.ckd
¦               ¦   ¦   ¦   ¦       bouncemushroomtolayer_totemeye_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       charge.anm.ckd
¦               ¦   ¦   ¦   ¦       offidle.anm.ckd
¦               ¦   ¦   ¦   ¦       offtoon.anm.ckd
¦               ¦   ¦   ¦   ¦       onidle.anm.ckd
¦               ¦   ¦   ¦   ¦       ontooff.anm.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           bouncemushroomtolayer_totemeye.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---bounce_mushroom
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       bounce_mushroom_pack_a1_001.pbk.ckd
¦               ¦   ¦   ¦   ¦       bounce_mushroom_pack_a1_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦       bounce_mushroom_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       bump.anm.ckd
¦               ¦   ¦   ¦   ¦       stand.anm.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           bounce_mushroom.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---contraption
¦               ¦   ¦   ¦       contraption.fcg.ckd
¦               ¦   ¦   ¦       contraption.tga.ckd
¦               ¦   ¦   ¦       contraption_darkfriends.fcg.ckd
¦               ¦   ¦   ¦       contraption_darkfriends.tga.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---damagefrieze
¦               ¦   ¦   ¦   ¦   damage_cave_spikes.fcg.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---texture
¦               ¦   ¦   ¦           cave_spikes.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---darknesslight_relief
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       darknesslight_relief.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---texture
¦               ¦   ¦   ¦           darknesslight_relief.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---darknesslight_totem
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       darknesslight_totem.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---texture
¦               ¦   ¦   ¦           darknesslight_totem.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---fallentree
¦               ¦   ¦   ¦   +---frieze
¦               ¦   ¦   ¦       ¦   fallentree.fcg.ckd
¦               ¦   ¦   ¦       ¦   fallentree.tga.ckd
¦               ¦   ¦   ¦       ¦   fallentree_nogh.fcg.ckd
¦               ¦   ¦   ¦       ¦   fallentree_nogh.tga.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---twist
¦               ¦   ¦   ¦               fallentree_nogh_twist.fcg.ckd
¦               ¦   ¦   ¦               fallentree_nogh_twist.tga.ckd
¦               ¦   ¦   ¦               fallentree_twist.fcg.ckd
¦               ¦   ¦   ¦               fallentree_twist.tga.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---flashlightspot
¦               ¦   ¦   ¦       gf_useflashlighttrigger_box.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---forestrope
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       forestrope.anm.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_forest2_001.pbk.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_forest2_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_forest2_001_1.tga.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_metal_001.pbk.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_metal_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_metal_001_1.tga.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_normal_001.pbk.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_normal_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_normal_001_1.tga.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_vine_001.pbk.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_vine_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦       forestrope_pack_vine_001_1.tga.ckd
¦               ¦   ¦   ¦   ¦       forestrope_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           forestrope.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---geyser
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       geysertop_b1.pbk.ckd
¦               ¦   ¦   ¦   ¦       geysertop_b1.tga.ckd
¦               ¦   ¦   ¦   ¦       geyser_a1.pbk.ckd
¦               ¦   ¦   ¦   ¦       geyser_a1.tga.ckd
¦               ¦   ¦   ¦   ¦       geyser_close.anm.ckd
¦               ¦   ¦   ¦   ¦       geyser_open.anm.ckd
¦               ¦   ¦   ¦   ¦       geyser_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       stand.anm.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           geyser_interval.tpl.ckd
¦               ¦   ¦   ¦           geyser_interval_0.05.tpl.ckd
¦               ¦   ¦   ¦           geyser_interval_0.5.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---guideicons
¦               ¦   ¦   ¦   +---buttons
¦               ¦   ¦   ¦       ¦   guideicon.act.ckd
¦               ¦   ¦   ¦       ¦   guideiconworldmaponly.act.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦       ¦       a_button.anm.ckd
¦               ¦   ¦   ¦       ¦       buttons_squeleton.skl.ckd
¦               ¦   ¦   ¦       ¦       charachangenormal.anm.ckd
¦               ¦   ¦   ¦       ¦       charchange.anm.ckd
¦               ¦   ¦   ¦       ¦       main_active.anm.ckd
¦               ¦   ¦   ¦       ¦       main_inactive.anm.ckd
¦               ¦   ¦   ¦       ¦       mcg_inactive.anm.ckd
¦               ¦   ¦   ¦       ¦       meta_active.anm.ckd
¦               ¦   ¦   ¦       ¦       meta_inactive.anm.ckd
¦               ¦   ¦   ¦       ¦       questinfoicon.anm.ckd
¦               ¦   ¦   ¦       ¦       separate_icon.anm.ckd
¦               ¦   ¦   ¦       ¦       slidepad.anm.ckd
¦               ¦   ¦   ¦       ¦       stand.anm.ckd
¦               ¦   ¦   ¦       ¦       sub_active.anm.ckd
¦               ¦   ¦   ¦       ¦       sub_inactive.anm.ckd
¦               ¦   ¦   ¦       ¦       
¦               ¦   ¦   ¦       +---components
¦               ¦   ¦   ¦               guideicon.tpl.ckd
¦               ¦   ¦   ¦               guideiconremote.tpl.ckd
¦               ¦   ¦   ¦               guideiconstartpaused.tpl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---hookspot
¦               ¦   ¦   ¦   ¦   hookspot.tpl.ckd
¦               ¦   ¦   ¦   ¦   hookspot_mist_stick.tsc.ckd
¦               ¦   ¦   ¦   ¦   hookspot_triggeronhang.tpl.ckd
¦               ¦   ¦   ¦   ¦   hookspot_triggeronhang_cloud.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦           hookspot_pack_dummy_001.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_dummy_001_0.tga.ckd
¦               ¦   ¦   ¦           hookspot_pack_dummy_x01.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_metal_001.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_metal_001_0.tga.ckd
¦               ¦   ¦   ¦           hookspot_pack_metal_x01.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_mist_001.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_mist_001_0.tga.ckd
¦               ¦   ¦   ¦           hookspot_pack_mist_x01.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_ring_001.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_ring_001_0.tga.ckd
¦               ¦   ¦   ¦           hookspot_pack_ring_x01.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_stone_001.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_stone_001_0.tga.ckd
¦               ¦   ¦   ¦           hookspot_pack_stone_x01.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_vine_001.pbk.ckd
¦               ¦   ¦   ¦           hookspot_pack_vine_001_0.tga.ckd
¦               ¦   ¦   ¦           hookspot_pack_vine_x01.pbk.ckd
¦               ¦   ¦   ¦           hookspot_squeleton.skl.ckd
¦               ¦   ¦   ¦           hook_effect_b1.pbk.ckd
¦               ¦   ¦   ¦           hook_effect_b1.tga.ckd
¦               ¦   ¦   ¦           hook_effect_b2.pbk.ckd
¦               ¦   ¦   ¦           hook_effect_b2.tga.ckd
¦               ¦   ¦   ¦           hook_effect_b3.pbk.ckd
¦               ¦   ¦   ¦           hook_effect_b3.tga.ckd
¦               ¦   ¦   ¦           hook_effect_b5.pbk.ckd
¦               ¦   ¦   ¦           hook_effect_b5.tga.ckd
¦               ¦   ¦   ¦           hook_effect_b6.pbk.ckd
¦               ¦   ¦   ¦           hook_effect_b6.tga.ckd
¦               ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---hookspot_relief
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       close.anm.ckd
¦               ¦   ¦   ¦   ¦       hookspot_relief_a1.pbk.ckd
¦               ¦   ¦   ¦   ¦       hookspot_relief_a1.tga.ckd
¦               ¦   ¦   ¦   ¦       hookspot_relief_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           hookspot_relief.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---hookspot_switch
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       down.anm.ckd
¦               ¦   ¦   ¦   ¦       down_idle.anm.ckd
¦               ¦   ¦   ¦   ¦       hookspot_switch_a1.pbk.ckd
¦               ¦   ¦   ¦   ¦       hookspot_switch_a1.tga.ckd
¦               ¦   ¦   ¦   ¦       hookspot_switch_chain.pbk.ckd
¦               ¦   ¦   ¦   ¦       hookspot_switch_chain.tga.ckd
¦               ¦   ¦   ¦   ¦       hookspot_switch_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦       hookspot_switch_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦       hookspot_switch_pack_basic_x01.pbk.ckd
¦               ¦   ¦   ¦   ¦       hookspot_switch_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       idle.anm.ckd
¦               ¦   ¦   ¦   ¦       return.anm.ckd
¦               ¦   ¦   ¦   ¦       success.anm.ckd
¦               ¦   ¦   ¦   ¦       successtoidle.anm.ckd
¦               ¦   ¦   ¦   ¦       success_idle.anm.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           hookspot_switch.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---lift
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       lift_a1.pbk.ckd
¦               ¦   ¦   ¦   ¦       lift_a1.tga.ckd
¦               ¦   ¦   ¦   ¦       lift_a2.pbk.ckd
¦               ¦   ¦   ¦   ¦       lift_a2.tga.ckd
¦               ¦   ¦   ¦   ¦       lift_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       stand.anm.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       basic_lift.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---tween
¦               ¦   ¦   ¦           basic_lift_tween.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---mech_switch
¦               ¦   ¦   ¦   ¦   mech_switch.tpl.ckd
¦               ¦   ¦   ¦   ¦   mech_switch_forzdoors.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦           mech_switch_a1.pbk.ckd
¦               ¦   ¦   ¦           mech_switch_a1.tga.ckd
¦               ¦   ¦   ¦           mech_switch_a2.pbk.ckd
¦               ¦   ¦   ¦           mech_switch_a2.tga.ckd
¦               ¦   ¦   ¦           mech_switch_squeleton.skl.ckd
¦               ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---pull_rock
¦               ¦   ¦   ¦   +---frieze
¦               ¦   ¦   ¦           pull_rock.fcg.ckd
¦               ¦   ¦   ¦           pull_rock.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---pushpull
¦               ¦   ¦   ¦   ¦   pushpull.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦           pushpull.pbk.ckd
¦               ¦   ¦   ¦           pushpull.tga.ckd
¦               ¦   ¦   ¦           pushpull_squeleton.skl.ckd
¦               ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---puzzleobjectcleartrigger
¦               ¦   ¦   ¦       puzzleobjectcleartrigger.tpl.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---relief_eye
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       light_offtoon.anm.ckd
¦               ¦   ¦   ¦   ¦       light_off_idle.anm.ckd
¦               ¦   ¦   ¦   ¦       light_ontooff.anm.ckd
¦               ¦   ¦   ¦   ¦       light_on_idle.anm.ckd
¦               ¦   ¦   ¦   ¦       relief_eye_a1.pbk.ckd
¦               ¦   ¦   ¦   ¦       relief_eye_a1.tga.ckd
¦               ¦   ¦   ¦   ¦       relief_eye_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦           relief_eye.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---rollingrock
¦               ¦   ¦   ¦   ¦   rollingrock.tpl.ckd
¦               ¦   ¦   ¦   ¦   rolling_rock.fcg.ckd
¦               ¦   ¦   ¦   ¦   rolling_rock.tga.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---rollingrock_break
¦               ¦   ¦   ¦       ¦   rollingrock_break.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               rollingrock_break_squeleton.skl.ckd
¦               ¦   ¦   ¦               stand.anm.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---throwingobject
¦               ¦   ¦       +---barrel
¦               ¦   ¦           ¦   barrel_a2_7.tpl.ckd
¦               ¦   ¦           ¦   
¦               ¦   ¦           +---animation
¦               ¦   ¦                   barrel.pbk.ckd
¦               ¦   ¦                   barrel.tga.ckd
¦               ¦   ¦                   barrel_squeleton.skl.ckd
¦               ¦   ¦                   break.anm.ckd
¦               ¦   ¦                   stand.anm.ckd
¦               ¦   ¦                   
¦               ¦   +---playablecharacter
¦               ¦   ¦   +---common
¦               ¦   ¦   ¦   +---texture
¦               ¦   ¦   ¦           chr_hand_a01.pbk.ckd
¦               ¦   ¦   ¦           chr_hand_a01.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---pchar_dipper
¦               ¦   ¦   ¦   ¦   pchar_dipper.act.ckd
¦               ¦   ¦   ¦   ¦   pchar_dipper.tpl.ckd
¦               ¦   ¦   ¦   ¦   pchar_dipper_guideicon.act.ckd
¦               ¦   ¦   ¦   ¦   pchar_dipper_guideicon.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦       bracertextures.anm.ckd
¦               ¦   ¦   ¦   ¦       carry_hold.anm.ckd
¦               ¦   ¦   ¦   ¦       carry_throw.anm.ckd
¦               ¦   ¦   ¦   ¦       carry_turn.anm.ckd
¦               ¦   ¦   ¦   ¦       carry_walk.anm.ckd
¦               ¦   ¦   ¦   ¦       characterchange.anm.ckd
¦               ¦   ¦   ¦   ¦       corner_flap.anm.ckd
¦               ¦   ¦   ¦   ¦       damage_backblow.anm.ckd
¦               ¦   ¦   ¦   ¦       damage_blow.anm.ckd
¦               ¦   ¦   ¦   ¦       damage_fall.anm.ckd
¦               ¦   ¦   ¦   ¦       damage_gameover.anm.ckd
¦               ¦   ¦   ¦   ¦       damage_getup.anm.ckd
¦               ¦   ¦   ¦   ¦       damage_ground.anm.ckd
¦               ¦   ¦   ¦   ¦       damage_rockblow.anm.ckd
¦               ¦   ¦   ¦   ¦       dive_firstlayer.anm.ckd
¦               ¦   ¦   ¦   ¦       dive_secondlayer.anm.ckd
¦               ¦   ¦   ¦   ¦       feel_anger.anm.ckd
¦               ¦   ¦   ¦   ¦       feel_disappointed.anm.ckd
¦               ¦   ¦   ¦   ¦       feel_spurious.anm.ckd
¦               ¦   ¦   ¦   ¦       feel_surprise.anm.ckd
¦               ¦   ¦   ¦   ¦       feel_vitality.anm.ckd
¦               ¦   ¦   ¦   ¦       get_items.anm.ckd
¦               ¦   ¦   ¦   ¦       get_weapon.anm.ckd
¦               ¦   ¦   ¦   ¦       hangvertic.anm.ckd
¦               ¦   ¦   ¦   ¦       hangvertic_swing.anm.ckd
¦               ¦   ¦   ¦   ¦       hangvertic_swinguturn.anm.ckd
¦               ¦   ¦   ¦   ¦       hangvertic_uturn.anm.ckd
¦               ¦   ¦   ¦   ¦       itemflight_hithead.anm.ckd
¦               ¦   ¦   ¦   ¦       itemflight_jumpon.anm.ckd
¦               ¦   ¦   ¦   ¦       itemflight_set.anm.ckd
¦               ¦   ¦   ¦   ¦       itemflight_setmyself.anm.ckd
¦               ¦   ¦   ¦   ¦       itemflight_setpuzzle.anm.ckd
¦               ¦   ¦   ¦   ¦       jump.anm.ckd
¦               ¦   ¦   ¦   ¦       jump_run.anm.ckd
¦               ¦   ¦   ¦   ¦       jump_uturn.anm.ckd
¦               ¦   ¦   ¦   ¦       jump_walk.anm.ckd
¦               ¦   ¦   ¦   ¦       pchar_dipper_pack_basic_001.pbk.ckd
¦               ¦   ¦   ¦   ¦       pchar_dipper_pack_basic_001_0.tga.ckd
¦               ¦   ¦   ¦   ¦       pchar_dipper_pack_basic_x01.pbk.ckd
¦               ¦   ¦   ¦   ¦       pchar_dipper_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦       pull.anm.ckd
¦               ¦   ¦   ¦   ¦       punch_jump_normal.anm.ckd
¦               ¦   ¦   ¦   ¦       punch_stand_charge.anm.ckd
¦               ¦   ¦   ¦   ¦       punch_stand_normal.anm.ckd
¦               ¦   ¦   ¦   ¦       push.anm.ckd
¦               ¦   ¦   ¦   ¦       run.anm.ckd
¦               ¦   ¦   ¦   ¦       stageclear.anm.ckd
¦               ¦   ¦   ¦   ¦       stand.anm.ckd
¦               ¦   ¦   ¦   ¦       turn_on_switch.anm.ckd
¦               ¦   ¦   ¦   ¦       turn_wheel.anm.ckd
¦               ¦   ¦   ¦   ¦       waitalone.anm.ckd
¦               ¦   ¦   ¦   ¦       waitdouble.anm.ckd
¦               ¦   ¦   ¦   ¦       waittag.anm.ckd
¦               ¦   ¦   ¦   ¦       walk.anm.ckd
¦               ¦   ¦   ¦   ¦       walk_firstlayer.anm.ckd
¦               ¦   ¦   ¦   ¦       walk_secondlayer.anm.ckd
¦               ¦   ¦   ¦   ¦       walk_turn.anm.ckd
¦               ¦   ¦   ¦   ¦       withstand.anm.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---viewer
¦               ¦   ¦   ¦           pchar_dipper_forviewer.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---pchar_mabel
¦               ¦   ¦       ¦   pchar_mabel.tpl.ckd
¦               ¦   ¦       ¦   pchar_mabel_guideicon.act.ckd
¦               ¦   ¦       ¦   pchar_mabel_guideicon.tpl.ckd
¦               ¦   ¦       ¦   pchar_mabel_without_whip.act.ckd
¦               ¦   ¦       ¦   pchar_mabel_with_whip.act.ckd
¦               ¦   ¦       ¦   
¦               ¦   ¦       +---animation
¦               ¦   ¦       ¦       carry_hold.anm.ckd
¦               ¦   ¦       ¦       carry_throw.anm.ckd
¦               ¦   ¦       ¦       carry_turn.anm.ckd
¦               ¦   ¦       ¦       carry_walk.anm.ckd
¦               ¦   ¦       ¦       characterchange.anm.ckd
¦               ¦   ¦       ¦       corner_flap.anm.ckd
¦               ¦   ¦       ¦       damage_backblow.anm.ckd
¦               ¦   ¦       ¦       damage_blow.anm.ckd
¦               ¦   ¦       ¦       damage_fall.anm.ckd
¦               ¦   ¦       ¦       damage_gameover.anm.ckd
¦               ¦   ¦       ¦       damage_getup.anm.ckd
¦               ¦   ¦       ¦       damage_ground.anm.ckd
¦               ¦   ¦       ¦       damage_rockblow.anm.ckd
¦               ¦   ¦       ¦       dive_firstlayer.anm.ckd
¦               ¦   ¦       ¦       dive_secondlayer.anm.ckd
¦               ¦   ¦       ¦       feel_anger.anm.ckd
¦               ¦   ¦       ¦       feel_disappointed.anm.ckd
¦               ¦   ¦       ¦       feel_spurious.anm.ckd
¦               ¦   ¦       ¦       feel_surprise.anm.ckd
¦               ¦   ¦       ¦       feel_vitality.anm.ckd
¦               ¦   ¦       ¦       flipped_textures.anm.ckd
¦               ¦   ¦       ¦       get_items.anm.ckd
¦               ¦   ¦       ¦       get_weapon.anm.ckd
¦               ¦   ¦       ¦       hangvertic.anm.ckd
¦               ¦   ¦       ¦       hangvertic_swing.anm.ckd
¦               ¦   ¦       ¦       hangvertic_swinguturn.anm.ckd
¦               ¦   ¦       ¦       hangvertic_uturn.anm.ckd
¦               ¦   ¦       ¦       itemghook_hangvertic.anm.ckd
¦               ¦   ¦       ¦       itemghook_hangvertic_swing.anm.ckd
¦               ¦   ¦       ¦       itemghook_hangvertic_swinguturn.anm.ckd
¦               ¦   ¦       ¦       itemghook_hangvertic_uturn.anm.ckd
¦               ¦   ¦       ¦       itemghook_sidesdrag.anm.ckd
¦               ¦   ¦       ¦       itemghook_sidesjumpshot.anm.ckd
¦               ¦   ¦       ¦       itemghook_sidespull.anm.ckd
¦               ¦   ¦       ¦       itemghook_sidesset.anm.ckd
¦               ¦   ¦       ¦       itemghook_sidesshot.anm.ckd
¦               ¦   ¦       ¦       itemghook_upperdrag.anm.ckd
¦               ¦   ¦       ¦       itemghook_upperjumpshot.anm.ckd
¦               ¦   ¦       ¦       itemghook_upperpull.anm.ckd
¦               ¦   ¦       ¦       itemghook_upperset.anm.ckd
¦               ¦   ¦       ¦       itemghook_uppershot.anm.ckd
¦               ¦   ¦       ¦       jump.anm.ckd
¦               ¦   ¦       ¦       jump_run.anm.ckd
¦               ¦   ¦       ¦       jump_uturn.anm.ckd
¦               ¦   ¦       ¦       jump_walk.anm.ckd
¦               ¦   ¦       ¦       pchar_mabel_pack_basic_001.pbk.ckd
¦               ¦   ¦       ¦       pchar_mabel_pack_basic_001_0.tga.ckd
¦               ¦   ¦       ¦       pchar_mabel_pack_basic_x01.pbk.ckd
¦               ¦   ¦       ¦       pchar_mabel_pack_upgrade01_001.pbk.ckd
¦               ¦   ¦       ¦       pchar_mabel_pack_upgrade01_001_0.tga.ckd
¦               ¦   ¦       ¦       pchar_mabel_pack_upgrade01_x01.pbk.ckd
¦               ¦   ¦       ¦       pchar_mabel_squeleton.skl.ckd
¦               ¦   ¦       ¦       pull.anm.ckd
¦               ¦   ¦       ¦       push.anm.ckd
¦               ¦   ¦       ¦       run.anm.ckd
¦               ¦   ¦       ¦       stageclear.anm.ckd
¦               ¦   ¦       ¦       stand.anm.ckd
¦               ¦   ¦       ¦       test_whip_jump_normal.anm.ckd
¦               ¦   ¦       ¦       test_whip_stand_charge.anm.ckd
¦               ¦   ¦       ¦       test_whip_stand_normal.anm.ckd
¦               ¦   ¦       ¦       turn_on_switch.anm.ckd
¦               ¦   ¦       ¦       waitalone.anm.ckd
¦               ¦   ¦       ¦       waitdouble.anm.ckd
¦               ¦   ¦       ¦       waittag.anm.ckd
¦               ¦   ¦       ¦       walk.anm.ckd
¦               ¦   ¦       ¦       walk_firstlayer.anm.ckd
¦               ¦   ¦       ¦       walk_secondlayer.anm.ckd
¦               ¦   ¦       ¦       walk_turn.anm.ckd
¦               ¦   ¦       ¦       whip_jump_normal.anm.ckd
¦               ¦   ¦       ¦       whip_stand_charge.anm.ckd
¦               ¦   ¦       ¦       whip_stand_normal.anm.ckd
¦               ¦   ¦       ¦       withstand.anm.ckd
¦               ¦   ¦       ¦       
¦               ¦   ¦       +---viewer
¦               ¦   ¦               pchar_mabel_forviewer.tpl.ckd
¦               ¦   ¦               
¦               ¦   +---resident
¦               ¦   ¦       residentscene.isc.ckd
¦               ¦   ¦       
¦               ¦   +---textures
¦               ¦   ¦   +---backgrounds
¦               ¦   ¦   ¦   ¦   backdrop_storm.tga.ckd
¦               ¦   ¦   ¦   ¦   backdrop_sunset_storm.tga.ckd
¦               ¦   ¦   ¦   ¦   background_deepforest.tga.ckd
¦               ¦   ¦   ¦   ¦   background_mountainrange.tga.ckd
¦               ¦   ¦   ¦   ¦   bg_clouds.tga.ckd
¦               ¦   ¦   ¦   ¦   bg_far_forest03.tga.ckd
¦               ¦   ¦   ¦   ¦   dark_clouds.tga.ckd
¦               ¦   ¦   ¦   ¦   eyetreeline.tga.ckd
¦               ¦   ¦   ¦   ¦   light_clouds.tga.ckd
¦               ¦   ¦   ¦   ¦   tree_far.tga.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---twist
¦               ¦   ¦   ¦           background_deepforest_twist.tga.ckd
¦               ¦   ¦   ¦           background_mountainrange_twist.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---decorations
¦               ¦   ¦   ¦   ¦   forest_lvy.fcg.ckd
¦               ¦   ¦   ¦   ¦   forest_lvy.tga.ckd
¦               ¦   ¦   ¦   ¦   frontobject_1.fcg.ckd
¦               ¦   ¦   ¦   ¦   frontobject_1.tga.ckd
¦               ¦   ¦   ¦   ¦   lake_object.pbk.ckd
¦               ¦   ¦   ¦   ¦   lake_object.tga.ckd
¦               ¦   ¦   ¦   ¦   moss.fcg.ckd
¦               ¦   ¦   ¦   ¦   moss.tga.ckd
¦               ¦   ¦   ¦   ¦   mushroom.fcg.ckd
¦               ¦   ¦   ¦   ¦   mushroom.tga.ckd
¦               ¦   ¦   ¦   ¦   rope.tga.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---twist
¦               ¦   ¦   ¦           moss_twist.fcg.ckd
¦               ¦   ¦   ¦           moss_twist.tga.ckd
¦               ¦   ¦   ¦           rope_twist.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---ground
¦               ¦   ¦   ¦   ¦   dirt_ground.tga.ckd
¦               ¦   ¦   ¦   ¦   forest_cave_ground_square.tga.ckd
¦               ¦   ¦   ¦   ¦   forest_cave_ground_square_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   forest_ground_square.tga.ckd
¦               ¦   ¦   ¦   ¦   forest_ground_square_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   grass_ground_square.tga.ckd
¦               ¦   ¦   ¦   ¦   grass_ground_square_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   ground_nocol.tga.ckd
¦               ¦   ¦   ¦   ¦   lake_ground.tga.ckd
¦               ¦   ¦   ¦   ¦   lake_groundmoss_square_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   lake_ground_square.tga.ckd
¦               ¦   ¦   ¦   ¦   lake_ground_square_fill.tga.ckd
¦               ¦   ¦   ¦   ¦   tile_ground.tga.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---twist
¦               ¦   ¦   ¦           forest_ground_square_fill_twist.tga.ckd
¦               ¦   ¦   ¦           forest_ground_square_twist.tga.ckd
¦               ¦   ¦   ¦           ground_nocol_twist.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---trees
¦               ¦   ¦   ¦   ¦   tree01.tga.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---twist
¦               ¦   ¦   ¦           tree01_twist.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---vegetation
¦               ¦   ¦       ¦   grass_01.tga.ckd
¦               ¦   ¦       ¦   grass_02.tga.ckd
¦               ¦   ¦       ¦   grass_03.tga.ckd
¦               ¦   ¦       ¦   lake_ground_grass.tga.ckd
¦               ¦   ¦       ¦   
¦               ¦   ¦       +---twist
¦               ¦   ¦               grass_01_twist01.tga.ckd
¦               ¦   ¦               grass_02_twist01.tga.ckd
¦               ¦   ¦               grass_03_twist01.tga.ckd
¦               ¦   ¦               grass_04_twist01.tga.ckd
¦               ¦   ¦               lake_ground_grass_twist01.tga.ckd
¦               ¦   ¦               
¦               ¦   +---ui
¦               ¦   ¦   +---boss
¦               ¦   ¦   ¦   ¦   bossui.isc.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       bosshud00.tpl.ckd
¦               ¦   ¦   ¦   ¦       bosshud01.tpl.ckd
¦               ¦   ¦   ¦   ¦       bosshud02.tpl.ckd
¦               ¦   ¦   ¦   ¦       bosshud03.tpl.ckd
¦               ¦   ¦   ¦   ¦       bosshud04.tpl.ckd
¦               ¦   ¦   ¦   ¦       bossrootui.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦           bosshud00.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---bottommenu
¦               ¦   ¦   ¦   ¦   ui_bottommenu_characters.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_bottommenu_collection.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_bottommenu_enemy.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_bottommenu_hint.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_bottommenu_journalcommon.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_bottommenu_platformgameplay.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_sound.isc.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---characters
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       charactermenurootitem.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           menubgcharacters.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---collection
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       collectionmenurootitem.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           menubgcollection.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---common
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       bottommenubg00.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       journalcommonmenu.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       journalopen.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       menuhinttab.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       menutab.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       newicon.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       pages.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           bottommenubg00.tga.ckd
¦               ¦   ¦   ¦   ¦           journalopen.tga.ckd
¦               ¦   ¦   ¦   ¦           menutab.tga.ckd
¦               ¦   ¦   ¦   ¦           newly.tga.ckd
¦               ¦   ¦   ¦   ¦           pages.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---easteregg
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           easteregg_00.tga.ckd
¦               ¦   ¦   ¦   ¦           easteregg_01.tga.ckd
¦               ¦   ¦   ¦   ¦           easteregg_02.tga.ckd
¦               ¦   ¦   ¦   ¦           easteregg_03.tga.ckd
¦               ¦   ¦   ¦   ¦           easteregg_04.tga.ckd
¦               ¦   ¦   ¦   ¦           easteregg_05.tga.ckd
¦               ¦   ¦   ¦   ¦           easteregg_06.tga.ckd
¦               ¦   ¦   ¦   ¦           easteregg_07.tga.ckd
¦               ¦   ¦   ¦   ¦           easteregg_08.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---enemy
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       enemyhintmenurootitem.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       enemy_journal.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       menubgenemy.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           enemy_journal.tga.ckd
¦               ¦   ¦   ¦   ¦           menubgenemy.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---hint
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       hintmenurootitem.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       hinttext.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       hinttexture.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           bg_hint.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_fr0_gem1.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_fr0_gem2.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_fr0_gem3.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_fr1.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_fr2.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_gh0.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_gh1.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_gh2.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_ls1.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_mp_00.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_mp_01.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_mp_02.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_mp_03.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_mp_04.tga.ckd
¦               ¦   ¦   ¦   ¦           hint_mp_05.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---inventory
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       iteminfo_renderbox.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           defaultbackgroundrenderboxstroke2.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---main
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       journalclose.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       journalclose_goldbg.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---jounalcloseshine
¦               ¦   ¦   ¦   ¦   ¦   ¦   jounalcloseshine.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦   ¦           jounalcloseshine_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦   ¦           journalcloseshine.pbk.ckd
¦               ¦   ¦   ¦   ¦   ¦           journalcloseshine.tga.ckd
¦               ¦   ¦   ¦   ¦   ¦           stand.anm.ckd
¦               ¦   ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           journalclose.pbk.ckd
¦               ¦   ¦   ¦   ¦           journalclose.tga.ckd
¦               ¦   ¦   ¦   ¦           journalclose_goldbg.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---mainquest
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       mainquestrootitem.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       menubgmainquest.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       pushpin.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       square.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           menubgmainquest.tga.ckd
¦               ¦   ¦   ¦   ¦           square.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---options
¦               ¦   ¦   ¦       ¦   ui_soundmenuroot.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---components
¦               ¦   ¦   ¦       ¦       optionbar.tpl.ckd
¦               ¦   ¦   ¦       ¦       optionbg.tpl.ckd
¦               ¦   ¦   ¦       ¦       optioncursor.tpl.ckd
¦               ¦   ¦   ¦       ¦       
¦               ¦   ¦   ¦       +---textures
¦               ¦   ¦   ¦               optionbar.tga.ckd
¦               ¦   ¦   ¦               optionbg.tga.ckd
¦               ¦   ¦   ¦               optioncursor.tga.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---cinematics
¦               ¦   ¦   ¦   ¦   cinematicdialogs.isc.ckd
¦               ¦   ¦   ¦   ¦   cinematic_rootui.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       dialog.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦           dialog.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---common
¦               ¦   ¦   ¦   ¦   uiiconplaceholder.act.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---arrow
¦               ¦   ¦   ¦   ¦   ¦   arrowbutton.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           arrows_00.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---buttons
¦               ¦   ¦   ¦   ¦   ¦   ui_com_button3dtutorial.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       buttonnamebg00.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       ui_com_buttons.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       ui_com_buttons3d.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       ui_com_buttons_small.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       ui_com_returna.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       ui_menu_buttons_small.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       ui_menu_button_title.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           buttonnamebg00.tga.ckd
¦               ¦   ¦   ¦   ¦           ui_charachange.pbk.ckd
¦               ¦   ¦   ¦   ¦           ui_charachange.tga.ckd
¦               ¦   ¦   ¦   ¦           ui_charachangenormal.pbk.ckd
¦               ¦   ¦   ¦   ¦           ui_charachangenormal.tga.ckd
¦               ¦   ¦   ¦   ¦           ui_com_buttons.pbk.ckd
¦               ¦   ¦   ¦   ¦           ui_com_buttons.tga.ckd
¦               ¦   ¦   ¦   ¦           ui_menu_button00.tga.ckd
¦               ¦   ¦   ¦   ¦           ui_menu_button_title.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       gf_uimenubasic.tpl.ckd
¦               ¦   ¦   ¦   ¦       ui3dtext_tutorial.tpl.ckd
¦               ¦   ¦   ¦   ¦       uibackground_message.tpl.ckd
¦               ¦   ¦   ¦   ¦       uicomponent.tpl.ckd
¦               ¦   ¦   ¦   ¦       uiitembasictext.tpl.ckd
¦               ¦   ¦   ¦   ¦       uiitembasictextbackground.tpl.ckd
¦               ¦   ¦   ¦   ¦       uiitembasictextbackground_touchonly.tpl.ckd
¦               ¦   ¦   ¦   ¦       uimenubasic.tpl.ckd
¦               ¦   ¦   ¦   ¦       uimenubasic3d.tpl.ckd
¦               ¦   ¦   ¦   ¦       uimenucommon.tpl.ckd
¦               ¦   ¦   ¦   ¦       uimenupausewhitebg.tpl.ckd
¦               ¦   ¦   ¦   ¦       uimenustart.tpl.ckd
¦               ¦   ¦   ¦   ¦       uisimpletexture3d.tpl.ckd
¦               ¦   ¦   ¦   ¦       uislidecomponent.tpl.ckd
¦               ¦   ¦   ¦   ¦       uitextbackground_renderbox.tpl.ckd
¦               ¦   ¦   ¦   ¦       uitextbox.tpl.ckd
¦               ¦   ¦   ¦   ¦       uitextbox_alphaanimation.tpl.ckd
¦               ¦   ¦   ¦   ¦       uitextureplaceholdersmall.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---messagewindow
¦               ¦   ¦   ¦   ¦   +---newlineicon
¦               ¦   ¦   ¦   ¦       ¦   newlineicon.tpl.ckd
¦               ¦   ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦   ¦               move.anm.ckd
¦               ¦   ¦   ¦   ¦               newlineicon.pbk.ckd
¦               ¦   ¦   ¦   ¦               newlineicon.tga.ckd
¦               ¦   ¦   ¦   ¦               newlineicon_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦               stand.anm.ckd
¦               ¦   ¦   ¦   ¦               
¦               ¦   ¦   ¦   +---playerhud
¦               ¦   ¦   ¦   ¦   ¦   ingameplayerhud_mabel.act.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---templates
¦               ¦   ¦   ¦   ¦   ¦       hud003.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       hud004.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       playerscorehud.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           hud00.tga.ckd
¦               ¦   ¦   ¦   ¦           hud01.tga.ckd
¦               ¦   ¦   ¦   ¦           hud_face.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---renderbox
¦               ¦   ¦   ¦   ¦       defaultbackgroundrenderboxframe.tga.ckd
¦               ¦   ¦   ¦   ¦       defaultbackgroundrenderboxframe_alpha.tga.ckd
¦               ¦   ¦   ¦   ¦       defaultbackgroundrenderboxstroke.tga.ckd
¦               ¦   ¦   ¦   ¦       defaultfillrenderboxframe.tga.ckd
¦               ¦   ¦   ¦   ¦       drcmenubuttonrenderboxframe.tga.ckd
¦               ¦   ¦   ¦   ¦       renderbox02.tga.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---simpletexture
¦               ¦   ¦   ¦   ¦       whitebackground.png.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---touchpen
¦               ¦   ¦   ¦       +---components
¦               ¦   ¦   ¦       ¦       touchpen.tpl.ckd
¦               ¦   ¦   ¦       ¦       
¦               ¦   ¦   ¦       +---textures
¦               ¦   ¦   ¦               touchpen.tga.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---effect
¦               ¦   ¦   ¦   +---hint_show
¦               ¦   ¦   ¦   ¦   +---texture
¦               ¦   ¦   ¦   ¦           hint_show.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---itemget_default
¦               ¦   ¦   ¦   ¦   +---texture
¦               ¦   ¦   ¦   ¦           itemget_default.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---itemget_touch
¦               ¦   ¦   ¦   ¦   ¦   itemget_touch.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---texture
¦               ¦   ¦   ¦   ¦           touch_drag.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---itemget_trail
¦               ¦   ¦   ¦   ¦       itemget_trail.act.ckd
¦               ¦   ¦   ¦   ¦       itemget_trail.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---result_confetti
¦               ¦   ¦   ¦       ¦   result_confetti.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---texture
¦               ¦   ¦   ¦               confetti.tga.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---fade
¦               ¦   ¦   ¦   +---misc
¦               ¦   ¦   ¦   ¦   ¦   uifadescreen.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---animation
¦               ¦   ¦   ¦   ¦           fadein.anm.ckd
¦               ¦   ¦   ¦   ¦           fadein02.anm.ckd
¦               ¦   ¦   ¦   ¦           fadeout.anm.ckd
¦               ¦   ¦   ¦   ¦           fadeout2.anm.ckd
¦               ¦   ¦   ¦   ¦           screenfade_squeleton.skl.ckd
¦               ¦   ¦   ¦   ¦           shadow.pbk.ckd
¦               ¦   ¦   ¦   ¦           shadow.png.ckd
¦               ¦   ¦   ¦   ¦           twirl.pbk.ckd
¦               ¦   ¦   ¦   ¦           twirl.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---tree
¦               ¦   ¦   ¦       ¦   uifade_tree.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---animation
¦               ¦   ¦   ¦               bg999.pbk.ckd
¦               ¦   ¦   ¦               bg999.tga.ckd
¦               ¦   ¦   ¦               fadein.anm.ckd
¦               ¦   ¦   ¦               fadeout.anm.ckd
¦               ¦   ¦   ¦               stand.anm.ckd
¦               ¦   ¦   ¦               tree.pbk.ckd
¦               ¦   ¦   ¦               tree.tga.ckd
¦               ¦   ¦   ¦               uifade_tree_squeleton.skl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---icons
¦               ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦           questinfoicon.pbk.ckd
¦               ¦   ¦   ¦           questinfoicon.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---inventory
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       inventoryitem00.tpl.ckd
¦               ¦   ¦   ¦   ¦       inventoryitem3dresult.tpl.ckd
¦               ¦   ¦   ¦   ¦       inventoryitem3dstartpaused.tpl.ckd
¦               ¦   ¦   ¦   ¦       inventoryitem_mainquest.tpl.ckd
¦               ¦   ¦   ¦   ¦       inventoryitem_questuitouch.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦           inventoryitem00.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---loading
¦               ¦   ¦   ¦   ¦   loadingscreen_bottom.isc.ckd
¦               ¦   ¦   ¦   ¦   loadingscreen_top.isc.ckd
¦               ¦   ¦   ¦   ¦   loadingscreen_white_top.isc.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---actors
¦               ¦   ¦   ¦       +---loadingwhite_icon
¦               ¦   ¦   ¦       ¦   ¦   loading_white.tpl.ckd
¦               ¦   ¦   ¦       ¦   ¦   
¦               ¦   ¦   ¦       ¦   +---texture
¦               ¦   ¦   ¦       ¦           loading_white.tga.ckd
¦               ¦   ¦   ¦       ¦           
¦               ¦   ¦   ¦       +---waddles
¦               ¦   ¦   ¦           ¦   waddles.tpl.ckd
¦               ¦   ¦   ¦           ¦   
¦               ¦   ¦   ¦           +---animation
¦               ¦   ¦   ¦                   loading_waddles.pbk.ckd
¦               ¦   ¦   ¦                   loading_waddles.tga.ckd
¦               ¦   ¦   ¦                   move.anm.ckd
¦               ¦   ¦   ¦                   stand.anm.ckd
¦               ¦   ¦   ¦                   waddles_squeleton.skl.ckd
¦               ¦   ¦   ¦                   
¦               ¦   ¦   +---menubootsequence
¦               ¦   ¦   ¦   ¦   menubootsequence.isc.ckd
¦               ¦   ¦   ¦   ¦   menubootsequence_disneylogo.isc.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       disneylogobg.tpl.ckd
¦               ¦   ¦   ¦   ¦       legalbg.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦           disneylogobg.tga.ckd
¦               ¦   ¦   ¦           legalbg.tga.ckd
¦               ¦   ¦   ¦           legalbg_fr.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---menugameover
¦               ¦   ¦   ¦       menu_gameover.isc.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---menuhome
¦               ¦   ¦   ¦       menuhome_commonhud.isc.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---menupause
¦               ¦   ¦   ¦   ¦   menupausetitle.isc.ckd
¦               ¦   ¦   ¦   ¦   menupause_platform.isc.ckd
¦               ¦   ¦   ¦   ¦   menupause_platform_gf.isc.ckd
¦               ¦   ¦   ¦   ¦   menupause_platform_worldmap.isc.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---actor
¦               ¦   ¦   ¦           ui_menupausemenuroot.tpl.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---menuresult
¦               ¦   ¦   ¦   ¦   menuresult_top.isc.ckd
¦               ¦   ¦   ¦   ¦   result.isc.ckd
¦               ¦   ¦   ¦   ¦   resultbg.tpl.ckd
¦               ¦   ¦   ¦   ¦   resultexitseq.tpl.ckd
¦               ¦   ¦   ¦   ¦   resultstartupseq.tpl.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       menuresult_crystal_total.tpl.ckd
¦               ¦   ¦   ¦   ¦       menuresult_rope.tpl.ckd
¦               ¦   ¦   ¦   ¦       menuresult_waddles.tpl.ckd
¦               ¦   ¦   ¦   ¦       menuresult_waddlesnose.tpl.ckd
¦               ¦   ¦   ¦   ¦       menuresult_window.tpl.ckd
¦               ¦   ¦   ¦   ¦       textbox3d.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦           bgresult00.tga.ckd
¦               ¦   ¦   ¦           menuresult00.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---menustart
¦               ¦   ¦   ¦       menustart_pressstart.isc.ckd
¦               ¦   ¦   ¦       
¦               ¦   ¦   +---menutitle
¦               ¦   ¦   ¦   ¦   menutitle_gamestart.isc.ckd
¦               ¦   ¦   ¦   ¦   menutitle_savedateselect.isc.ckd
¦               ¦   ¦   ¦   ¦   optiontop.isc.ckd
¦               ¦   ¦   ¦   ¦   titlerootscene.isc.ckd
¦               ¦   ¦   ¦   ¦   titletopui.isc.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦       menutab00.tpl.ckd
¦               ¦   ¦   ¦   ¦       titlebottombg.tpl.ckd
¦               ¦   ¦   ¦   ¦       titlelogobg.tpl.ckd
¦               ¦   ¦   ¦   ¦       titlelogo_en.tpl.ckd
¦               ¦   ¦   ¦   ¦       uibutton_saveslot.tpl.ckd
¦               ¦   ¦   ¦   ¦       uibutton_title.tpl.ckd
¦               ¦   ¦   ¦   ¦       uicompleteicon.tpl.ckd
¦               ¦   ¦   ¦   ¦       ui_titlemenubasic.tpl.ckd
¦               ¦   ¦   ¦   ¦       ui_titlesaveslotmenuroot.tpl.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦           menutab00.tga.ckd
¦               ¦   ¦   ¦           titlelogobg.tga.ckd
¦               ¦   ¦   ¦           titlelogo_de.tga.ckd
¦               ¦   ¦   ¦           titlelogo_en.tga.ckd
¦               ¦   ¦   ¦           titlelogo_es.tga.ckd
¦               ¦   ¦   ¦           titlelogo_fr.tga.ckd
¦               ¦   ¦   ¦           titlelogo_it.tga.ckd
¦               ¦   ¦   ¦           
¦               ¦   ¦   +---minigame
¦               ¦   ¦   ¦   +---common
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       gimmickhinticon.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           gimmickhinticon.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---lightandshadow
¦               ¦   ¦   ¦   ¦   ¦   lightandshadow_bottomscreen.isc.ckd
¦               ¦   ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   ¦   +---components
¦               ¦   ¦   ¦   ¦   ¦       lightandshadowbg.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       lightandshadowflashlight.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       lightandshadowflashlightbloom.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       lightandshadow_rootui.tpl.ckd
¦               ¦   ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   ¦   +---textures
¦               ¦   ¦   ¦   ¦           lightandshadowbg.tga.ckd
¦               ¦   ¦   ¦   ¦           lightandshadowflashlight.tga.ckd
¦               ¦   ¦   ¦   ¦           
¦               ¦   ¦   ¦   +---matchingpicture
¦               ¦   ¦   ¦       ¦   matchingpicture_bottomscreen.isc.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---components
¦               ¦   ¦   ¦       ¦       matchingpicture_handle.tpl.ckd
¦               ¦   ¦   ¦       ¦       matchingpicture_rootui.tpl.ckd
¦               ¦   ¦   ¦       ¦       
¦               ¦   ¦   ¦       +---textures
¦               ¦   ¦   ¦               matchingpicture_handle.tga.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---popups
¦               ¦   ¦   ¦   ¦   ui_popup_generic.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_popup_generic_image.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_popup_itemget.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_popup_shopbuy.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_popup_trc_no_button.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_popup_trc_one_button.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_popup_trc_two_buttons.isc.ckd
¦               ¦   ¦   ¦   ¦   ui_popup_trc_wait.isc.ckd
¦               ¦   ¦   ¦   ¦   
¦               ¦   ¦   ¦   +---actors
¦               ¦   ¦   ¦       ¦   saveiconinfomsg.act.ckd
¦               ¦   ¦   ¦       ¦   saveiconinfomsg.tpl.ckd
¦               ¦   ¦   ¦       ¦   trcuipopup.tpl.ckd
¦               ¦   ¦   ¦       ¦   uipopup.tpl.ckd
¦               ¦   ¦   ¦       ¦   uipopupgetitem.tpl.ckd
¦               ¦   ¦   ¦       ¦   uipopup_shopbuy.tpl.ckd
¦               ¦   ¦   ¦       ¦   ui_buttons_popup_bg.tpl.ckd
¦               ¦   ¦   ¦       ¦   ui_getimage.tpl.ckd
¦               ¦   ¦   ¦       ¦   ui_image.tpl.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---textures
¦               ¦   ¦   ¦               waiticon.tga.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---trc
¦               ¦   ¦   ¦   +---buttonsctr
¦               ¦   ¦   ¦   ¦       ui_com_buttonsa.act.ckd
¦               ¦   ¦   ¦   ¦       ui_com_buttonsb.act.ckd
¦               ¦   ¦   ¦   ¦       ui_com_buttonshome.act.ckd
¦               ¦   ¦   ¦   ¦       ui_com_buttonsl.act.ckd
¦               ¦   ¦   ¦   ¦       ui_com_buttonsr.act.ckd
¦               ¦   ¦   ¦   ¦       ui_com_buttonsstart.act.ckd
¦               ¦   ¦   ¦   ¦       
¦               ¦   ¦   ¦   +---saveicon
¦               ¦   ¦   ¦       ¦   saveiconinpopup.act.ckd
¦               ¦   ¦   ¦       ¦   
¦               ¦   ¦   ¦       +---components
¦               ¦   ¦   ¦               saveicon.tpl.ckd
¦               ¦   ¦   ¦               saveiconinpopup.tpl.ckd
¦               ¦   ¦   ¦               
¦               ¦   ¦   +---upgrade
¦               ¦   ¦       ¦   mcgukettupgrade.isc.ckd
¦               ¦   ¦       ¦   
¦               ¦   ¦       +---components
¦               ¦   ¦       ¦       mcgupgraderootitem.tpl.ckd
¦               ¦   ¦       ¦       upgradearrow.tpl.ckd
¦               ¦   ¦       ¦       upgradebg00.tpl.ckd
¦               ¦   ¦       ¦       upgradeleveltext.tpl.ckd
¦               ¦   ¦       ¦       upgrademaxicon.tpl.ckd
¦               ¦   ¦       ¦       upgradepiecebg00.tpl.ckd
¦               ¦   ¦       ¦       
¦               ¦   ¦       +---textures
¦               ¦   ¦               upgradearrow.tga.ckd
¦               ¦   ¦               upgradebg00.tga.ckd
¦               ¦   ¦               upgradepiecebg00.tga.ckd
¦               ¦   ¦               
¦               ¦   +---weapon
¦               ¦       +---chargepunch
¦               ¦       ¦   +---animation
¦               ¦       ¦   ¦       chargepunch_pack_basic_001.pbk.ckd
¦               ¦       ¦   ¦       chargepunch_pack_basic_001_0.tga.ckd
¦               ¦       ¦   ¦       chargepunch_pack_upgrade02_001.pbk.ckd
¦               ¦       ¦   ¦       chargepunch_pack_upgrade02_001_0.tga.ckd
¦               ¦       ¦   ¦       chargepunch_pack_upgrade03_001.pbk.ckd
¦               ¦       ¦   ¦       chargepunch_pack_upgrade03_001_0.tga.ckd
¦               ¦       ¦   ¦       chargepunch_pack_upgrade04_001.pbk.ckd
¦               ¦       ¦   ¦       chargepunch_pack_upgrade04_001_0.tga.ckd
¦               ¦       ¦   ¦       chargepunch_squeleton.skl.ckd
¦               ¦       ¦   ¦       punch_jump_normal.anm.ckd
¦               ¦       ¦   ¦       punch_stand_charge.anm.ckd
¦               ¦       ¦   ¦       punch_stand_normal.anm.ckd
¦               ¦       ¦   ¦       
¦               ¦       ¦   +---chargepunch
¦               ¦       ¦   ¦       chargepunch_level1.act.ckd
¦               ¦       ¦   ¦       chargepunch_level1.tpl.ckd
¦               ¦       ¦   ¦       chargepunch_level2.act.ckd
¦               ¦       ¦   ¦       chargepunch_level2.tpl.ckd
¦               ¦       ¦   ¦       chargepunch_level3.act.ckd
¦               ¦       ¦   ¦       chargepunch_level3.tpl.ckd
¦               ¦       ¦   ¦       chargepunch_level4.act.ckd
¦               ¦       ¦   ¦       chargepunch_level4.tpl.ckd
¦               ¦       ¦   ¦       
¦               ¦       ¦   +---jumppunch
¦               ¦       ¦   ¦       jumppunch_level1.act.ckd
¦               ¦       ¦   ¦       jumppunch_level1.tpl.ckd
¦               ¦       ¦   ¦       jumppunch_level2.act.ckd
¦               ¦       ¦   ¦       jumppunch_level2.tpl.ckd
¦               ¦       ¦   ¦       jumppunch_level3.act.ckd
¦               ¦       ¦   ¦       jumppunch_level3.tpl.ckd
¦               ¦       ¦   ¦       jumppunch_level4.act.ckd
¦               ¦       ¦   ¦       jumppunch_level4.tpl.ckd
¦               ¦       ¦   ¦       
¦               ¦       ¦   +---standardpunch
¦               ¦       ¦           standardpunch_left_level1.act.ckd
¦               ¦       ¦           standardpunch_left_level1.tpl.ckd
¦               ¦       ¦           standardpunch_left_level2.act.ckd
¦               ¦       ¦           standardpunch_left_level2.tpl.ckd
¦               ¦       ¦           standardpunch_left_level3.act.ckd
¦               ¦       ¦           standardpunch_left_level3.tpl.ckd
¦               ¦       ¦           standardpunch_left_level4.act.ckd
¦               ¦       ¦           standardpunch_left_level4.tpl.ckd
¦               ¦       ¦           standardpunch_right_level1.act.ckd
¦               ¦       ¦           standardpunch_right_level1.tpl.ckd
¦               ¦       ¦           standardpunch_right_level2.act.ckd
¦               ¦       ¦           standardpunch_right_level2.tpl.ckd
¦               ¦       ¦           standardpunch_right_level3.act.ckd
¦               ¦       ¦           standardpunch_right_level3.tpl.ckd
¦               ¦       ¦           standardpunch_right_level4.act.ckd
¦               ¦       ¦           standardpunch_right_level4.tpl.ckd
¦               ¦       ¦           
¦               ¦       +---flashlight
¦               ¦       ¦   ¦   flashlight.act.ckd
¦               ¦       ¦   ¦   flashlight.tpl.ckd
¦               ¦       ¦   ¦   
¦               ¦       ¦   +---texture
¦               ¦       ¦           flashlight_lightbeam.tga.ckd
¦               ¦       ¦           
¦               ¦       +---grapplinghook
¦               ¦       ¦   ¦   grapplinghook.act.ckd
¦               ¦       ¦   ¦   grapplinghook.tpl.ckd
¦               ¦       ¦   ¦   
¦               ¦       ¦   +---animation
¦               ¦       ¦           grapplinghook_pack_basic_001.pbk.ckd
¦               ¦       ¦           grapplinghook_pack_basic_001_0.tga.ckd
¦               ¦       ¦           grapplinghook_squeleton.skl.ckd
¦               ¦       ¦           ropemode.anm.ckd
¦               ¦       ¦           stand.anm.ckd
¦               ¦       ¦           upgrade.anm.ckd
¦               ¦       ¦           
¦               ¦       +---projectile
¦               ¦           +---2dbones
¦               ¦           ¦   +---animation
¦               ¦           ¦           2dbones_pack_darkjeff_001.pbk.ckd
¦               ¦           ¦           2dbones_pack_darkjeff_001_0.tga.ckd
¦               ¦           ¦           2dbones_pack_evilspirit_001.pbk.ckd
¦               ¦           ¦           2dbones_pack_evilspirit_001_0.tga.ckd
¦               ¦           ¦           2dbones_squeleton.skl.ckd
¦               ¦           ¦           darkjeff_attack_01.anm.ckd
¦               ¦           ¦           evilspirit_attack_01.anm.ckd
¦               ¦           ¦           
¦               ¦           +---bossflyingthrowingaura
¦               ¦           ¦       bossflyingthrowingaura.act.ckd
¦               ¦           ¦       bossflyingthrowingaura.tpl.ckd
¦               ¦           ¦       
¦               ¦           +---bossflyingthrowingaura_fireball
¦               ¦           ¦       bossflyingthrowingaura_fireball.act.ckd
¦               ¦           ¦       bossflyingthrowingaura_fireball.tpl.ckd
¦               ¦           ¦       flyingeaglethrowingaura_fireball.act.ckd
¦               ¦           ¦       flyingeaglethrowingaura_fireball.tpl.ckd
¦               ¦           ¦       
¦               ¦           +---common
¦               ¦           ¦   +---animation
¦               ¦           ¦           evilspirit_attack_01.anm.ckd
¦               ¦           ¦           guardian_attack_01.anm.ckd
¦               ¦           ¦           guardian_fire_attack_01.anm.ckd
¦               ¦           ¦           projectile_pack_basic_001.pbk.ckd
¦               ¦           ¦           projectile_pack_basic_001_0.tga.ckd
¦               ¦           ¦           projectile_pack_evilspirit_objecta_001.pbk.ckd
¦               ¦           ¦           projectile_pack_evilspirit_objecta_001_0.tga.ckd
¦               ¦           ¦           projectile_pack_guardian_aura_001.pbk.ckd
¦               ¦           ¦           projectile_pack_guardian_aura_001_0.tga.ckd
¦               ¦           ¦           projectile_pack_guardian_fire_001.pbk.ckd
¦               ¦           ¦           projectile_pack_guardian_fire_001_0.tga.ckd
¦               ¦           ¦           projectile_pack_guardian_objecta_001.pbk.ckd
¦               ¦           ¦           projectile_pack_guardian_objecta_001_0.tga.ckd
¦               ¦           ¦           projectile_pack_soos_default_001.pbk.ckd
¦               ¦           ¦           projectile_pack_soos_default_001_0.tga.ckd
¦               ¦           ¦           projectile_pack_totem_objecta_001.pbk.ckd
¦               ¦           ¦           projectile_pack_totem_objecta_001_0.tga.ckd
¦               ¦           ¦           projectile_pack_wendy_axe_001.pbk.ckd
¦               ¦           ¦           projectile_pack_wendy_axe_001_0.tga.ckd
¦               ¦           ¦           projectile_squeleton.skl.ckd
¦               ¦           ¦           soos_attack_01.anm.ckd
¦               ¦           ¦           soos_attack_01_right.anm.ckd
¦               ¦           ¦           stand.anm.ckd
¦               ¦           ¦           totem_attack_01.anm.ckd
¦               ¦           ¦           wendy_attack_01.anm.ckd
¦               ¦           ¦           
¦               ¦           +---darkjeffflyinggnome
¦               ¦           ¦       darkjeffflyinggnome.act.ckd
¦               ¦           ¦       darkjeffflyinggnome.tpl.ckd
¦               ¦           ¦       darkjeffflyinggnomewithaura.act.ckd
¦               ¦           ¦       darkjeffflyinggnomewithaura.tpl.ckd
¦               ¦           ¦       evilspiriteyeballwithaura.act.ckd
¦               ¦           ¦       evilspiriteyeballwithaura.tpl.ckd
¦               ¦           ¦       
¦               ¦           +---flyingeaglethrowingaura
¦               ¦           ¦       flyingeaglethrowingaura.act.ckd
¦               ¦           ¦       flyingeaglethrowingaura.tpl.ckd
¦               ¦           ¦       flyingeaglethrowingaurawithguideicon.act.ckd
¦               ¦           ¦       flyingeaglethrowingaurawithguideicon.tpl.ckd
¦               ¦           ¦       
¦               ¦           +---soosbeam
¦               ¦           ¦   ¦   soos_beam.act.ckd
¦               ¦           ¦   ¦   soos_beam_impact.act.ckd
¦               ¦           ¦   ¦   soos_beam_middle.act.ckd
¦               ¦           ¦   ¦   soos_beam_originmark.act.ckd
¦               ¦           ¦   ¦   soos_beam_originmark.tpl.ckd
¦               ¦           ¦   ¦   soos_beam_pre_01.act.ckd
¦               ¦           ¦   ¦   soos_beam_pre_02.act.ckd
¦               ¦           ¦   ¦   
¦               ¦           ¦   +---components
¦               ¦           ¦   ¦       soos_beam.tpl.ckd
¦               ¦           ¦   ¦       
¦               ¦           ¦   +---textures
¦               ¦           ¦           soos_beam.tga.ckd
¦               ¦           ¦           soos_beam_middle.tga.ckd
¦               ¦           ¦           soos_beam_pre.tga.ckd
¦               ¦           ¦           
¦               ¦           +---throwingaura
¦               ¦           ¦       throwingaura.act.ckd
¦               ¦           ¦       throwingaura.tpl.ckd
¦               ¦           ¦       
¦               ¦           +---throwingaxe
¦               ¦           ¦       throwingaxe.act.ckd
¦               ¦           ¦       throwingaxe.tpl.ckd
¦               ¦           ¦       
¦               ¦           +---tornado
¦               ¦                   tornado.act.ckd
¦               ¦                   tornado.tpl.ckd
¦               ¦                   tornado_projectile.act.ckd
¦               ¦                   tornado_projectile.tpl.ckd
¦               ¦                   
¦               +---credits
¦               ¦   ¦   credit_bottom.isc.ckd
¦               ¦   ¦   credit_component.tpl.ckd
¦               ¦   ¦   credit_title.isc.ckd
¦               ¦   ¦   credit_top_ui.isc.ckd
¦               ¦   ¦   secretcode_ui.isc.ckd
¦               ¦   ¦   
¦               ¦   +---actors
¦               ¦   ¦       actorcredits.tpl.ckd
¦               ¦   ¦       ui_menuitem_button.tpl.ckd
¦               ¦   ¦       
¦               ¦   +---gem
¦               ¦       ¦   gem.tpl.ckd
¦               ¦       ¦   
¦               ¦       +---animation
¦               ¦               credits_gem0.pbk.ckd
¦               ¦               credits_gem0.tga.ckd
¦               ¦               gem_squeleton.skl.ckd
¦               ¦               stand.anm.ckd
¦               ¦               
¦               +---debug
¦               ¦   +---animationviewer
¦               ¦   ¦       animationviewer.isc.ckd
¦               ¦   ¦       animationviewer_subscene.isc.ckd
¦               ¦   ¦       
¦               ¦   +---bootmenu
¦               ¦   ¦       debugbootmenu.isc.ckd
¦               ¦   ¦       
¦               ¦   +---cinematicviewer
¦               ¦   ¦   ¦   cinematicviewer.isc.ckd
¦               ¦   ¦   ¦   cinematicviewrinputui.tpl.ckd
¦               ¦   ¦   ¦   
¦               ¦   ¦   +---textures
¦               ¦   ¦           cinematicinputinfo.tga.ckd
¦               ¦   ¦           
¦               ¦   +---common
¦               ¦       +---camera
¦               ¦       ¦   ¦   debugfixedcamera.tpl.ckd
¦               ¦       ¦   ¦   
¦               ¦       ¦   +---components
¦               ¦       ¦           cameramodifier.tpl.ckd
¦               ¦       ¦           
¦               ¦       +---friezes
¦               ¦       ¦       debug_ground.fcg.ckd
¦               ¦       ¦       
¦               ¦       +---textures
¦               ¦               fill.tga.ckd
¦               ¦               
¦               +---personal
¦               ¦   +---gilkey
¦               ¦   ¦   +---fx
¦               ¦   ¦       +---lavaflow
¦               ¦   ¦               lavaflow.tga.ckd
¦               ¦   ¦               
¦               ¦   +---matsumoto
¦               ¦       +---effect
¦               ¦       ¦   +---texture
¦               ¦       ¦           mirrorball_01.tga.ckd
¦               ¦       ¦           
¦               ¦       +---frieze
¦               ¦               waterfall_b.fcg.ckd
¦               ¦               waterfall_b.tga.ckd
¦               ¦               
¦               +---testscene
¦               ¦       propotion_bottom_ui.isc.ckd
¦               ¦       
¦               +---worldmap
¦                   ¦   worldmap.isc.ckd
¦                   ¦   
¦                   +---bottom
¦                   ¦   ¦   worldmapbottom.isc.ckd
¦                   ¦   ¦   
¦                   ¦   +---actors
¦                   ¦       +---camera
¦                   ¦       ¦       bottomcameramodifier.tpl.ckd
¦                   ¦       ¦       cameratarget.tpl.ckd
¦                   ¦       ¦       cameraworldmap.act.ckd
¦                   ¦       ¦       cameraworldmap.tpl.ckd
¦                   ¦       ¦       sequenceactor.tpl.ckd
¦                   ¦       ¦       
¦                   ¦       +---map
¦                   ¦       ¦   ¦   worldmapbg.tpl.ckd
¦                   ¦       ¦   ¦   
¦                   ¦       ¦   +---textures
¦                   ¦       ¦           worldmap_bg00.tga.ckd
¦                   ¦       ¦           
¦                   ¦       +---node
¦                   ¦       ¦   +---components
¦                   ¦       ¦           dummynode.tpl.ckd
¦                   ¦       ¦           
¦                   ¦       +---playablecharacter
¦                   ¦       ¦   +---dipper
¦                   ¦       ¦   ¦       dipper.act.ckd
¦                   ¦       ¦   ¦       dipper.tpl.ckd
¦                   ¦       ¦   ¦       
¦                   ¦       ¦   +---mabel
¦                   ¦       ¦           mabel.act.ckd
¦                   ¦       ¦           mabel.tpl.ckd
¦                   ¦       ¦           mabel_with_whip.act.ckd
¦                   ¦       ¦           
¦                   ¦       +---secretplace
¦                   ¦       ¦   +---cedar_l
¦                   ¦       ¦   ¦   ¦   cedar_l.tpl.ckd
¦                   ¦       ¦   ¦   ¦   
¦                   ¦       ¦   ¦   +---animation
¦                   ¦       ¦   ¦           cedar_l_squeleton.skl.ckd
¦                   ¦       ¦   ¦           stand.anm.ckd
¦                   ¦       ¦   ¦           worldmap_cedar_l.pbk.ckd
¦                   ¦       ¦   ¦           worldmap_cedar_l.tga.ckd
¦                   ¦       ¦   ¦           
¦                   ¦       ¦   +---cedar_r
¦                   ¦       ¦   ¦   ¦   cedar_r.tpl.ckd
¦                   ¦       ¦   ¦   ¦   
¦                   ¦       ¦   ¦   +---animation
¦                   ¦       ¦   ¦           cedar_r_squeleton.skl.ckd
¦                   ¦       ¦   ¦           stand.anm.ckd
¦                   ¦       ¦   ¦           worldmap_cedar_r.pbk.ckd
¦                   ¦       ¦   ¦           worldmap_cedar_r.tga.ckd
¦                   ¦       ¦   ¦           
¦                   ¦       ¦   +---secretpoint
¦                   ¦       ¦           secretpoint.tpl.ckd
¦                   ¦       ¦           
¦                   ¦       +---waypointicons
¦                   ¦           +---components
¦                   ¦           ¦       waypointicons.tpl.ckd
¦                   ¦           ¦       waypointiconsformcg.tpl.ckd
¦                   ¦           ¦       waypointiconslock.tpl.ckd
¦                   ¦           ¦       
¦                   ¦           +---textures
¦                   ¦                   waypointicons00.tga.ckd
¦                   ¦                   waypointiconslock.tga.ckd
¦                   ¦                   
¦                   +---top
¦                       ¦   worldmaptop.isc.ckd
¦                       ¦   worldmaptop_ui.isc.ckd
¦                       ¦   
¦                       +---actors
¦                           +---bg
¦                           ¦   +---components
¦                           ¦   ¦       worldmapupbg00.tpl.ckd
¦                           ¦   ¦       
¦                           ¦   +---textures
¦                           ¦           worldmapupbg00.tga.ckd
¦                           ¦           
¦                           +---fieldname
¦                           ¦       fieldnameui.tpl.ckd
¦                           ¦       
¦                           +---questwindow
¦                           ¦   +---components
¦                           ¦   ¦       up_window_complete.tpl.ckd
¦                           ¦   ¦       
¦                           ¦   +---textures
¦                           ¦           up_window_complete.tga.ckd
¦                           ¦           
¦                           +---scope
¦                           ¦   +---components
¦                           ¦   ¦       worldmapscope.tpl.ckd
¦                           ¦   ¦       
¦                           ¦   +---textures
¦                           ¦           worldmapscope.tga.ckd
¦                           ¦           
¦                           +---spoticons
¦                               ¦   spoticons_quest.act.ckd
¦                               ¦   spoticons_questformcg.act.ckd
¦                               ¦   
¦                               +---components
¦                               ¦       spoticons_quest.tpl.ckd
¦                               ¦       spoticons_spoticon.tpl.ckd
¦                               ¦       
¦                               +---textures
¦                                       worldmap_up_spoticons.tga.ckd
¦                                       
+---enginedata
¦   ¦   common.alias8
¦   ¦   
¦   +---localisation
¦   ¦       default.lng
¦   ¦       
¦   +---shaders
¦       +---compiled
¦           +---ctr
¦                   allinone.shbin
¦                   debugfont.shbin
¦                   default.shbin
¦                   fontrectdrawer.shbin
¦                   patch.shbin
¦                   patchvsonly.shbin
¦                   tahoma.bcfnt
¦                   
+---world
    +---common
    ¦   +---fx
    ¦   ¦   +---damage
    ¦   ¦   ¦   +---damage_flame
    ¦   ¦   ¦   ¦       fx_fire.tbl
    ¦   ¦   ¦   ¦       fx_fire_end.tbl
    ¦   ¦   ¦   ¦       fx_fire_spread.tbl
    ¦   ¦   ¦   ¦       
    ¦   ¦   ¦   +---damage_physical
    ¦   ¦   ¦           fx_damage_sparkle.tbl
    ¦   ¦   ¦           
    ¦   ¦   +---enemy
    ¦   ¦   ¦   +---aura
    ¦   ¦   ¦       +---aura_nodamage_impact
    ¦   ¦   ¦               fx_aura_nodamage_photon.tbl
    ¦   ¦   ¦               fx_aura_nodamage_smoke.tbl
    ¦   ¦   ¦               
    ¦   ¦   +---friendly
    ¦   ¦       +---healing
    ¦   ¦               fx_healing_photon1.tbl
    ¦   ¦               fx_healing_photon2.tbl
    ¦   ¦               
    ¦   +---playablecharacter
    ¦   ¦   +---pchar_dipper
    ¦   ¦   ¦   +---fx
    ¦   ¦   ¦       +---punch
    ¦   ¦   ¦               fx_punch_charge_cancel_high1.tbl
    ¦   ¦   ¦               fx_punch_charge_cancel_low1.tbl
    ¦   ¦   ¦               fx_punch_charge_cancel_mid1.tbl
    ¦   ¦   ¦               fx_punch_charge_cancel_special1.tbl
    ¦   ¦   ¦               fx_punch_charge_loop_radial_high1.tbl
    ¦   ¦   ¦               fx_punch_charge_loop_radial_low1.tbl
    ¦   ¦   ¦               fx_punch_charge_loop_radial_mid1.tbl
    ¦   ¦   ¦               fx_punch_charge_loop_radial_special1.tbl
    ¦   ¦   ¦               fx_punch_charge_loop_sphere_high1.tbl
    ¦   ¦   ¦               fx_punch_charge_loop_sphere_low1.tbl
    ¦   ¦   ¦               fx_punch_charge_loop_sphere_mid1.tbl
    ¦   ¦   ¦               fx_punch_charge_loop_sphere_special1.tbl
    ¦   ¦   ¦               fx_punch_charge_max_high1.tbl
    ¦   ¦   ¦               fx_punch_charge_max_high2.tbl
    ¦   ¦   ¦               fx_punch_charge_max_high3.tbl
    ¦   ¦   ¦               fx_punch_charge_max_low1.tbl
    ¦   ¦   ¦               fx_punch_charge_max_low2.tbl
    ¦   ¦   ¦               fx_punch_charge_max_low3.tbl
    ¦   ¦   ¦               fx_punch_charge_max_mid1.tbl
    ¦   ¦   ¦               fx_punch_charge_max_mid2.tbl
    ¦   ¦   ¦               fx_punch_charge_max_mid3.tbl
    ¦   ¦   ¦               fx_punch_charge_max_special1.tbl
    ¦   ¦   ¦               fx_punch_charge_max_special2.tbl
    ¦   ¦   ¦               fx_punch_charge_max_special3.tbl
    ¦   ¦   ¦               fx_punch_charge_up_high1.tbl
    ¦   ¦   ¦               fx_punch_charge_up_low1.tbl
    ¦   ¦   ¦               fx_punch_charge_up_mid1.tbl
    ¦   ¦   ¦               fx_punch_charge_up_special1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_high1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_low1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_mid1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_photon_high1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_photon_low1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_photon_mid1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_photon_special1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_radial_high1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_radial_low1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_radial_mid1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_radial_special1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_ring_high1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_ring_low1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_ring_mid1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_ring_special1.tbl
    ¦   ¦   ¦               fx_punch_hit_charge_special1.tbl
    ¦   ¦   ¦               fx_punch_hit_high1.tbl
    ¦   ¦   ¦               fx_punch_hit_low1.tbl
    ¦   ¦   ¦               fx_punch_hit_mid1.tbl
    ¦   ¦   ¦               fx_punch_hit_special1.tbl
    ¦   ¦   ¦               fx_punch_tail_high1.tbl
    ¦   ¦   ¦               fx_punch_tail_high2.tbl
    ¦   ¦   ¦               fx_punch_tail_low1.tbl
    ¦   ¦   ¦               fx_punch_tail_low2.tbl
    ¦   ¦   ¦               fx_punch_tail_mid1.tbl
    ¦   ¦   ¦               fx_punch_tail_mid2.tbl
    ¦   ¦   ¦               fx_punch_tail_special1.tbl
    ¦   ¦   ¦               fx_punch_tail_special2.tbl
    ¦   ¦   ¦               
    ¦   ¦   +---pchar_mabel
    ¦   ¦       +---fx
    ¦   ¦           +---whip
    ¦   ¦                   fx_whip_charge_cancel_high1.tbl
    ¦   ¦                   fx_whip_charge_cancel_high2.tbl
    ¦   ¦                   fx_whip_charge_cancel_low1.tbl
    ¦   ¦                   fx_whip_charge_cancel_low2.tbl
    ¦   ¦                   fx_whip_charge_cancel_mid1.tbl
    ¦   ¦                   fx_whip_charge_cancel_mid2.tbl
    ¦   ¦                   fx_whip_charge_cancel_special1.tbl
    ¦   ¦                   fx_whip_charge_cancel_special2.tbl
    ¦   ¦                   fx_whip_charge_loop_high1.tbl
    ¦   ¦                   fx_whip_charge_loop_high2.tbl
    ¦   ¦                   fx_whip_charge_loop_low1.tbl
    ¦   ¦                   fx_whip_charge_loop_low2.tbl
    ¦   ¦                   fx_whip_charge_loop_mid1.tbl
    ¦   ¦                   fx_whip_charge_loop_mid2.tbl
    ¦   ¦                   fx_whip_charge_loop_special1.tbl
    ¦   ¦                   fx_whip_charge_loop_special2.tbl
    ¦   ¦                   fx_whip_charge_max_high1.tbl
    ¦   ¦                   fx_whip_charge_max_high2.tbl
    ¦   ¦                   fx_whip_charge_max_high3.tbl
    ¦   ¦                   fx_whip_charge_max_low1.tbl
    ¦   ¦                   fx_whip_charge_max_low2.tbl
    ¦   ¦                   fx_whip_charge_max_low3.tbl
    ¦   ¦                   fx_whip_charge_max_mid1.tbl
    ¦   ¦                   fx_whip_charge_max_mid2.tbl
    ¦   ¦                   fx_whip_charge_max_mid3.tbl
    ¦   ¦                   fx_whip_charge_max_special1.tbl
    ¦   ¦                   fx_whip_charge_max_special2.tbl
    ¦   ¦                   fx_whip_charge_max_special3.tbl
    ¦   ¦                   fx_whip_charge_up_high1.tbl
    ¦   ¦                   fx_whip_charge_up_low1.tbl
    ¦   ¦                   fx_whip_charge_up_mid1.tbl
    ¦   ¦                   fx_whip_charge_up_special1.tbl
    ¦   ¦                   fx_whip_hit_charge_high1.tbl
    ¦   ¦                   fx_whip_hit_charge_low1.tbl
    ¦   ¦                   fx_whip_hit_charge_mid1.tbl
    ¦   ¦                   fx_whip_hit_charge_photon_high1.tbl
    ¦   ¦                   fx_whip_hit_charge_photon_low1.tbl
    ¦   ¦                   fx_whip_hit_charge_photon_mid1.tbl
    ¦   ¦                   fx_whip_hit_charge_photon_special1.tbl
    ¦   ¦                   fx_whip_hit_charge_radial_high1.tbl
    ¦   ¦                   fx_whip_hit_charge_radial_low1.tbl
    ¦   ¦                   fx_whip_hit_charge_radial_mid1.tbl
    ¦   ¦                   fx_whip_hit_charge_radial_special1.tbl
    ¦   ¦                   fx_whip_hit_charge_special1.tbl
    ¦   ¦                   fx_whip_hit_high1.tbl
    ¦   ¦                   fx_whip_hit_low1.tbl
    ¦   ¦                   fx_whip_hit_mid1.tbl
    ¦   ¦                   fx_whip_hit_special1.tbl
    ¦   ¦                   fx_whip_jem_blue.tbl
    ¦   ¦                   fx_whip_jem_red.tbl
    ¦   ¦                   fx_whip_jem_yellow.tbl
    ¦   ¦                   fx_whip_jumpnormal_flash_high1.tbl
    ¦   ¦                   fx_whip_jumpnormal_flash_low1.tbl
    ¦   ¦                   fx_whip_jumpnormal_flash_mid1.tbl
    ¦   ¦                   fx_whip_jumpnormal_flash_special1.tbl
    ¦   ¦                   fx_whip_normal_flash_high1.tbl
    ¦   ¦                   fx_whip_normal_flash_low1.tbl
    ¦   ¦                   fx_whip_normal_flash_mid1.tbl
    ¦   ¦                   fx_whip_normal_flash_special1.tbl
    ¦   ¦                   fx_whip_tail_high1.tbl
    ¦   ¦                   fx_whip_tail_jemset.tbl
    ¦   ¦                   fx_whip_tail_jumpnormal_jemset.tbl
    ¦   ¦                   fx_whip_tail_low1.tbl
    ¦   ¦                   fx_whip_tail_mid1.tbl
    ¦   ¦                   fx_whip_tail_normal_jemset.tbl
    ¦   ¦                   fx_whip_tail_special1.tbl
    ¦   ¦                   
    ¦   +---ui
    ¦       +---effect
    ¦           +---hint_show
    ¦           ¦       hint_show_centerlight.tbl
    ¦           ¦       hint_show_flash.tbl
    ¦           ¦       hint_show_spark.tbl
    ¦           ¦       
    ¦           +---itemget_default
    ¦           ¦       itemget_default_centerlight.tbl
    ¦           ¦       itemget_default_flash.tbl
    ¦           ¦       itemget_default_spark.tbl
    ¦           ¦       
    ¦           +---itemget_trail
    ¦           ¦       itemget_trail_flash.tbl
    ¦           ¦       itemget_trail_spark.tbl
    ¦           ¦       itemget_trail_subquest_flash.tbl
    ¦           ¦       itemget_trail_subquest_spark.tbl
    ¦           ¦       
    ¦           +---questcomplete
    ¦           ¦       fx_complete_sparkle.tbl
    ¦           ¦       
    ¦           +---questitemget
    ¦           ¦       questitemget_flash.tbl
    ¦           ¦       questitemget_photon.tbl
    ¦           ¦       questitemget_radial.tbl
    ¦           ¦       questitemget_ring.tbl
    ¦           ¦       
    ¦           +---result_confetti
    ¦                   result_confetti.tbl
    ¦                   result_spark.tbl
    ¦                   
    +---credits
        +---gem
            +---fx
                    fx_earth_sparkle.tbl
                    fx_fire_sparkle.tbl
                    fx_ring.tbl
                    fx_water_sparkle.tbl
                    fx_wind_sparkle.tbl
                    
 |