blob: 164071d4637de1b1011f7c96645f7684add9037f (
plain) (
blame)
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
|
bin/qtcreator
bin/qtcreator.sh
lib/qtcreator/libAdvancedDockingSystem.so.%%SHLIB_SHVER%%
lib/qtcreator/libAdvancedDockingSystem.so.%%SHLIB_VER%%
lib/qtcreator/libAggregation.so.%%SHLIB_SHVER%%
lib/qtcreator/libAggregation.so.%%SHLIB_VER%%
lib/qtcreator/libCPlusPlus.so.%%SHLIB_SHVER%%
lib/qtcreator/libCPlusPlus.so.%%SHLIB_VER%%
lib/qtcreator/libCmdBridgeClient.so.%%SHLIB_SHVER%%
lib/qtcreator/libCmdBridgeClient.so.%%SHLIB_VER%%
lib/qtcreator/libExtensionSystem.so.%%SHLIB_SHVER%%
lib/qtcreator/libExtensionSystem.so.%%SHLIB_VER%%
lib/qtcreator/libGLSL.so.%%SHLIB_SHVER%%
lib/qtcreator/libGLSL.so.%%SHLIB_VER%%
lib/qtcreator/libKSyntaxHighlighting.so.%%SHLIB_SHVER%%
lib/qtcreator/libKSyntaxHighlighting.so.%%SHLIB_VER%%
lib/qtcreator/libLanguageServerProtocol.so.%%SHLIB_SHVER%%
lib/qtcreator/libLanguageServerProtocol.so.%%SHLIB_VER%%
lib/qtcreator/libLanguageUtils.so.%%SHLIB_SHVER%%
lib/qtcreator/libLanguageUtils.so.%%SHLIB_VER%%
lib/qtcreator/libModeling.so.%%SHLIB_SHVER%%
lib/qtcreator/libModeling.so.%%SHLIB_VER%%
lib/qtcreator/libNanotrace.so.%%SHLIB_SHVER%%
lib/qtcreator/libNanotrace.so.%%SHLIB_VER%%
lib/qtcreator/libProParser.so.%%SHLIB_SHVER%%
lib/qtcreator/libProParser.so.%%SHLIB_VER%%
lib/qtcreator/libQmlDebug.so.%%SHLIB_SHVER%%
lib/qtcreator/libQmlDebug.so.%%SHLIB_VER%%
lib/qtcreator/libQmlDesignerCore.so.%%SHLIB_SHVER%%
lib/qtcreator/libQmlDesignerCore.so.%%SHLIB_VER%%
lib/qtcreator/libQmlEditorWidgets.so.%%SHLIB_SHVER%%
lib/qtcreator/libQmlEditorWidgets.so.%%SHLIB_VER%%
lib/qtcreator/libQmlJS.so.%%SHLIB_SHVER%%
lib/qtcreator/libQmlJS.so.%%SHLIB_VER%%
lib/qtcreator/libSqlite.so.%%SHLIB_SHVER%%
lib/qtcreator/libSqlite.so.%%SHLIB_VER%%
lib/qtcreator/libTerminalLib.so.%%SHLIB_SHVER%%
lib/qtcreator/libTerminalLib.so.%%SHLIB_VER%%
lib/qtcreator/libTracing.so.%%SHLIB_SHVER%%
lib/qtcreator/libTracing.so.%%SHLIB_VER%%
lib/qtcreator/libUtils.so.%%SHLIB_SHVER%%
lib/qtcreator/libUtils.so.%%SHLIB_VER%%
lib/qtcreator/libqlitehtml.so.%%SHLIB_SHVER%%
lib/qtcreator/libqlitehtml.so.%%SHLIB_VER%%
lib/qtcreator/libqtkeychain.so.%%SHLIB_SHVER%%
lib/qtcreator/libqtkeychain.so.%%SHLIB_VER%%
lib/qtcreator/libyaml-cpp.so.%%SHLIB_SHVER%%
lib/qtcreator/libyaml-cpp.so.%%SHLIB_VER%%
lib/qtcreator/plugins/libAndroid.so
lib/qtcreator/plugins/libAutoTest.so
lib/qtcreator/plugins/libAutotoolsProjectManager.so
lib/qtcreator/plugins/libAxivion.so
lib/qtcreator/plugins/libBareMetal.so
lib/qtcreator/plugins/libBazaar.so
lib/qtcreator/plugins/libBeautifier.so
lib/qtcreator/plugins/libBinEditor.so
lib/qtcreator/plugins/libBoot2Qt.so
lib/qtcreator/plugins/libCMakeProjectManager.so
lib/qtcreator/plugins/libCVS.so
lib/qtcreator/plugins/libClangCodeModel.so
lib/qtcreator/plugins/libClangFormat.so
lib/qtcreator/plugins/libClangTools.so
lib/qtcreator/plugins/libClassView.so
lib/qtcreator/plugins/libClearCase.so
lib/qtcreator/plugins/libCoco.so
lib/qtcreator/plugins/libCodePaster.so
lib/qtcreator/plugins/libCompilationDatabaseProjectManager.so
lib/qtcreator/plugins/libCompilerExplorer.so
lib/qtcreator/plugins/libConan.so
lib/qtcreator/plugins/libCopilot.so
lib/qtcreator/plugins/libCore.so
lib/qtcreator/plugins/libCppEditor.so
lib/qtcreator/plugins/libCppcheck.so
lib/qtcreator/plugins/libCtfVisualizer.so
lib/qtcreator/plugins/libDebugger.so
lib/qtcreator/plugins/libDesigner.so
lib/qtcreator/plugins/libDiffEditor.so
lib/qtcreator/plugins/libDocker.so
lib/qtcreator/plugins/libEffectComposer.so
lib/qtcreator/plugins/libEmacsKeys.so
lib/qtcreator/plugins/libExtensionManager.so
lib/qtcreator/plugins/libExtraPropertyEditorManager.so
lib/qtcreator/plugins/libFakeVim.so
lib/qtcreator/plugins/libFossil.so
lib/qtcreator/plugins/libGLSLEditor.so
lib/qtcreator/plugins/libGenericProjectManager.so
lib/qtcreator/plugins/libGit.so
lib/qtcreator/plugins/libGitLab.so
lib/qtcreator/plugins/libHelloWorld.so
lib/qtcreator/plugins/libHelp.so
lib/qtcreator/plugins/libImageViewer.so
lib/qtcreator/plugins/libIncrediBuild.so
lib/qtcreator/plugins/libInsight.so
lib/qtcreator/plugins/libIos.so
lib/qtcreator/plugins/libLanguageClient.so
lib/qtcreator/plugins/libLearning.so
lib/qtcreator/plugins/libLua.so
lib/qtcreator/plugins/libLuaLanguageClient.so
lib/qtcreator/plugins/libMacros.so
lib/qtcreator/plugins/libMcuSupport.so
lib/qtcreator/plugins/libMercurial.so
lib/qtcreator/plugins/libMesonProjectManager.so
lib/qtcreator/plugins/libModelEditor.so
lib/qtcreator/plugins/libNim.so
lib/qtcreator/plugins/libPerfProfiler.so
lib/qtcreator/plugins/libPerforce.so
lib/qtcreator/plugins/libProjectExplorer.so
lib/qtcreator/plugins/libPython.so
lib/qtcreator/plugins/libQbsProjectManager.so
lib/qtcreator/plugins/libQmakeProjectManager.so
lib/qtcreator/plugins/libQmlDesigner.so
lib/qtcreator/plugins/libQmlDesignerBase.so
lib/qtcreator/plugins/libQmlDesignerLite.so
lib/qtcreator/plugins/libQmlJSEditor.so
lib/qtcreator/plugins/libQmlJSTools.so
lib/qtcreator/plugins/libQmlPreview.so
lib/qtcreator/plugins/libQmlProfiler.so
lib/qtcreator/plugins/libQmlProjectManager.so
lib/qtcreator/plugins/libQnx.so
lib/qtcreator/plugins/libQtApplicationManagerIntegration.so
lib/qtcreator/plugins/libQtSupport.so
lib/qtcreator/plugins/libRemoteLinux.so
lib/qtcreator/plugins/libResourceEditor.so
lib/qtcreator/plugins/libSafeRenderer.so
lib/qtcreator/plugins/libScreenRecorder.so
lib/qtcreator/plugins/libScxmlEditor.so
lib/qtcreator/plugins/libSerialTerminal.so
lib/qtcreator/plugins/libSilverSearcher.so
lib/qtcreator/plugins/libSquish.so
lib/qtcreator/plugins/libStudioWelcome.so
lib/qtcreator/plugins/libSubversion.so
lib/qtcreator/plugins/libTerminal.so
lib/qtcreator/plugins/libTextEditor.so
lib/qtcreator/plugins/libTodo.so
lib/qtcreator/plugins/libUpdateInfo.so
lib/qtcreator/plugins/libValgrind.so
lib/qtcreator/plugins/libVcpkg.so
lib/qtcreator/plugins/libVcsBase.so
lib/qtcreator/plugins/libWebAssembly.so
lib/qtcreator/plugins/libWelcome.so
lib/qtcreator/plugins/qmldesigner/libcomponentsplugin.so
lib/qtcreator/plugins/qmldesigner/libqmlpreviewplugin.so
lib/qtcreator/plugins/qmldesigner/libqtquickplugin.so
libexec/qtcreator/buildoutputparser
libexec/qtcreator/cpaster
libexec/qtcreator/qmlpuppet-%%SHLIB_VER%%
libexec/qtcreator/qtc-askpass
%%DEBUG%%libexec/qtcreator/qtcreator_crash_handler
libexec/qtcreator/qtcreator_process_stub
libexec/qtcreator/qtpromaker
libexec/qtcreator/sdktool
share/applications/org.qt-project.qtcreator.desktop
share/icons/hicolor/128x128/apps/QtProject-qtcreator.png
share/icons/hicolor/16x16/apps/QtProject-qtcreator.png
share/icons/hicolor/24x24/apps/QtProject-qtcreator.png
share/icons/hicolor/256x256/apps/QtProject-qtcreator.png
share/icons/hicolor/32x32/apps/QtProject-qtcreator.png
share/icons/hicolor/48x48/apps/QtProject-qtcreator.png
share/icons/hicolor/512x512/apps/QtProject-qtcreator.png
share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
share/metainfo/org.qt-project.qtcreator.appdata.xml
%%DATADIR%%/android/sdk_definitions.json
%%DATADIR%%/changelog/changes-1.1.0
%%DATADIR%%/changelog/changes-1.1.1
%%DATADIR%%/changelog/changes-1.2.0
%%DATADIR%%/changelog/changes-1.2.1
%%DATADIR%%/changelog/changes-1.3.0
%%DATADIR%%/changelog/changes-1.3.1
%%DATADIR%%/changelog/changes-10.0.0.md
%%DATADIR%%/changelog/changes-10.0.1.md
%%DATADIR%%/changelog/changes-10.0.2.md
%%DATADIR%%/changelog/changes-11.0.0.md
%%DATADIR%%/changelog/changes-11.0.1.md
%%DATADIR%%/changelog/changes-11.0.2.md
%%DATADIR%%/changelog/changes-11.0.3.md
%%DATADIR%%/changelog/changes-12.0.0.md
%%DATADIR%%/changelog/changes-12.0.1.md
%%DATADIR%%/changelog/changes-12.0.2.md
%%DATADIR%%/changelog/changes-13.0.0.md
%%DATADIR%%/changelog/changes-13.0.1.md
%%DATADIR%%/changelog/changes-13.0.2.md
%%DATADIR%%/changelog/changes-14.0.0.md
%%DATADIR%%/changelog/changes-14.0.1.md
%%DATADIR%%/changelog/changes-14.0.2.md
%%DATADIR%%/changelog/changes-15.0.0.md
%%DATADIR%%/changelog/changes-15.0.1.md
%%DATADIR%%/changelog/changes-16.0.0.md
%%DATADIR%%/changelog/changes-16.0.1.md
%%DATADIR%%/changelog/changes-16.0.2.md
%%DATADIR%%/changelog/changes-17.0.0.md
%%DATADIR%%/changelog/changes-17.0.1.md
%%DATADIR%%/changelog/changes-2.0.0
%%DATADIR%%/changelog/changes-2.0.1
%%DATADIR%%/changelog/changes-2.1.0
%%DATADIR%%/changelog/changes-2.2.0
%%DATADIR%%/changelog/changes-2.3.0
%%DATADIR%%/changelog/changes-2.3.1
%%DATADIR%%/changelog/changes-2.4.0
%%DATADIR%%/changelog/changes-2.4.1
%%DATADIR%%/changelog/changes-2.5.0
%%DATADIR%%/changelog/changes-2.5.1
%%DATADIR%%/changelog/changes-2.5.2
%%DATADIR%%/changelog/changes-2.6.0
%%DATADIR%%/changelog/changes-2.6.1
%%DATADIR%%/changelog/changes-2.6.2
%%DATADIR%%/changelog/changes-2.7.0
%%DATADIR%%/changelog/changes-2.8.0
%%DATADIR%%/changelog/changes-2.8.1
%%DATADIR%%/changelog/changes-3.0.0
%%DATADIR%%/changelog/changes-3.0.1
%%DATADIR%%/changelog/changes-3.1.0
%%DATADIR%%/changelog/changes-3.1.1
%%DATADIR%%/changelog/changes-3.1.2
%%DATADIR%%/changelog/changes-3.2.0
%%DATADIR%%/changelog/changes-3.2.1
%%DATADIR%%/changelog/changes-3.2.2
%%DATADIR%%/changelog/changes-3.3.0
%%DATADIR%%/changelog/changes-3.3.1
%%DATADIR%%/changelog/changes-3.3.2
%%DATADIR%%/changelog/changes-3.4.0
%%DATADIR%%/changelog/changes-3.4.1.md
%%DATADIR%%/changelog/changes-3.5.0.md
%%DATADIR%%/changelog/changes-3.5.1.md
%%DATADIR%%/changelog/changes-3.6.0.md
%%DATADIR%%/changelog/changes-3.6.1.md
%%DATADIR%%/changelog/changes-4.0.0.md
%%DATADIR%%/changelog/changes-4.0.1.md
%%DATADIR%%/changelog/changes-4.0.2.md
%%DATADIR%%/changelog/changes-4.0.3.md
%%DATADIR%%/changelog/changes-4.1.0.md
%%DATADIR%%/changelog/changes-4.10.0.md
%%DATADIR%%/changelog/changes-4.10.1.md
%%DATADIR%%/changelog/changes-4.11.0.md
%%DATADIR%%/changelog/changes-4.11.1.md
%%DATADIR%%/changelog/changes-4.11.2.md
%%DATADIR%%/changelog/changes-4.12.0.md
%%DATADIR%%/changelog/changes-4.12.1.md
%%DATADIR%%/changelog/changes-4.12.2.md
%%DATADIR%%/changelog/changes-4.12.3.md
%%DATADIR%%/changelog/changes-4.12.4.md
%%DATADIR%%/changelog/changes-4.13.0.md
%%DATADIR%%/changelog/changes-4.13.1.md
%%DATADIR%%/changelog/changes-4.13.2.md
%%DATADIR%%/changelog/changes-4.13.3.md
%%DATADIR%%/changelog/changes-4.14.0.md
%%DATADIR%%/changelog/changes-4.14.1.md
%%DATADIR%%/changelog/changes-4.14.2.md
%%DATADIR%%/changelog/changes-4.15.0.md
%%DATADIR%%/changelog/changes-4.15.1.md
%%DATADIR%%/changelog/changes-4.15.2.md
%%DATADIR%%/changelog/changes-4.2.0.md
%%DATADIR%%/changelog/changes-4.2.1.md
%%DATADIR%%/changelog/changes-4.2.2.md
%%DATADIR%%/changelog/changes-4.3.0.md
%%DATADIR%%/changelog/changes-4.3.1.md
%%DATADIR%%/changelog/changes-4.4.0.md
%%DATADIR%%/changelog/changes-4.4.1.md
%%DATADIR%%/changelog/changes-4.5.0.md
%%DATADIR%%/changelog/changes-4.5.1.md
%%DATADIR%%/changelog/changes-4.5.2.md
%%DATADIR%%/changelog/changes-4.6.0.md
%%DATADIR%%/changelog/changes-4.6.1.md
%%DATADIR%%/changelog/changes-4.6.2.md
%%DATADIR%%/changelog/changes-4.7.0.md
%%DATADIR%%/changelog/changes-4.7.1.md
%%DATADIR%%/changelog/changes-4.7.2.md
%%DATADIR%%/changelog/changes-4.8.0.md
%%DATADIR%%/changelog/changes-4.8.1.md
%%DATADIR%%/changelog/changes-4.8.2.md
%%DATADIR%%/changelog/changes-4.9.0.md
%%DATADIR%%/changelog/changes-4.9.1.md
%%DATADIR%%/changelog/changes-4.9.2.md
%%DATADIR%%/changelog/changes-5.0.0.md
%%DATADIR%%/changelog/changes-5.0.1.md
%%DATADIR%%/changelog/changes-5.0.2.md
%%DATADIR%%/changelog/changes-5.0.3.md
%%DATADIR%%/changelog/changes-6.0.0.md
%%DATADIR%%/changelog/changes-6.0.1.md
%%DATADIR%%/changelog/changes-6.0.2.md
%%DATADIR%%/changelog/changes-7.0.0.md
%%DATADIR%%/changelog/changes-7.0.1.md
%%DATADIR%%/changelog/changes-7.0.2.md
%%DATADIR%%/changelog/changes-8.0.0.md
%%DATADIR%%/changelog/changes-8.0.1.md
%%DATADIR%%/changelog/changes-8.0.2.md
%%DATADIR%%/changelog/changes-9.0.0.md
%%DATADIR%%/changelog/changes-9.0.1.md
%%DATADIR%%/changelog/changes-9.0.2.md
%%DATADIR%%/changelog/template.md
%%DATADIR%%/cplusplus/examples/CMakeLists.txt
%%DATADIR%%/cplusplus/examples/clazy_example.cpp
%%DATADIR%%/cplusplus/examples/examples.pro
%%DATADIR%%/cplusplus/examples/icontest.cpp
%%DATADIR%%/cplusplus/examples/tidy_example.cpp
%%DATADIR%%/cplusplus/examples/tidy_example.h
%%DATADIR%%/cplusplus/wrappedMingwHeaders/float.h
%%DATADIR%%/cplusplus/wrappedQtHeaders/QtCore/qobjectdefs.h
%%DATADIR%%/debugger-with-python2/README.txt
%%DATADIR%%/debugger-with-python2/android_stdtypes.py
%%DATADIR%%/debugger-with-python2/boosttypes.py
%%DATADIR%%/debugger-with-python2/cdbbridge.py
%%DATADIR%%/debugger-with-python2/creatortypes.py
%%DATADIR%%/debugger-with-python2/dumper.py
%%DATADIR%%/debugger-with-python2/gdbbridge.py
%%DATADIR%%/debugger-with-python2/gdbtracepoint.py
%%DATADIR%%/debugger-with-python2/libcpp_stdtypes.py
%%DATADIR%%/debugger-with-python2/lldbbridge.py
%%DATADIR%%/debugger-with-python2/misctypes.py
%%DATADIR%%/debugger-with-python2/opencvtypes.py
%%DATADIR%%/debugger-with-python2/pdbbridge.py
%%DATADIR%%/debugger-with-python2/personaltypes.py
%%DATADIR%%/debugger-with-python2/qttypes.py
%%DATADIR%%/debugger-with-python2/stdtypes.py
%%DATADIR%%/debugger-with-python2/utils.py
%%DATADIR%%/debugger/.pylintrc
%%DATADIR%%/debugger/LICENSE.GPL3-EXCEPT
%%DATADIR%%/debugger/README.txt
%%DATADIR%%/debugger/android_stdtypes.py
%%DATADIR%%/debugger/boosttypes.py
%%DATADIR%%/debugger/cdbbridge.py
%%DATADIR%%/debugger/cdbext.pyi
%%DATADIR%%/debugger/creatortypes.py
%%DATADIR%%/debugger/dumper.py
%%DATADIR%%/debugger/gdbbridge.py
%%DATADIR%%/debugger/gdbtracepoint.py
%%DATADIR%%/debugger/libcpp_stdtypes.py
%%DATADIR%%/debugger/lldbbridge.py
%%DATADIR%%/debugger/loadorder.txt
%%DATADIR%%/debugger/misctypes.py
%%DATADIR%%/debugger/opencvtypes.py
%%DATADIR%%/debugger/pdbbridge.py
%%DATADIR%%/debugger/personaltypes.py
%%DATADIR%%/debugger/qttypes.py
%%DATADIR%%/debugger/setup.cfg
%%DATADIR%%/debugger/stdtypes.py
%%DATADIR%%/debugger/utils.py
%%DATADIR%%/debugger/visualize.py
%%DATADIR%%/externaltools/qml.xml
%%DATADIR%%/externaltools/qmlscene.xml
%%DATADIR%%/externaltools/vi.xml
%%DATADIR%%/fonts/SourceCodePro-Bold.ttf
%%DATADIR%%/fonts/SourceCodePro-BoldIt.ttf
%%DATADIR%%/fonts/SourceCodePro-It.ttf
%%DATADIR%%/fonts/SourceCodePro-Medium.ttf
%%DATADIR%%/fonts/SourceCodePro-MediumIt.ttf
%%DATADIR%%/fonts/SourceCodePro-Regular.ttf
%%DATADIR%%/fonts/SourceCodePro.txt
%%DATADIR%%/generic-highlighter/syntax/alert.xml
%%DATADIR%%/generic-highlighter/syntax/autoconf.xml
%%DATADIR%%/generic-highlighter/syntax/bash.xml
%%DATADIR%%/generic-highlighter/syntax/cmake.xml
%%DATADIR%%/generic-highlighter/syntax/comments.xml
%%DATADIR%%/generic-highlighter/syntax/css.xml
%%DATADIR%%/generic-highlighter/syntax/doxygen.xml
%%DATADIR%%/generic-highlighter/syntax/dtd.xml
%%DATADIR%%/generic-highlighter/syntax/gnuassembler.xml
%%DATADIR%%/generic-highlighter/syntax/html.xml
%%DATADIR%%/generic-highlighter/syntax/ini.xml
%%DATADIR%%/generic-highlighter/syntax/java.xml
%%DATADIR%%/generic-highlighter/syntax/javadoc.xml
%%DATADIR%%/generic-highlighter/syntax/json.xml
%%DATADIR%%/generic-highlighter/syntax/licenses/LICENSE.GPLv2
%%DATADIR%%/generic-highlighter/syntax/licenses/LICENSE.GPLv3
%%DATADIR%%/generic-highlighter/syntax/licenses/LICENSE.LGPLv21
%%DATADIR%%/generic-highlighter/syntax/licenses/LICENSE.LGPLv3
%%DATADIR%%/generic-highlighter/syntax/markdown.xml
%%DATADIR%%/generic-highlighter/syntax/modelines.xml
%%DATADIR%%/generic-highlighter/syntax/perl.xml
%%DATADIR%%/generic-highlighter/syntax/powershell.xml
%%DATADIR%%/generic-highlighter/syntax/qdocconf.xml
%%DATADIR%%/generic-highlighter/syntax/qface.xml
%%DATADIR%%/generic-highlighter/syntax/ruby.xml
%%DATADIR%%/generic-highlighter/syntax/spdx-comments.xml
%%DATADIR%%/generic-highlighter/syntax/toml.xml
%%DATADIR%%/generic-highlighter/syntax/valgrind-suppression.xml
%%DATADIR%%/generic-highlighter/syntax/xml.xml
%%DATADIR%%/generic-highlighter/syntax/yacc.xml
%%DATADIR%%/generic-highlighter/syntax/yaml.xml
%%DATADIR%%/glsl/glsl_120.frag
%%DATADIR%%/glsl/glsl_120.vert
%%DATADIR%%/glsl/glsl_120_common.glsl
%%DATADIR%%/glsl/glsl_330.frag
%%DATADIR%%/glsl/glsl_330.vert
%%DATADIR%%/glsl/glsl_330_common.glsl
%%DATADIR%%/glsl/glsl_es_100.frag
%%DATADIR%%/glsl/glsl_es_100.vert
%%DATADIR%%/glsl/glsl_es_100_common.glsl
%%DATADIR%%/indexer_preincludes/QtCore/qconfig.h
%%DATADIR%%/indexer_preincludes/QtCore/qglobal.h
%%DATADIR%%/indexer_preincludes/qglobal.h
%%DATADIR%%/indexer_preincludes/windows.h
%%DATADIR%%/jsonschemas/project.json
%%DATADIR%%/lua-lupdate/README.md
%%DATADIR%%/lua-lupdate/lupdate.lua
%%DATADIR%%/lua-plugins/luals/init.lua
%%DATADIR%%/lua-plugins/luals/luals.lua
%%DATADIR%%/lua-plugins/luatests/guidemo.lua
%%DATADIR%%/lua-plugins/luatests/luatests.lua
%%DATADIR%%/lua-plugins/luatests/qtctest.lua
%%DATADIR%%/lua-plugins/luatests/taskhubhooks.lua
%%DATADIR%%/lua-plugins/luatests/tests.lua
%%DATADIR%%/lua-plugins/luatests/tst_aspectcontainer.lua
%%DATADIR%%/lua-plugins/luatests/tst_fetch.lua
%%DATADIR%%/lua-plugins/luatests/tst_markdownbrowser.lua
%%DATADIR%%/lua-plugins/luatests/tst_taskhub.lua
%%DATADIR%%/lua-plugins/luatests/tst_texteditor.lua
%%DATADIR%%/lua-plugins/luatests/tst_utils.lua
%%DATADIR%%/lua-plugins/rustls/init.lua
%%DATADIR%%/lua-plugins/rustls/rustls.lua
%%DATADIR%%/lua-plugins/tellajoke/tellajoke.lua
%%DATADIR%%/modeleditor/standard.def
%%DATADIR%%/package-manager/LICENSE.conan
%%DATADIR%%/package-manager/auto-setup.cmake
%%DATADIR%%/package-manager/conan.cmake
%%DATADIR%%/package-manager/conan_provider.cmake
%%DATADIR%%/package-manager/maintenance_tool_provider.cmake
%%DATADIR%%/package-manager/maintenance_tool_provider.qs
%%DATADIR%%/qml-type-descriptions/builtins.qmltypes
%%DATADIR%%/qml-type-descriptions/qbs-base.qmltypes
%%DATADIR%%/qml-type-descriptions/qbs-bundle.json
%%DATADIR%%/qml-type-descriptions/qbs.qmltypes
%%DATADIR%%/qml-type-descriptions/qmlproject-bundle.json
%%DATADIR%%/qml-type-descriptions/qmlproject.qmltypes
%%DATADIR%%/qml-type-descriptions/qmlruntime.qmltypes
%%DATADIR%%/qml-type-descriptions/qmltypes-bundle.json
%%DATADIR%%/qml-type-descriptions/qt-labs-folderlistmodel.qmltypes
%%DATADIR%%/qml-type-descriptions/qt-labs-gestures.qmltypes
%%DATADIR%%/qml-type-descriptions/qt-labs-particles.qmltypes
%%DATADIR%%/qml-type-descriptions/qt5QtQuick2-bundle.json
%%DATADIR%%/qml-type-descriptions/qt5QtQuick2ext-macos-bundle.json
%%DATADIR%%/qml-type-descriptions/qt5QtQuick2ext-win-bundle.json
%%DATADIR%%/qml-type-descriptions/qtmobility-connectivity.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmobility-contacts.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmobility-feedback.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmobility-gallery.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmobility-location.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmobility-messaging.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmobility-organizer.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmobility-publishsubscribe.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmobility-sensors.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmobility-serviceframework.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmobility-systeminfo.qmltypes
%%DATADIR%%/qml-type-descriptions/qtmultimediakit.qmltypes
%%DATADIR%%/qml-type-descriptions/qtwebkit.qmltypes
%%DATADIR%%/qmldesigner/EasingCurves.ini
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/AssetDelegate.qml
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/Assets.qml
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/AssetsContextMenu.qml
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/AssetsView.qml
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/ConfirmDeleteFilesDialog.qml
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/ConfirmDeleteFolderDialog.qml
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/ErrorDialog.qml
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/NewEffectDialog.qml
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/NewFolderDialog.qml
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/RenameFolderDialog.qml
%%DATADIR%%/qmldesigner/connectionseditor/BindingsDialog.qml
%%DATADIR%%/qmldesigner/connectionseditor/BindingsDialogForm.qml
%%DATADIR%%/qmldesigner/connectionseditor/BindingsListView.qml
%%DATADIR%%/qmldesigner/connectionseditor/ConnectionsDialog.qml
%%DATADIR%%/qmldesigner/connectionseditor/ConnectionsDialogForm.qml
%%DATADIR%%/qmldesigner/connectionseditor/ConnectionsListView.qml
%%DATADIR%%/qmldesigner/connectionseditor/Main.qml
%%DATADIR%%/qmldesigner/connectionseditor/PropertiesDialog.qml
%%DATADIR%%/qmldesigner/connectionseditor/PropertiesDialogForm.qml
%%DATADIR%%/qmldesigner/connectionseditor/PropertiesListView.qml
%%DATADIR%%/qmldesigner/connectionseditor/TabCheckButton.qml
%%DATADIR%%/qmldesigner/connectionseditor/imports/ConnectionsEditor/Constants.qml
%%DATADIR%%/qmldesigner/connectionseditor/imports/ConnectionsEditor/qmldir
%%DATADIR%%/qmldesigner/contentLibraryImages/camera.png
%%DATADIR%%/qmldesigner/contentLibraryImages/light.png
%%DATADIR%%/qmldesigner/contentLibraryImages/new_flag_triangle.png
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibrary.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryEffectContextMenu.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryEffectsView.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryItem.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryItemContextMenu.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryMaterial.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryMaterialsView.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTabBar.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTabButton.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTexture.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTextureContextMenu.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTexturesView.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryUserView.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/DeleteBundleItemDialog.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/DownloadPane.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/TextureProgressBar.qml
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/UnimportBundleItemDialog.qml
%%DATADIR%%/qmldesigner/designericons.json
%%DATADIR%%/qmldesigner/designsystem/Main.qml
%%DATADIR%%/qmldesigner/designsystem/imports/DesignSystemControls/BindingIndicator.qml
%%DATADIR%%/qmldesigner/designsystem/imports/DesignSystemControls/MenuItem.qml
%%DATADIR%%/qmldesigner/designsystem/imports/DesignSystemControls/SpinBox.qml
%%DATADIR%%/qmldesigner/designsystem/imports/DesignSystemControls/SpinBoxIndicator.qml
%%DATADIR%%/qmldesigner/designsystem/imports/DesignSystemControls/SpinBoxInput.qml
%%DATADIR%%/qmldesigner/designsystem/imports/DesignSystemControls/Switch.qml
%%DATADIR%%/qmldesigner/designsystem/imports/DesignSystemControls/TextField.qml
%%DATADIR%%/qmldesigner/designsystem/imports/DesignSystemControls/qmldir
%%DATADIR%%/qmldesigner/devicemanager/Main.qml
%%DATADIR%%/qmldesigner/devicemanager/images/GetItOnGooglePlay_Badge_Web_color_English.png
%%DATADIR%%/qmldesigner/devicemanager/imports/DeviceManagerControls/ButtonInput.qml
%%DATADIR%%/qmldesigner/devicemanager/imports/DeviceManagerControls/Dropdown.qml
%%DATADIR%%/qmldesigner/devicemanager/imports/DeviceManagerControls/Switch.qml
%%DATADIR%%/qmldesigner/devicemanager/imports/DeviceManagerControls/ToolbarButton.qml
%%DATADIR%%/qmldesigner/devicemanager/imports/DeviceManagerControls/qmldir
%%DATADIR%%/qmldesigner/edit3dQmlSource/BakeLightsProgressDialog.qml
%%DATADIR%%/qmldesigner/edit3dQmlSource/BakeLightsSetupDialog.qml
%%DATADIR%%/qmldesigner/edit3dQmlSource/CameraSpeedConfigurationDialog.qml
%%DATADIR%%/qmldesigner/edit3dQmlSource/SnapConfigurationDialog.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/AddPropertyForm.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/BlurHelper.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/CodeEditorFooter.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/CodeEditorHeader.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/CodeEditorTabs.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/CodeEditorUniformsView.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ColumnChooser.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ConfirmClearAllDialog.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ConfirmForm.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/EffectComposer.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/EffectComposerPreview.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/EffectComposerTopBar.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/EffectCompositionNode.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/EffectCompositionNodeUniform.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/EffectNode.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/EffectNodesComboBox.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/HeaderColumnController.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/PreviewError.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/PreviewImagesComboBox.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/SaveAsDialog.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/SaveChangesDialog.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ValueBool.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ValueChannel.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ValueColor.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ValueDefine.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ValueFloat.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ValueImage.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ValueInt.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ValueVec2.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ValueVec3.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/ValueVec4.qml
%%DATADIR%%/qmldesigner/effectComposerQmlSources/images/preview0.png
%%DATADIR%%/qmldesigner/effectComposerQmlSources/images/preview1.png
%%DATADIR%%/qmldesigner/effectComposerQmlSources/images/preview2.png
%%DATADIR%%/qmldesigner/effectComposerQmlSources/images/preview3.png
%%DATADIR%%/qmldesigner/effectComposerQmlSources/images/preview4.png
%%DATADIR%%/qmldesigner/feedback/FeedbackPopup.qml
%%DATADIR%%/qmldesigner/feedback/star_empty.png
%%DATADIR%%/qmldesigner/feedback/star_empty@2x.png
%%DATADIR%%/qmldesigner/feedback/star_filled.png
%%DATADIR%%/qmldesigner/feedback/star_filled@2x.png
%%DATADIR%%/qmldesigner/formatconfiguration.json
%%DATADIR%%/qmldesigner/insight/Main.qml
%%DATADIR%%/qmldesigner/itemLibrary/images/ambient-sound-16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/ambient-sound-24.png
%%DATADIR%%/qmldesigner/itemLibrary/images/ambient-sound-24@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/animated-image-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/animated-image-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/animated-image-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/animatedsprite-loading.png
%%DATADIR%%/qmldesigner/itemLibrary/images/areaseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/areaseries-polar-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/attractor-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/attractor-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/attractor-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-engine-16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-engine-24.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-engine-24@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-listener-16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-listener-24.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-listener-24@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-output-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-output-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-output-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-room-16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-room-24.png
%%DATADIR%%/qmldesigner/itemLibrary/images/audio-room-24@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/axishelper.png
%%DATADIR%%/qmldesigner/itemLibrary/images/axishelper16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/axishelper@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/bars3d-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/bars3d-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/barseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/blurred_sphere.png
%%DATADIR%%/qmldesigner/itemLibrary/images/border-image-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/border-image-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/border-image-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/boxplotseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/boxshape.png
%%DATADIR%%/qmldesigner/itemLibrary/images/boxshape16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/boxshape@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/brightness-contrast-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/brightness-contrast-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/brightness-contrast-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/busyindicator-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/busyindicator-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/busyindicator-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/button-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/button-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/button-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/camera.png
%%DATADIR%%/qmldesigner/itemLibrary/images/camera16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/camera@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/capsuleshape.png
%%DATADIR%%/qmldesigner/itemLibrary/images/capsuleshape16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/capsuleshape@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/charactercontroller.png
%%DATADIR%%/qmldesigner/itemLibrary/images/charactercontroller16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/charactercontroller@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/chartview-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/checkbox-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/checkbox-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/checkbox-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/color_table.png
%%DATADIR%%/qmldesigner/itemLibrary/images/color_table2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/colourize-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/colourize-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/colourize-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/column-layouts-icon-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/column-layouts-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/column-layouts-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/column-positioner-icon-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/column-positioner-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/column-positioner-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/combobox-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/combobox-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/combobox-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/component-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/component-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/component-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cone.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cone16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cone@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/control-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/control-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/control-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/convexmeshshape.png
%%DATADIR%%/qmldesigner/itemLibrary/images/convexmeshshape16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/convexmeshshape@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cube.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cube16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cube@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cubemaptexture.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cubemaptexture16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cubemaptexture@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/custom-border-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/custom-border-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/custom-border-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/custom-rectangle-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/custom-rectangle-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/custom-rectangle-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/custommaterial.png
%%DATADIR%%/qmldesigner/itemLibrary/images/custommaterial16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/custommaterial@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cylinder.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cylinder16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/cylinder@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/debugsettings.png
%%DATADIR%%/qmldesigner/itemLibrary/images/debugsettings16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/debugsettings@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/debugview.png
%%DATADIR%%/qmldesigner/itemLibrary/images/debugview16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/debugview@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/default3d.png
%%DATADIR%%/qmldesigner/itemLibrary/images/default3d16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/default3d@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/delaybutton-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/delaybutton-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/delaybutton-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/desaturation-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/desaturation-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/desaturation-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/dial-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/dial-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/dial-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/displace-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/displace-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/displace-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/drop-area-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/drop-area-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/drop-area-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/drop-shadow-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/drop-shadow-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/drop-shadow-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/droplet.png
%%DATADIR%%/qmldesigner/itemLibrary/images/dummy.png
%%DATADIR%%/qmldesigner/itemLibrary/images/dummy16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/dummy@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/dynamicrigidbody.png
%%DATADIR%%/qmldesigner/itemLibrary/images/dynamicrigidbody16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/dynamicrigidbody@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/effect.png
%%DATADIR%%/qmldesigner/itemLibrary/images/effect16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/effect@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/ellipse-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/ellipse-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/ellipse-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/emit-burst-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/emit-burst-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/emit-burst-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/emitter-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/emitter-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/emitter-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/extended-view3d-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/extended-view3d-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/extended-view3d-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/extendedsceneenvironment.png
%%DATADIR%%/qmldesigner/itemLibrary/images/extendedsceneenvironment16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/extendedsceneenvironment@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/fast-blur-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/fast-blur-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/fast-blur-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/fileinstancing.png
%%DATADIR%%/qmldesigner/itemLibrary/images/fileinstancing16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/fileinstancing@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/flickable-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/flickable-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/flickable-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/flow-positioner-icon-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/flow-positioner-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/flow-positioner-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/focusscope-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/focusscope-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/focusscope-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/fog.png
%%DATADIR%%/qmldesigner/itemLibrary/images/fog16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/fog@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/frame-animation-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/frame-animation-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/frame-animation-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/frame-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/frame-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/frame-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gamma-adjust-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gamma-adjust-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gamma-adjust-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/glow-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/glow-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/glow-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gravity-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gravity-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gravity-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/grid-layouts-icon-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/grid-layouts-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/grid-layouts-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/grid-positioner-icon-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/grid-positioner-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/grid-positioner-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gridgeometry.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gridgeometry16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gridgeometry@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gridview-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gridview-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/gridview-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/group-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/group-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/group-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/group.png
%%DATADIR%%/qmldesigner/itemLibrary/images/group16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/group@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/groupbox-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/groupbox-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/groupbox-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/heightfieldgeometry.png
%%DATADIR%%/qmldesigner/itemLibrary/images/heightfieldgeometry16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/heightfieldgeometry@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/heightfieldshape.png
%%DATADIR%%/qmldesigner/itemLibrary/images/heightfieldshape16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/heightfieldshape@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/horizontalbarseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/horizontalpercentbarseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/horizontalstackedbarseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/hue-saturation-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/hue-saturation-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/hue-saturation-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/image-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/image-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/image-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/infinitegrid.png
%%DATADIR%%/qmldesigner/itemLibrary/images/infinitegrid16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/infinitegrid@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/inner-shadow-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancelist.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancelist16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancelist@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancelistentry.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancelistentry16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancelistentry@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancemodel.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancemodel16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancemodel@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancerepeater.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancerepeater16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/instancerepeater@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/iso-icons-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/iso-icons-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/iso-icons-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arc-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arc-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arc-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-arc-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-arc-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-arc-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-down-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-down-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-down-left-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-down-left-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-down-right-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-down-right-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-left-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-left-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-left-down-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-left-down-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-left-up-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-left-up-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-right-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-right-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-right-down-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-right-down-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-right-up-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-right-up-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-up-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-up-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-up-left-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-up-left-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-up-right-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-arrow-up-right-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-flippable-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-flippable-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-flippable-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-pie-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-pie-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-pie-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-svg-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-svg-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-svg-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-triangle-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-triangle-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/item-triangle-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/itemdelegate-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/itemdelegate-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/itemdelegate-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/joint.png
%%DATADIR%%/qmldesigner/itemLibrary/images/joint16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/joint@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/keyframe-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/label-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/label-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/label-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-and-operator-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-and-operator-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-and-operator-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-bidirectional-binding-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-bidirectional-binding-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-bidirectional-binding-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-min-max-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-min-max-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-min-max-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-not-operator-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-not-operator-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-not-operator-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-or-operator-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-or-operator-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-or-operator-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-range-mapper-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-range-mapper-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-range-mapper-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-string-mapper-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-string-mapper-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lc-string-mapper-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/levels-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/levels-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/levels-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightdirectional.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightdirectional16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightdirectional@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightmapper.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightmapper16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightmapper@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightpoint.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightpoint16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightpoint@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightspot.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightspot16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lightspot@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/line-particle-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/line-particle-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/line-particle-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lineseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lineseries-polar-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/listview-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/listview-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/listview-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/loader-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/loader-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/loader-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/loader3d.png
%%DATADIR%%/qmldesigner/itemLibrary/images/loader3d16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/loader3d@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lodmanager.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lodmanager16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lodmanager@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lookatnode.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lookatnode16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/lookatnode@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/material.png
%%DATADIR%%/qmldesigner/itemLibrary/images/material16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/material@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/media-player-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/media-player-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/media-player-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/model-blend-particle-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/model-blend-particle-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/model-blend-particle-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/model-particle-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/model-particle-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/model-particle-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/model-shape-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/model-shape-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/model-shape-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/model16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/morphtarget.png
%%DATADIR%%/qmldesigner/itemLibrary/images/morphtarget16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/morphtarget@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/mouse-area-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/mouse-area-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/mouse-area-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/opacity-mask-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/opacity-mask-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/opacity-mask-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/orbitcameracontroller.png
%%DATADIR%%/qmldesigner/itemLibrary/images/orbitcameracontroller16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/orbitcameracontroller@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/page-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/page-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/page-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/pageindicator-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/pageindicator-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/pageindicator-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/pane-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/pane-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/pane-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/particle-custom-shape-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/particle-custom-shape-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/particle-custom-shape-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/particle-shape-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/particle-shape-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/particle-shape-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/particle-system-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/particle-system-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/particle-system-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/pathview-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/pathview-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/pathview-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/percentbarseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/physicsmaterial.png
%%DATADIR%%/qmldesigner/itemLibrary/images/physicsmaterial16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/physicsmaterial@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/physicsworld.png
%%DATADIR%%/qmldesigner/itemLibrary/images/physicsworld16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/physicsworld@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/pieseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/plane.png
%%DATADIR%%/qmldesigner/itemLibrary/images/plane16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/plane@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/planeshape.png
%%DATADIR%%/qmldesigner/itemLibrary/images/planeshape16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/planeshape@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/point-rotator-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/point-rotator-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/point-rotator-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/polygon-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/polygon-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/polygon-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/proceduralskytexturedata.png
%%DATADIR%%/qmldesigner/itemLibrary/images/proceduralskytexturedata16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/proceduralskytexturedata@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/progressbar-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/progressbar-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/progressbar-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/radiobutton-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/radiobutton-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/radiobutton-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/rain.png
%%DATADIR%%/qmldesigner/itemLibrary/images/rangeslider-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/rangeslider-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/rangeslider-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/rect-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/rect-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/rect-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/reflectionProbe.png
%%DATADIR%%/qmldesigner/itemLibrary/images/reflectionProbe16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/reflectionProbe@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/repeater-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/repeater-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/repeater-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/repeater3d.png
%%DATADIR%%/qmldesigner/itemLibrary/images/repeater3d16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/repeater3d@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/repeller-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/repeller-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/repeller-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/resourceloader.png
%%DATADIR%%/qmldesigner/itemLibrary/images/resourceloader16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/resourceloader@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/ripple.png
%%DATADIR%%/qmldesigner/itemLibrary/images/roundbutton-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/roundbutton-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/roundbutton-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/row-layouts-icon-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/row-layouts-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/row-layouts-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/row-positioner-icon-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/row-positioner-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/row-positioner-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/runtimeloader.png
%%DATADIR%%/qmldesigner/itemLibrary/images/runtimeloader16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/runtimeloader@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scale-affector-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scale-affector-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scale-affector-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scatter3d-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scatter3d-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scatterseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scatterseries-polar-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scene.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scene16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scene@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scrollview-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scrollview-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/scrollview-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/shadercommand.png
%%DATADIR%%/qmldesigner/itemLibrary/images/shadercommand16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/shadercommand@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/shaderutil.png
%%DATADIR%%/qmldesigner/itemLibrary/images/shaderutil16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/shaderutil@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/skeleton.png
%%DATADIR%%/qmldesigner/itemLibrary/images/skeleton16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/skeleton@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/skin.png
%%DATADIR%%/qmldesigner/itemLibrary/images/skin16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/skin@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/slider-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/slider-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/slider-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/smoke2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/smoke_sprite.png
%%DATADIR%%/qmldesigner/itemLibrary/images/smoke_sprite2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/snowflake.png
%%DATADIR%%/qmldesigner/itemLibrary/images/spatial-audio-16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/spatial-audio-24.png
%%DATADIR%%/qmldesigner/itemLibrary/images/spatial-audio-24@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sphere.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sphere16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sphere@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sphereshape.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sphereshape16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sphereshape@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/spinbox-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/spinbox-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/spinbox-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/splash7.png
%%DATADIR%%/qmldesigner/itemLibrary/images/splineseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/splineseries-polar-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sprite-particle-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sprite-particle-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sprite-particle-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sprite-sequence-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sprite-sequence-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/sprite-sequence-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/stack-layouts-icon-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/stack-layouts-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/stack-layouts-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/stackedbarseries-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/stackview-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/stackview-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/stackview-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/star-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/star-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/star-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/staticrigidbody.png
%%DATADIR%%/qmldesigner/itemLibrary/images/staticrigidbody16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/staticrigidbody@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/surface3d-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/surface3d-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/swipeview-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/swipeview-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/swipeview-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/switch-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/switch-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/switch-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/target-direction-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/target-direction-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/target-direction-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-edit-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-edit-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-edit-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-input-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-input-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/text-input-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/textarea-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/textarea-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/textarea-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/textfield-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/textfield-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/textfield-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/texture.png
%%DATADIR%%/qmldesigner/itemLibrary/images/texture16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/texture@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/theshold-24px@2.png
%%DATADIR%%/qmldesigner/itemLibrary/images/threshold-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/threshold-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/timeline-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/timeline-animation-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/timer-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/timer-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/timer-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/toolbar-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/toolbar-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/toolbar-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/toolbutton-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/toolbutton-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/toolbutton-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/toolseparator-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/toolseparator-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/toolseparator-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/trail-emitter-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/trail-emitter-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/trail-emitter-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/trianglemeshshape.png
%%DATADIR%%/qmldesigner/itemLibrary/images/trianglemeshshape16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/trianglemeshshape@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/triggerbody.png
%%DATADIR%%/qmldesigner/itemLibrary/images/triggerbody16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/triggerbody@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/tumbler-icon.png
%%DATADIR%%/qmldesigner/itemLibrary/images/tumbler-icon16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/tumbler-icon@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/vector-direction-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/vector-direction-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/vector-direction-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/video-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/video-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/video-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/video-output-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/video-output-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/video-output-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/view3D.png
%%DATADIR%%/qmldesigner/itemLibrary/images/view3D16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/view3D@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/wander-16px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/wander-24px.png
%%DATADIR%%/qmldesigner/itemLibrary/images/wander-24px@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/images/wasdcontroller.png
%%DATADIR%%/qmldesigner/itemLibrary/images/wasdcontroller16.png
%%DATADIR%%/qmldesigner/itemLibrary/images/wasdcontroller@2x.png
%%DATADIR%%/qmldesigner/itemLibrary/multimedia.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/qml.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/qtcharts.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/qtgraphs.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/qtquickcontrols2.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/qtquicklayouts.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/qtquickultralitecomponents.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/qtquickultraliteextras.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/qtquickultralitelayers.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/qtsaferenderer.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/qtvirtualkeyboard.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/quick.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/quick3d.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/quick3d_assetutils.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/quick3d_effects.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/quick3d_helpers.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/quick3d_particles3d.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/quick3d_physics.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/quick3d_spatialaudio.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/source/AreaSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/BarSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/Bars3D.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/BoxPlotSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/Graphs2DAreaSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/Graphs2DBarSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/Graphs2DLineSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/Graphs2DPieSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/Graphs2DScatterSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/Graphs2DSplineSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/HorizontalBarSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/HorizontalPercentBarSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/HorizontalStackedBarSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/LineSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/PercentBarSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/PieSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/PolarAreaSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/PolarLineSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/PolarScatterSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/PolarSplineSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/Scatter3D.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/ScatterSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/SplineSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/StackedBarSeries.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/Surface3D.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/component.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/component3d.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/custom_material_default_shader.frag
%%DATADIR%%/qmldesigner/itemLibrary/source/effect_default_shader.frag
%%DATADIR%%/qmldesigner/itemLibrary/source/effect_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/extendedview3D_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/gridview.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/listview.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_clouds.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_dust.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_exhaust.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_fire.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_heavyrain.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_heavyrain_tirespray.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_lightrain.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_lightrain_tirespray.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_rainmist.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_snow.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particleeffect_steam.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particlesystem_animatedsprite_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particlesystem_attractor_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particlesystem_burst_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particlesystem_modelblend_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particlesystem_modelshape_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particlesystem_particletrail_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particlesystem_sprite_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particlesystem_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/particlesystem_wander_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/pathview.qml
%%DATADIR%%/qmldesigner/itemLibrary/source/view3D_template.qml
%%DATADIR%%/qmldesigner/itemLibrary/studiocomponents.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/studiodesigneffects.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/studioeffects.metainfo
%%DATADIR%%/qmldesigner/itemLibrary/studiologichelper.metainfo
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/AddModuleView.qml
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/ItemsView.qml
%%DATADIR%%/qmldesigner/landingpage/content/App.qml
%%DATADIR%%/qmldesigner/landingpage/content/CustomCheckBox.ui.qml
%%DATADIR%%/qmldesigner/landingpage/content/InstallQdsStatusBlock.ui.qml
%%DATADIR%%/qmldesigner/landingpage/content/PageText.ui.qml
%%DATADIR%%/qmldesigner/landingpage/content/ProjectInfoStatusBlock.ui.qml
%%DATADIR%%/qmldesigner/landingpage/content/PushButton.ui.qml
%%DATADIR%%/qmldesigner/landingpage/content/Screen01.ui.qml
%%DATADIR%%/qmldesigner/landingpage/content/logo.png
%%DATADIR%%/qmldesigner/landingpage/content/logo@2x.png
%%DATADIR%%/qmldesigner/landingpage/imports/LandingPage/+QDS_theming/Colors.qml
%%DATADIR%%/qmldesigner/landingpage/imports/LandingPage/Colors.qml
%%DATADIR%%/qmldesigner/landingpage/imports/LandingPage/Values.qml
%%DATADIR%%/qmldesigner/landingpage/imports/LandingPage/qmldir
%%DATADIR%%/qmldesigner/landingpage/landingpage.qmlproject
%%DATADIR%%/qmldesigner/landingpage/main.qml
%%DATADIR%%/qmldesigner/landingpage/mockimports/LandingPageApi/LandingPageApi.qml
%%DATADIR%%/qmldesigner/landingpage/mockimports/LandingPageApi/qmldir
%%DATADIR%%/qmldesigner/landingpage/mockimports/LandingPageTheme/Dummy.qml
%%DATADIR%%/qmldesigner/landingpage/mockimports/LandingPageTheme/qmldir
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/ChooseMaterialProperty.qml
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/ItemBorder.qml
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialBrowser.qml
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialBrowserContextMenu.qml
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialBrowserItemName.qml
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialItem.qml
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/TextureBrowserContextMenu.qml
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/TextureItem.qml
%%DATADIR%%/qmldesigner/misc/BusyIndicator.qml
%%DATADIR%%/qmldesigner/newprojectdialog/NewProjectDialog.qml
%%DATADIR%%/qmldesigner/newprojectdialog/image/logo.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/logo@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-basic.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-basic@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-default.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-default@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-error.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-error@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-fusion.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-fusion@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-imagine.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-imagine@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-macos.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-macos@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_dark.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_dark@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_light.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-material_light@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_dark.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_dark@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_light.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_light@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_system.png
%%DATADIR%%/qmldesigner/newprojectdialog/image/style-universal_system@2x.png
%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/Details.qml
%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/DialogValues.qml
%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/PopupDialog.qml
%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/PopupDialogButton.qml
%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/PopupDialogButtonBox.qml
%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/PresetView.qml
%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/Styles.qml
%%DATADIR%%/qmldesigner/newprojectdialog/imports/NewProjectDialog/qmldir
%%DATADIR%%/qmldesigner/newprojectdialog/imports/ProjectType/DefaultProject.qml
%%DATADIR%%/qmldesigner/newprojectdialog/imports/ProjectType/qmldir
%%DATADIR%%/qmldesigner/projectstorage/fake.qmltypes
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/3DItemFilterComboBoxEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/BooleanEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/ColorEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/FontEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/ImageEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/IntEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RealEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RectangleEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/StringEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/TemplateTypes.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/TextEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/UrlEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/Vector2dEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/Vector3dEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/PropertyTemplates/Vector4dEditorTemplate.template
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QML/QtObjectPane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/Qt/SafeRenderer/SafeImagePane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/Qt/SafeRenderer/SafePicturePane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/Qt/SafeRenderer/SafeTextPane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtCharts/ChartViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtGraphs/Bars3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtGraphs/GraphsCameraSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtGraphs/GraphsSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtGraphs/GraphsViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtGraphs/Scatter3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtGraphs/Surface3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/AudioOutputSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/AudioSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/MediaPlayerSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/MediaPlayerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/VideoOutputSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/VideoSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtMultimedia/VideoSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQml/ConnectionsSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQml/QtObjectPane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQml/TimerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AlignDistributeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AnimatedImageSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AnimatedSpriteSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AnimationSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/AnimationTargetSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/BorderImageSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ColorAnimationSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ConnectionsSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/AbstractButtonSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/BusyIndicatorSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/ButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/CheckBoxSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/CheckDelegateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/ComboBoxSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/ControlSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/DelayButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/DialSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/DialogSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/DrawerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/FrameSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/GroupBoxSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/ItemDelegateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/LabelSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/PageIndicatorSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/PageSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/PaneSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/PopupSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/ProgressBarSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/RadioButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/RadioDelegateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/RangeSliderSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/RoundButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/ScrollViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/SliderSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/SpinBoxSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/StackViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/SwipeDelegateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/SwipeViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/SwitchDelegateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/SwitchSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/TabBarSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/TabButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/TextAreaSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/TextFieldSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/ToolBarSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/ToolButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/ToolSeparatorSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/Basic/TumblerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/BusyIndicatorSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckBoxSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckDelegateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ContainerSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ControlSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ControlSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialogSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DrawerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/FrameSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/IconSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/InsetSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/LabelSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioDelegateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SliderSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/StackViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeDelegateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwitchDelegateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwitchSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextAreaSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextFieldSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolBarSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolButtonSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/EffectsSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/FlickableSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/FlipableSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/GridViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ImageSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutProperties.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/ColumnLayoutSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/GridLayoutSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/RowLayoutSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/StackLayoutSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/LoaderSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/NumberAnimationSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ParallelAnimationSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/PathViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/PauseAnimationSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/PropertyActionSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/PropertyAnimationSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/QtObjectPane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/RepeaterSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/RowSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ScriptActionSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/ScriptSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/SequentialAnimationSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/StateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/ArcArrowSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/ArcItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/BevelSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/BorderItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/BorderModeComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/CapComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/DashPatternEditor.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/EllipseItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/FlipableItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/GroupItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/PieItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/RectangleItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/RegularPolygonItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/StarItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/StraightArrowSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/StrokeDetailsSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/SvgPathItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/TextItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Components/TriangleItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/DesignEffects/DesignEffectPane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/BlendEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/BrightnessContrastEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/ColorOverlayEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/ColorizeEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/DesaturationEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/DirectionalBlurEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/DisplaceEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/DropShadowEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/FastBlurEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/GammaAdjustEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/GaussianBlurEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/GlowEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/HueSaturationEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/InnerShadowEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/LevelAdjustEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/MaskedBlurEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/OpacityMaskEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/RadialBlurEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/RecursiveBlurEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/ThresholdMaskEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/Effects/ZoomBlurEffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/LogicHelper/AndOperatorSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/LogicHelper/BidirectionalBindingSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/LogicHelper/MinMaxMapperSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/LogicHelper/NotOperatorSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/LogicHelper/OrOperatorSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/LogicHelper/RangeMapperSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Studio/LogicHelper/StringMapperSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Window/WindowSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/WindowSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/project.qmlproject
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/AbstractLightSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/AssetUtils/NodeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/AssetUtils/RuntimeLoaderSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/AssetUtils/RuntimeLoaderSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/BakedLightmapSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/BakedLightmapSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/BufferInputSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/BufferInputSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/BufferSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/BufferSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/CameraSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/CustomCameraSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/CustomMaterialSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/CustomMaterialSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/DebugSettingsSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/DebugSettingsSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/DefaultMaterialSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/DefaultMaterialSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/DirectionalLightSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/DirectionalLightSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/EffectSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/EffectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/AdditiveColorGradientSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/AdditiveColorGradientSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/BlurSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/BlurSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/BrushStrokesSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/BrushStrokesSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/ChromaticAberrationSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/ChromaticAberrationSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/ColorMasterSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/ColorMasterSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/DepthOfFieldHQBlurSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/DepthOfFieldHQBlurSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/DesaturateSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/DesaturateSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/DistortionRippleSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/DistortionRippleSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/DistortionSphereSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/DistortionSphereSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/DistortionSpiralSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/DistortionSpiralSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/EdgeDetectSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/EdgeDetectSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/EmbossSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/EmbossSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/FlipSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/FlipSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/FxaaSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/FxaaSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/GaussianBlurSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/GaussianBlurSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/HDRBloomTonemapSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/HDRBloomTonemapSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/MotionBlurSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/MotionBlurSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/SCurveTonemapSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/SCurveTonemapSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/ScatterSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/ScatterSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/TiltShiftSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/TiltShiftSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/VignetteSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Effects/VignetteSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/FileInstancingSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/FileInstancingSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/FogSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/FogSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/FrustumCameraSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/FrustumCameraSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/AxisHelperSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/AxisHelperSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/DebugViewSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/DebugViewSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/ExtendedSceneEnvironmentSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/ExtendedSceneEnvironmentSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/GridGeometrySection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/GridGeometrySpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/HeightFieldGeometrySection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/HeightFieldGeometrySpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/InfiniteGridSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/InfiniteGridSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/InstanceModelSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/InstanceModelSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/InstanceRepeaterSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/InstanceRepeaterSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/LodManagerSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/LodManagerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/LookAtNodeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/LookAtNodeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/NodeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/OrbitCameraControllerSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/OrbitCameraControllerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/ProceduralSkyTextureDataSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/ProceduralSkyTextureDataSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/Repeater3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/WasdControllerSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Helpers/WasdControllerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/InstanceListEntrySection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/InstanceListEntrySpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/InstanceListSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/InstanceListSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/InstancingSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/JointSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/JointSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/LightmapperSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/LightmapperSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Loader3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Loader3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Material/ColorEditorPopup.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Material/Preview.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Material/Toolbar.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Material/TopSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/MaterialPane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/MaterialSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/ModelSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/ModelSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/MorphTargetSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/MorphTargetSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/NodeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/NodeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Object3DPane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Object3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/OrthographicCameraSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/OrthographicCameraSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Affector3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Affector3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Attractor3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Attractor3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/DynamicBurst3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/DynamicBurst3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/EmitBurst3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/EmitBurst3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Gravity3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Gravity3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/LineParticle3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/LineParticle3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ModelBlendParticle3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ModelBlendParticle3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ModelParticle3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ModelParticle3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/NodeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/NodeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Particle3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Particle3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ParticleCustomShape3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ParticleCustomShape3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ParticleEmitter3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ParticleEmitter3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ParticleModelShape3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ParticleModelShape3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ParticleShape3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ParticleShape3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ParticleSystem3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ParticleSystem3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/PointRotator3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/PointRotator3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Repeller3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Repeller3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ScaleAffector3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/ScaleAffector3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/SpriteParticle3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/SpriteParticle3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/SpriteSequence3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/SpriteSequence3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/TargetDirection3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/TargetDirection3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/TrailEmitter3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/TrailEmitter3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/VectorDirection3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/VectorDirection3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Wander3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Particles3D/Wander3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/PassSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/PassSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/PerspectiveCameraSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/PerspectiveCameraSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/BoxShapeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/BoxShapeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/CapsuleShapeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/CapsuleShapeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/CharacterControllerSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/CharacterControllerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/CollisionShapeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/ConvexMeshShapeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/ConvexMeshShapeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/DynamicRigidBodySection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/DynamicRigidBodySpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/HeightFieldShapeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/HeightFieldShapeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/NodeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/PhysicsBodySection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/PhysicsMaterialSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/PhysicsMaterialSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/PhysicsNodeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/PhysicsWorldSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/PhysicsWorldSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/PlaneShapeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/SphereShapeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/SphereShapeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/StaticRigidBodySpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/TriangleMeshShapeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/TriangleMeshShapeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Physics/TriggerBodySpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/PointLightSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/PointLightSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/PrincipledMaterialSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/PrincipledMaterialSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/ReflectionProbeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/ReflectionProbeSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Repeater3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Repeater3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/ResourceLoaderSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/ResourceLoaderSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SceneEnvironmentSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SceneEnvironmentSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SetUniformValueSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SetUniformValueSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/ShaderSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/ShaderSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/ShadowSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SkinSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SkinSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AmbientSoundSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AmbientSoundSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AudioEngineSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AudioEngineSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AudioListenerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AudioRoomSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AudioRoomSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/NodeSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/SpatialSoundSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/SpatialSoundSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpecularGlossyMaterialSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpecularGlossyMaterialSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpotLightSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpotLightSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Texture/ToolBar.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Texture/TopSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/TextureInputSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/TextureInputSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/TexturePane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/TextureSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/View3DSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/View3DSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/propertyGroups.json
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuickUltralite/Extras/AnimatedSpriteDirectorySpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuickUltralite/Extras/ColorizedImageSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuickUltralite/Extras/StaticTextSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuickUltralite/Layers/ApplicationScreensSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuickUltralite/Layers/ImageLayerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuickUltralite/Layers/ItemLayerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuickUltralite/Layers/ScreenSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuickUltralite/Layers/SpriteLayerSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuickUltralite/Studio/Components/ArcItemSpecifics.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/RegExpValidator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AbstractButton.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ActionIndicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AlignmentHorizontalButtons.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AlignmentVerticalButtons.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AnchorButtons.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/BoolButtonRowButton.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Button.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRow.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRow2.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRowButton.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/CharacterSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/CheckBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorEditor.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorEditorPopup.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorLogic.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentButton.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Constants.js
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ControlLabel.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Controller.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/CornerRadiusSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/DoubleSpinBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/DynamicPropertiesSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/EditableListView.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExpandingSpacer.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExpressionTextField.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExtendedFunctionLogic.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FlagsComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FlickableGeometrySection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FlickableSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontExtrasSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontStyleButtons.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientLine.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPresetList.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPresetTabContent.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPropertySpinBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/HorizontalScrollBar.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/IconButton.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/IconIndicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/IconLabel.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ImagePreviewTooltipArea.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ImageSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/InsightSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ItemFilterComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Label.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LineEdit.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LinkIndicator2D.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ListViewComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/MarginSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/MultiIconLabel.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginControl.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginIndicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginSelector.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PaddingSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PopupLabel.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PropertyEditorPane.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PropertyEditorToolBar.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PropertyLabel.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PropertySearchBar.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/RoundedPanel.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ScrollView.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SecondColumnLayout.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Section.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SectionLayout.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Spacer.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SpinBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/TextExtrasSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/TextInputSection.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ToolTipArea.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/UrlChooser.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/VerticalScrollBar.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/checkers.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/down-arrow.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/down-arrow@2x.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/expression.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/expression@2x.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon-gradient-list.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon_color_conical_gradient.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon_color_gradient.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon_color_none.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon_color_radial_gradient.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/icon_color_solid.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/placeholder.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/placeholder@2x.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/submenu.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/submenu@2x.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/up-arrow.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/images/up-arrow@2x.png
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/qmldir
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/AbstractButton.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ActionIndicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Button.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ButtonGroup.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ButtonRow.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/CheckBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/CheckIndicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ColorEditor.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ComboBoxInput.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ContextMenu.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/CustomComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Dialog.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/DialogButton.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/DialogButtonBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/FilterComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/IconIndicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/IconTextButton.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Indicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/InfinityLoopIndicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ItemDelegate.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator2D.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator3D.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator3DComponent.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Menu.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuItem.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuItemWithIcon.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuSeparator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/PopupDialog.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ProgressBar.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RadioButton.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSliderPopup.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBoxIndicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBoxInput.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ScrollBar.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ScrollView.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SearchBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SecondColumnLayout.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Section.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SectionLabel.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SectionLayout.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Slider.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SliderPopup.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SortFilterModel.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SpinBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SpinBoxIndicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SpinBoxInput.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/SplitView.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Switch.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TabBar.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TabButton.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TextArea.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TextField.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ToolTip.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ToolTipArea.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TopLevelComboBox.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TransientScrollBar.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TranslationIndicator.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/impl/ColorEditorPopup.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/impl/ColorPalette.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/impl/ColorPicker.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/impl/HueSlider.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/impl/LuminanceSlider.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/impl/OpacitySlider.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/qmldir
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ConnectionPopupButtonStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ConnectionPopupControlStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/Constants.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ControlStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/DefaultStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/MicroToolbarButtonStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/PrimaryButtonStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/SearchControlStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/StatesControlStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/StatusBarButtonStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/StatusBarControlStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ToolbarStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/TopToolbarButtonStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/Values.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ViewBarButtonStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ViewBarControlStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ViewStyle.qml
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/icons.ttf
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/qmldir
%%DATADIR%%/qmldesigner/qt4mcu/metadata.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-14.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-17.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-18.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-19.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-20.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-21.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-22.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-23.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-24.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-25.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-26.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-27.qml
%%DATADIR%%/qmldesigner/qt4mcu/qul-28.qml
%%DATADIR%%/qmldesigner/scriptseditor/imports/ScriptsEditor/ActionsComboBox.qml
%%DATADIR%%/qmldesigner/scriptseditor/imports/ScriptsEditor/ExpressionBuilder.qml
%%DATADIR%%/qmldesigner/scriptseditor/imports/ScriptsEditor/MyListViewDelegate.qml
%%DATADIR%%/qmldesigner/scriptseditor/imports/ScriptsEditor/MyTreeViewDelegate.qml
%%DATADIR%%/qmldesigner/scriptseditor/imports/ScriptsEditor/Pill.qml
%%DATADIR%%/qmldesigner/scriptseditor/imports/ScriptsEditor/ScriptEditorForm.qml
%%DATADIR%%/qmldesigner/scriptseditor/imports/ScriptsEditor/StatementEditor.qml
%%DATADIR%%/qmldesigner/scriptseditor/imports/ScriptsEditor/SuggestionPopup.qml
%%DATADIR%%/qmldesigner/scriptseditor/imports/ScriptsEditor/qmldir
%%DATADIR%%/qmldesigner/stateseditor/Main.qml
%%DATADIR%%/qmldesigner/stateseditor/MenuButton.qml
%%DATADIR%%/qmldesigner/stateseditor/StateMenu.qml
%%DATADIR%%/qmldesigner/stateseditor/StateScrollBar.qml
%%DATADIR%%/qmldesigner/stateseditor/StateThumbnail.qml
%%DATADIR%%/qmldesigner/stateseditor/images/checkers.png
%%DATADIR%%/qmldesigner/stateseditor/imports/StatesEditor/Constants.qml
%%DATADIR%%/qmldesigner/stateseditor/imports/StatesEditor/qmldir
%%DATADIR%%/qmldesigner/statusbar/IssuesOutputPanel.qml
%%DATADIR%%/qmldesigner/statusbar/IssuesPanel.qml
%%DATADIR%%/qmldesigner/statusbar/Main.qml
%%DATADIR%%/qmldesigner/statusbar/NotificationButton.qml
%%DATADIR%%/qmldesigner/statusbar/OutputPanel.qml
%%DATADIR%%/qmldesigner/statusbar/TabBarButton.qml
%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/custom_button.png
%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/custom_button@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/custom_checkbox.png
%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/custom_checkbox@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/customcheckbox/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/customdial/custom_dial.png
%%DATADIR%%/qmldesigner/studio_templates/files/customdial/custom_dial@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/customdial/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/customdial/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/customslider/custom_slider.png
%%DATADIR%%/qmldesigner/studio_templates/files/customslider/custom_slider@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/customslider/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/customslider/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/custom_spinbox.png
%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/custom_spinbox@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/customspinbox/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/custom_switch.png
%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/custom_switch@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/customswitch/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/javascript/file.js.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/javascript/file_javascript.png
%%DATADIR%%/qmldesigner/studio_templates/files/javascript/file_javascript@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/javascript/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/data_listmodel.png
%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/data_listmodel@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/listmodel/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/pane/custom_panes.png
%%DATADIR%%/qmldesigner/studio_templates/files/pane/custom_panes@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/pane/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/pane/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/file_qml.png
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/file_qml@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickfile/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/DataModel.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/GridDelegate.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/GridView.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/ListDelegate.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/ListView.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/data_gridmodel.png
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/data_gridmodel@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/qtquickviews/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/file_ui.png
%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/file_ui@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickfile/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickform/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickform/fileForm.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickform/file_ui.png
%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickform/file_ui@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/qtuiquickform/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/scxml/file.scxml
%%DATADIR%%/qmldesigner/studio_templates/files/scxml/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/custom_stacked_view.png
%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/custom_stacked_view@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/stackedlayout/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/custom_swipe_view.png
%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/custom_swipe_view@2.png
%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/file.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/files/swipeview/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/Screen01.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/contentmodule.main.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/desktop_blank.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/desktop_blank@2.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/detailsPage.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/projects/application-extended-3d/Screen01.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application-extended-3d/contentmodule.main.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application-extended-3d/desktop_blank.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-extended-3d/desktop_blank@2.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-extended-3d/detailsPage.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-extended-3d/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/CMakeLists.txt
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/Constants.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Button.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/CheckBox.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/DefaultStyle.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Dial.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/ProgressBar.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/RadioButton.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Slider.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/SwipeView.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Switch.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/button-disabled.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/button-pressed.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/button.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-checked-pressed.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-checked.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-disabled.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-partially-checked-pressed.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-partially-checked.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox-pressed.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/checkbox.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/dial-background-disabled.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/dial-background.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/dial-progress.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/progressbar-background.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/progressbar-progress.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-checked-pressed.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-checked.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-disabled.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton-pressed.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/radiobutton.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background-disabled-vertical.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background-disabled.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background-vertical.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-background.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle-disabled-pressed.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle-disabled.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle-pressed.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-handle.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-progress-vertical.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/slider-progress.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-bg.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-handle.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-i.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-o.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/qmldir
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/Screen01.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/app_mcu.qmlproject.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/assets.txt
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/constants_module.qmlproject.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/desktop_blank.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/desktop_blank@2.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/detailsPage.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/images.txt
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/main.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/mcuqtquickcontrols2.conf
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/qmldir.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/projects/application/Screen01.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/application/desktop_blank.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application/desktop_blank@2.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application/detailsPage.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/application/place_holder.png
%%DATADIR%%/qmldesigner/studio_templates/projects/application/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/projects/common/App.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/common/app.qmlproject.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/common/asset_imports.txt
%%DATADIR%%/qmldesigner/studio_templates/projects/common/fonts.txt
%%DATADIR%%/qmldesigner/studio_templates/projects/common/images.txt
%%DATADIR%%/qmldesigner/studio_templates/projects/common/qtquickcontrols2.conf.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/defaults/qmlapplication-project-page.json
%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/Screen01.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/desktop_launcher.png
%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/desktop_launcher@2.png
%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/detailsPage.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/desktop-launcher/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/projects/fonts.txt
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/Screen01.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/detailsPage.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/mobile_scroll.png
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/mobile_scroll@2.png
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-scroll/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/App.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/CMakeLists.content.txt.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/Screen01.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/Screen02.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/detailsPage.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/mobile_stack.png
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/mobile_stack@2.png
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-stack/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/App.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/CMakeLists.content.txt.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/Screen01.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/Screen02.ui.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/detailsPage.qml
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/mobile_swipe.png
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/mobile_swipe@2.png
%%DATADIR%%/qmldesigner/studio_templates/projects/mobile-swipe/wizard.json
%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/CMakeLists.importmodule.txt.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/Constants.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/EventListModel.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/EventListSimulator.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/JsonData.qml.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/data.json.tpl
%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/designer/plugin.metainfo
%%DATADIR%%/qmldesigner/studio_templates/projects/shared-plugin/name/importmodule.qmldir.tpl
%%DATADIR%%/qmldesigner/toolbar/CrumbleBar.qml
%%DATADIR%%/qmldesigner/toolbar/CrumbleBread.qml
%%DATADIR%%/qmldesigner/toolbar/Main.qml
%%DATADIR%%/qmldesigner/toolbar/MenuItemDelegate.qml
%%DATADIR%%/qmldesigner/toolbar/ShareNotification.qml
%%DATADIR%%/qmldesigner/toolbar/SplitButton.qml
%%DATADIR%%/qmldesigner/toolbar/ToolbarButton.qml
%%DATADIR%%/qmldesigner/translationhelper/itemlibrary.qml
%%DATADIR%%/qmldesigner/welcomepage/BrandBar.qml
%%DATADIR%%/qmldesigner/welcomepage/CheckButton.ui.qml
%%DATADIR%%/qmldesigner/welcomepage/CustomDialog.qml
%%DATADIR%%/qmldesigner/welcomepage/CustomDialogButtonBox.qml
%%DATADIR%%/qmldesigner/welcomepage/CustomGrid.qml
%%DATADIR%%/qmldesigner/welcomepage/CustomScrollBar.qml
%%DATADIR%%/qmldesigner/welcomepage/CustomScrollView.qml
%%DATADIR%%/qmldesigner/welcomepage/DialogButton.qml
%%DATADIR%%/qmldesigner/welcomepage/DownloadButton.qml
%%DATADIR%%/qmldesigner/welcomepage/DownloadPanel.qml
%%DATADIR%%/qmldesigner/welcomepage/DownloadProgressBar.qml
%%DATADIR%%/qmldesigner/welcomepage/FigmaButton.qml
%%DATADIR%%/qmldesigner/welcomepage/MainGridStack.qml
%%DATADIR%%/qmldesigner/welcomepage/MainScreen.qml
%%DATADIR%%/qmldesigner/welcomepage/PushButton.ui.qml
%%DATADIR%%/qmldesigner/welcomepage/RangeMapper.qml
%%DATADIR%%/qmldesigner/welcomepage/SocialButton.qml
%%DATADIR%%/qmldesigner/welcomepage/StringMapper.qml
%%DATADIR%%/qmldesigner/welcomepage/Tag.qml
%%DATADIR%%/qmldesigner/welcomepage/TagArea.qml
%%DATADIR%%/qmldesigner/welcomepage/TestControlPanel.qml
%%DATADIR%%/qmldesigner/welcomepage/ThumbnailDelegate.qml
%%DATADIR%%/qmldesigner/welcomepage/TourDialogButton.qml
%%DATADIR%%/qmldesigner/welcomepage/TourModel.qml
%%DATADIR%%/qmldesigner/welcomepage/TourProgressBar.qml
%%DATADIR%%/qmldesigner/welcomepage/TourRestartButton.qml
%%DATADIR%%/qmldesigner/welcomepage/TourThumbnailDelegate.qml
%%DATADIR%%/qmldesigner/welcomepage/TwirlButton.qml
%%DATADIR%%/qmldesigner/welcomepage/WelcomePage.qml
%%DATADIR%%/qmldesigner/welcomepage/WelcomeScreen.qmlproject
%%DATADIR%%/qmldesigner/welcomepage/YoutubeButton.qml
%%DATADIR%%/qmldesigner/welcomepage/fonts/fonts.txt
%%DATADIR%%/qmldesigner/welcomepage/images/adding-assets.png
%%DATADIR%%/qmldesigner/welcomepage/images/animation-2d.png
%%DATADIR%%/qmldesigner/welcomepage/images/border-arc.png
%%DATADIR%%/qmldesigner/welcomepage/images/complex-shapes.png
%%DATADIR%%/qmldesigner/welcomepage/images/congratulations.png
%%DATADIR%%/qmldesigner/welcomepage/images/connecting-components.png
%%DATADIR%%/qmldesigner/welcomepage/images/ds.png
%%DATADIR%%/qmldesigner/welcomepage/images/ellipse-pie.png
%%DATADIR%%/qmldesigner/welcomepage/images/figmaDarkNormal.png
%%DATADIR%%/qmldesigner/welcomepage/images/figmaHover.png
%%DATADIR%%/qmldesigner/welcomepage/images/figmaLightNormal.png
%%DATADIR%%/qmldesigner/welcomepage/images/newThumbnail.png
%%DATADIR%%/qmldesigner/welcomepage/images/noPreview.png
%%DATADIR%%/qmldesigner/welcomepage/images/place_holder.png
%%DATADIR%%/qmldesigner/welcomepage/images/sorting-components.png
%%DATADIR%%/qmldesigner/welcomepage/images/states.png
%%DATADIR%%/qmldesigner/welcomepage/images/thumbnailImage.png
%%DATADIR%%/qmldesigner/welcomepage/images/thumbnail_test.png
%%DATADIR%%/qmldesigner/welcomepage/images/top-toolbar.png
%%DATADIR%%/qmldesigner/welcomepage/images/welcome-page.png
%%DATADIR%%/qmldesigner/welcomepage/images/workspaces.png
%%DATADIR%%/qmldesigner/welcomepage/images/youtubeDarkHover.png
%%DATADIR%%/qmldesigner/welcomepage/images/youtubeDarkNormal.png
%%DATADIR%%/qmldesigner/welcomepage/images/youtubeLightHover.png
%%DATADIR%%/qmldesigner/welcomepage/images/youtubeLightNormal.png
%%DATADIR%%/qmldesigner/welcomepage/imports/UiTour/Highlight.ui.qml
%%DATADIR%%/qmldesigner/welcomepage/imports/UiTour/Slide.qml
%%DATADIR%%/qmldesigner/welcomepage/imports/UiTour/SlideNavButton.qml
%%DATADIR%%/qmldesigner/welcomepage/imports/UiTour/SlidePlayer.qml
%%DATADIR%%/qmldesigner/welcomepage/imports/UiTour/SlideShow.qml
%%DATADIR%%/qmldesigner/welcomepage/imports/UiTour/StrongHighlight.ui.qml
%%DATADIR%%/qmldesigner/welcomepage/imports/UiTour/gradientRect.webp
%%DATADIR%%/qmldesigner/welcomepage/imports/UiTour/qmldir
%%DATADIR%%/qmldesigner/welcomepage/imports/WelcomeScreen/Constants.qml
%%DATADIR%%/qmldesigner/welcomepage/imports/WelcomeScreen/designer/plugin.metainfo
%%DATADIR%%/qmldesigner/welcomepage/imports/WelcomeScreen/qmldir
%%DATADIR%%/qmldesigner/welcomepage/main.qml
%%DATADIR%%/qmldesigner/welcomepage/main.qml.qml
%%DATADIR%%/qmldesigner/welcomepage/mockData/ExampleCheckout/FileDownloader.qml
%%DATADIR%%/qmldesigner/welcomepage/mockData/ExampleCheckout/FileExtractor.qml
%%DATADIR%%/qmldesigner/welcomepage/mockData/ExampleCheckout/qmldir
%%DATADIR%%/qmldesigner/welcomepage/mockData/projectmodel/ProjectModel.qml
%%DATADIR%%/qmldesigner/welcomepage/mockData/projectmodel/qmldir
%%DATADIR%%/qmldesigner/welcomepage/mockData/usagestatistics/UsageStatisticModel.qml
%%DATADIR%%/qmldesigner/welcomepage/mockData/usagestatistics/qmldir
%%DATADIR%%/qmldesigner/welcomepage/qtquickcontrols2.conf
%%DATADIR%%/qmldesigner/workspacePresets/Advanced-2D.wrk
%%DATADIR%%/qmldesigner/workspacePresets/Advanced-3D.wrk
%%DATADIR%%/qmldesigner/workspacePresets/Basic-2D.wrk
%%DATADIR%%/qmldesigner/workspacePresets/Basic-3D.wrk
%%DATADIR%%/qmldesigner/workspacePresets/Lite-QML-Designer.wrk
%%DATADIR%%/qmldesigner/workspacePresets/order.json
%%DATADIR%%/qmlicons/Qt/16x16/BorderImage.png
%%DATADIR%%/qmlicons/Qt/16x16/BusyIndicator.png
%%DATADIR%%/qmlicons/Qt/16x16/Button.png
%%DATADIR%%/qmlicons/Qt/16x16/ButtonColumn.png
%%DATADIR%%/qmlicons/Qt/16x16/ButtonRow.png
%%DATADIR%%/qmlicons/Qt/16x16/CheckBox.png
%%DATADIR%%/qmlicons/Qt/16x16/ChoiceList.png
%%DATADIR%%/qmlicons/Qt/16x16/ColorAnimation.png
%%DATADIR%%/qmlicons/Qt/16x16/Component.png
%%DATADIR%%/qmlicons/Qt/16x16/CountBubble.png
%%DATADIR%%/qmlicons/Qt/16x16/DatePickerDialog.png
%%DATADIR%%/qmlicons/Qt/16x16/Flickable.png
%%DATADIR%%/qmlicons/Qt/16x16/Flipable.png
%%DATADIR%%/qmlicons/Qt/16x16/FocusScope.png
%%DATADIR%%/qmlicons/Qt/16x16/GridView.png
%%DATADIR%%/qmlicons/Qt/16x16/Image.png
%%DATADIR%%/qmlicons/Qt/16x16/InfoBanner.png
%%DATADIR%%/qmlicons/Qt/16x16/Item.png
%%DATADIR%%/qmlicons/Qt/16x16/ListButton.png
%%DATADIR%%/qmlicons/Qt/16x16/ListDelegate.png
%%DATADIR%%/qmlicons/Qt/16x16/ListView.png
%%DATADIR%%/qmlicons/Qt/16x16/MoreIndicator.png
%%DATADIR%%/qmlicons/Qt/16x16/MouseArea.png
%%DATADIR%%/qmlicons/Qt/16x16/PageIndicator.png
%%DATADIR%%/qmlicons/Qt/16x16/ParallelAnimation.png
%%DATADIR%%/qmlicons/Qt/16x16/PathView.png
%%DATADIR%%/qmlicons/Qt/16x16/PauseAnimation.png
%%DATADIR%%/qmlicons/Qt/16x16/ProgressBar.png
%%DATADIR%%/qmlicons/Qt/16x16/PropertyChanges.png
%%DATADIR%%/qmlicons/Qt/16x16/RadioButton.png
%%DATADIR%%/qmlicons/Qt/16x16/RatingIndicator.png
%%DATADIR%%/qmlicons/Qt/16x16/Rectangle.png
%%DATADIR%%/qmlicons/Qt/16x16/SequentialAnimation.png
%%DATADIR%%/qmlicons/Qt/16x16/Slider.png
%%DATADIR%%/qmlicons/Qt/16x16/State.png
%%DATADIR%%/qmlicons/Qt/16x16/Switch.png
%%DATADIR%%/qmlicons/Qt/16x16/TabBar.png
%%DATADIR%%/qmlicons/Qt/16x16/TabButton.png
%%DATADIR%%/qmlicons/Qt/16x16/Text.png
%%DATADIR%%/qmlicons/Qt/16x16/TextArea.png
%%DATADIR%%/qmlicons/Qt/16x16/TextEdit.png
%%DATADIR%%/qmlicons/Qt/16x16/TextField.png
%%DATADIR%%/qmlicons/Qt/16x16/TextInput.png
%%DATADIR%%/qmlicons/Qt/16x16/TimePickerDialog.png
%%DATADIR%%/qmlicons/Qt/16x16/ToolBar.png
%%DATADIR%%/qmlicons/Qt/16x16/Transition.png
%%DATADIR%%/qmlicons/Qt/16x16/Tumbler.png
%%DATADIR%%/qmlicons/Qt/16x16/TumblerButton.png
%%DATADIR%%/qmlicons/Qt/16x16/TumblerColumn.png
%%DATADIR%%/qmlicons/Qt/16x16/TumblerDialog.png
%%DATADIR%%/qmlicons/Qt/16x16/Window.png
%%DATADIR%%/qmlicons/Qt/16x16/item-icon16.png
%%DATADIR%%/qmlicons/QtWebkit/16x16/WebView.png
%%DATADIR%%/schemes/MS_Visual_C++.kms
%%DATADIR%%/schemes/MS_Visual_Studio_Code.kms
%%DATADIR%%/schemes/Xcode.kms
%%DATADIR%%/snippets/cmake.xml
%%DATADIR%%/snippets/cpp.xml
%%DATADIR%%/snippets/qml.xml
%%DATADIR%%/snippets/test.xml
%%DATADIR%%/snippets/text.xml
%%DATADIR%%/styles/creator-dark.xml
%%DATADIR%%/styles/dark-2024.xml
%%DATADIR%%/styles/dark.xml
%%DATADIR%%/styles/default.xml
%%DATADIR%%/styles/default_classic.xml
%%DATADIR%%/styles/grayscale.xml
%%DATADIR%%/styles/inkpot.xml
%%DATADIR%%/styles/intellij.xml
%%DATADIR%%/styles/light-2024.xml
%%DATADIR%%/styles/mabakor.xml
%%DATADIR%%/styles/modnokai_night_shift_v2.xml
%%DATADIR%%/styles/solarized-dark.xml
%%DATADIR%%/styles/solarized-light.xml
%%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_collection.cpp
%%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_collection.h
%%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_plugin.pro
%%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_resources.qrc
%%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_single.cpp
%%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_single.h
%%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_widget.cpp
%%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_widget.h
%%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_widget_include.pri
%%DATADIR%%/templates/qt4project/customwidgetwizard/tpl_widget_lib.pro
%%DATADIR%%/templates/wizards/README.txt
%%DATADIR%%/templates/wizards/autotest/autotest.png
%%DATADIR%%/templates/wizards/autotest/autotest@2x.png
%%DATADIR%%/templates/wizards/autotest/boosttest/wizard.json
%%DATADIR%%/templates/wizards/autotest/catch/wizard.json
%%DATADIR%%/templates/wizards/autotest/files/catch-common.pri
%%DATADIR%%/templates/wizards/autotest/files/catch2_tst.cpp
%%DATADIR%%/templates/wizards/autotest/files/catchCommon.js
%%DATADIR%%/templates/wizards/autotest/files/googlecommon.js
%%DATADIR%%/templates/wizards/autotest/files/gtest_dependency.pri
%%DATADIR%%/templates/wizards/autotest/files/setup.cpp
%%DATADIR%%/templates/wizards/autotest/files/setup.h
%%DATADIR%%/templates/wizards/autotest/files/tst.pro
%%DATADIR%%/templates/wizards/autotest/files/tst.qbs
%%DATADIR%%/templates/wizards/autotest/files/tst.txt
%%DATADIR%%/templates/wizards/autotest/files/tstQt6.txt
%%DATADIR%%/templates/wizards/autotest/files/tst_main.cpp
%%DATADIR%%/templates/wizards/autotest/files/tst_qml.tmpl
%%DATADIR%%/templates/wizards/autotest/files/tst_src.cpp
%%DATADIR%%/templates/wizards/autotest/files/tst_src_boost.cpp
%%DATADIR%%/templates/wizards/autotest/files/tst_src_gt.cpp
%%DATADIR%%/templates/wizards/autotest/gtest/wizard.json
%%DATADIR%%/templates/wizards/autotest/qttest/wizard.json
%%DATADIR%%/templates/wizards/autotest/quicktest/wizard.json
%%DATADIR%%/templates/wizards/classes/cpp/file.cpp
%%DATADIR%%/templates/wizards/classes/cpp/file.h
%%DATADIR%%/templates/wizards/classes/cpp/wizard.json
%%DATADIR%%/templates/wizards/classes/itemmodel/itemmodel.cpp
%%DATADIR%%/templates/wizards/classes/itemmodel/itemmodel.h
%%DATADIR%%/templates/wizards/classes/itemmodel/listmodel.cpp
%%DATADIR%%/templates/wizards/classes/itemmodel/listmodel.h
%%DATADIR%%/templates/wizards/classes/itemmodel/tablemodel.cpp
%%DATADIR%%/templates/wizards/classes/itemmodel/tablemodel.h
%%DATADIR%%/templates/wizards/classes/itemmodel/wizard.json
%%DATADIR%%/templates/wizards/classes/python/file.py
%%DATADIR%%/templates/wizards/classes/python/wizard.json
%%DATADIR%%/templates/wizards/codesnippet/CMakeLists.txt
%%DATADIR%%/templates/wizards/codesnippet/main.cpp
%%DATADIR%%/templates/wizards/codesnippet/wizard.json
%%DATADIR%%/templates/wizards/files/cppheader/file.h
%%DATADIR%%/templates/wizards/files/cppheader/wizard.json
%%DATADIR%%/templates/wizards/files/cppsource/file.cpp
%%DATADIR%%/templates/wizards/files/cppsource/wizard.json
%%DATADIR%%/templates/wizards/files/form/file.ui
%%DATADIR%%/templates/wizards/files/form/wizard.json
%%DATADIR%%/templates/wizards/files/glsl/gl/fragment/file.frag
%%DATADIR%%/templates/wizards/files/glsl/gl/fragment/wizard.json
%%DATADIR%%/templates/wizards/files/glsl/gl/vertex/file.vert
%%DATADIR%%/templates/wizards/files/glsl/gl/vertex/wizard.json
%%DATADIR%%/templates/wizards/files/glsl/gles/fragment/file.fsh
%%DATADIR%%/templates/wizards/files/glsl/gles/fragment/wizard.json
%%DATADIR%%/templates/wizards/files/glsl/gles/vertex/file.vsh
%%DATADIR%%/templates/wizards/files/glsl/gles/vertex/wizard.json
%%DATADIR%%/templates/wizards/files/java/source.java
%%DATADIR%%/templates/wizards/files/java/wizard.json
%%DATADIR%%/templates/wizards/files/js/file.js
%%DATADIR%%/templates/wizards/files/js/wizard.json
%%DATADIR%%/templates/wizards/files/markdown/file.md
%%DATADIR%%/templates/wizards/files/markdown/wizard.json
%%DATADIR%%/templates/wizards/files/modeling/model/file.qmodel
%%DATADIR%%/templates/wizards/files/modeling/model/wizard.json
%%DATADIR%%/templates/wizards/files/modeling/scratch/file.qmodel
%%DATADIR%%/templates/wizards/files/modeling/scratch/wizard.json
%%DATADIR%%/templates/wizards/files/nim/file.nim
%%DATADIR%%/templates/wizards/files/nim/wizard.json
%%DATADIR%%/templates/wizards/files/nimscript/file.nims
%%DATADIR%%/templates/wizards/files/nimscript/wizard.json
%%DATADIR%%/templates/wizards/files/python/file.py
%%DATADIR%%/templates/wizards/files/python/icon.png
%%DATADIR%%/templates/wizards/files/python/icon@2x.png
%%DATADIR%%/templates/wizards/files/python/wizard.json
%%DATADIR%%/templates/wizards/files/qrc/file.qrc
%%DATADIR%%/templates/wizards/files/qrc/wizard.json
%%DATADIR%%/templates/wizards/files/qtquick2/file.qml.tpl
%%DATADIR%%/templates/wizards/files/qtquick2/wizard.json
%%DATADIR%%/templates/wizards/files/scratch/file.txt
%%DATADIR%%/templates/wizards/files/scratch/wizard.json
%%DATADIR%%/templates/wizards/files/scxml/file.scxml
%%DATADIR%%/templates/wizards/files/scxml/wizard.json
%%DATADIR%%/templates/wizards/files/testing/file.cpp
%%DATADIR%%/templates/wizards/files/testing/wizard.json
%%DATADIR%%/templates/wizards/files/text/file.txt
%%DATADIR%%/templates/wizards/files/text/wizard.json
%%DATADIR%%/templates/wizards/files/translation/wizard.json
%%DATADIR%%/templates/wizards/global/consoleapplication.png
%%DATADIR%%/templates/wizards/global/consoleapplication@2x.png
%%DATADIR%%/templates/wizards/global/guiapplication.png
%%DATADIR%%/templates/wizards/global/guiapplication@2x.png
%%DATADIR%%/templates/wizards/global/lib.png
%%DATADIR%%/templates/wizards/global/lib@2x.png
%%DATADIR%%/templates/wizards/projects/consoleapp/CMakeLists-Qt6.txt
%%DATADIR%%/templates/wizards/projects/consoleapp/CMakeLists.txt
%%DATADIR%%/templates/wizards/projects/consoleapp/file.pro
%%DATADIR%%/templates/wizards/projects/consoleapp/file.qbs
%%DATADIR%%/templates/wizards/projects/consoleapp/main.cpp
%%DATADIR%%/templates/wizards/projects/consoleapp/meson.build
%%DATADIR%%/templates/wizards/projects/consoleapp/wizard.json
%%DATADIR%%/templates/wizards/projects/cpplibrary/CMakeLists.txt
%%DATADIR%%/templates/wizards/projects/cpplibrary/lib.cpp
%%DATADIR%%/templates/wizards/projects/cpplibrary/lib.h
%%DATADIR%%/templates/wizards/projects/cpplibrary/lib_global.h
%%DATADIR%%/templates/wizards/projects/cpplibrary/meson.build
%%DATADIR%%/templates/wizards/projects/cpplibrary/project.json
%%DATADIR%%/templates/wizards/projects/cpplibrary/project.pro
%%DATADIR%%/templates/wizards/projects/cpplibrary/project.qbs
%%DATADIR%%/templates/wizards/projects/cpplibrary/wizard.json
%%DATADIR%%/templates/wizards/projects/git.ignore
%%DATADIR%%/templates/wizards/projects/nim/file.nimproject
%%DATADIR%%/templates/wizards/projects/nim/icon.png
%%DATADIR%%/templates/wizards/projects/nim/icon@2x.png
%%DATADIR%%/templates/wizards/projects/nim/main.nim
%%DATADIR%%/templates/wizards/projects/nim/wizard.json
%%DATADIR%%/templates/wizards/projects/nimble/binary/binary.nimble
%%DATADIR%%/templates/wizards/projects/nimble/binary/src/binary.nim
%%DATADIR%%/templates/wizards/projects/nimble/hybrid/hybrid.nimble
%%DATADIR%%/templates/wizards/projects/nimble/hybrid/src/hybrid.nim
%%DATADIR%%/templates/wizards/projects/nimble/hybrid/src/hybridpkg/submodule.nim
%%DATADIR%%/templates/wizards/projects/nimble/hybrid/tests/config.nims
%%DATADIR%%/templates/wizards/projects/nimble/hybrid/tests/test1.nim
%%DATADIR%%/templates/wizards/projects/nimble/library/library.nimble
%%DATADIR%%/templates/wizards/projects/nimble/library/src/library.nim
%%DATADIR%%/templates/wizards/projects/nimble/library/src/library/submodule.nim
%%DATADIR%%/templates/wizards/projects/nimble/library/tests/config.nims
%%DATADIR%%/templates/wizards/projects/nimble/library/tests/test1.nim
%%DATADIR%%/templates/wizards/projects/nimble/wizard.json
%%DATADIR%%/templates/wizards/projects/plainc/CMakeLists.txt
%%DATADIR%%/templates/wizards/projects/plainc/file.pro
%%DATADIR%%/templates/wizards/projects/plainc/file.qbs
%%DATADIR%%/templates/wizards/projects/plainc/main.c
%%DATADIR%%/templates/wizards/projects/plainc/meson.build
%%DATADIR%%/templates/wizards/projects/plainc/wizard.json
%%DATADIR%%/templates/wizards/projects/plaincpp/CMakeLists.txt
%%DATADIR%%/templates/wizards/projects/plaincpp/file.pro
%%DATADIR%%/templates/wizards/projects/plaincpp/file.qbs
%%DATADIR%%/templates/wizards/projects/plaincpp/main.cpp
%%DATADIR%%/templates/wizards/projects/plaincpp/meson.build
%%DATADIR%%/templates/wizards/projects/plaincpp/wizard.json
%%DATADIR%%/templates/wizards/projects/qmake/empty/file.pro
%%DATADIR%%/templates/wizards/projects/qmake/empty/wizard.json
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/empty/icon.png
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/empty/icon@2x.png
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/empty/wizard.json
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/icons/icon.png
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/icons/icon@2x.png
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main_empty.py
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main_mainwindow.py
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main_qtquick.py
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main_widget.py
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/main_widget.ui
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/mainwindow/wizard.json
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/pyproject.toml
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/qtquickapplication/main.qml.tpl
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/qtquickapplication/pyproject.toml
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/qtquickapplication/wizard.json
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/requirements.txt
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/widget/pyproject.toml
%%DATADIR%%/templates/wizards/projects/qtforpythonapplication/widget/wizard.json
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/CMakeLists.6.x.txt
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/example/example.cpp
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/example/example.qml.tpl
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/lib.png
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/lib@2x.png
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/object.cpp
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/object.h
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/object.qml.tpl
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/plugin.cpp
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/plugin.h
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/project.pro
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/qmldir
%%DATADIR%%/templates/wizards/projects/qtquick2-extension/wizard.json
%%DATADIR%%/templates/wizards/projects/qtquickapplication/CMakeLists.txt
%%DATADIR%%/templates/wizards/projects/qtquickapplication/Main.qml.tpl
%%DATADIR%%/templates/wizards/projects/qtquickapplication/icon.png
%%DATADIR%%/templates/wizards/projects/qtquickapplication/icon@2x.png
%%DATADIR%%/templates/wizards/projects/qtquickapplication/main.cpp
%%DATADIR%%/templates/wizards/projects/qtquickapplication/qtquickcontrols2.conf
%%DATADIR%%/templates/wizards/projects/qtquickapplication/wizard.json
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/CMakeLists.6.x.txt
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/CMakeLists.txt
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/app.pro
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/app.qbs
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/empty/icon.png
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/empty/icon@2x.png
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/empty/main.qml.tpl
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/empty/qml.qrc
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/empty/wizard.json
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/main.cpp
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/qtquickcontrols2.conf
%%DATADIR%%/templates/wizards/projects/qtquickuiprototype/app.qmlproject
%%DATADIR%%/templates/wizards/projects/qtquickuiprototype/qtquickuiprototype.png
%%DATADIR%%/templates/wizards/projects/qtquickuiprototype/qtquickuiprototype@2x.png
%%DATADIR%%/templates/wizards/projects/qtquickuiprototype/wizard.json
%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/CMakeLists-Qt6.txt
%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/CMakeLists.txt
%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/main.cpp
%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/meson.build
%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/project.pro
%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/project.qbs
%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/widget.cpp
%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/widget.h
%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/widget.ui
%%DATADIR%%/templates/wizards/projects/qtwidgetsapplication/wizard.json
%%DATADIR%%/templates/wizards/projects/translation.ts
%%DATADIR%%/templates/wizards/projects/vcs/bazaar/icon.png
%%DATADIR%%/templates/wizards/projects/vcs/bazaar/icon@2x.png
%%DATADIR%%/templates/wizards/projects/vcs/bazaar/wizard.json
%%DATADIR%%/templates/wizards/projects/vcs/cvs/icon.png
%%DATADIR%%/templates/wizards/projects/vcs/cvs/icon@2x.png
%%DATADIR%%/templates/wizards/projects/vcs/cvs/wizard.json
%%DATADIR%%/templates/wizards/projects/vcs/git/icon.png
%%DATADIR%%/templates/wizards/projects/vcs/git/icon@2x.png
%%DATADIR%%/templates/wizards/projects/vcs/git/wizard.json
%%DATADIR%%/templates/wizards/projects/vcs/mercurial/icon.png
%%DATADIR%%/templates/wizards/projects/vcs/mercurial/icon@2x.png
%%DATADIR%%/templates/wizards/projects/vcs/mercurial/wizard.json
%%DATADIR%%/templates/wizards/projects/vcs/subversion/icon.png
%%DATADIR%%/templates/wizards/projects/vcs/subversion/icon@2x.png
%%DATADIR%%/templates/wizards/projects/vcs/subversion/wizard.json
%%DATADIR%%/templates/wizards/projects/xrapplication/AndroidManifest.xml.tpl
%%DATADIR%%/templates/wizards/projects/xrapplication/CMakeLists.txt
%%DATADIR%%/templates/wizards/projects/xrapplication/MacOSXBundleInfo.plist.in
%%DATADIR%%/templates/wizards/projects/xrapplication/Main.qml.tpl
%%DATADIR%%/templates/wizards/projects/xrapplication/icon.png
%%DATADIR%%/templates/wizards/projects/xrapplication/icon@2x.png
%%DATADIR%%/templates/wizards/projects/xrapplication/main.cpp
%%DATADIR%%/templates/wizards/projects/xrapplication/qtquickcontrols2.conf
%%DATADIR%%/templates/wizards/projects/xrapplication/wizard.json
%%DATADIR%%/templates/wizards/qtcreatorplugin/CMakeLists.txt
%%DATADIR%%/templates/wizards/qtcreatorplugin/MyPlugin.json.in
%%DATADIR%%/templates/wizards/qtcreatorplugin/README.md
%%DATADIR%%/templates/wizards/qtcreatorplugin/github_workflows_README.md
%%DATADIR%%/templates/wizards/qtcreatorplugin/github_workflows_build_cmake.yml
%%DATADIR%%/templates/wizards/qtcreatorplugin/myplugin.cpp
%%DATADIR%%/templates/wizards/qtcreatorplugin/mypluginconstants.h
%%DATADIR%%/templates/wizards/qtcreatorplugin/myplugintr.h
%%DATADIR%%/templates/wizards/qtcreatorplugin/qtcreatorplugin.png
%%DATADIR%%/templates/wizards/qtcreatorplugin/qtcreatorplugin@2x.png
%%DATADIR%%/templates/wizards/qtcreatorplugin/wizard.json
%%DATADIR%%/themes/2024.tokenmapping
%%DATADIR%%/themes/dark-2024.creatortheme
%%DATADIR%%/themes/dark.creatortheme
%%DATADIR%%/themes/dark.figmatokens
%%DATADIR%%/themes/default.creatortheme
%%DATADIR%%/themes/design-light.creatortheme
%%DATADIR%%/themes/design.creatortheme
%%DATADIR%%/themes/ds-dark.figmatokens
%%DATADIR%%/themes/ds-light.figmatokens
%%DATADIR%%/themes/ds.tokenmapping
%%DATADIR%%/themes/flat-dark.creatortheme
%%DATADIR%%/themes/flat-light.creatortheme
%%DATADIR%%/themes/flat.creatortheme
%%DATADIR%%/themes/light-2024.creatortheme
%%DATADIR%%/themes/light-palette.inc
%%DATADIR%%/themes/light.figmatokens
%%DATADIR%%/themes/primitive-colors.inc
%%DATADIR%%/translations/qtcreator_cs.qm
%%DATADIR%%/translations/qtcreator_da.qm
%%DATADIR%%/translations/qtcreator_de.qm
%%DATADIR%%/translations/qtcreator_en.qm
%%DATADIR%%/translations/qtcreator_fr.qm
%%DATADIR%%/translations/qtcreator_hr.qm
%%DATADIR%%/translations/qtcreator_ja.qm
%%DATADIR%%/translations/qtcreator_pl.qm
%%DATADIR%%/translations/qtcreator_ru.qm
%%DATADIR%%/translations/qtcreator_sl.qm
%%DATADIR%%/translations/qtcreator_sv.qm
%%DATADIR%%/translations/qtcreator_uk.qm
%%DATADIR%%/translations/qtcreator_zh_CN.qm
%%DATADIR%%/translations/qtcreator_zh_TW.qm
|