R.txt
141 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
int anim abc_fade_in 0x7f010000
int anim abc_fade_out 0x7f010001
int anim abc_grow_fade_in_from_bottom 0x7f010002
int anim abc_popup_enter 0x7f010003
int anim abc_popup_exit 0x7f010004
int anim abc_shrink_fade_out_from_bottom 0x7f010005
int anim abc_slide_in_bottom 0x7f010006
int anim abc_slide_in_top 0x7f010007
int anim abc_slide_out_bottom 0x7f010008
int anim abc_slide_out_top 0x7f010009
int anim abc_tooltip_enter 0x7f01000a
int anim abc_tooltip_exit 0x7f01000b
int anim design_bottom_sheet_slide_in 0x7f01000c
int anim design_bottom_sheet_slide_out 0x7f01000d
int anim design_snackbar_in 0x7f01000e
int anim design_snackbar_out 0x7f01000f
int animator design_appbar_state_list_animator 0x7f020000
int animator design_fab_hide_motion_spec 0x7f020001
int animator design_fab_show_motion_spec 0x7f020002
int animator mtrl_btn_state_list_anim 0x7f020003
int animator mtrl_btn_unelevated_state_list_anim 0x7f020004
int animator mtrl_chip_state_list_anim 0x7f020005
int animator mtrl_fab_hide_motion_spec 0x7f020006
int animator mtrl_fab_show_motion_spec 0x7f020007
int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020008
int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020009
int attr actionBarDivider 0x7f030000
int attr actionBarItemBackground 0x7f030001
int attr actionBarPopupTheme 0x7f030002
int attr actionBarSize 0x7f030003
int attr actionBarSplitStyle 0x7f030004
int attr actionBarStyle 0x7f030005
int attr actionBarTabBarStyle 0x7f030006
int attr actionBarTabStyle 0x7f030007
int attr actionBarTabTextStyle 0x7f030008
int attr actionBarTheme 0x7f030009
int attr actionBarWidgetTheme 0x7f03000a
int attr actionButtonStyle 0x7f03000b
int attr actionDropDownStyle 0x7f03000c
int attr actionLayout 0x7f03000d
int attr actionMenuTextAppearance 0x7f03000e
int attr actionMenuTextColor 0x7f03000f
int attr actionModeBackground 0x7f030010
int attr actionModeCloseButtonStyle 0x7f030011
int attr actionModeCloseDrawable 0x7f030012
int attr actionModeCopyDrawable 0x7f030013
int attr actionModeCutDrawable 0x7f030014
int attr actionModeFindDrawable 0x7f030015
int attr actionModePasteDrawable 0x7f030016
int attr actionModePopupWindowStyle 0x7f030017
int attr actionModeSelectAllDrawable 0x7f030018
int attr actionModeShareDrawable 0x7f030019
int attr actionModeSplitBackground 0x7f03001a
int attr actionModeStyle 0x7f03001b
int attr actionModeWebSearchDrawable 0x7f03001c
int attr actionOverflowButtonStyle 0x7f03001d
int attr actionOverflowMenuStyle 0x7f03001e
int attr actionProviderClass 0x7f03001f
int attr actionViewClass 0x7f030020
int attr activityChooserViewStyle 0x7f030021
int attr alertDialogButtonGroupStyle 0x7f030022
int attr alertDialogCenterButtons 0x7f030023
int attr alertDialogStyle 0x7f030024
int attr alertDialogTheme 0x7f030025
int attr allowStacking 0x7f030026
int attr alpha 0x7f030027
int attr alphabeticModifiers 0x7f030028
int attr arrowHeadLength 0x7f030029
int attr arrowShaftLength 0x7f03002a
int attr autoCompleteTextViewStyle 0x7f03002b
int attr autoSizeMaxTextSize 0x7f03002c
int attr autoSizeMinTextSize 0x7f03002d
int attr autoSizePresetSizes 0x7f03002e
int attr autoSizeStepGranularity 0x7f03002f
int attr autoSizeTextType 0x7f030030
int attr background 0x7f030031
int attr backgroundSplit 0x7f030032
int attr backgroundStacked 0x7f030033
int attr backgroundTint 0x7f030034
int attr backgroundTintMode 0x7f030035
int attr barLength 0x7f030036
int attr barrierAllowsGoneWidgets 0x7f030037
int attr barrierDirection 0x7f030038
int attr behavior_autoHide 0x7f030039
int attr behavior_fitToContents 0x7f03003a
int attr behavior_hideable 0x7f03003b
int attr behavior_overlapTop 0x7f03003c
int attr behavior_peekHeight 0x7f03003d
int attr behavior_skipCollapsed 0x7f03003e
int attr borderWidth 0x7f03003f
int attr borderlessButtonStyle 0x7f030040
int attr bottomAppBarStyle 0x7f030041
int attr bottomNavigationStyle 0x7f030042
int attr bottomSheetDialogTheme 0x7f030043
int attr bottomSheetStyle 0x7f030044
int attr boxBackgroundColor 0x7f030045
int attr boxBackgroundMode 0x7f030046
int attr boxCollapsedPaddingTop 0x7f030047
int attr boxCornerRadiusBottomEnd 0x7f030048
int attr boxCornerRadiusBottomStart 0x7f030049
int attr boxCornerRadiusTopEnd 0x7f03004a
int attr boxCornerRadiusTopStart 0x7f03004b
int attr boxStrokeColor 0x7f03004c
int attr boxStrokeWidth 0x7f03004d
int attr buttonBarButtonStyle 0x7f03004e
int attr buttonBarNegativeButtonStyle 0x7f03004f
int attr buttonBarNeutralButtonStyle 0x7f030050
int attr buttonBarPositiveButtonStyle 0x7f030051
int attr buttonBarStyle 0x7f030052
int attr buttonGravity 0x7f030053
int attr buttonIconDimen 0x7f030054
int attr buttonPanelSideLayout 0x7f030055
int attr buttonStyle 0x7f030056
int attr buttonStyleSmall 0x7f030057
int attr buttonTint 0x7f030058
int attr buttonTintMode 0x7f030059
int attr cardBackgroundColor 0x7f03005a
int attr cardCornerRadius 0x7f03005b
int attr cardElevation 0x7f03005c
int attr cardMaxElevation 0x7f03005d
int attr cardPreventCornerOverlap 0x7f03005e
int attr cardUseCompatPadding 0x7f03005f
int attr cardViewStyle 0x7f030060
int attr chainUseRtl 0x7f030061
int attr checkboxStyle 0x7f030062
int attr checkedChip 0x7f030063
int attr checkedIcon 0x7f030064
int attr checkedIconEnabled 0x7f030065
int attr checkedIconVisible 0x7f030066
int attr checkedTextViewStyle 0x7f030067
int attr chipBackgroundColor 0x7f030068
int attr chipCornerRadius 0x7f030069
int attr chipEndPadding 0x7f03006a
int attr chipGroupStyle 0x7f03006b
int attr chipIcon 0x7f03006c
int attr chipIconEnabled 0x7f03006d
int attr chipIconSize 0x7f03006e
int attr chipIconTint 0x7f03006f
int attr chipIconVisible 0x7f030070
int attr chipMinHeight 0x7f030071
int attr chipSpacing 0x7f030072
int attr chipSpacingHorizontal 0x7f030073
int attr chipSpacingVertical 0x7f030074
int attr chipStandaloneStyle 0x7f030075
int attr chipStartPadding 0x7f030076
int attr chipStrokeColor 0x7f030077
int attr chipStrokeWidth 0x7f030078
int attr chipStyle 0x7f030079
int attr closeIcon 0x7f03007a
int attr closeIconEnabled 0x7f03007b
int attr closeIconEndPadding 0x7f03007c
int attr closeIconSize 0x7f03007d
int attr closeIconStartPadding 0x7f03007e
int attr closeIconTint 0x7f03007f
int attr closeIconVisible 0x7f030080
int attr closeItemLayout 0x7f030081
int attr collapseContentDescription 0x7f030082
int attr collapseIcon 0x7f030083
int attr collapsedTitleGravity 0x7f030084
int attr collapsedTitleTextAppearance 0x7f030085
int attr color 0x7f030086
int attr colorAccent 0x7f030087
int attr colorBackgroundFloating 0x7f030088
int attr colorButtonNormal 0x7f030089
int attr colorControlActivated 0x7f03008a
int attr colorControlHighlight 0x7f03008b
int attr colorControlNormal 0x7f03008c
int attr colorError 0x7f03008d
int attr colorPrimary 0x7f03008e
int attr colorPrimaryDark 0x7f03008f
int attr colorSecondary 0x7f030090
int attr colorSwitchThumbNormal 0x7f030091
int attr commitIcon 0x7f030092
int attr constraintSet 0x7f030093
int attr constraint_referenced_ids 0x7f030094
int attr content 0x7f030095
int attr contentDescription 0x7f030096
int attr contentInsetEnd 0x7f030097
int attr contentInsetEndWithActions 0x7f030098
int attr contentInsetLeft 0x7f030099
int attr contentInsetRight 0x7f03009a
int attr contentInsetStart 0x7f03009b
int attr contentInsetStartWithNavigation 0x7f03009c
int attr contentPadding 0x7f03009d
int attr contentPaddingBottom 0x7f03009e
int attr contentPaddingLeft 0x7f03009f
int attr contentPaddingRight 0x7f0300a0
int attr contentPaddingTop 0x7f0300a1
int attr contentScrim 0x7f0300a2
int attr controlBackground 0x7f0300a3
int attr coordinatorLayoutStyle 0x7f0300a4
int attr cornerRadius 0x7f0300a5
int attr counterEnabled 0x7f0300a6
int attr counterMaxLength 0x7f0300a7
int attr counterOverflowTextAppearance 0x7f0300a8
int attr counterTextAppearance 0x7f0300a9
int attr customNavigationLayout 0x7f0300aa
int attr defaultQueryHint 0x7f0300ab
int attr dialogCornerRadius 0x7f0300ac
int attr dialogPreferredPadding 0x7f0300ad
int attr dialogTheme 0x7f0300ae
int attr displayOptions 0x7f0300af
int attr divider 0x7f0300b0
int attr dividerHorizontal 0x7f0300b1
int attr dividerPadding 0x7f0300b2
int attr dividerVertical 0x7f0300b3
int attr drawableSize 0x7f0300b4
int attr drawerArrowStyle 0x7f0300b5
int attr dropDownListViewStyle 0x7f0300b6
int attr dropdownListPreferredItemHeight 0x7f0300b7
int attr editTextBackground 0x7f0300b8
int attr editTextColor 0x7f0300b9
int attr editTextStyle 0x7f0300ba
int attr elevation 0x7f0300bb
int attr emptyVisibility 0x7f0300bc
int attr enforceMaterialTheme 0x7f0300bd
int attr enforceTextAppearance 0x7f0300be
int attr errorEnabled 0x7f0300bf
int attr errorTextAppearance 0x7f0300c0
int attr expandActivityOverflowButtonDrawable 0x7f0300c1
int attr expanded 0x7f0300c2
int attr expandedTitleGravity 0x7f0300c3
int attr expandedTitleMargin 0x7f0300c4
int attr expandedTitleMarginBottom 0x7f0300c5
int attr expandedTitleMarginEnd 0x7f0300c6
int attr expandedTitleMarginStart 0x7f0300c7
int attr expandedTitleMarginTop 0x7f0300c8
int attr expandedTitleTextAppearance 0x7f0300c9
int attr fabAlignmentMode 0x7f0300ca
int attr fabCradleMargin 0x7f0300cb
int attr fabCradleRoundedCornerRadius 0x7f0300cc
int attr fabCradleVerticalOffset 0x7f0300cd
int attr fabCustomSize 0x7f0300ce
int attr fabSize 0x7f0300cf
int attr fastScrollEnabled 0x7f0300d0
int attr fastScrollHorizontalThumbDrawable 0x7f0300d1
int attr fastScrollHorizontalTrackDrawable 0x7f0300d2
int attr fastScrollVerticalThumbDrawable 0x7f0300d3
int attr fastScrollVerticalTrackDrawable 0x7f0300d4
int attr firstBaselineToTopHeight 0x7f0300d5
int attr floatingActionButtonStyle 0x7f0300d6
int attr font 0x7f0300d7
int attr fontFamily 0x7f0300d8
int attr fontProviderAuthority 0x7f0300d9
int attr fontProviderCerts 0x7f0300da
int attr fontProviderFetchStrategy 0x7f0300db
int attr fontProviderFetchTimeout 0x7f0300dc
int attr fontProviderPackage 0x7f0300dd
int attr fontProviderQuery 0x7f0300de
int attr fontStyle 0x7f0300df
int attr fontVariationSettings 0x7f0300e0
int attr fontWeight 0x7f0300e1
int attr foregroundInsidePadding 0x7f0300e2
int attr gapBetweenBars 0x7f0300e3
int attr goIcon 0x7f0300e4
int attr headerLayout 0x7f0300e5
int attr height 0x7f0300e6
int attr helperText 0x7f0300e7
int attr helperTextEnabled 0x7f0300e8
int attr helperTextTextAppearance 0x7f0300e9
int attr hideMotionSpec 0x7f0300ea
int attr hideOnContentScroll 0x7f0300eb
int attr hideOnScroll 0x7f0300ec
int attr hintAnimationEnabled 0x7f0300ed
int attr hintEnabled 0x7f0300ee
int attr hintTextAppearance 0x7f0300ef
int attr homeAsUpIndicator 0x7f0300f0
int attr homeLayout 0x7f0300f1
int attr hoveredFocusedTranslationZ 0x7f0300f2
int attr icon 0x7f0300f3
int attr iconEndPadding 0x7f0300f4
int attr iconGravity 0x7f0300f5
int attr iconPadding 0x7f0300f6
int attr iconSize 0x7f0300f7
int attr iconStartPadding 0x7f0300f8
int attr iconTint 0x7f0300f9
int attr iconTintMode 0x7f0300fa
int attr iconifiedByDefault 0x7f0300fb
int attr imageButtonStyle 0x7f0300fc
int attr indeterminateProgressStyle 0x7f0300fd
int attr initialActivityCount 0x7f0300fe
int attr insetForeground 0x7f0300ff
int attr isLightTheme 0x7f030100
int attr itemBackground 0x7f030101
int attr itemHorizontalPadding 0x7f030102
int attr itemHorizontalTranslationEnabled 0x7f030103
int attr itemIconPadding 0x7f030104
int attr itemIconSize 0x7f030105
int attr itemIconTint 0x7f030106
int attr itemPadding 0x7f030107
int attr itemSpacing 0x7f030108
int attr itemTextAppearance 0x7f030109
int attr itemTextAppearanceActive 0x7f03010a
int attr itemTextAppearanceInactive 0x7f03010b
int attr itemTextColor 0x7f03010c
int attr keylines 0x7f03010d
int attr labelVisibilityMode 0x7f03010e
int attr lastBaselineToBottomHeight 0x7f03010f
int attr layout 0x7f030110
int attr layoutManager 0x7f030111
int attr layout_anchor 0x7f030112
int attr layout_anchorGravity 0x7f030113
int attr layout_behavior 0x7f030114
int attr layout_collapseMode 0x7f030115
int attr layout_collapseParallaxMultiplier 0x7f030116
int attr layout_constrainedHeight 0x7f030117
int attr layout_constrainedWidth 0x7f030118
int attr layout_constraintBaseline_creator 0x7f030119
int attr layout_constraintBaseline_toBaselineOf 0x7f03011a
int attr layout_constraintBottom_creator 0x7f03011b
int attr layout_constraintBottom_toBottomOf 0x7f03011c
int attr layout_constraintBottom_toTopOf 0x7f03011d
int attr layout_constraintCircle 0x7f03011e
int attr layout_constraintCircleAngle 0x7f03011f
int attr layout_constraintCircleRadius 0x7f030120
int attr layout_constraintDimensionRatio 0x7f030121
int attr layout_constraintEnd_toEndOf 0x7f030122
int attr layout_constraintEnd_toStartOf 0x7f030123
int attr layout_constraintGuide_begin 0x7f030124
int attr layout_constraintGuide_end 0x7f030125
int attr layout_constraintGuide_percent 0x7f030126
int attr layout_constraintHeight_default 0x7f030127
int attr layout_constraintHeight_max 0x7f030128
int attr layout_constraintHeight_min 0x7f030129
int attr layout_constraintHeight_percent 0x7f03012a
int attr layout_constraintHorizontal_bias 0x7f03012b
int attr layout_constraintHorizontal_chainStyle 0x7f03012c
int attr layout_constraintHorizontal_weight 0x7f03012d
int attr layout_constraintLeft_creator 0x7f03012e
int attr layout_constraintLeft_toLeftOf 0x7f03012f
int attr layout_constraintLeft_toRightOf 0x7f030130
int attr layout_constraintRight_creator 0x7f030131
int attr layout_constraintRight_toLeftOf 0x7f030132
int attr layout_constraintRight_toRightOf 0x7f030133
int attr layout_constraintStart_toEndOf 0x7f030134
int attr layout_constraintStart_toStartOf 0x7f030135
int attr layout_constraintTop_creator 0x7f030136
int attr layout_constraintTop_toBottomOf 0x7f030137
int attr layout_constraintTop_toTopOf 0x7f030138
int attr layout_constraintVertical_bias 0x7f030139
int attr layout_constraintVertical_chainStyle 0x7f03013a
int attr layout_constraintVertical_weight 0x7f03013b
int attr layout_constraintWidth_default 0x7f03013c
int attr layout_constraintWidth_max 0x7f03013d
int attr layout_constraintWidth_min 0x7f03013e
int attr layout_constraintWidth_percent 0x7f03013f
int attr layout_dodgeInsetEdges 0x7f030140
int attr layout_editor_absoluteX 0x7f030141
int attr layout_editor_absoluteY 0x7f030142
int attr layout_goneMarginBottom 0x7f030143
int attr layout_goneMarginEnd 0x7f030144
int attr layout_goneMarginLeft 0x7f030145
int attr layout_goneMarginRight 0x7f030146
int attr layout_goneMarginStart 0x7f030147
int attr layout_goneMarginTop 0x7f030148
int attr layout_insetEdge 0x7f030149
int attr layout_keyline 0x7f03014a
int attr layout_optimizationLevel 0x7f03014b
int attr layout_scrollFlags 0x7f03014c
int attr layout_scrollInterpolator 0x7f03014d
int attr liftOnScroll 0x7f03014e
int attr lineHeight 0x7f03014f
int attr lineSpacing 0x7f030150
int attr listChoiceBackgroundIndicator 0x7f030151
int attr listDividerAlertDialog 0x7f030152
int attr listItemLayout 0x7f030153
int attr listLayout 0x7f030154
int attr listMenuViewStyle 0x7f030155
int attr listPopupWindowStyle 0x7f030156
int attr listPreferredItemHeight 0x7f030157
int attr listPreferredItemHeightLarge 0x7f030158
int attr listPreferredItemHeightSmall 0x7f030159
int attr listPreferredItemPaddingLeft 0x7f03015a
int attr listPreferredItemPaddingRight 0x7f03015b
int attr logo 0x7f03015c
int attr logoDescription 0x7f03015d
int attr materialButtonStyle 0x7f03015e
int attr materialCardViewStyle 0x7f03015f
int attr maxActionInlineWidth 0x7f030160
int attr maxButtonHeight 0x7f030161
int attr maxImageSize 0x7f030162
int attr measureWithLargestChild 0x7f030163
int attr menu 0x7f030164
int attr multiChoiceItemLayout 0x7f030165
int attr navigationContentDescription 0x7f030166
int attr navigationIcon 0x7f030167
int attr navigationMode 0x7f030168
int attr navigationViewStyle 0x7f030169
int attr numericModifiers 0x7f03016a
int attr overlapAnchor 0x7f03016b
int attr paddingBottomNoButtons 0x7f03016c
int attr paddingEnd 0x7f03016d
int attr paddingStart 0x7f03016e
int attr paddingTopNoTitle 0x7f03016f
int attr panelBackground 0x7f030170
int attr panelMenuListTheme 0x7f030171
int attr panelMenuListWidth 0x7f030172
int attr passwordToggleContentDescription 0x7f030173
int attr passwordToggleDrawable 0x7f030174
int attr passwordToggleEnabled 0x7f030175
int attr passwordToggleTint 0x7f030176
int attr passwordToggleTintMode 0x7f030177
int attr popupMenuStyle 0x7f030178
int attr popupTheme 0x7f030179
int attr popupWindowStyle 0x7f03017a
int attr preserveIconSpacing 0x7f03017b
int attr pressedTranslationZ 0x7f03017c
int attr progressBarPadding 0x7f03017d
int attr progressBarStyle 0x7f03017e
int attr queryBackground 0x7f03017f
int attr queryHint 0x7f030180
int attr radioButtonStyle 0x7f030181
int attr ratingBarStyle 0x7f030182
int attr ratingBarStyleIndicator 0x7f030183
int attr ratingBarStyleSmall 0x7f030184
int attr reverseLayout 0x7f030185
int attr rippleColor 0x7f030186
int attr scrimAnimationDuration 0x7f030187
int attr scrimBackground 0x7f030188
int attr scrimVisibleHeightTrigger 0x7f030189
int attr searchHintIcon 0x7f03018a
int attr searchIcon 0x7f03018b
int attr searchViewStyle 0x7f03018c
int attr seekBarStyle 0x7f03018d
int attr selectableItemBackground 0x7f03018e
int attr selectableItemBackgroundBorderless 0x7f03018f
int attr showAsAction 0x7f030190
int attr showDividers 0x7f030191
int attr showMotionSpec 0x7f030192
int attr showText 0x7f030193
int attr showTitle 0x7f030194
int attr singleChoiceItemLayout 0x7f030195
int attr singleLine 0x7f030196
int attr singleSelection 0x7f030197
int attr snackbarButtonStyle 0x7f030198
int attr snackbarStyle 0x7f030199
int attr spanCount 0x7f03019a
int attr spinBars 0x7f03019b
int attr spinnerDropDownItemStyle 0x7f03019c
int attr spinnerStyle 0x7f03019d
int attr splitTrack 0x7f03019e
int attr srcCompat 0x7f03019f
int attr stackFromEnd 0x7f0301a0
int attr state_above_anchor 0x7f0301a1
int attr state_collapsed 0x7f0301a2
int attr state_collapsible 0x7f0301a3
int attr state_liftable 0x7f0301a4
int attr state_lifted 0x7f0301a5
int attr statusBarBackground 0x7f0301a6
int attr statusBarScrim 0x7f0301a7
int attr strokeColor 0x7f0301a8
int attr strokeWidth 0x7f0301a9
int attr subMenuArrow 0x7f0301aa
int attr submitBackground 0x7f0301ab
int attr subtitle 0x7f0301ac
int attr subtitleTextAppearance 0x7f0301ad
int attr subtitleTextColor 0x7f0301ae
int attr subtitleTextStyle 0x7f0301af
int attr suggestionRowLayout 0x7f0301b0
int attr switchMinWidth 0x7f0301b1
int attr switchPadding 0x7f0301b2
int attr switchStyle 0x7f0301b3
int attr switchTextAppearance 0x7f0301b4
int attr tabBackground 0x7f0301b5
int attr tabContentStart 0x7f0301b6
int attr tabGravity 0x7f0301b7
int attr tabIconTint 0x7f0301b8
int attr tabIconTintMode 0x7f0301b9
int attr tabIndicator 0x7f0301ba
int attr tabIndicatorAnimationDuration 0x7f0301bb
int attr tabIndicatorColor 0x7f0301bc
int attr tabIndicatorFullWidth 0x7f0301bd
int attr tabIndicatorGravity 0x7f0301be
int attr tabIndicatorHeight 0x7f0301bf
int attr tabInlineLabel 0x7f0301c0
int attr tabMaxWidth 0x7f0301c1
int attr tabMinWidth 0x7f0301c2
int attr tabMode 0x7f0301c3
int attr tabPadding 0x7f0301c4
int attr tabPaddingBottom 0x7f0301c5
int attr tabPaddingEnd 0x7f0301c6
int attr tabPaddingStart 0x7f0301c7
int attr tabPaddingTop 0x7f0301c8
int attr tabRippleColor 0x7f0301c9
int attr tabSelectedTextColor 0x7f0301ca
int attr tabStyle 0x7f0301cb
int attr tabTextAppearance 0x7f0301cc
int attr tabTextColor 0x7f0301cd
int attr tabUnboundedRipple 0x7f0301ce
int attr textAllCaps 0x7f0301cf
int attr textAppearanceBody1 0x7f0301d0
int attr textAppearanceBody2 0x7f0301d1
int attr textAppearanceButton 0x7f0301d2
int attr textAppearanceCaption 0x7f0301d3
int attr textAppearanceHeadline1 0x7f0301d4
int attr textAppearanceHeadline2 0x7f0301d5
int attr textAppearanceHeadline3 0x7f0301d6
int attr textAppearanceHeadline4 0x7f0301d7
int attr textAppearanceHeadline5 0x7f0301d8
int attr textAppearanceHeadline6 0x7f0301d9
int attr textAppearanceLargePopupMenu 0x7f0301da
int attr textAppearanceListItem 0x7f0301db
int attr textAppearanceListItemSecondary 0x7f0301dc
int attr textAppearanceListItemSmall 0x7f0301dd
int attr textAppearanceOverline 0x7f0301de
int attr textAppearancePopupMenuHeader 0x7f0301df
int attr textAppearanceSearchResultSubtitle 0x7f0301e0
int attr textAppearanceSearchResultTitle 0x7f0301e1
int attr textAppearanceSmallPopupMenu 0x7f0301e2
int attr textAppearanceSubtitle1 0x7f0301e3
int attr textAppearanceSubtitle2 0x7f0301e4
int attr textColorAlertDialogListItem 0x7f0301e5
int attr textColorSearchUrl 0x7f0301e6
int attr textEndPadding 0x7f0301e7
int attr textInputStyle 0x7f0301e8
int attr textStartPadding 0x7f0301e9
int attr theme 0x7f0301ea
int attr thickness 0x7f0301eb
int attr thumbTextPadding 0x7f0301ec
int attr thumbTint 0x7f0301ed
int attr thumbTintMode 0x7f0301ee
int attr tickMark 0x7f0301ef
int attr tickMarkTint 0x7f0301f0
int attr tickMarkTintMode 0x7f0301f1
int attr tint 0x7f0301f2
int attr tintMode 0x7f0301f3
int attr title 0x7f0301f4
int attr titleEnabled 0x7f0301f5
int attr titleMargin 0x7f0301f6
int attr titleMarginBottom 0x7f0301f7
int attr titleMarginEnd 0x7f0301f8
int attr titleMarginStart 0x7f0301f9
int attr titleMarginTop 0x7f0301fa
int attr titleMargins 0x7f0301fb
int attr titleTextAppearance 0x7f0301fc
int attr titleTextColor 0x7f0301fd
int attr titleTextStyle 0x7f0301fe
int attr toolbarId 0x7f0301ff
int attr toolbarNavigationButtonStyle 0x7f030200
int attr toolbarStyle 0x7f030201
int attr tooltipForegroundColor 0x7f030202
int attr tooltipFrameBackground 0x7f030203
int attr tooltipText 0x7f030204
int attr track 0x7f030205
int attr trackTint 0x7f030206
int attr trackTintMode 0x7f030207
int attr ttcIndex 0x7f030208
int attr useCompatPadding 0x7f030209
int attr viewInflaterClass 0x7f03020a
int attr voiceIcon 0x7f03020b
int attr windowActionBar 0x7f03020c
int attr windowActionBarOverlay 0x7f03020d
int attr windowActionModeOverlay 0x7f03020e
int attr windowFixedHeightMajor 0x7f03020f
int attr windowFixedHeightMinor 0x7f030210
int attr windowFixedWidthMajor 0x7f030211
int attr windowFixedWidthMinor 0x7f030212
int attr windowMinWidthMajor 0x7f030213
int attr windowMinWidthMinor 0x7f030214
int attr windowNoTitle 0x7f030215
int bool abc_action_bar_embed_tabs 0x7f040000
int bool abc_allow_stacked_button_bar 0x7f040001
int bool abc_config_actionMenuItemAllCaps 0x7f040002
int bool mtrl_btn_textappearance_all_caps 0x7f040003
int color abc_background_cache_hint_selector_material_dark 0x7f050000
int color abc_background_cache_hint_selector_material_light 0x7f050001
int color abc_btn_colored_borderless_text_material 0x7f050002
int color abc_btn_colored_text_material 0x7f050003
int color abc_color_highlight_material 0x7f050004
int color abc_hint_foreground_material_dark 0x7f050005
int color abc_hint_foreground_material_light 0x7f050006
int color abc_input_method_navigation_guard 0x7f050007
int color abc_primary_text_disable_only_material_dark 0x7f050008
int color abc_primary_text_disable_only_material_light 0x7f050009
int color abc_primary_text_material_dark 0x7f05000a
int color abc_primary_text_material_light 0x7f05000b
int color abc_search_url_text 0x7f05000c
int color abc_search_url_text_normal 0x7f05000d
int color abc_search_url_text_pressed 0x7f05000e
int color abc_search_url_text_selected 0x7f05000f
int color abc_secondary_text_material_dark 0x7f050010
int color abc_secondary_text_material_light 0x7f050011
int color abc_tint_btn_checkable 0x7f050012
int color abc_tint_default 0x7f050013
int color abc_tint_edittext 0x7f050014
int color abc_tint_seek_thumb 0x7f050015
int color abc_tint_spinner 0x7f050016
int color abc_tint_switch_track 0x7f050017
int color accent_material_dark 0x7f050018
int color accent_material_light 0x7f050019
int color background_floating_material_dark 0x7f05001a
int color background_floating_material_light 0x7f05001b
int color background_material_dark 0x7f05001c
int color background_material_light 0x7f05001d
int color bright_foreground_disabled_material_dark 0x7f05001e
int color bright_foreground_disabled_material_light 0x7f05001f
int color bright_foreground_inverse_material_dark 0x7f050020
int color bright_foreground_inverse_material_light 0x7f050021
int color bright_foreground_material_dark 0x7f050022
int color bright_foreground_material_light 0x7f050023
int color button_material_dark 0x7f050024
int color button_material_light 0x7f050025
int color cardview_dark_background 0x7f050026
int color cardview_light_background 0x7f050027
int color cardview_shadow_end_color 0x7f050028
int color cardview_shadow_start_color 0x7f050029
int color design_bottom_navigation_shadow_color 0x7f05002a
int color design_default_color_primary 0x7f05002b
int color design_default_color_primary_dark 0x7f05002c
int color design_error 0x7f05002d
int color design_fab_shadow_end_color 0x7f05002e
int color design_fab_shadow_mid_color 0x7f05002f
int color design_fab_shadow_start_color 0x7f050030
int color design_fab_stroke_end_inner_color 0x7f050031
int color design_fab_stroke_end_outer_color 0x7f050032
int color design_fab_stroke_top_inner_color 0x7f050033
int color design_fab_stroke_top_outer_color 0x7f050034
int color design_snackbar_background_color 0x7f050035
int color design_tint_password_toggle 0x7f050036
int color dim_foreground_disabled_material_dark 0x7f050037
int color dim_foreground_disabled_material_light 0x7f050038
int color dim_foreground_material_dark 0x7f050039
int color dim_foreground_material_light 0x7f05003a
int color error_color_material_dark 0x7f05003b
int color error_color_material_light 0x7f05003c
int color foreground_material_dark 0x7f05003d
int color foreground_material_light 0x7f05003e
int color highlighted_text_material_dark 0x7f05003f
int color highlighted_text_material_light 0x7f050040
int color material_blue_grey_800 0x7f050041
int color material_blue_grey_900 0x7f050042
int color material_blue_grey_950 0x7f050043
int color material_deep_teal_200 0x7f050044
int color material_deep_teal_500 0x7f050045
int color material_grey_100 0x7f050046
int color material_grey_300 0x7f050047
int color material_grey_50 0x7f050048
int color material_grey_600 0x7f050049
int color material_grey_800 0x7f05004a
int color material_grey_850 0x7f05004b
int color material_grey_900 0x7f05004c
int color mtrl_bottom_nav_colored_item_tint 0x7f05004d
int color mtrl_bottom_nav_item_tint 0x7f05004e
int color mtrl_btn_bg_color_disabled 0x7f05004f
int color mtrl_btn_bg_color_selector 0x7f050050
int color mtrl_btn_ripple_color 0x7f050051
int color mtrl_btn_stroke_color_selector 0x7f050052
int color mtrl_btn_text_btn_ripple_color 0x7f050053
int color mtrl_btn_text_color_disabled 0x7f050054
int color mtrl_btn_text_color_selector 0x7f050055
int color mtrl_btn_transparent_bg_color 0x7f050056
int color mtrl_chip_background_color 0x7f050057
int color mtrl_chip_close_icon_tint 0x7f050058
int color mtrl_chip_ripple_color 0x7f050059
int color mtrl_chip_text_color 0x7f05005a
int color mtrl_fab_ripple_color 0x7f05005b
int color mtrl_scrim_color 0x7f05005c
int color mtrl_tabs_colored_ripple_color 0x7f05005d
int color mtrl_tabs_icon_color_selector 0x7f05005e
int color mtrl_tabs_icon_color_selector_colored 0x7f05005f
int color mtrl_tabs_legacy_text_color_selector 0x7f050060
int color mtrl_tabs_ripple_color 0x7f050061
int color mtrl_text_btn_text_color_selector 0x7f050062
int color mtrl_textinput_default_box_stroke_color 0x7f050063
int color mtrl_textinput_disabled_color 0x7f050064
int color mtrl_textinput_filled_box_default_background_color 0x7f050065
int color mtrl_textinput_hovered_box_stroke_color 0x7f050066
int color notification_action_color_filter 0x7f050067
int color notification_icon_bg_color 0x7f050068
int color primary_dark_material_dark 0x7f050069
int color primary_dark_material_light 0x7f05006a
int color primary_material_dark 0x7f05006b
int color primary_material_light 0x7f05006c
int color primary_text_default_material_dark 0x7f05006d
int color primary_text_default_material_light 0x7f05006e
int color primary_text_disabled_material_dark 0x7f05006f
int color primary_text_disabled_material_light 0x7f050070
int color ripple_material_dark 0x7f050071
int color ripple_material_light 0x7f050072
int color secondary_text_default_material_dark 0x7f050073
int color secondary_text_default_material_light 0x7f050074
int color secondary_text_disabled_material_dark 0x7f050075
int color secondary_text_disabled_material_light 0x7f050076
int color switch_thumb_disabled_material_dark 0x7f050077
int color switch_thumb_disabled_material_light 0x7f050078
int color switch_thumb_material_dark 0x7f050079
int color switch_thumb_material_light 0x7f05007a
int color switch_thumb_normal_material_dark 0x7f05007b
int color switch_thumb_normal_material_light 0x7f05007c
int color tooltip_background_dark 0x7f05007d
int color tooltip_background_light 0x7f05007e
int dimen abc_action_bar_content_inset_material 0x7f060000
int dimen abc_action_bar_content_inset_with_nav 0x7f060001
int dimen abc_action_bar_default_height_material 0x7f060002
int dimen abc_action_bar_default_padding_end_material 0x7f060003
int dimen abc_action_bar_default_padding_start_material 0x7f060004
int dimen abc_action_bar_elevation_material 0x7f060005
int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006
int dimen abc_action_bar_overflow_padding_end_material 0x7f060007
int dimen abc_action_bar_overflow_padding_start_material 0x7f060008
int dimen abc_action_bar_stacked_max_height 0x7f060009
int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a
int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b
int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c
int dimen abc_action_button_min_height_material 0x7f06000d
int dimen abc_action_button_min_width_material 0x7f06000e
int dimen abc_action_button_min_width_overflow_material 0x7f06000f
int dimen abc_alert_dialog_button_bar_height 0x7f060010
int dimen abc_alert_dialog_button_dimen 0x7f060011
int dimen abc_button_inset_horizontal_material 0x7f060012
int dimen abc_button_inset_vertical_material 0x7f060013
int dimen abc_button_padding_horizontal_material 0x7f060014
int dimen abc_button_padding_vertical_material 0x7f060015
int dimen abc_cascading_menus_min_smallest_width 0x7f060016
int dimen abc_config_prefDialogWidth 0x7f060017
int dimen abc_control_corner_material 0x7f060018
int dimen abc_control_inset_material 0x7f060019
int dimen abc_control_padding_material 0x7f06001a
int dimen abc_dialog_corner_radius_material 0x7f06001b
int dimen abc_dialog_fixed_height_major 0x7f06001c
int dimen abc_dialog_fixed_height_minor 0x7f06001d
int dimen abc_dialog_fixed_width_major 0x7f06001e
int dimen abc_dialog_fixed_width_minor 0x7f06001f
int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020
int dimen abc_dialog_list_padding_top_no_title 0x7f060021
int dimen abc_dialog_min_width_major 0x7f060022
int dimen abc_dialog_min_width_minor 0x7f060023
int dimen abc_dialog_padding_material 0x7f060024
int dimen abc_dialog_padding_top_material 0x7f060025
int dimen abc_dialog_title_divider_material 0x7f060026
int dimen abc_disabled_alpha_material_dark 0x7f060027
int dimen abc_disabled_alpha_material_light 0x7f060028
int dimen abc_dropdownitem_icon_width 0x7f060029
int dimen abc_dropdownitem_text_padding_left 0x7f06002a
int dimen abc_dropdownitem_text_padding_right 0x7f06002b
int dimen abc_edit_text_inset_bottom_material 0x7f06002c
int dimen abc_edit_text_inset_horizontal_material 0x7f06002d
int dimen abc_edit_text_inset_top_material 0x7f06002e
int dimen abc_floating_window_z 0x7f06002f
int dimen abc_list_item_padding_horizontal_material 0x7f060030
int dimen abc_panel_menu_list_width 0x7f060031
int dimen abc_progress_bar_height_material 0x7f060032
int dimen abc_search_view_preferred_height 0x7f060033
int dimen abc_search_view_preferred_width 0x7f060034
int dimen abc_seekbar_track_background_height_material 0x7f060035
int dimen abc_seekbar_track_progress_height_material 0x7f060036
int dimen abc_select_dialog_padding_start_material 0x7f060037
int dimen abc_switch_padding 0x7f060038
int dimen abc_text_size_body_1_material 0x7f060039
int dimen abc_text_size_body_2_material 0x7f06003a
int dimen abc_text_size_button_material 0x7f06003b
int dimen abc_text_size_caption_material 0x7f06003c
int dimen abc_text_size_display_1_material 0x7f06003d
int dimen abc_text_size_display_2_material 0x7f06003e
int dimen abc_text_size_display_3_material 0x7f06003f
int dimen abc_text_size_display_4_material 0x7f060040
int dimen abc_text_size_headline_material 0x7f060041
int dimen abc_text_size_large_material 0x7f060042
int dimen abc_text_size_medium_material 0x7f060043
int dimen abc_text_size_menu_header_material 0x7f060044
int dimen abc_text_size_menu_material 0x7f060045
int dimen abc_text_size_small_material 0x7f060046
int dimen abc_text_size_subhead_material 0x7f060047
int dimen abc_text_size_subtitle_material_toolbar 0x7f060048
int dimen abc_text_size_title_material 0x7f060049
int dimen abc_text_size_title_material_toolbar 0x7f06004a
int dimen activity_horizontal_margin 0x7f06004b
int dimen activity_vertical_margin 0x7f06004c
int dimen cardview_compat_inset_shadow 0x7f06004d
int dimen cardview_default_elevation 0x7f06004e
int dimen cardview_default_radius 0x7f06004f
int dimen compat_button_inset_horizontal_material 0x7f060050
int dimen compat_button_inset_vertical_material 0x7f060051
int dimen compat_button_padding_horizontal_material 0x7f060052
int dimen compat_button_padding_vertical_material 0x7f060053
int dimen compat_control_corner_material 0x7f060054
int dimen compat_notification_large_icon_max_height 0x7f060055
int dimen compat_notification_large_icon_max_width 0x7f060056
int dimen design_appbar_elevation 0x7f060057
int dimen design_bottom_navigation_active_item_max_width 0x7f060058
int dimen design_bottom_navigation_active_item_min_width 0x7f060059
int dimen design_bottom_navigation_active_text_size 0x7f06005a
int dimen design_bottom_navigation_elevation 0x7f06005b
int dimen design_bottom_navigation_height 0x7f06005c
int dimen design_bottom_navigation_icon_size 0x7f06005d
int dimen design_bottom_navigation_item_max_width 0x7f06005e
int dimen design_bottom_navigation_item_min_width 0x7f06005f
int dimen design_bottom_navigation_margin 0x7f060060
int dimen design_bottom_navigation_shadow_height 0x7f060061
int dimen design_bottom_navigation_text_size 0x7f060062
int dimen design_bottom_sheet_modal_elevation 0x7f060063
int dimen design_bottom_sheet_peek_height_min 0x7f060064
int dimen design_fab_border_width 0x7f060065
int dimen design_fab_elevation 0x7f060066
int dimen design_fab_image_size 0x7f060067
int dimen design_fab_size_mini 0x7f060068
int dimen design_fab_size_normal 0x7f060069
int dimen design_fab_translation_z_hovered_focused 0x7f06006a
int dimen design_fab_translation_z_pressed 0x7f06006b
int dimen design_navigation_elevation 0x7f06006c
int dimen design_navigation_icon_padding 0x7f06006d
int dimen design_navigation_icon_size 0x7f06006e
int dimen design_navigation_item_horizontal_padding 0x7f06006f
int dimen design_navigation_item_icon_padding 0x7f060070
int dimen design_navigation_max_width 0x7f060071
int dimen design_navigation_padding_bottom 0x7f060072
int dimen design_navigation_separator_vertical_padding 0x7f060073
int dimen design_snackbar_action_inline_max_width 0x7f060074
int dimen design_snackbar_background_corner_radius 0x7f060075
int dimen design_snackbar_elevation 0x7f060076
int dimen design_snackbar_extra_spacing_horizontal 0x7f060077
int dimen design_snackbar_max_width 0x7f060078
int dimen design_snackbar_min_width 0x7f060079
int dimen design_snackbar_padding_horizontal 0x7f06007a
int dimen design_snackbar_padding_vertical 0x7f06007b
int dimen design_snackbar_padding_vertical_2lines 0x7f06007c
int dimen design_snackbar_text_size 0x7f06007d
int dimen design_tab_max_width 0x7f06007e
int dimen design_tab_scrollable_min_width 0x7f06007f
int dimen design_tab_text_size 0x7f060080
int dimen design_tab_text_size_2line 0x7f060081
int dimen design_textinput_caption_translate_y 0x7f060082
int dimen disabled_alpha_material_dark 0x7f060083
int dimen disabled_alpha_material_light 0x7f060084
int dimen fastscroll_default_thickness 0x7f060085
int dimen fastscroll_margin 0x7f060086
int dimen fastscroll_minimum_range 0x7f060087
int dimen highlight_alpha_material_colored 0x7f060088
int dimen highlight_alpha_material_dark 0x7f060089
int dimen highlight_alpha_material_light 0x7f06008a
int dimen hint_alpha_material_dark 0x7f06008b
int dimen hint_alpha_material_light 0x7f06008c
int dimen hint_pressed_alpha_material_dark 0x7f06008d
int dimen hint_pressed_alpha_material_light 0x7f06008e
int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f06008f
int dimen item_touch_helper_swipe_escape_max_velocity 0x7f060090
int dimen item_touch_helper_swipe_escape_velocity 0x7f060091
int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f060092
int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f060093
int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f060094
int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f060095
int dimen mtrl_bottomappbar_height 0x7f060096
int dimen mtrl_btn_corner_radius 0x7f060097
int dimen mtrl_btn_dialog_btn_min_width 0x7f060098
int dimen mtrl_btn_disabled_elevation 0x7f060099
int dimen mtrl_btn_disabled_z 0x7f06009a
int dimen mtrl_btn_elevation 0x7f06009b
int dimen mtrl_btn_focused_z 0x7f06009c
int dimen mtrl_btn_hovered_z 0x7f06009d
int dimen mtrl_btn_icon_btn_padding_left 0x7f06009e
int dimen mtrl_btn_icon_padding 0x7f06009f
int dimen mtrl_btn_inset 0x7f0600a0
int dimen mtrl_btn_letter_spacing 0x7f0600a1
int dimen mtrl_btn_padding_bottom 0x7f0600a2
int dimen mtrl_btn_padding_left 0x7f0600a3
int dimen mtrl_btn_padding_right 0x7f0600a4
int dimen mtrl_btn_padding_top 0x7f0600a5
int dimen mtrl_btn_pressed_z 0x7f0600a6
int dimen mtrl_btn_stroke_size 0x7f0600a7
int dimen mtrl_btn_text_btn_icon_padding 0x7f0600a8
int dimen mtrl_btn_text_btn_padding_left 0x7f0600a9
int dimen mtrl_btn_text_btn_padding_right 0x7f0600aa
int dimen mtrl_btn_text_size 0x7f0600ab
int dimen mtrl_btn_z 0x7f0600ac
int dimen mtrl_card_elevation 0x7f0600ad
int dimen mtrl_card_spacing 0x7f0600ae
int dimen mtrl_chip_pressed_translation_z 0x7f0600af
int dimen mtrl_chip_text_size 0x7f0600b0
int dimen mtrl_fab_elevation 0x7f0600b1
int dimen mtrl_fab_translation_z_hovered_focused 0x7f0600b2
int dimen mtrl_fab_translation_z_pressed 0x7f0600b3
int dimen mtrl_navigation_elevation 0x7f0600b4
int dimen mtrl_navigation_item_horizontal_padding 0x7f0600b5
int dimen mtrl_navigation_item_icon_padding 0x7f0600b6
int dimen mtrl_snackbar_background_corner_radius 0x7f0600b7
int dimen mtrl_snackbar_margin 0x7f0600b8
int dimen mtrl_textinput_box_bottom_offset 0x7f0600b9
int dimen mtrl_textinput_box_corner_radius_medium 0x7f0600ba
int dimen mtrl_textinput_box_corner_radius_small 0x7f0600bb
int dimen mtrl_textinput_box_label_cutout_padding 0x7f0600bc
int dimen mtrl_textinput_box_padding_end 0x7f0600bd
int dimen mtrl_textinput_box_stroke_width_default 0x7f0600be
int dimen mtrl_textinput_box_stroke_width_focused 0x7f0600bf
int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0600c0
int dimen mtrl_toolbar_default_height 0x7f0600c1
int dimen notification_action_icon_size 0x7f0600c2
int dimen notification_action_text_size 0x7f0600c3
int dimen notification_big_circle_margin 0x7f0600c4
int dimen notification_content_margin_start 0x7f0600c5
int dimen notification_large_icon_height 0x7f0600c6
int dimen notification_large_icon_width 0x7f0600c7
int dimen notification_main_column_padding_top 0x7f0600c8
int dimen notification_media_narrow_margin 0x7f0600c9
int dimen notification_right_icon_size 0x7f0600ca
int dimen notification_right_side_padding_top 0x7f0600cb
int dimen notification_small_icon_background_padding 0x7f0600cc
int dimen notification_small_icon_size_as_large 0x7f0600cd
int dimen notification_subtext_size 0x7f0600ce
int dimen notification_top_pad 0x7f0600cf
int dimen notification_top_pad_large_text 0x7f0600d0
int dimen tooltip_corner_radius 0x7f0600d1
int dimen tooltip_horizontal_padding 0x7f0600d2
int dimen tooltip_margin 0x7f0600d3
int dimen tooltip_precise_anchor_extra_offset 0x7f0600d4
int dimen tooltip_precise_anchor_threshold 0x7f0600d5
int dimen tooltip_vertical_padding 0x7f0600d6
int dimen tooltip_y_offset_non_touch 0x7f0600d7
int dimen tooltip_y_offset_touch 0x7f0600d8
int drawable abc_ab_share_pack_mtrl_alpha 0x7f070006
int drawable abc_action_bar_item_background_material 0x7f070007
int drawable abc_btn_borderless_material 0x7f070008
int drawable abc_btn_check_material 0x7f070009
int drawable abc_btn_check_to_on_mtrl_000 0x7f07000a
int drawable abc_btn_check_to_on_mtrl_015 0x7f07000b
int drawable abc_btn_colored_material 0x7f07000c
int drawable abc_btn_default_mtrl_shape 0x7f07000d
int drawable abc_btn_radio_material 0x7f07000e
int drawable abc_btn_radio_to_on_mtrl_000 0x7f07000f
int drawable abc_btn_radio_to_on_mtrl_015 0x7f070010
int drawable abc_btn_switch_to_on_mtrl_00001 0x7f070011
int drawable abc_btn_switch_to_on_mtrl_00012 0x7f070012
int drawable abc_cab_background_internal_bg 0x7f070013
int drawable abc_cab_background_top_material 0x7f070014
int drawable abc_cab_background_top_mtrl_alpha 0x7f070015
int drawable abc_control_background_material 0x7f070016
int drawable abc_dialog_material_background 0x7f070017
int drawable abc_edit_text_material 0x7f070018
int drawable abc_ic_ab_back_material 0x7f070019
int drawable abc_ic_arrow_drop_right_black_24dp 0x7f07001a
int drawable abc_ic_clear_material 0x7f07001b
int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f07001c
int drawable abc_ic_go_search_api_material 0x7f07001d
int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f07001e
int drawable abc_ic_menu_cut_mtrl_alpha 0x7f07001f
int drawable abc_ic_menu_overflow_material 0x7f070020
int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f070021
int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f070022
int drawable abc_ic_menu_share_mtrl_alpha 0x7f070023
int drawable abc_ic_search_api_material 0x7f070024
int drawable abc_ic_star_black_16dp 0x7f070025
int drawable abc_ic_star_black_36dp 0x7f070026
int drawable abc_ic_star_black_48dp 0x7f070027
int drawable abc_ic_star_half_black_16dp 0x7f070028
int drawable abc_ic_star_half_black_36dp 0x7f070029
int drawable abc_ic_star_half_black_48dp 0x7f07002a
int drawable abc_ic_voice_search_api_material 0x7f07002b
int drawable abc_item_background_holo_dark 0x7f07002c
int drawable abc_item_background_holo_light 0x7f07002d
int drawable abc_list_divider_material 0x7f07002e
int drawable abc_list_divider_mtrl_alpha 0x7f07002f
int drawable abc_list_focused_holo 0x7f070030
int drawable abc_list_longpressed_holo 0x7f070031
int drawable abc_list_pressed_holo_dark 0x7f070032
int drawable abc_list_pressed_holo_light 0x7f070033
int drawable abc_list_selector_background_transition_holo_dark 0x7f070034
int drawable abc_list_selector_background_transition_holo_light 0x7f070035
int drawable abc_list_selector_disabled_holo_dark 0x7f070036
int drawable abc_list_selector_disabled_holo_light 0x7f070037
int drawable abc_list_selector_holo_dark 0x7f070038
int drawable abc_list_selector_holo_light 0x7f070039
int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f07003a
int drawable abc_popup_background_mtrl_mult 0x7f07003b
int drawable abc_ratingbar_indicator_material 0x7f07003c
int drawable abc_ratingbar_material 0x7f07003d
int drawable abc_ratingbar_small_material 0x7f07003e
int drawable abc_scrubber_control_off_mtrl_alpha 0x7f07003f
int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f070040
int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f070041
int drawable abc_scrubber_primary_mtrl_alpha 0x7f070042
int drawable abc_scrubber_track_mtrl_alpha 0x7f070043
int drawable abc_seekbar_thumb_material 0x7f070044
int drawable abc_seekbar_tick_mark_material 0x7f070045
int drawable abc_seekbar_track_material 0x7f070046
int drawable abc_spinner_mtrl_am_alpha 0x7f070047
int drawable abc_spinner_textfield_background_material 0x7f070048
int drawable abc_switch_thumb_material 0x7f070049
int drawable abc_switch_track_mtrl_alpha 0x7f07004a
int drawable abc_tab_indicator_material 0x7f07004b
int drawable abc_tab_indicator_mtrl_alpha 0x7f07004c
int drawable abc_text_cursor_material 0x7f07004d
int drawable abc_text_select_handle_left_mtrl_dark 0x7f07004e
int drawable abc_text_select_handle_left_mtrl_light 0x7f07004f
int drawable abc_text_select_handle_middle_mtrl_dark 0x7f070050
int drawable abc_text_select_handle_middle_mtrl_light 0x7f070051
int drawable abc_text_select_handle_right_mtrl_dark 0x7f070052
int drawable abc_text_select_handle_right_mtrl_light 0x7f070053
int drawable abc_textfield_activated_mtrl_alpha 0x7f070054
int drawable abc_textfield_default_mtrl_alpha 0x7f070055
int drawable abc_textfield_search_activated_mtrl_alpha 0x7f070056
int drawable abc_textfield_search_default_mtrl_alpha 0x7f070057
int drawable abc_textfield_search_material 0x7f070058
int drawable abc_vector_test 0x7f070059
int drawable avd_hide_password 0x7f07005a
int drawable avd_show_password 0x7f07005b
int drawable design_bottom_navigation_item_background 0x7f07005c
int drawable design_fab_background 0x7f07005d
int drawable design_ic_visibility 0x7f07005e
int drawable design_ic_visibility_off 0x7f07005f
int drawable design_password_eye 0x7f070060
int drawable design_snackbar_background 0x7f070061
int drawable ic_mtrl_chip_checked_black 0x7f070062
int drawable ic_mtrl_chip_checked_circle 0x7f070063
int drawable ic_mtrl_chip_close_circle 0x7f070064
int drawable mtrl_snackbar_background 0x7f070065
int drawable mtrl_tabs_default_indicator 0x7f070066
int drawable navigation_empty_icon 0x7f070067
int drawable notification_action_background 0x7f070068
int drawable notification_bg 0x7f070069
int drawable notification_bg_low 0x7f07006a
int drawable notification_bg_low_normal 0x7f07006b
int drawable notification_bg_low_pressed 0x7f07006c
int drawable notification_bg_normal 0x7f07006d
int drawable notification_bg_normal_pressed 0x7f07006e
int drawable notification_icon_background 0x7f07006f
int drawable notification_template_icon_bg 0x7f070070
int drawable notification_template_icon_low_bg 0x7f070071
int drawable notification_tile_bg 0x7f070072
int drawable notify_panel_notification_icon_bg 0x7f070073
int drawable tooltip_frame_dark 0x7f070074
int drawable tooltip_frame_light 0x7f070075
int id ALT 0x7f080000
int id CTRL 0x7f080001
int id FUNCTION 0x7f080002
int id META 0x7f080003
int id SHIFT 0x7f080004
int id SYM 0x7f080005
int id action_bar 0x7f080006
int id action_bar_activity_content 0x7f080007
int id action_bar_container 0x7f080008
int id action_bar_root 0x7f080009
int id action_bar_spinner 0x7f08000a
int id action_bar_subtitle 0x7f08000b
int id action_bar_title 0x7f08000c
int id action_container 0x7f08000d
int id action_context_bar 0x7f08000e
int id action_divider 0x7f08000f
int id action_image 0x7f080010
int id action_menu_divider 0x7f080011
int id action_menu_presenter 0x7f080012
int id action_mode_bar 0x7f080013
int id action_mode_bar_stub 0x7f080014
int id action_mode_close_button 0x7f080015
int id action_settings 0x7f080016
int id action_text 0x7f080017
int id actions 0x7f080018
int id activity_chooser_view_content 0x7f080019
int id add 0x7f08001a
int id alertTitle 0x7f08001b
int id all 0x7f08001c
int id always 0x7f08001d
int id async 0x7f08001e
int id auto 0x7f08001f
int id barrier 0x7f080020
int id beginning 0x7f080021
int id blocking 0x7f080022
int id bottom 0x7f080023
int id btn_call_api 0x7f080024
int id buttonPanel 0x7f080025
int id center 0x7f080026
int id center_horizontal 0x7f080027
int id center_vertical 0x7f080028
int id chains 0x7f080029
int id checkbox 0x7f08002a
int id chronometer 0x7f08002b
int id clip_horizontal 0x7f08002c
int id clip_vertical 0x7f08002d
int id collapseActionView 0x7f08002e
int id container 0x7f08002f
int id content 0x7f080030
int id contentPanel 0x7f080031
int id coordinator 0x7f080032
int id custom 0x7f080033
int id customPanel 0x7f080034
int id dataBinding 0x7f080035
int id decor_content_parent 0x7f080036
int id default_activity_button 0x7f080037
int id design_bottom_sheet 0x7f080038
int id design_menu_item_action_area 0x7f080039
int id design_menu_item_action_area_stub 0x7f08003a
int id design_menu_item_text 0x7f08003b
int id design_navigation_view 0x7f08003c
int id dimensions 0x7f08003d
int id direct 0x7f08003e
int id disableHome 0x7f08003f
int id editText 0x7f080040
int id edit_query 0x7f080041
int id end 0x7f080042
int id enterAlways 0x7f080043
int id enterAlwaysCollapsed 0x7f080044
int id exitUntilCollapsed 0x7f080045
int id expand_activities_button 0x7f080046
int id expanded_menu 0x7f080047
int id fill 0x7f080048
int id fill_horizontal 0x7f080049
int id fill_vertical 0x7f08004a
int id filled 0x7f08004b
int id fixed 0x7f08004c
int id forever 0x7f08004d
int id ghost_view 0x7f08004e
int id gone 0x7f08004f
int id group_divider 0x7f080050
int id groups 0x7f080051
int id home 0x7f080052
int id homeAsUp 0x7f080053
int id icon 0x7f080054
int id icon_group 0x7f080055
int id ifRoom 0x7f080056
int id image 0x7f080057
int id info 0x7f080058
int id invisible 0x7f080059
int id italic 0x7f08005a
int id item_touch_helper_previous_elevation 0x7f08005b
int id labeled 0x7f08005c
int id largeLabel 0x7f08005d
int id left 0x7f08005e
int id line1 0x7f08005f
int id line3 0x7f080060
int id listMode 0x7f080061
int id list_item 0x7f080062
int id masked 0x7f080063
int id message 0x7f080064
int id middle 0x7f080065
int id mini 0x7f080066
int id mtrl_child_content_container 0x7f080067
int id mtrl_internal_children_alpha_tag 0x7f080068
int id multiply 0x7f080069
int id navigation_header_container 0x7f08006a
int id never 0x7f08006b
int id none 0x7f08006c
int id normal 0x7f08006d
int id notification_background 0x7f08006e
int id notification_main_column 0x7f08006f
int id notification_main_column_container 0x7f080070
int id onAttachStateChangeListener 0x7f080071
int id onDateChanged 0x7f080072
int id outline 0x7f080073
int id packed 0x7f080074
int id parallax 0x7f080075
int id parent 0x7f080076
int id parentPanel 0x7f080077
int id parent_matrix 0x7f080078
int id percent 0x7f080079
int id pin 0x7f08007a
int id progress_circular 0x7f08007b
int id progress_horizontal 0x7f08007c
int id radio 0x7f08007d
int id right 0x7f08007e
int id right_icon 0x7f08007f
int id right_side 0x7f080080
int id save_image_matrix 0x7f080081
int id save_non_transition_alpha 0x7f080082
int id save_scale_type 0x7f080083
int id screen 0x7f080084
int id scroll 0x7f080085
int id scrollIndicatorDown 0x7f080086
int id scrollIndicatorUp 0x7f080087
int id scrollView 0x7f080088
int id scrollable 0x7f080089
int id search_badge 0x7f08008a
int id search_bar 0x7f08008b
int id search_button 0x7f08008c
int id search_close_btn 0x7f08008d
int id search_edit_frame 0x7f08008e
int id search_go_btn 0x7f08008f
int id search_mag_icon 0x7f080090
int id search_plate 0x7f080091
int id search_src_text 0x7f080092
int id search_voice_btn 0x7f080093
int id select_dialog_listview 0x7f080094
int id selected 0x7f080095
int id shortcut 0x7f080096
int id showCustom 0x7f080097
int id showHome 0x7f080098
int id showTitle 0x7f080099
int id smallLabel 0x7f08009a
int id snackbar_action 0x7f08009b
int id snackbar_text 0x7f08009c
int id snap 0x7f08009d
int id snapMargins 0x7f08009e
int id spacer 0x7f08009f
int id split_action_bar 0x7f0800a0
int id spread 0x7f0800a1
int id spread_inside 0x7f0800a2
int id src_atop 0x7f0800a3
int id src_in 0x7f0800a4
int id src_over 0x7f0800a5
int id standard 0x7f0800a6
int id start 0x7f0800a7
int id stretch 0x7f0800a8
int id submenuarrow 0x7f0800a9
int id submit_area 0x7f0800aa
int id tabMode 0x7f0800ab
int id tag_transition_group 0x7f0800ac
int id tag_unhandled_key_event_manager 0x7f0800ad
int id tag_unhandled_key_listeners 0x7f0800ae
int id text 0x7f0800af
int id text2 0x7f0800b0
int id textSpacerNoButtons 0x7f0800b1
int id textSpacerNoTitle 0x7f0800b2
int id textStart 0x7f0800b3
int id textWatcher 0x7f0800b4
int id text_input_layout 0x7f0800b5
int id text_input_password_toggle 0x7f0800b6
int id textinput_counter 0x7f0800b7
int id textinput_error 0x7f0800b8
int id textinput_helper_text 0x7f0800b9
int id time 0x7f0800ba
int id title 0x7f0800bb
int id titleDividerNoCustom 0x7f0800bc
int id title_template 0x7f0800bd
int id top 0x7f0800be
int id topPanel 0x7f0800bf
int id touch_outside 0x7f0800c0
int id transition_current_scene 0x7f0800c1
int id transition_layout_save 0x7f0800c2
int id transition_position 0x7f0800c3
int id transition_scene_layoutid_cache 0x7f0800c4
int id transition_transform 0x7f0800c5
int id tv 0x7f0800c6
int id tv1 0x7f0800c7
int id uniform 0x7f0800c8
int id unlabeled 0x7f0800c9
int id up 0x7f0800ca
int id useLogo 0x7f0800cb
int id view_offset_helper 0x7f0800cc
int id visible 0x7f0800cd
int id withText 0x7f0800ce
int id wrap 0x7f0800cf
int id wrap_content 0x7f0800d0
int integer abc_config_activityDefaultDur 0x7f090000
int integer abc_config_activityShortDur 0x7f090001
int integer app_bar_elevation_anim_duration 0x7f090002
int integer bottom_sheet_slide_duration 0x7f090003
int integer cancel_button_image_alpha 0x7f090004
int integer config_tooltipAnimTime 0x7f090005
int integer design_snackbar_text_max_lines 0x7f090006
int integer design_tab_indicator_anim_duration_ms 0x7f090007
int integer hide_password_duration 0x7f090008
int integer mtrl_btn_anim_delay_ms 0x7f090009
int integer mtrl_btn_anim_duration_ms 0x7f09000a
int integer mtrl_chip_anim_duration 0x7f09000b
int integer mtrl_tab_indicator_anim_duration_ms 0x7f09000c
int integer show_password_duration 0x7f09000d
int integer status_bar_notification_info_maxnum 0x7f09000e
int interpolator mtrl_fast_out_linear_in 0x7f0a0000
int interpolator mtrl_fast_out_slow_in 0x7f0a0001
int interpolator mtrl_linear 0x7f0a0002
int interpolator mtrl_linear_out_slow_in 0x7f0a0003
int layout abc_action_bar_title_item 0x7f0b0000
int layout abc_action_bar_up_container 0x7f0b0001
int layout abc_action_menu_item_layout 0x7f0b0002
int layout abc_action_menu_layout 0x7f0b0003
int layout abc_action_mode_bar 0x7f0b0004
int layout abc_action_mode_close_item_material 0x7f0b0005
int layout abc_activity_chooser_view 0x7f0b0006
int layout abc_activity_chooser_view_list_item 0x7f0b0007
int layout abc_alert_dialog_button_bar_material 0x7f0b0008
int layout abc_alert_dialog_material 0x7f0b0009
int layout abc_alert_dialog_title_material 0x7f0b000a
int layout abc_cascading_menu_item_layout 0x7f0b000b
int layout abc_dialog_title_material 0x7f0b000c
int layout abc_expanded_menu_layout 0x7f0b000d
int layout abc_list_menu_item_checkbox 0x7f0b000e
int layout abc_list_menu_item_icon 0x7f0b000f
int layout abc_list_menu_item_layout 0x7f0b0010
int layout abc_list_menu_item_radio 0x7f0b0011
int layout abc_popup_menu_header_item_layout 0x7f0b0012
int layout abc_popup_menu_item_layout 0x7f0b0013
int layout abc_screen_content_include 0x7f0b0014
int layout abc_screen_simple 0x7f0b0015
int layout abc_screen_simple_overlay_action_mode 0x7f0b0016
int layout abc_screen_toolbar 0x7f0b0017
int layout abc_search_dropdown_item_icons_2line 0x7f0b0018
int layout abc_search_view 0x7f0b0019
int layout abc_select_dialog_material 0x7f0b001a
int layout abc_tooltip 0x7f0b001b
int layout activity_login 0x7f0b001c
int layout activity_sample 0x7f0b001d
int layout design_bottom_navigation_item 0x7f0b001e
int layout design_bottom_sheet_dialog 0x7f0b001f
int layout design_layout_snackbar 0x7f0b0020
int layout design_layout_snackbar_include 0x7f0b0021
int layout design_layout_tab_icon 0x7f0b0022
int layout design_layout_tab_text 0x7f0b0023
int layout design_menu_item_action_area 0x7f0b0024
int layout design_navigation_item 0x7f0b0025
int layout design_navigation_item_header 0x7f0b0026
int layout design_navigation_item_separator 0x7f0b0027
int layout design_navigation_item_subheader 0x7f0b0028
int layout design_navigation_menu 0x7f0b0029
int layout design_navigation_menu_item 0x7f0b002a
int layout design_text_input_password_icon 0x7f0b002b
int layout mtrl_layout_snackbar 0x7f0b002c
int layout mtrl_layout_snackbar_include 0x7f0b002d
int layout notification_action 0x7f0b002e
int layout notification_action_tombstone 0x7f0b002f
int layout notification_template_custom_big 0x7f0b0030
int layout notification_template_icon_group 0x7f0b0031
int layout notification_template_part_chronometer 0x7f0b0032
int layout notification_template_part_time 0x7f0b0033
int layout select_dialog_item_material 0x7f0b0034
int layout select_dialog_multichoice_material 0x7f0b0035
int layout select_dialog_singlechoice_material 0x7f0b0036
int layout support_simple_spinner_dropdown_item 0x7f0b0037
int menu main_menu 0x7f0c0000
int mipmap app_icon 0x7f0d0000
int mipmap cab_icon 0x7f0d0001
int mipmap splash_screen 0x7f0d0002
int string abc_action_bar_home_description 0x7f0e0000
int string abc_action_bar_up_description 0x7f0e0001
int string abc_action_menu_overflow_description 0x7f0e0002
int string abc_action_mode_done 0x7f0e0003
int string abc_activity_chooser_view_see_all 0x7f0e0004
int string abc_activitychooserview_choose_application 0x7f0e0005
int string abc_capital_off 0x7f0e0006
int string abc_capital_on 0x7f0e0007
int string abc_font_family_body_1_material 0x7f0e0008
int string abc_font_family_body_2_material 0x7f0e0009
int string abc_font_family_button_material 0x7f0e000a
int string abc_font_family_caption_material 0x7f0e000b
int string abc_font_family_display_1_material 0x7f0e000c
int string abc_font_family_display_2_material 0x7f0e000d
int string abc_font_family_display_3_material 0x7f0e000e
int string abc_font_family_display_4_material 0x7f0e000f
int string abc_font_family_headline_material 0x7f0e0010
int string abc_font_family_menu_material 0x7f0e0011
int string abc_font_family_subhead_material 0x7f0e0012
int string abc_font_family_title_material 0x7f0e0013
int string abc_menu_alt_shortcut_label 0x7f0e0014
int string abc_menu_ctrl_shortcut_label 0x7f0e0015
int string abc_menu_delete_shortcut_label 0x7f0e0016
int string abc_menu_enter_shortcut_label 0x7f0e0017
int string abc_menu_function_shortcut_label 0x7f0e0018
int string abc_menu_meta_shortcut_label 0x7f0e0019
int string abc_menu_shift_shortcut_label 0x7f0e001a
int string abc_menu_space_shortcut_label 0x7f0e001b
int string abc_menu_sym_shortcut_label 0x7f0e001c
int string abc_prepend_shortcut_label 0x7f0e001d
int string abc_search_hint 0x7f0e001e
int string abc_searchview_description_clear 0x7f0e001f
int string abc_searchview_description_query 0x7f0e0020
int string abc_searchview_description_search 0x7f0e0021
int string abc_searchview_description_submit 0x7f0e0022
int string abc_searchview_description_voice 0x7f0e0023
int string abc_shareactionprovider_share_with 0x7f0e0024
int string abc_shareactionprovider_share_with_application 0x7f0e0025
int string abc_toolbar_collapse_description 0x7f0e0026
int string action_settings 0x7f0e0027
int string app_description 0x7f0e0028
int string app_name 0x7f0e0029
int string appbar_scrolling_view_behavior 0x7f0e002a
int string bottom_sheet_behavior 0x7f0e002b
int string character_counter_content_description 0x7f0e002c
int string character_counter_pattern 0x7f0e002d
int string fab_transformation_scrim_behavior 0x7f0e002e
int string fab_transformation_sheet_behavior 0x7f0e002f
int string hide_bottom_view_on_scroll_behavior 0x7f0e0030
int string mtrl_chip_close_icon_content_description 0x7f0e0031
int string name_hint 0x7f0e0032
int string password_toggle_content_description 0x7f0e0033
int string path_password_eye 0x7f0e0034
int string path_password_eye_mask_strike_through 0x7f0e0035
int string path_password_eye_mask_visible 0x7f0e0036
int string path_password_strike_through 0x7f0e0037
int string search_menu_title 0x7f0e0038
int string status_bar_notification_info_overflow 0x7f0e0039
int style AlertDialog_AppCompat 0x7f0f0000
int style AlertDialog_AppCompat_Light 0x7f0f0001
int style Animation_AppCompat_Dialog 0x7f0f0002
int style Animation_AppCompat_DropDownUp 0x7f0f0003
int style Animation_AppCompat_Tooltip 0x7f0f0004
int style Animation_Design_BottomSheetDialog 0x7f0f0005
int style AppTheme 0x7f0f0006
int style Base_AlertDialog_AppCompat 0x7f0f0007
int style Base_AlertDialog_AppCompat_Light 0x7f0f0008
int style Base_Animation_AppCompat_Dialog 0x7f0f0009
int style Base_Animation_AppCompat_DropDownUp 0x7f0f000a
int style Base_Animation_AppCompat_Tooltip 0x7f0f000b
int style Base_CardView 0x7f0f000c
int style Base_DialogWindowTitle_AppCompat 0x7f0f000d
int style Base_DialogWindowTitleBackground_AppCompat 0x7f0f000e
int style Base_TextAppearance_AppCompat 0x7f0f000f
int style Base_TextAppearance_AppCompat_Body1 0x7f0f0010
int style Base_TextAppearance_AppCompat_Body2 0x7f0f0011
int style Base_TextAppearance_AppCompat_Button 0x7f0f0012
int style Base_TextAppearance_AppCompat_Caption 0x7f0f0013
int style Base_TextAppearance_AppCompat_Display1 0x7f0f0014
int style Base_TextAppearance_AppCompat_Display2 0x7f0f0015
int style Base_TextAppearance_AppCompat_Display3 0x7f0f0016
int style Base_TextAppearance_AppCompat_Display4 0x7f0f0017
int style Base_TextAppearance_AppCompat_Headline 0x7f0f0018
int style Base_TextAppearance_AppCompat_Inverse 0x7f0f0019
int style Base_TextAppearance_AppCompat_Large 0x7f0f001a
int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0f001b
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0f001c
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0f001d
int style Base_TextAppearance_AppCompat_Medium 0x7f0f001e
int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0f001f
int style Base_TextAppearance_AppCompat_Menu 0x7f0f0020
int style Base_TextAppearance_AppCompat_SearchResult 0x7f0f0021
int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0f0022
int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0f0023
int style Base_TextAppearance_AppCompat_Small 0x7f0f0024
int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0f0025
int style Base_TextAppearance_AppCompat_Subhead 0x7f0f0026
int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0f0027
int style Base_TextAppearance_AppCompat_Title 0x7f0f0028
int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0f0029
int style Base_TextAppearance_AppCompat_Tooltip 0x7f0f002a
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0f002b
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0f002c
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0f002d
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0f002e
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0f002f
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0f0030
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0f0031
int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0f0032
int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0f0033
int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0f0034
int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0f0035
int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0f0036
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0f0037
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0f0038
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0f0039
int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0f003a
int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0f003b
int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0f003c
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0f003d
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0f003e
int style Base_Theme_AppCompat 0x7f0f003f
int style Base_Theme_AppCompat_CompactMenu 0x7f0f0040
int style Base_Theme_AppCompat_Dialog 0x7f0f0041
int style Base_Theme_AppCompat_Dialog_Alert 0x7f0f0042
int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0f0043
int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0f0044
int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0f0045
int style Base_Theme_AppCompat_Light 0x7f0f0046
int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0f0047
int style Base_Theme_AppCompat_Light_Dialog 0x7f0f0048
int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0f0049
int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0f004a
int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0f004b
int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0f004c
int style Base_Theme_MaterialComponents 0x7f0f004d
int style Base_Theme_MaterialComponents_Bridge 0x7f0f004e
int style Base_Theme_MaterialComponents_CompactMenu 0x7f0f004f
int style Base_Theme_MaterialComponents_Dialog 0x7f0f0050
int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f0f0051
int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f0f0052
int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f0f0053
int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f0f0054
int style Base_Theme_MaterialComponents_Light 0x7f0f0055
int style Base_Theme_MaterialComponents_Light_Bridge 0x7f0f0056
int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f0f0057
int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0f0058
int style Base_Theme_MaterialComponents_Light_Dialog 0x7f0f0059
int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f0f005a
int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f0f005b
int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0f005c
int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0f005d
int style Base_ThemeOverlay_AppCompat 0x7f0f005e
int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0f005f
int style Base_ThemeOverlay_AppCompat_Dark 0x7f0f0060
int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0f0061
int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0f0062
int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0f0063
int style Base_ThemeOverlay_AppCompat_Light 0x7f0f0064
int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f0f0065
int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0f0066
int style Base_V14_Theme_MaterialComponents 0x7f0f0067
int style Base_V14_Theme_MaterialComponents_Bridge 0x7f0f0068
int style Base_V14_Theme_MaterialComponents_Dialog 0x7f0f0069
int style Base_V14_Theme_MaterialComponents_Light 0x7f0f006a
int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f0f006b
int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0f006c
int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f0f006d
int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f0f006e
int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0f006f
int style Base_V21_Theme_AppCompat 0x7f0f0070
int style Base_V21_Theme_AppCompat_Dialog 0x7f0f0071
int style Base_V21_Theme_AppCompat_Light 0x7f0f0072
int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0f0073
int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0f0074
int style Base_V22_Theme_AppCompat 0x7f0f0075
int style Base_V22_Theme_AppCompat_Light 0x7f0f0076
int style Base_V23_Theme_AppCompat 0x7f0f0077
int style Base_V23_Theme_AppCompat_Light 0x7f0f0078
int style Base_V26_Theme_AppCompat 0x7f0f0079
int style Base_V26_Theme_AppCompat_Light 0x7f0f007a
int style Base_V26_Widget_AppCompat_Toolbar 0x7f0f007b
int style Base_V28_Theme_AppCompat 0x7f0f007c
int style Base_V28_Theme_AppCompat_Light 0x7f0f007d
int style Base_V7_Theme_AppCompat 0x7f0f007e
int style Base_V7_Theme_AppCompat_Dialog 0x7f0f007f
int style Base_V7_Theme_AppCompat_Light 0x7f0f0080
int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0f0081
int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0f0082
int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0f0083
int style Base_V7_Widget_AppCompat_EditText 0x7f0f0084
int style Base_V7_Widget_AppCompat_Toolbar 0x7f0f0085
int style Base_Widget_AppCompat_ActionBar 0x7f0f0086
int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0f0087
int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0f0088
int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0f0089
int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0f008a
int style Base_Widget_AppCompat_ActionButton 0x7f0f008b
int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0f008c
int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0f008d
int style Base_Widget_AppCompat_ActionMode 0x7f0f008e
int style Base_Widget_AppCompat_ActivityChooserView 0x7f0f008f
int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0f0090
int style Base_Widget_AppCompat_Button 0x7f0f0091
int style Base_Widget_AppCompat_Button_Borderless 0x7f0f0092
int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0f0093
int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0f0094
int style Base_Widget_AppCompat_Button_Colored 0x7f0f0095
int style Base_Widget_AppCompat_Button_Small 0x7f0f0096
int style Base_Widget_AppCompat_ButtonBar 0x7f0f0097
int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0f0098
int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0f0099
int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0f009a
int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0f009b
int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0f009c
int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0f009d
int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0f009e
int style Base_Widget_AppCompat_EditText 0x7f0f009f
int style Base_Widget_AppCompat_ImageButton 0x7f0f00a0
int style Base_Widget_AppCompat_Light_ActionBar 0x7f0f00a1
int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0f00a2
int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0f00a3
int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0f00a4
int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0f00a5
int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0f00a6
int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0f00a7
int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0f00a8
int style Base_Widget_AppCompat_ListMenuView 0x7f0f00a9
int style Base_Widget_AppCompat_ListPopupWindow 0x7f0f00aa
int style Base_Widget_AppCompat_ListView 0x7f0f00ab
int style Base_Widget_AppCompat_ListView_DropDown 0x7f0f00ac
int style Base_Widget_AppCompat_ListView_Menu 0x7f0f00ad
int style Base_Widget_AppCompat_PopupMenu 0x7f0f00ae
int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0f00af
int style Base_Widget_AppCompat_PopupWindow 0x7f0f00b0
int style Base_Widget_AppCompat_ProgressBar 0x7f0f00b1
int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0f00b2
int style Base_Widget_AppCompat_RatingBar 0x7f0f00b3
int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0f00b4
int style Base_Widget_AppCompat_RatingBar_Small 0x7f0f00b5
int style Base_Widget_AppCompat_SearchView 0x7f0f00b6
int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0f00b7
int style Base_Widget_AppCompat_SeekBar 0x7f0f00b8
int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0f00b9
int style Base_Widget_AppCompat_Spinner 0x7f0f00ba
int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0f00bb
int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0f00bc
int style Base_Widget_AppCompat_Toolbar 0x7f0f00bd
int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0f00be
int style Base_Widget_Design_TabLayout 0x7f0f00bf
int style Base_Widget_MaterialComponents_Chip 0x7f0f00c0
int style Base_Widget_MaterialComponents_TextInputEditText 0x7f0f00c1
int style Base_Widget_MaterialComponents_TextInputLayout 0x7f0f00c2
int style CardView 0x7f0f00c3
int style CardView_Dark 0x7f0f00c4
int style CardView_Light 0x7f0f00c5
int style Platform_AppCompat 0x7f0f00c6
int style Platform_AppCompat_Light 0x7f0f00c7
int style Platform_MaterialComponents 0x7f0f00c8
int style Platform_MaterialComponents_Dialog 0x7f0f00c9
int style Platform_MaterialComponents_Light 0x7f0f00ca
int style Platform_MaterialComponents_Light_Dialog 0x7f0f00cb
int style Platform_ThemeOverlay_AppCompat 0x7f0f00cc
int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0f00cd
int style Platform_ThemeOverlay_AppCompat_Light 0x7f0f00ce
int style Platform_V21_AppCompat 0x7f0f00cf
int style Platform_V21_AppCompat_Light 0x7f0f00d0
int style Platform_V25_AppCompat 0x7f0f00d1
int style Platform_V25_AppCompat_Light 0x7f0f00d2
int style Platform_Widget_AppCompat_Spinner 0x7f0f00d3
int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0f00d4
int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0f00d5
int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0f00d6
int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0f00d7
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0f00d8
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0f00d9
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0f00da
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0f00db
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0f00dc
int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0f00dd
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0f00de
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0f00df
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0f00e0
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0f00e1
int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0f00e2
int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0f00e3
int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0f00e4
int style TextAppearance_AppCompat 0x7f0f00e5
int style TextAppearance_AppCompat_Body1 0x7f0f00e6
int style TextAppearance_AppCompat_Body2 0x7f0f00e7
int style TextAppearance_AppCompat_Button 0x7f0f00e8
int style TextAppearance_AppCompat_Caption 0x7f0f00e9
int style TextAppearance_AppCompat_Display1 0x7f0f00ea
int style TextAppearance_AppCompat_Display2 0x7f0f00eb
int style TextAppearance_AppCompat_Display3 0x7f0f00ec
int style TextAppearance_AppCompat_Display4 0x7f0f00ed
int style TextAppearance_AppCompat_Headline 0x7f0f00ee
int style TextAppearance_AppCompat_Inverse 0x7f0f00ef
int style TextAppearance_AppCompat_Large 0x7f0f00f0
int style TextAppearance_AppCompat_Large_Inverse 0x7f0f00f1
int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0f00f2
int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0f00f3
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0f00f4
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0f00f5
int style TextAppearance_AppCompat_Medium 0x7f0f00f6
int style TextAppearance_AppCompat_Medium_Inverse 0x7f0f00f7
int style TextAppearance_AppCompat_Menu 0x7f0f00f8
int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0f00f9
int style TextAppearance_AppCompat_SearchResult_Title 0x7f0f00fa
int style TextAppearance_AppCompat_Small 0x7f0f00fb
int style TextAppearance_AppCompat_Small_Inverse 0x7f0f00fc
int style TextAppearance_AppCompat_Subhead 0x7f0f00fd
int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0f00fe
int style TextAppearance_AppCompat_Title 0x7f0f00ff
int style TextAppearance_AppCompat_Title_Inverse 0x7f0f0100
int style TextAppearance_AppCompat_Tooltip 0x7f0f0101
int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0f0102
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0f0103
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0f0104
int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0f0105
int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0f0106
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0f0107
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0f0108
int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0f0109
int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0f010a
int style TextAppearance_AppCompat_Widget_Button 0x7f0f010b
int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0f010c
int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0f010d
int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0f010e
int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0f010f
int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0f0110
int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0f0111
int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0f0112
int style TextAppearance_AppCompat_Widget_Switch 0x7f0f0113
int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0f0114
int style TextAppearance_Compat_Notification 0x7f0f0115
int style TextAppearance_Compat_Notification_Info 0x7f0f0116
int style TextAppearance_Compat_Notification_Line2 0x7f0f0117
int style TextAppearance_Compat_Notification_Time 0x7f0f0118
int style TextAppearance_Compat_Notification_Title 0x7f0f0119
int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0f011a
int style TextAppearance_Design_Counter 0x7f0f011b
int style TextAppearance_Design_Counter_Overflow 0x7f0f011c
int style TextAppearance_Design_Error 0x7f0f011d
int style TextAppearance_Design_HelperText 0x7f0f011e
int style TextAppearance_Design_Hint 0x7f0f011f
int style TextAppearance_Design_Snackbar_Message 0x7f0f0120
int style TextAppearance_Design_Tab 0x7f0f0121
int style TextAppearance_MaterialComponents_Body1 0x7f0f0122
int style TextAppearance_MaterialComponents_Body2 0x7f0f0123
int style TextAppearance_MaterialComponents_Button 0x7f0f0124
int style TextAppearance_MaterialComponents_Caption 0x7f0f0125
int style TextAppearance_MaterialComponents_Chip 0x7f0f0126
int style TextAppearance_MaterialComponents_Headline1 0x7f0f0127
int style TextAppearance_MaterialComponents_Headline2 0x7f0f0128
int style TextAppearance_MaterialComponents_Headline3 0x7f0f0129
int style TextAppearance_MaterialComponents_Headline4 0x7f0f012a
int style TextAppearance_MaterialComponents_Headline5 0x7f0f012b
int style TextAppearance_MaterialComponents_Headline6 0x7f0f012c
int style TextAppearance_MaterialComponents_Overline 0x7f0f012d
int style TextAppearance_MaterialComponents_Subtitle1 0x7f0f012e
int style TextAppearance_MaterialComponents_Subtitle2 0x7f0f012f
int style TextAppearance_MaterialComponents_Tab 0x7f0f0130
int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0f0131
int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0f0132
int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0f0133
int style Theme_AppCompat 0x7f0f0134
int style Theme_AppCompat_CompactMenu 0x7f0f0135
int style Theme_AppCompat_DayNight 0x7f0f0136
int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0f0137
int style Theme_AppCompat_DayNight_Dialog 0x7f0f0138
int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0f0139
int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0f013a
int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0f013b
int style Theme_AppCompat_DayNight_NoActionBar 0x7f0f013c
int style Theme_AppCompat_Dialog 0x7f0f013d
int style Theme_AppCompat_Dialog_Alert 0x7f0f013e
int style Theme_AppCompat_Dialog_MinWidth 0x7f0f013f
int style Theme_AppCompat_DialogWhenLarge 0x7f0f0140
int style Theme_AppCompat_Light 0x7f0f0141
int style Theme_AppCompat_Light_DarkActionBar 0x7f0f0142
int style Theme_AppCompat_Light_Dialog 0x7f0f0143
int style Theme_AppCompat_Light_Dialog_Alert 0x7f0f0144
int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0f0145
int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0f0146
int style Theme_AppCompat_Light_NoActionBar 0x7f0f0147
int style Theme_AppCompat_NoActionBar 0x7f0f0148
int style Theme_Design 0x7f0f0149
int style Theme_Design_BottomSheetDialog 0x7f0f014a
int style Theme_Design_Light 0x7f0f014b
int style Theme_Design_Light_BottomSheetDialog 0x7f0f014c
int style Theme_Design_Light_NoActionBar 0x7f0f014d
int style Theme_Design_NoActionBar 0x7f0f014e
int style Theme_MaterialComponents 0x7f0f014f
int style Theme_MaterialComponents_BottomSheetDialog 0x7f0f0150
int style Theme_MaterialComponents_Bridge 0x7f0f0151
int style Theme_MaterialComponents_CompactMenu 0x7f0f0152
int style Theme_MaterialComponents_Dialog 0x7f0f0153
int style Theme_MaterialComponents_Dialog_Alert 0x7f0f0154
int style Theme_MaterialComponents_Dialog_MinWidth 0x7f0f0155
int style Theme_MaterialComponents_DialogWhenLarge 0x7f0f0156
int style Theme_MaterialComponents_Light 0x7f0f0157
int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f0f0158
int style Theme_MaterialComponents_Light_Bridge 0x7f0f0159
int style Theme_MaterialComponents_Light_DarkActionBar 0x7f0f015a
int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0f015b
int style Theme_MaterialComponents_Light_Dialog 0x7f0f015c
int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f0f015d
int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0f015e
int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0f015f
int style Theme_MaterialComponents_Light_NoActionBar 0x7f0f0160
int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f0f0161
int style Theme_MaterialComponents_NoActionBar 0x7f0f0162
int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f0f0163
int style ThemeOverlay_AppCompat 0x7f0f0164
int style ThemeOverlay_AppCompat_ActionBar 0x7f0f0165
int style ThemeOverlay_AppCompat_Dark 0x7f0f0166
int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0f0167
int style ThemeOverlay_AppCompat_Dialog 0x7f0f0168
int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0f0169
int style ThemeOverlay_AppCompat_Light 0x7f0f016a
int style ThemeOverlay_MaterialComponents 0x7f0f016b
int style ThemeOverlay_MaterialComponents_ActionBar 0x7f0f016c
int style ThemeOverlay_MaterialComponents_Dark 0x7f0f016d
int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f0f016e
int style ThemeOverlay_MaterialComponents_Dialog 0x7f0f016f
int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0f0170
int style ThemeOverlay_MaterialComponents_Light 0x7f0f0171
int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f0f0172
int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f0f0173
int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0f0174
int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0f0175
int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0f0176
int style Widget_AppCompat_ActionBar 0x7f0f0177
int style Widget_AppCompat_ActionBar_Solid 0x7f0f0178
int style Widget_AppCompat_ActionBar_TabBar 0x7f0f0179
int style Widget_AppCompat_ActionBar_TabText 0x7f0f017a
int style Widget_AppCompat_ActionBar_TabView 0x7f0f017b
int style Widget_AppCompat_ActionButton 0x7f0f017c
int style Widget_AppCompat_ActionButton_CloseMode 0x7f0f017d
int style Widget_AppCompat_ActionButton_Overflow 0x7f0f017e
int style Widget_AppCompat_ActionMode 0x7f0f017f
int style Widget_AppCompat_ActivityChooserView 0x7f0f0180
int style Widget_AppCompat_AutoCompleteTextView 0x7f0f0181
int style Widget_AppCompat_Button 0x7f0f0182
int style Widget_AppCompat_Button_Borderless 0x7f0f0183
int style Widget_AppCompat_Button_Borderless_Colored 0x7f0f0184
int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0f0185
int style Widget_AppCompat_Button_Colored 0x7f0f0186
int style Widget_AppCompat_Button_Small 0x7f0f0187
int style Widget_AppCompat_ButtonBar 0x7f0f0188
int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0f0189
int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0f018a
int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0f018b
int style Widget_AppCompat_CompoundButton_Switch 0x7f0f018c
int style Widget_AppCompat_DrawerArrowToggle 0x7f0f018d
int style Widget_AppCompat_DropDownItem_Spinner 0x7f0f018e
int style Widget_AppCompat_EditText 0x7f0f018f
int style Widget_AppCompat_ImageButton 0x7f0f0190
int style Widget_AppCompat_Light_ActionBar 0x7f0f0191
int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0f0192
int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0f0193
int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0f0194
int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0f0195
int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0f0196
int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0f0197
int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0f0198
int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0f0199
int style Widget_AppCompat_Light_ActionButton 0x7f0f019a
int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0f019b
int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0f019c
int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0f019d
int style Widget_AppCompat_Light_ActivityChooserView 0x7f0f019e
int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0f019f
int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0f01a0
int style Widget_AppCompat_Light_ListPopupWindow 0x7f0f01a1
int style Widget_AppCompat_Light_ListView_DropDown 0x7f0f01a2
int style Widget_AppCompat_Light_PopupMenu 0x7f0f01a3
int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0f01a4
int style Widget_AppCompat_Light_SearchView 0x7f0f01a5
int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0f01a6
int style Widget_AppCompat_ListMenuView 0x7f0f01a7
int style Widget_AppCompat_ListPopupWindow 0x7f0f01a8
int style Widget_AppCompat_ListView 0x7f0f01a9
int style Widget_AppCompat_ListView_DropDown 0x7f0f01aa
int style Widget_AppCompat_ListView_Menu 0x7f0f01ab
int style Widget_AppCompat_PopupMenu 0x7f0f01ac
int style Widget_AppCompat_PopupMenu_Overflow 0x7f0f01ad
int style Widget_AppCompat_PopupWindow 0x7f0f01ae
int style Widget_AppCompat_ProgressBar 0x7f0f01af
int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0f01b0
int style Widget_AppCompat_RatingBar 0x7f0f01b1
int style Widget_AppCompat_RatingBar_Indicator 0x7f0f01b2
int style Widget_AppCompat_RatingBar_Small 0x7f0f01b3
int style Widget_AppCompat_SearchView 0x7f0f01b4
int style Widget_AppCompat_SearchView_ActionBar 0x7f0f01b5
int style Widget_AppCompat_SeekBar 0x7f0f01b6
int style Widget_AppCompat_SeekBar_Discrete 0x7f0f01b7
int style Widget_AppCompat_Spinner 0x7f0f01b8
int style Widget_AppCompat_Spinner_DropDown 0x7f0f01b9
int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0f01ba
int style Widget_AppCompat_Spinner_Underlined 0x7f0f01bb
int style Widget_AppCompat_TextView_SpinnerItem 0x7f0f01bc
int style Widget_AppCompat_Toolbar 0x7f0f01bd
int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0f01be
int style Widget_Compat_NotificationActionContainer 0x7f0f01bf
int style Widget_Compat_NotificationActionText 0x7f0f01c0
int style Widget_Design_AppBarLayout 0x7f0f01c1
int style Widget_Design_BottomNavigationView 0x7f0f01c2
int style Widget_Design_BottomSheet_Modal 0x7f0f01c3
int style Widget_Design_CollapsingToolbar 0x7f0f01c4
int style Widget_Design_FloatingActionButton 0x7f0f01c5
int style Widget_Design_NavigationView 0x7f0f01c6
int style Widget_Design_ScrimInsetsFrameLayout 0x7f0f01c7
int style Widget_Design_Snackbar 0x7f0f01c8
int style Widget_Design_TabLayout 0x7f0f01c9
int style Widget_Design_TextInputLayout 0x7f0f01ca
int style Widget_MaterialComponents_BottomAppBar 0x7f0f01cb
int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f0f01cc
int style Widget_MaterialComponents_BottomNavigationView 0x7f0f01cd
int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f0f01ce
int style Widget_MaterialComponents_BottomSheet_Modal 0x7f0f01cf
int style Widget_MaterialComponents_Button 0x7f0f01d0
int style Widget_MaterialComponents_Button_Icon 0x7f0f01d1
int style Widget_MaterialComponents_Button_OutlinedButton 0x7f0f01d2
int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f0f01d3
int style Widget_MaterialComponents_Button_TextButton 0x7f0f01d4
int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f0f01d5
int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f0f01d6
int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f0f01d7
int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f0f01d8
int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f0f01d9
int style Widget_MaterialComponents_CardView 0x7f0f01da
int style Widget_MaterialComponents_Chip_Action 0x7f0f01db
int style Widget_MaterialComponents_Chip_Choice 0x7f0f01dc
int style Widget_MaterialComponents_Chip_Entry 0x7f0f01dd
int style Widget_MaterialComponents_Chip_Filter 0x7f0f01de
int style Widget_MaterialComponents_ChipGroup 0x7f0f01df
int style Widget_MaterialComponents_FloatingActionButton 0x7f0f01e0
int style Widget_MaterialComponents_NavigationView 0x7f0f01e1
int style Widget_MaterialComponents_Snackbar 0x7f0f01e2
int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f0f01e3
int style Widget_MaterialComponents_TabLayout 0x7f0f01e4
int style Widget_MaterialComponents_TabLayout_Colored 0x7f0f01e5
int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f0f01e6
int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0f01e7
int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0f01e8
int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0f01e9
int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f0f01ea
int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f0f01eb
int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f0f01ec
int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f0f01ed
int style Widget_MaterialComponents_Toolbar 0x7f0f01ee
int style Widget_Support_CoordinatorLayout 0x7f0f01ef
int[] styleable ActionBar { 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b, 0x7f03009c, 0x7f0300aa, 0x7f0300af, 0x7f0300b0, 0x7f0300bb, 0x7f0300e6, 0x7f0300eb, 0x7f0300f0, 0x7f0300f1, 0x7f0300f3, 0x7f0300fd, 0x7f030107, 0x7f03015c, 0x7f030168, 0x7f030179, 0x7f03017d, 0x7f03017e, 0x7f0301ac, 0x7f0301af, 0x7f0301f4, 0x7f0301fe }
int styleable ActionBar_background 0
int styleable ActionBar_backgroundSplit 1
int styleable ActionBar_backgroundStacked 2
int styleable ActionBar_contentInsetEnd 3
int styleable ActionBar_contentInsetEndWithActions 4
int styleable ActionBar_contentInsetLeft 5
int styleable ActionBar_contentInsetRight 6
int styleable ActionBar_contentInsetStart 7
int styleable ActionBar_contentInsetStartWithNavigation 8
int styleable ActionBar_customNavigationLayout 9
int styleable ActionBar_displayOptions 10
int styleable ActionBar_divider 11
int styleable ActionBar_elevation 12
int styleable ActionBar_height 13
int styleable ActionBar_hideOnContentScroll 14
int styleable ActionBar_homeAsUpIndicator 15
int styleable ActionBar_homeLayout 16
int styleable ActionBar_icon 17
int styleable ActionBar_indeterminateProgressStyle 18
int styleable ActionBar_itemPadding 19
int styleable ActionBar_logo 20
int styleable ActionBar_navigationMode 21
int styleable ActionBar_popupTheme 22
int styleable ActionBar_progressBarPadding 23
int styleable ActionBar_progressBarStyle 24
int styleable ActionBar_subtitle 25
int styleable ActionBar_subtitleTextStyle 26
int styleable ActionBar_title 27
int styleable ActionBar_titleTextStyle 28
int[] styleable ActionBarLayout { 0x010100b3 }
int styleable ActionBarLayout_android_layout_gravity 0
int[] styleable ActionMenuItemView { 0x0101013f }
int styleable ActionMenuItemView_android_minWidth 0
int[] styleable ActionMenuView { }
int[] styleable ActionMode { 0x7f030031, 0x7f030032, 0x7f030081, 0x7f0300e6, 0x7f0301af, 0x7f0301fe }
int styleable ActionMode_background 0
int styleable ActionMode_backgroundSplit 1
int styleable ActionMode_closeItemLayout 2
int styleable ActionMode_height 3
int styleable ActionMode_subtitleTextStyle 4
int styleable ActionMode_titleTextStyle 5
int[] styleable ActivityChooserView { 0x7f0300c1, 0x7f0300fe }
int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
int styleable ActivityChooserView_initialActivityCount 1
int[] styleable AlertDialog { 0x010100f2, 0x7f030054, 0x7f030055, 0x7f030153, 0x7f030154, 0x7f030165, 0x7f030194, 0x7f030195 }
int styleable AlertDialog_android_layout 0
int styleable AlertDialog_buttonIconDimen 1
int styleable AlertDialog_buttonPanelSideLayout 2
int styleable AlertDialog_listItemLayout 3
int styleable AlertDialog_listLayout 4
int styleable AlertDialog_multiChoiceItemLayout 5
int styleable AlertDialog_showTitle 6
int styleable AlertDialog_singleChoiceItemLayout 7
int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }
int styleable AnimatedStateListDrawableCompat_android_dither 0
int styleable AnimatedStateListDrawableCompat_android_visible 1
int styleable AnimatedStateListDrawableCompat_android_variablePadding 2
int styleable AnimatedStateListDrawableCompat_android_constantSize 3
int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4
int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5
int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 }
int styleable AnimatedStateListDrawableItem_android_id 0
int styleable AnimatedStateListDrawableItem_android_drawable 1
int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }
int styleable AnimatedStateListDrawableTransition_android_drawable 0
int styleable AnimatedStateListDrawableTransition_android_toId 1
int styleable AnimatedStateListDrawableTransition_android_fromId 2
int styleable AnimatedStateListDrawableTransition_android_reversible 3
int[] styleable AppBarLayout { 0x010100d4, 0x0101048f, 0x01010540, 0x7f0300bb, 0x7f0300c2, 0x7f03014e }
int styleable AppBarLayout_android_background 0
int styleable AppBarLayout_android_touchscreenBlocksFocus 1
int styleable AppBarLayout_android_keyboardNavigationCluster 2
int styleable AppBarLayout_elevation 3
int styleable AppBarLayout_expanded 4
int styleable AppBarLayout_liftOnScroll 5
int[] styleable AppBarLayoutStates { 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a5 }
int styleable AppBarLayoutStates_state_collapsed 0
int styleable AppBarLayoutStates_state_collapsible 1
int styleable AppBarLayoutStates_state_liftable 2
int styleable AppBarLayoutStates_state_lifted 3
int[] styleable AppBarLayout_Layout { 0x7f03014c, 0x7f03014d }
int styleable AppBarLayout_Layout_layout_scrollFlags 0
int styleable AppBarLayout_Layout_layout_scrollInterpolator 1
int[] styleable AppCompatImageView { 0x01010119, 0x7f03019f, 0x7f0301f2, 0x7f0301f3 }
int styleable AppCompatImageView_android_src 0
int styleable AppCompatImageView_srcCompat 1
int styleable AppCompatImageView_tint 2
int styleable AppCompatImageView_tintMode 3
int[] styleable AppCompatSeekBar { 0x01010142, 0x7f0301ef, 0x7f0301f0, 0x7f0301f1 }
int styleable AppCompatSeekBar_android_thumb 0
int styleable AppCompatSeekBar_tickMark 1
int styleable AppCompatSeekBar_tickMarkTint 2
int styleable AppCompatSeekBar_tickMarkTintMode 3
int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }
int styleable AppCompatTextHelper_android_textAppearance 0
int styleable AppCompatTextHelper_android_drawableTop 1
int styleable AppCompatTextHelper_android_drawableBottom 2
int styleable AppCompatTextHelper_android_drawableLeft 3
int styleable AppCompatTextHelper_android_drawableRight 4
int styleable AppCompatTextHelper_android_drawableStart 5
int styleable AppCompatTextHelper_android_drawableEnd 6
int[] styleable AppCompatTextView { 0x01010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f0300d5, 0x7f0300d8, 0x7f03010f, 0x7f03014f, 0x7f0301cf }
int styleable AppCompatTextView_android_textAppearance 0
int styleable AppCompatTextView_autoSizeMaxTextSize 1
int styleable AppCompatTextView_autoSizeMinTextSize 2
int styleable AppCompatTextView_autoSizePresetSizes 3
int styleable AppCompatTextView_autoSizeStepGranularity 4
int styleable AppCompatTextView_autoSizeTextType 5
int styleable AppCompatTextView_firstBaselineToTopHeight 6
int styleable AppCompatTextView_fontFamily 7
int styleable AppCompatTextView_lastBaselineToBottomHeight 8
int styleable AppCompatTextView_lineHeight 9
int styleable AppCompatTextView_textAllCaps 10
int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f030040, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030051, 0x7f030052, 0x7f030056, 0x7f030057, 0x7f030062, 0x7f030067, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f03008e, 0x7f03008f, 0x7f030091, 0x7f0300a3, 0x7f0300ac, 0x7f0300ad, 0x7f0300ae, 0x7f0300b1, 0x7f0300b3, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8, 0x7f0300b9, 0x7f0300ba, 0x7f0300f0, 0x7f0300fc, 0x7f030151, 0x7f030152, 0x7f030155, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f030170, 0x7f030171, 0x7f030172, 0x7f030178, 0x7f03017a, 0x7f030181, 0x7f030182, 0x7f030183, 0x7f030184, 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f03018f, 0x7f03019c, 0x7f03019d, 0x7f0301b3, 0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f0301e2, 0x7f0301e5, 0x7f0301e6, 0x7f030200, 0x7f030201, 0x7f030202, 0x7f030203, 0x7f03020a, 0x7f03020c, 0x7f03020d, 0x7f03020e, 0x7f03020f, 0x7f030210, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f030214, 0x7f030215 }
int styleable AppCompatTheme_android_windowIsFloating 0
int styleable AppCompatTheme_android_windowAnimationStyle 1
int styleable AppCompatTheme_actionBarDivider 2
int styleable AppCompatTheme_actionBarItemBackground 3
int styleable AppCompatTheme_actionBarPopupTheme 4
int styleable AppCompatTheme_actionBarSize 5
int styleable AppCompatTheme_actionBarSplitStyle 6
int styleable AppCompatTheme_actionBarStyle 7
int styleable AppCompatTheme_actionBarTabBarStyle 8
int styleable AppCompatTheme_actionBarTabStyle 9
int styleable AppCompatTheme_actionBarTabTextStyle 10
int styleable AppCompatTheme_actionBarTheme 11
int styleable AppCompatTheme_actionBarWidgetTheme 12
int styleable AppCompatTheme_actionButtonStyle 13
int styleable AppCompatTheme_actionDropDownStyle 14
int styleable AppCompatTheme_actionMenuTextAppearance 15
int styleable AppCompatTheme_actionMenuTextColor 16
int styleable AppCompatTheme_actionModeBackground 17
int styleable AppCompatTheme_actionModeCloseButtonStyle 18
int styleable AppCompatTheme_actionModeCloseDrawable 19
int styleable AppCompatTheme_actionModeCopyDrawable 20
int styleable AppCompatTheme_actionModeCutDrawable 21
int styleable AppCompatTheme_actionModeFindDrawable 22
int styleable AppCompatTheme_actionModePasteDrawable 23
int styleable AppCompatTheme_actionModePopupWindowStyle 24
int styleable AppCompatTheme_actionModeSelectAllDrawable 25
int styleable AppCompatTheme_actionModeShareDrawable 26
int styleable AppCompatTheme_actionModeSplitBackground 27
int styleable AppCompatTheme_actionModeStyle 28
int styleable AppCompatTheme_actionModeWebSearchDrawable 29
int styleable AppCompatTheme_actionOverflowButtonStyle 30
int styleable AppCompatTheme_actionOverflowMenuStyle 31
int styleable AppCompatTheme_activityChooserViewStyle 32
int styleable AppCompatTheme_alertDialogButtonGroupStyle 33
int styleable AppCompatTheme_alertDialogCenterButtons 34
int styleable AppCompatTheme_alertDialogStyle 35
int styleable AppCompatTheme_alertDialogTheme 36
int styleable AppCompatTheme_autoCompleteTextViewStyle 37
int styleable AppCompatTheme_borderlessButtonStyle 38
int styleable AppCompatTheme_buttonBarButtonStyle 39
int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
int styleable AppCompatTheme_buttonBarStyle 43
int styleable AppCompatTheme_buttonStyle 44
int styleable AppCompatTheme_buttonStyleSmall 45
int styleable AppCompatTheme_checkboxStyle 46
int styleable AppCompatTheme_checkedTextViewStyle 47
int styleable AppCompatTheme_colorAccent 48
int styleable AppCompatTheme_colorBackgroundFloating 49
int styleable AppCompatTheme_colorButtonNormal 50
int styleable AppCompatTheme_colorControlActivated 51
int styleable AppCompatTheme_colorControlHighlight 52
int styleable AppCompatTheme_colorControlNormal 53
int styleable AppCompatTheme_colorError 54
int styleable AppCompatTheme_colorPrimary 55
int styleable AppCompatTheme_colorPrimaryDark 56
int styleable AppCompatTheme_colorSwitchThumbNormal 57
int styleable AppCompatTheme_controlBackground 58
int styleable AppCompatTheme_dialogCornerRadius 59
int styleable AppCompatTheme_dialogPreferredPadding 60
int styleable AppCompatTheme_dialogTheme 61
int styleable AppCompatTheme_dividerHorizontal 62
int styleable AppCompatTheme_dividerVertical 63
int styleable AppCompatTheme_dropDownListViewStyle 64
int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
int styleable AppCompatTheme_editTextBackground 66
int styleable AppCompatTheme_editTextColor 67
int styleable AppCompatTheme_editTextStyle 68
int styleable AppCompatTheme_homeAsUpIndicator 69
int styleable AppCompatTheme_imageButtonStyle 70
int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
int styleable AppCompatTheme_listDividerAlertDialog 72
int styleable AppCompatTheme_listMenuViewStyle 73
int styleable AppCompatTheme_listPopupWindowStyle 74
int styleable AppCompatTheme_listPreferredItemHeight 75
int styleable AppCompatTheme_listPreferredItemHeightLarge 76
int styleable AppCompatTheme_listPreferredItemHeightSmall 77
int styleable AppCompatTheme_listPreferredItemPaddingLeft 78
int styleable AppCompatTheme_listPreferredItemPaddingRight 79
int styleable AppCompatTheme_panelBackground 80
int styleable AppCompatTheme_panelMenuListTheme 81
int styleable AppCompatTheme_panelMenuListWidth 82
int styleable AppCompatTheme_popupMenuStyle 83
int styleable AppCompatTheme_popupWindowStyle 84
int styleable AppCompatTheme_radioButtonStyle 85
int styleable AppCompatTheme_ratingBarStyle 86
int styleable AppCompatTheme_ratingBarStyleIndicator 87
int styleable AppCompatTheme_ratingBarStyleSmall 88
int styleable AppCompatTheme_searchViewStyle 89
int styleable AppCompatTheme_seekBarStyle 90
int styleable AppCompatTheme_selectableItemBackground 91
int styleable AppCompatTheme_selectableItemBackgroundBorderless 92
int styleable AppCompatTheme_spinnerDropDownItemStyle 93
int styleable AppCompatTheme_spinnerStyle 94
int styleable AppCompatTheme_switchStyle 95
int styleable AppCompatTheme_textAppearanceLargePopupMenu 96
int styleable AppCompatTheme_textAppearanceListItem 97
int styleable AppCompatTheme_textAppearanceListItemSecondary 98
int styleable AppCompatTheme_textAppearanceListItemSmall 99
int styleable AppCompatTheme_textAppearancePopupMenuHeader 100
int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101
int styleable AppCompatTheme_textAppearanceSearchResultTitle 102
int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103
int styleable AppCompatTheme_textColorAlertDialogListItem 104
int styleable AppCompatTheme_textColorSearchUrl 105
int styleable AppCompatTheme_toolbarNavigationButtonStyle 106
int styleable AppCompatTheme_toolbarStyle 107
int styleable AppCompatTheme_tooltipForegroundColor 108
int styleable AppCompatTheme_tooltipFrameBackground 109
int styleable AppCompatTheme_viewInflaterClass 110
int styleable AppCompatTheme_windowActionBar 111
int styleable AppCompatTheme_windowActionBarOverlay 112
int styleable AppCompatTheme_windowActionModeOverlay 113
int styleable AppCompatTheme_windowFixedHeightMajor 114
int styleable AppCompatTheme_windowFixedHeightMinor 115
int styleable AppCompatTheme_windowFixedWidthMajor 116
int styleable AppCompatTheme_windowFixedWidthMinor 117
int styleable AppCompatTheme_windowMinWidthMajor 118
int styleable AppCompatTheme_windowMinWidthMinor 119
int styleable AppCompatTheme_windowNoTitle 120
int[] styleable BottomAppBar { 0x7f030034, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0300ec }
int styleable BottomAppBar_backgroundTint 0
int styleable BottomAppBar_fabAlignmentMode 1
int styleable BottomAppBar_fabCradleMargin 2
int styleable BottomAppBar_fabCradleRoundedCornerRadius 3
int styleable BottomAppBar_fabCradleVerticalOffset 4
int styleable BottomAppBar_hideOnScroll 5
int[] styleable BottomNavigationView { 0x7f0300bb, 0x7f030101, 0x7f030103, 0x7f030105, 0x7f030106, 0x7f03010a, 0x7f03010b, 0x7f03010c, 0x7f03010e, 0x7f030164 }
int styleable BottomNavigationView_elevation 0
int styleable BottomNavigationView_itemBackground 1
int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2
int styleable BottomNavigationView_itemIconSize 3
int styleable BottomNavigationView_itemIconTint 4
int styleable BottomNavigationView_itemTextAppearanceActive 5
int styleable BottomNavigationView_itemTextAppearanceInactive 6
int styleable BottomNavigationView_itemTextColor 7
int styleable BottomNavigationView_labelVisibilityMode 8
int styleable BottomNavigationView_menu 9
int[] styleable BottomSheetBehavior_Layout { 0x7f03003a, 0x7f03003b, 0x7f03003d, 0x7f03003e }
int styleable BottomSheetBehavior_Layout_behavior_fitToContents 0
int styleable BottomSheetBehavior_Layout_behavior_hideable 1
int styleable BottomSheetBehavior_Layout_behavior_peekHeight 2
int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 3
int[] styleable ButtonBarLayout { 0x7f030026 }
int styleable ButtonBarLayout_allowStacking 0
int[] styleable CardView { 0x0101013f, 0x01010140, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f03005e, 0x7f03005f, 0x7f03009d, 0x7f03009e, 0x7f03009f, 0x7f0300a0, 0x7f0300a1 }
int styleable CardView_android_minWidth 0
int styleable CardView_android_minHeight 1
int styleable CardView_cardBackgroundColor 2
int styleable CardView_cardCornerRadius 3
int styleable CardView_cardElevation 4
int styleable CardView_cardMaxElevation 5
int styleable CardView_cardPreventCornerOverlap 6
int styleable CardView_cardUseCompatPadding 7
int styleable CardView_contentPadding 8
int styleable CardView_contentPaddingBottom 9
int styleable CardView_contentPaddingLeft 10
int styleable CardView_contentPaddingRight 11
int styleable CardView_contentPaddingTop 12
int[] styleable Chip { 0x01010034, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f030064, 0x7f030065, 0x7f030066, 0x7f030068, 0x7f030069, 0x7f03006a, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f030076, 0x7f030077, 0x7f030078, 0x7f03007a, 0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f03007e, 0x7f03007f, 0x7f030080, 0x7f0300ea, 0x7f0300f4, 0x7f0300f8, 0x7f030186, 0x7f030192, 0x7f0301e7, 0x7f0301e9 }
int styleable Chip_android_textAppearance 0
int styleable Chip_android_ellipsize 1
int styleable Chip_android_maxWidth 2
int styleable Chip_android_text 3
int styleable Chip_android_checkable 4
int styleable Chip_checkedIcon 5
int styleable Chip_checkedIconEnabled 6
int styleable Chip_checkedIconVisible 7
int styleable Chip_chipBackgroundColor 8
int styleable Chip_chipCornerRadius 9
int styleable Chip_chipEndPadding 10
int styleable Chip_chipIcon 11
int styleable Chip_chipIconEnabled 12
int styleable Chip_chipIconSize 13
int styleable Chip_chipIconTint 14
int styleable Chip_chipIconVisible 15
int styleable Chip_chipMinHeight 16
int styleable Chip_chipStartPadding 17
int styleable Chip_chipStrokeColor 18
int styleable Chip_chipStrokeWidth 19
int styleable Chip_closeIcon 20
int styleable Chip_closeIconEnabled 21
int styleable Chip_closeIconEndPadding 22
int styleable Chip_closeIconSize 23
int styleable Chip_closeIconStartPadding 24
int styleable Chip_closeIconTint 25
int styleable Chip_closeIconVisible 26
int styleable Chip_hideMotionSpec 27
int styleable Chip_iconEndPadding 28
int styleable Chip_iconStartPadding 29
int styleable Chip_rippleColor 30
int styleable Chip_showMotionSpec 31
int styleable Chip_textEndPadding 32
int styleable Chip_textStartPadding 33
int[] styleable ChipGroup { 0x7f030063, 0x7f030072, 0x7f030073, 0x7f030074, 0x7f030196, 0x7f030197 }
int styleable ChipGroup_checkedChip 0
int styleable ChipGroup_chipSpacing 1
int styleable ChipGroup_chipSpacingHorizontal 2
int styleable ChipGroup_chipSpacingVertical 3
int styleable ChipGroup_singleLine 4
int styleable ChipGroup_singleSelection 5
int[] styleable CollapsingToolbarLayout { 0x7f030084, 0x7f030085, 0x7f0300a2, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7, 0x7f0300c8, 0x7f0300c9, 0x7f030187, 0x7f030189, 0x7f0301a7, 0x7f0301f4, 0x7f0301f5, 0x7f0301ff }
int styleable CollapsingToolbarLayout_collapsedTitleGravity 0
int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1
int styleable CollapsingToolbarLayout_contentScrim 2
int styleable CollapsingToolbarLayout_expandedTitleGravity 3
int styleable CollapsingToolbarLayout_expandedTitleMargin 4
int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5
int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6
int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7
int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8
int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9
int styleable CollapsingToolbarLayout_scrimAnimationDuration 10
int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 11
int styleable CollapsingToolbarLayout_statusBarScrim 12
int styleable CollapsingToolbarLayout_title 13
int styleable CollapsingToolbarLayout_titleEnabled 14
int styleable CollapsingToolbarLayout_toolbarId 15
int[] styleable CollapsingToolbarLayout_Layout { 0x7f030115, 0x7f030116 }
int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0
int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1
int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f030027 }
int styleable ColorStateListItem_android_color 0
int styleable ColorStateListItem_android_alpha 1
int styleable ColorStateListItem_alpha 2
int[] styleable CompoundButton { 0x01010107, 0x7f030058, 0x7f030059 }
int styleable CompoundButton_android_button 0
int styleable CompoundButton_buttonTint 1
int styleable CompoundButton_buttonTintMode 2
int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f030037, 0x7f030038, 0x7f030061, 0x7f030093, 0x7f030094, 0x7f030117, 0x7f030118, 0x7f030119, 0x7f03011a, 0x7f03011b, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030123, 0x7f030124, 0x7f030125, 0x7f030126, 0x7f030127, 0x7f030128, 0x7f030129, 0x7f03012a, 0x7f03012b, 0x7f03012c, 0x7f03012d, 0x7f03012e, 0x7f03012f, 0x7f030130, 0x7f030131, 0x7f030132, 0x7f030133, 0x7f030134, 0x7f030135, 0x7f030136, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e, 0x7f03013f, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f03014b }
int styleable ConstraintLayout_Layout_android_orientation 0
int styleable ConstraintLayout_Layout_android_maxWidth 1
int styleable ConstraintLayout_Layout_android_maxHeight 2
int styleable ConstraintLayout_Layout_android_minWidth 3
int styleable ConstraintLayout_Layout_android_minHeight 4
int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5
int styleable ConstraintLayout_Layout_barrierDirection 6
int styleable ConstraintLayout_Layout_chainUseRtl 7
int styleable ConstraintLayout_Layout_constraintSet 8
int styleable ConstraintLayout_Layout_constraint_referenced_ids 9
int styleable ConstraintLayout_Layout_layout_constrainedHeight 10
int styleable ConstraintLayout_Layout_layout_constrainedWidth 11
int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 12
int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 13
int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 14
int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 15
int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 16
int styleable ConstraintLayout_Layout_layout_constraintCircle 17
int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 18
int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 19
int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 20
int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 21
int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 22
int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 23
int styleable ConstraintLayout_Layout_layout_constraintGuide_end 24
int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 25
int styleable ConstraintLayout_Layout_layout_constraintHeight_default 26
int styleable ConstraintLayout_Layout_layout_constraintHeight_max 27
int styleable ConstraintLayout_Layout_layout_constraintHeight_min 28
int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 29
int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 30
int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 31
int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 32
int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 33
int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 34
int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 35
int styleable ConstraintLayout_Layout_layout_constraintRight_creator 36
int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 37
int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 38
int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 39
int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 40
int styleable ConstraintLayout_Layout_layout_constraintTop_creator 41
int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 42
int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 43
int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 44
int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 45
int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 46
int styleable ConstraintLayout_Layout_layout_constraintWidth_default 47
int styleable ConstraintLayout_Layout_layout_constraintWidth_max 48
int styleable ConstraintLayout_Layout_layout_constraintWidth_min 49
int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 50
int styleable ConstraintLayout_Layout_layout_editor_absoluteX 51
int styleable ConstraintLayout_Layout_layout_editor_absoluteY 52
int styleable ConstraintLayout_Layout_layout_goneMarginBottom 53
int styleable ConstraintLayout_Layout_layout_goneMarginEnd 54
int styleable ConstraintLayout_Layout_layout_goneMarginLeft 55
int styleable ConstraintLayout_Layout_layout_goneMarginRight 56
int styleable ConstraintLayout_Layout_layout_goneMarginStart 57
int styleable ConstraintLayout_Layout_layout_goneMarginTop 58
int styleable ConstraintLayout_Layout_layout_optimizationLevel 59
int[] styleable ConstraintLayout_placeholder { 0x7f030095, 0x7f0300bc }
int styleable ConstraintLayout_placeholder_content 0
int styleable ConstraintLayout_placeholder_emptyVisibility 1
int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f030037, 0x7f030038, 0x7f030061, 0x7f030094, 0x7f030117, 0x7f030118, 0x7f030119, 0x7f03011a, 0x7f03011b, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030123, 0x7f030124, 0x7f030125, 0x7f030126, 0x7f030127, 0x7f030128, 0x7f030129, 0x7f03012a, 0x7f03012b, 0x7f03012c, 0x7f03012d, 0x7f03012e, 0x7f03012f, 0x7f030130, 0x7f030131, 0x7f030132, 0x7f030133, 0x7f030134, 0x7f030135, 0x7f030136, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e, 0x7f03013f, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148 }
int styleable ConstraintSet_android_orientation 0
int styleable ConstraintSet_android_id 1
int styleable ConstraintSet_android_visibility 2
int styleable ConstraintSet_android_layout_width 3
int styleable ConstraintSet_android_layout_height 4
int styleable ConstraintSet_android_layout_marginLeft 5
int styleable ConstraintSet_android_layout_marginTop 6
int styleable ConstraintSet_android_layout_marginRight 7
int styleable ConstraintSet_android_layout_marginBottom 8
int styleable ConstraintSet_android_maxWidth 9
int styleable ConstraintSet_android_maxHeight 10
int styleable ConstraintSet_android_minWidth 11
int styleable ConstraintSet_android_minHeight 12
int styleable ConstraintSet_android_alpha 13
int styleable ConstraintSet_android_transformPivotX 14
int styleable ConstraintSet_android_transformPivotY 15
int styleable ConstraintSet_android_translationX 16
int styleable ConstraintSet_android_translationY 17
int styleable ConstraintSet_android_scaleX 18
int styleable ConstraintSet_android_scaleY 19
int styleable ConstraintSet_android_rotation 20
int styleable ConstraintSet_android_rotationX 21
int styleable ConstraintSet_android_rotationY 22
int styleable ConstraintSet_android_layout_marginStart 23
int styleable ConstraintSet_android_layout_marginEnd 24
int styleable ConstraintSet_android_translationZ 25
int styleable ConstraintSet_android_elevation 26
int styleable ConstraintSet_barrierAllowsGoneWidgets 27
int styleable ConstraintSet_barrierDirection 28
int styleable ConstraintSet_chainUseRtl 29
int styleable ConstraintSet_constraint_referenced_ids 30
int styleable ConstraintSet_layout_constrainedHeight 31
int styleable ConstraintSet_layout_constrainedWidth 32
int styleable ConstraintSet_layout_constraintBaseline_creator 33
int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 34
int styleable ConstraintSet_layout_constraintBottom_creator 35
int styleable ConstraintSet_layout_constraintBottom_toBottomOf 36
int styleable ConstraintSet_layout_constraintBottom_toTopOf 37
int styleable ConstraintSet_layout_constraintCircle 38
int styleable ConstraintSet_layout_constraintCircleAngle 39
int styleable ConstraintSet_layout_constraintCircleRadius 40
int styleable ConstraintSet_layout_constraintDimensionRatio 41
int styleable ConstraintSet_layout_constraintEnd_toEndOf 42
int styleable ConstraintSet_layout_constraintEnd_toStartOf 43
int styleable ConstraintSet_layout_constraintGuide_begin 44
int styleable ConstraintSet_layout_constraintGuide_end 45
int styleable ConstraintSet_layout_constraintGuide_percent 46
int styleable ConstraintSet_layout_constraintHeight_default 47
int styleable ConstraintSet_layout_constraintHeight_max 48
int styleable ConstraintSet_layout_constraintHeight_min 49
int styleable ConstraintSet_layout_constraintHeight_percent 50
int styleable ConstraintSet_layout_constraintHorizontal_bias 51
int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 52
int styleable ConstraintSet_layout_constraintHorizontal_weight 53
int styleable ConstraintSet_layout_constraintLeft_creator 54
int styleable ConstraintSet_layout_constraintLeft_toLeftOf 55
int styleable ConstraintSet_layout_constraintLeft_toRightOf 56
int styleable ConstraintSet_layout_constraintRight_creator 57
int styleable ConstraintSet_layout_constraintRight_toLeftOf 58
int styleable ConstraintSet_layout_constraintRight_toRightOf 59
int styleable ConstraintSet_layout_constraintStart_toEndOf 60
int styleable ConstraintSet_layout_constraintStart_toStartOf 61
int styleable ConstraintSet_layout_constraintTop_creator 62
int styleable ConstraintSet_layout_constraintTop_toBottomOf 63
int styleable ConstraintSet_layout_constraintTop_toTopOf 64
int styleable ConstraintSet_layout_constraintVertical_bias 65
int styleable ConstraintSet_layout_constraintVertical_chainStyle 66
int styleable ConstraintSet_layout_constraintVertical_weight 67
int styleable ConstraintSet_layout_constraintWidth_default 68
int styleable ConstraintSet_layout_constraintWidth_max 69
int styleable ConstraintSet_layout_constraintWidth_min 70
int styleable ConstraintSet_layout_constraintWidth_percent 71
int styleable ConstraintSet_layout_editor_absoluteX 72
int styleable ConstraintSet_layout_editor_absoluteY 73
int styleable ConstraintSet_layout_goneMarginBottom 74
int styleable ConstraintSet_layout_goneMarginEnd 75
int styleable ConstraintSet_layout_goneMarginLeft 76
int styleable ConstraintSet_layout_goneMarginRight 77
int styleable ConstraintSet_layout_goneMarginStart 78
int styleable ConstraintSet_layout_goneMarginTop 79
int[] styleable CoordinatorLayout { 0x7f03010d, 0x7f0301a6 }
int styleable CoordinatorLayout_keylines 0
int styleable CoordinatorLayout_statusBarBackground 1
int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f030112, 0x7f030113, 0x7f030114, 0x7f030140, 0x7f030149, 0x7f03014a }
int styleable CoordinatorLayout_Layout_android_layout_gravity 0
int styleable CoordinatorLayout_Layout_layout_anchor 1
int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
int styleable CoordinatorLayout_Layout_layout_behavior 3
int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
int styleable CoordinatorLayout_Layout_layout_insetEdge 5
int styleable CoordinatorLayout_Layout_layout_keyline 6
int[] styleable DesignTheme { 0x7f030043, 0x7f030044 }
int styleable DesignTheme_bottomSheetDialogTheme 0
int styleable DesignTheme_bottomSheetStyle 1
int[] styleable DrawerArrowToggle { 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030086, 0x7f0300b4, 0x7f0300e3, 0x7f03019b, 0x7f0301eb }
int styleable DrawerArrowToggle_arrowHeadLength 0
int styleable DrawerArrowToggle_arrowShaftLength 1
int styleable DrawerArrowToggle_barLength 2
int styleable DrawerArrowToggle_color 3
int styleable DrawerArrowToggle_drawableSize 4
int styleable DrawerArrowToggle_gapBetweenBars 5
int styleable DrawerArrowToggle_spinBars 6
int styleable DrawerArrowToggle_thickness 7
int[] styleable FloatingActionButton { 0x7f030034, 0x7f030035, 0x7f03003f, 0x7f0300bb, 0x7f0300ce, 0x7f0300cf, 0x7f0300ea, 0x7f0300f2, 0x7f030162, 0x7f03017c, 0x7f030186, 0x7f030192, 0x7f030209 }
int styleable FloatingActionButton_backgroundTint 0
int styleable FloatingActionButton_backgroundTintMode 1
int styleable FloatingActionButton_borderWidth 2
int styleable FloatingActionButton_elevation 3
int styleable FloatingActionButton_fabCustomSize 4
int styleable FloatingActionButton_fabSize 5
int styleable FloatingActionButton_hideMotionSpec 6
int styleable FloatingActionButton_hoveredFocusedTranslationZ 7
int styleable FloatingActionButton_maxImageSize 8
int styleable FloatingActionButton_pressedTranslationZ 9
int styleable FloatingActionButton_rippleColor 10
int styleable FloatingActionButton_showMotionSpec 11
int styleable FloatingActionButton_useCompatPadding 12
int[] styleable FloatingActionButton_Behavior_Layout { 0x7f030039 }
int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0
int[] styleable FlowLayout { 0x7f030108, 0x7f030150 }
int styleable FlowLayout_itemSpacing 0
int styleable FlowLayout_lineSpacing 1
int[] styleable FontFamily { 0x7f0300d9, 0x7f0300da, 0x7f0300db, 0x7f0300dc, 0x7f0300dd, 0x7f0300de }
int styleable FontFamily_fontProviderAuthority 0
int styleable FontFamily_fontProviderCerts 1
int styleable FontFamily_fontProviderFetchStrategy 2
int styleable FontFamily_fontProviderFetchTimeout 3
int styleable FontFamily_fontProviderPackage 4
int styleable FontFamily_fontProviderQuery 5
int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f0300d7, 0x7f0300df, 0x7f0300e0, 0x7f0300e1, 0x7f030208 }
int styleable FontFamilyFont_android_font 0
int styleable FontFamilyFont_android_fontWeight 1
int styleable FontFamilyFont_android_fontStyle 2
int styleable FontFamilyFont_android_ttcIndex 3
int styleable FontFamilyFont_android_fontVariationSettings 4
int styleable FontFamilyFont_font 5
int styleable FontFamilyFont_fontStyle 6
int styleable FontFamilyFont_fontVariationSettings 7
int styleable FontFamilyFont_fontWeight 8
int styleable FontFamilyFont_ttcIndex 9
int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f0300e2 }
int styleable ForegroundLinearLayout_android_foreground 0
int styleable ForegroundLinearLayout_android_foregroundGravity 1
int styleable ForegroundLinearLayout_foregroundInsidePadding 2
int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }
int styleable GradientColor_android_startColor 0
int styleable GradientColor_android_endColor 1
int styleable GradientColor_android_type 2
int styleable GradientColor_android_centerX 3
int styleable GradientColor_android_centerY 4
int styleable GradientColor_android_gradientRadius 5
int styleable GradientColor_android_tileMode 6
int styleable GradientColor_android_centerColor 7
int styleable GradientColor_android_startX 8
int styleable GradientColor_android_startY 9
int styleable GradientColor_android_endX 10
int styleable GradientColor_android_endY 11
int[] styleable GradientColorItem { 0x010101a5, 0x01010514 }
int styleable GradientColorItem_android_color 0
int styleable GradientColorItem_android_offset 1
int[] styleable LinearConstraintLayout { 0x010100c4 }
int styleable LinearConstraintLayout_android_orientation 0
int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f0300b0, 0x7f0300b2, 0x7f030163, 0x7f030191 }
int styleable LinearLayoutCompat_android_gravity 0
int styleable LinearLayoutCompat_android_orientation 1
int styleable LinearLayoutCompat_android_baselineAligned 2
int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
int styleable LinearLayoutCompat_android_weightSum 4
int styleable LinearLayoutCompat_divider 5
int styleable LinearLayoutCompat_dividerPadding 6
int styleable LinearLayoutCompat_measureWithLargestChild 7
int styleable LinearLayoutCompat_showDividers 8
int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
int styleable LinearLayoutCompat_Layout_android_layout_width 1
int styleable LinearLayoutCompat_Layout_android_layout_height 2
int styleable LinearLayoutCompat_Layout_android_layout_weight 3
int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
int styleable ListPopupWindow_android_dropDownVerticalOffset 1
int[] styleable MaterialButton { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f030034, 0x7f030035, 0x7f0300a5, 0x7f0300f3, 0x7f0300f5, 0x7f0300f6, 0x7f0300f7, 0x7f0300f9, 0x7f0300fa, 0x7f030186, 0x7f0301a8, 0x7f0301a9 }
int styleable MaterialButton_android_insetLeft 0
int styleable MaterialButton_android_insetRight 1
int styleable MaterialButton_android_insetTop 2
int styleable MaterialButton_android_insetBottom 3
int styleable MaterialButton_backgroundTint 4
int styleable MaterialButton_backgroundTintMode 5
int styleable MaterialButton_cornerRadius 6
int styleable MaterialButton_icon 7
int styleable MaterialButton_iconGravity 8
int styleable MaterialButton_iconPadding 9
int styleable MaterialButton_iconSize 10
int styleable MaterialButton_iconTint 11
int styleable MaterialButton_iconTintMode 12
int styleable MaterialButton_rippleColor 13
int styleable MaterialButton_strokeColor 14
int styleable MaterialButton_strokeWidth 15
int[] styleable MaterialCardView { 0x7f0301a8, 0x7f0301a9 }
int styleable MaterialCardView_strokeColor 0
int styleable MaterialCardView_strokeWidth 1
int[] styleable MaterialComponentsTheme { 0x7f030043, 0x7f030044, 0x7f03006b, 0x7f030075, 0x7f030079, 0x7f030087, 0x7f030088, 0x7f03008e, 0x7f03008f, 0x7f030090, 0x7f0300ba, 0x7f0300d6, 0x7f03015e, 0x7f03015f, 0x7f030169, 0x7f030188, 0x7f030198, 0x7f0301cb, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301de, 0x7f0301e3, 0x7f0301e4, 0x7f0301e8 }
int styleable MaterialComponentsTheme_bottomSheetDialogTheme 0
int styleable MaterialComponentsTheme_bottomSheetStyle 1
int styleable MaterialComponentsTheme_chipGroupStyle 2
int styleable MaterialComponentsTheme_chipStandaloneStyle 3
int styleable MaterialComponentsTheme_chipStyle 4
int styleable MaterialComponentsTheme_colorAccent 5
int styleable MaterialComponentsTheme_colorBackgroundFloating 6
int styleable MaterialComponentsTheme_colorPrimary 7
int styleable MaterialComponentsTheme_colorPrimaryDark 8
int styleable MaterialComponentsTheme_colorSecondary 9
int styleable MaterialComponentsTheme_editTextStyle 10
int styleable MaterialComponentsTheme_floatingActionButtonStyle 11
int styleable MaterialComponentsTheme_materialButtonStyle 12
int styleable MaterialComponentsTheme_materialCardViewStyle 13
int styleable MaterialComponentsTheme_navigationViewStyle 14
int styleable MaterialComponentsTheme_scrimBackground 15
int styleable MaterialComponentsTheme_snackbarButtonStyle 16
int styleable MaterialComponentsTheme_tabStyle 17
int styleable MaterialComponentsTheme_textAppearanceBody1 18
int styleable MaterialComponentsTheme_textAppearanceBody2 19
int styleable MaterialComponentsTheme_textAppearanceButton 20
int styleable MaterialComponentsTheme_textAppearanceCaption 21
int styleable MaterialComponentsTheme_textAppearanceHeadline1 22
int styleable MaterialComponentsTheme_textAppearanceHeadline2 23
int styleable MaterialComponentsTheme_textAppearanceHeadline3 24
int styleable MaterialComponentsTheme_textAppearanceHeadline4 25
int styleable MaterialComponentsTheme_textAppearanceHeadline5 26
int styleable MaterialComponentsTheme_textAppearanceHeadline6 27
int styleable MaterialComponentsTheme_textAppearanceOverline 28
int styleable MaterialComponentsTheme_textAppearanceSubtitle1 29
int styleable MaterialComponentsTheme_textAppearanceSubtitle2 30
int styleable MaterialComponentsTheme_textInputStyle 31
int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
int styleable MenuGroup_android_enabled 0
int styleable MenuGroup_android_id 1
int styleable MenuGroup_android_visible 2
int styleable MenuGroup_android_menuCategory 3
int styleable MenuGroup_android_orderInCategory 4
int styleable MenuGroup_android_checkableBehavior 5
int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f030096, 0x7f0300f9, 0x7f0300fa, 0x7f03016a, 0x7f030190, 0x7f030204 }
int styleable MenuItem_android_icon 0
int styleable MenuItem_android_enabled 1
int styleable MenuItem_android_id 2
int styleable MenuItem_android_checked 3
int styleable MenuItem_android_visible 4
int styleable MenuItem_android_menuCategory 5
int styleable MenuItem_android_orderInCategory 6
int styleable MenuItem_android_title 7
int styleable MenuItem_android_titleCondensed 8
int styleable MenuItem_android_alphabeticShortcut 9
int styleable MenuItem_android_numericShortcut 10
int styleable MenuItem_android_checkable 11
int styleable MenuItem_android_onClick 12
int styleable MenuItem_actionLayout 13
int styleable MenuItem_actionProviderClass 14
int styleable MenuItem_actionViewClass 15
int styleable MenuItem_alphabeticModifiers 16
int styleable MenuItem_contentDescription 17
int styleable MenuItem_iconTint 18
int styleable MenuItem_iconTintMode 19
int styleable MenuItem_numericModifiers 20
int styleable MenuItem_showAsAction 21
int styleable MenuItem_tooltipText 22
int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f03017b, 0x7f0301aa }
int styleable MenuView_android_windowAnimationStyle 0
int styleable MenuView_android_itemTextAppearance 1
int styleable MenuView_android_horizontalDivider 2
int styleable MenuView_android_verticalDivider 3
int styleable MenuView_android_headerBackground 4
int styleable MenuView_android_itemBackground 5
int styleable MenuView_android_itemIconDisabledAlpha 6
int styleable MenuView_preserveIconSpacing 7
int styleable MenuView_subMenuArrow 8
int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f0300bb, 0x7f0300e5, 0x7f030101, 0x7f030102, 0x7f030104, 0x7f030106, 0x7f030109, 0x7f03010c, 0x7f030164 }
int styleable NavigationView_android_background 0
int styleable NavigationView_android_fitsSystemWindows 1
int styleable NavigationView_android_maxWidth 2
int styleable NavigationView_elevation 3
int styleable NavigationView_headerLayout 4
int styleable NavigationView_itemBackground 5
int styleable NavigationView_itemHorizontalPadding 6
int styleable NavigationView_itemIconPadding 7
int styleable NavigationView_itemIconTint 8
int styleable NavigationView_itemTextAppearance 9
int styleable NavigationView_itemTextColor 10
int styleable NavigationView_menu 11
int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f03016b }
int styleable PopupWindow_android_popupBackground 0
int styleable PopupWindow_android_popupAnimationStyle 1
int styleable PopupWindow_overlapAnchor 2
int[] styleable PopupWindowBackgroundState { 0x7f0301a1 }
int styleable PopupWindowBackgroundState_state_above_anchor 0
int[] styleable RecycleListView { 0x7f03016c, 0x7f03016f }
int styleable RecycleListView_paddingBottomNoButtons 0
int styleable RecycleListView_paddingTopNoTitle 1
int[] styleable RecyclerView { 0x010100c4, 0x010100f1, 0x7f0300d0, 0x7f0300d1, 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f030111, 0x7f030185, 0x7f03019a, 0x7f0301a0 }
int styleable RecyclerView_android_orientation 0
int styleable RecyclerView_android_descendantFocusability 1
int styleable RecyclerView_fastScrollEnabled 2
int styleable RecyclerView_fastScrollHorizontalThumbDrawable 3
int styleable RecyclerView_fastScrollHorizontalTrackDrawable 4
int styleable RecyclerView_fastScrollVerticalThumbDrawable 5
int styleable RecyclerView_fastScrollVerticalTrackDrawable 6
int styleable RecyclerView_layoutManager 7
int styleable RecyclerView_reverseLayout 8
int styleable RecyclerView_spanCount 9
int styleable RecyclerView_stackFromEnd 10
int[] styleable ScrimInsetsFrameLayout { 0x7f0300ff }
int styleable ScrimInsetsFrameLayout_insetForeground 0
int[] styleable ScrollingViewBehavior_Layout { 0x7f03003c }
int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0
int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f03007a, 0x7f030092, 0x7f0300ab, 0x7f0300e4, 0x7f0300fb, 0x7f030110, 0x7f03017f, 0x7f030180, 0x7f03018a, 0x7f03018b, 0x7f0301ab, 0x7f0301b0, 0x7f03020b }
int styleable SearchView_android_focusable 0
int styleable SearchView_android_maxWidth 1
int styleable SearchView_android_inputType 2
int styleable SearchView_android_imeOptions 3
int styleable SearchView_closeIcon 4
int styleable SearchView_commitIcon 5
int styleable SearchView_defaultQueryHint 6
int styleable SearchView_goIcon 7
int styleable SearchView_iconifiedByDefault 8
int styleable SearchView_layout 9
int styleable SearchView_queryBackground 10
int styleable SearchView_queryHint 11
int styleable SearchView_searchHintIcon 12
int styleable SearchView_searchIcon 13
int styleable SearchView_submitBackground 14
int styleable SearchView_suggestionRowLayout 15
int styleable SearchView_voiceIcon 16
int[] styleable Snackbar { 0x7f030198, 0x7f030199 }
int styleable Snackbar_snackbarButtonStyle 0
int styleable Snackbar_snackbarStyle 1
int[] styleable SnackbarLayout { 0x0101011f, 0x7f0300bb, 0x7f030160 }
int styleable SnackbarLayout_android_maxWidth 0
int styleable SnackbarLayout_elevation 1
int styleable SnackbarLayout_maxActionInlineWidth 2
int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f030179 }
int styleable Spinner_android_entries 0
int styleable Spinner_android_popupBackground 1
int styleable Spinner_android_prompt 2
int styleable Spinner_android_dropDownWidth 3
int styleable Spinner_popupTheme 4
int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }
int styleable StateListDrawable_android_dither 0
int styleable StateListDrawable_android_visible 1
int styleable StateListDrawable_android_variablePadding 2
int styleable StateListDrawable_android_constantSize 3
int styleable StateListDrawable_android_enterFadeDuration 4
int styleable StateListDrawable_android_exitFadeDuration 5
int[] styleable StateListDrawableItem { 0x01010199 }
int styleable StateListDrawableItem_android_drawable 0
int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f030193, 0x7f03019e, 0x7f0301b1, 0x7f0301b2, 0x7f0301b4, 0x7f0301ec, 0x7f0301ed, 0x7f0301ee, 0x7f030205, 0x7f030206, 0x7f030207 }
int styleable SwitchCompat_android_textOn 0
int styleable SwitchCompat_android_textOff 1
int styleable SwitchCompat_android_thumb 2
int styleable SwitchCompat_showText 3
int styleable SwitchCompat_splitTrack 4
int styleable SwitchCompat_switchMinWidth 5
int styleable SwitchCompat_switchPadding 6
int styleable SwitchCompat_switchTextAppearance 7
int styleable SwitchCompat_thumbTextPadding 8
int styleable SwitchCompat_thumbTint 9
int styleable SwitchCompat_thumbTintMode 10
int styleable SwitchCompat_track 11
int styleable SwitchCompat_trackTint 12
int styleable SwitchCompat_trackTintMode 13
int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f }
int styleable TabItem_android_icon 0
int styleable TabItem_android_layout 1
int styleable TabItem_android_text 2
int[] styleable TabLayout { 0x7f0301b5, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8, 0x7f0301b9, 0x7f0301ba, 0x7f0301bb, 0x7f0301bc, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4, 0x7f0301c5, 0x7f0301c6, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce }
int styleable TabLayout_tabBackground 0
int styleable TabLayout_tabContentStart 1
int styleable TabLayout_tabGravity 2
int styleable TabLayout_tabIconTint 3
int styleable TabLayout_tabIconTintMode 4
int styleable TabLayout_tabIndicator 5
int styleable TabLayout_tabIndicatorAnimationDuration 6
int styleable TabLayout_tabIndicatorColor 7
int styleable TabLayout_tabIndicatorFullWidth 8
int styleable TabLayout_tabIndicatorGravity 9
int styleable TabLayout_tabIndicatorHeight 10
int styleable TabLayout_tabInlineLabel 11
int styleable TabLayout_tabMaxWidth 12
int styleable TabLayout_tabMinWidth 13
int styleable TabLayout_tabMode 14
int styleable TabLayout_tabPadding 15
int styleable TabLayout_tabPaddingBottom 16
int styleable TabLayout_tabPaddingEnd 17
int styleable TabLayout_tabPaddingStart 18
int styleable TabLayout_tabPaddingTop 19
int styleable TabLayout_tabRippleColor 20
int styleable TabLayout_tabSelectedTextColor 21
int styleable TabLayout_tabTextAppearance 22
int styleable TabLayout_tabTextColor 23
int styleable TabLayout_tabUnboundedRipple 24
int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f0300d8, 0x7f0301cf }
int styleable TextAppearance_android_textSize 0
int styleable TextAppearance_android_typeface 1
int styleable TextAppearance_android_textStyle 2
int styleable TextAppearance_android_textColor 3
int styleable TextAppearance_android_textColorHint 4
int styleable TextAppearance_android_textColorLink 5
int styleable TextAppearance_android_shadowColor 6
int styleable TextAppearance_android_shadowDx 7
int styleable TextAppearance_android_shadowDy 8
int styleable TextAppearance_android_shadowRadius 9
int styleable TextAppearance_android_fontFamily 10
int styleable TextAppearance_fontFamily 11
int styleable TextAppearance_textAllCaps 12
int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300a9, 0x7f0300bf, 0x7f0300c0, 0x7f0300e7, 0x7f0300e8, 0x7f0300e9, 0x7f0300ed, 0x7f0300ee, 0x7f0300ef, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f030176, 0x7f030177 }
int styleable TextInputLayout_android_textColorHint 0
int styleable TextInputLayout_android_hint 1
int styleable TextInputLayout_boxBackgroundColor 2
int styleable TextInputLayout_boxBackgroundMode 3
int styleable TextInputLayout_boxCollapsedPaddingTop 4
int styleable TextInputLayout_boxCornerRadiusBottomEnd 5
int styleable TextInputLayout_boxCornerRadiusBottomStart 6
int styleable TextInputLayout_boxCornerRadiusTopEnd 7
int styleable TextInputLayout_boxCornerRadiusTopStart 8
int styleable TextInputLayout_boxStrokeColor 9
int styleable TextInputLayout_boxStrokeWidth 10
int styleable TextInputLayout_counterEnabled 11
int styleable TextInputLayout_counterMaxLength 12
int styleable TextInputLayout_counterOverflowTextAppearance 13
int styleable TextInputLayout_counterTextAppearance 14
int styleable TextInputLayout_errorEnabled 15
int styleable TextInputLayout_errorTextAppearance 16
int styleable TextInputLayout_helperText 17
int styleable TextInputLayout_helperTextEnabled 18
int styleable TextInputLayout_helperTextTextAppearance 19
int styleable TextInputLayout_hintAnimationEnabled 20
int styleable TextInputLayout_hintEnabled 21
int styleable TextInputLayout_hintTextAppearance 22
int styleable TextInputLayout_passwordToggleContentDescription 23
int styleable TextInputLayout_passwordToggleDrawable 24
int styleable TextInputLayout_passwordToggleEnabled 25
int styleable TextInputLayout_passwordToggleTint 26
int styleable TextInputLayout_passwordToggleTintMode 27
int[] styleable ThemeEnforcement { 0x01010034, 0x7f0300bd, 0x7f0300be }
int styleable ThemeEnforcement_android_textAppearance 0
int styleable ThemeEnforcement_enforceMaterialTheme 1
int styleable ThemeEnforcement_enforceTextAppearance 2
int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030053, 0x7f030082, 0x7f030083, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b, 0x7f03009c, 0x7f03015c, 0x7f03015d, 0x7f030161, 0x7f030166, 0x7f030167, 0x7f030179, 0x7f0301ac, 0x7f0301ad, 0x7f0301ae, 0x7f0301f4, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd }
int styleable Toolbar_android_gravity 0
int styleable Toolbar_android_minHeight 1
int styleable Toolbar_buttonGravity 2
int styleable Toolbar_collapseContentDescription 3
int styleable Toolbar_collapseIcon 4
int styleable Toolbar_contentInsetEnd 5
int styleable Toolbar_contentInsetEndWithActions 6
int styleable Toolbar_contentInsetLeft 7
int styleable Toolbar_contentInsetRight 8
int styleable Toolbar_contentInsetStart 9
int styleable Toolbar_contentInsetStartWithNavigation 10
int styleable Toolbar_logo 11
int styleable Toolbar_logoDescription 12
int styleable Toolbar_maxButtonHeight 13
int styleable Toolbar_navigationContentDescription 14
int styleable Toolbar_navigationIcon 15
int styleable Toolbar_popupTheme 16
int styleable Toolbar_subtitle 17
int styleable Toolbar_subtitleTextAppearance 18
int styleable Toolbar_subtitleTextColor 19
int styleable Toolbar_title 20
int styleable Toolbar_titleMargin 21
int styleable Toolbar_titleMarginBottom 22
int styleable Toolbar_titleMarginEnd 23
int styleable Toolbar_titleMarginStart 24
int styleable Toolbar_titleMarginTop 25
int styleable Toolbar_titleMargins 26
int styleable Toolbar_titleTextAppearance 27
int styleable Toolbar_titleTextColor 28
int[] styleable View { 0x01010000, 0x010100da, 0x7f03016d, 0x7f03016e, 0x7f0301ea }
int styleable View_android_theme 0
int styleable View_android_focusable 1
int styleable View_paddingEnd 2
int styleable View_paddingStart 3
int styleable View_theme 4
int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030034, 0x7f030035 }
int styleable ViewBackgroundHelper_android_background 0
int styleable ViewBackgroundHelper_backgroundTint 1
int styleable ViewBackgroundHelper_backgroundTintMode 2
int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
int styleable ViewStubCompat_android_id 0
int styleable ViewStubCompat_android_layout 1
int styleable ViewStubCompat_android_inflatedId 2