Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project.pbxproj « icu.xcodeproj « icu « xcode - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 213f86d662656e864726d1ce5eae38b5fda5dac1 (plain)
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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		BBB1673C1E8275DD0058BF1E /* affixpatternparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165E81E8275DC0058BF1E /* affixpatternparser.cpp */; };
		BBB1673E1E8275DD0058BF1E /* alphaindex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165EA1E8275DC0058BF1E /* alphaindex.cpp */; };
		BBB1673F1E8275DD0058BF1E /* anytrans.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165EB1E8275DC0058BF1E /* anytrans.cpp */; };
		BBB167411E8275DD0058BF1E /* astro.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165ED1E8275DC0058BF1E /* astro.cpp */; };
		BBB167431E8275DD0058BF1E /* basictz.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165EF1E8275DC0058BF1E /* basictz.cpp */; };
		BBB167441E8275DD0058BF1E /* bocsu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165F01E8275DC0058BF1E /* bocsu.cpp */; };
		BBB167461E8275DD0058BF1E /* brktrans.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165F21E8275DC0058BF1E /* brktrans.cpp */; };
		BBB167481E8275DD0058BF1E /* buddhcal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165F41E8275DC0058BF1E /* buddhcal.cpp */; };
		BBB1674A1E8275DD0058BF1E /* calendar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165F61E8275DC0058BF1E /* calendar.cpp */; };
		BBB1674B1E8275DD0058BF1E /* casetrn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165F71E8275DC0058BF1E /* casetrn.cpp */; };
		BBB1674D1E8275DD0058BF1E /* cecal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165F91E8275DC0058BF1E /* cecal.cpp */; };
		BBB1674F1E8275DD0058BF1E /* chnsecal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165FB1E8275DC0058BF1E /* chnsecal.cpp */; };
		BBB167511E8275DD0058BF1E /* choicfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165FD1E8275DC0058BF1E /* choicfmt.cpp */; };
		BBB167521E8275DD0058BF1E /* coleitr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165FE1E8275DC0058BF1E /* coleitr.cpp */; };
		BBB167531E8275DD0058BF1E /* coll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB165FF1E8275DC0058BF1E /* coll.cpp */; };
		BBB167541E8275DD0058BF1E /* collation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166001E8275DC0058BF1E /* collation.cpp */; };
		BBB167561E8275DD0058BF1E /* collationbuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166021E8275DC0058BF1E /* collationbuilder.cpp */; };
		BBB167581E8275DD0058BF1E /* collationcompare.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166041E8275DD0058BF1E /* collationcompare.cpp */; };
		BBB1675A1E8275DD0058BF1E /* collationdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166061E8275DD0058BF1E /* collationdata.cpp */; };
		BBB1675C1E8275DD0058BF1E /* collationdatabuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166081E8275DD0058BF1E /* collationdatabuilder.cpp */; };
		BBB1675E1E8275DD0058BF1E /* collationdatareader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1660A1E8275DD0058BF1E /* collationdatareader.cpp */; };
		BBB167601E8275DD0058BF1E /* collationdatawriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1660C1E8275DD0058BF1E /* collationdatawriter.cpp */; };
		BBB167621E8275DD0058BF1E /* collationfastlatin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1660E1E8275DD0058BF1E /* collationfastlatin.cpp */; };
		BBB167641E8275DD0058BF1E /* collationfastlatinbuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166101E8275DD0058BF1E /* collationfastlatinbuilder.cpp */; };
		BBB167661E8275DD0058BF1E /* collationfcd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166121E8275DD0058BF1E /* collationfcd.cpp */; };
		BBB167681E8275DD0058BF1E /* collationiterator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166141E8275DD0058BF1E /* collationiterator.cpp */; };
		BBB1676A1E8275DD0058BF1E /* collationkeys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166161E8275DD0058BF1E /* collationkeys.cpp */; };
		BBB1676C1E8275DD0058BF1E /* collationroot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166181E8275DD0058BF1E /* collationroot.cpp */; };
		BBB1676E1E8275DD0058BF1E /* collationrootelements.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1661A1E8275DD0058BF1E /* collationrootelements.cpp */; };
		BBB167701E8275DD0058BF1E /* collationruleparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1661C1E8275DD0058BF1E /* collationruleparser.cpp */; };
		BBB167721E8275DD0058BF1E /* collationsets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1661E1E8275DD0058BF1E /* collationsets.cpp */; };
		BBB167741E8275DD0058BF1E /* collationsettings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166201E8275DD0058BF1E /* collationsettings.cpp */; };
		BBB167761E8275DD0058BF1E /* collationtailoring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166221E8275DD0058BF1E /* collationtailoring.cpp */; };
		BBB167781E8275DD0058BF1E /* collationweights.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166241E8275DD0058BF1E /* collationweights.cpp */; };
		BBB1677B1E8275DD0058BF1E /* compactdecimalformat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166271E8275DD0058BF1E /* compactdecimalformat.cpp */; };
		BBB1677C1E8275DD0058BF1E /* coptccal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166281E8275DD0058BF1E /* coptccal.cpp */; };
		BBB1677E1E8275DD0058BF1E /* cpdtrans.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1662A1E8275DD0058BF1E /* cpdtrans.cpp */; };
		BBB167801E8275DD0058BF1E /* csdetect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1662C1E8275DD0058BF1E /* csdetect.cpp */; };
		BBB167821E8275DD0058BF1E /* csmatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1662E1E8275DD0058BF1E /* csmatch.cpp */; };
		BBB167841E8275DD0058BF1E /* csr2022.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166301E8275DD0058BF1E /* csr2022.cpp */; };
		BBB167861E8275DD0058BF1E /* csrecog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166321E8275DD0058BF1E /* csrecog.cpp */; };
		BBB167881E8275DD0058BF1E /* csrmbcs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166341E8275DD0058BF1E /* csrmbcs.cpp */; };
		BBB1678A1E8275DD0058BF1E /* csrsbcs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166361E8275DD0058BF1E /* csrsbcs.cpp */; };
		BBB1678C1E8275DD0058BF1E /* csrucode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166381E8275DD0058BF1E /* csrucode.cpp */; };
		BBB1678E1E8275DD0058BF1E /* csrutf8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1663A1E8275DD0058BF1E /* csrutf8.cpp */; };
		BBB167901E8275DD0058BF1E /* curramt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1663C1E8275DD0058BF1E /* curramt.cpp */; };
		BBB167911E8275DD0058BF1E /* currfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1663D1E8275DD0058BF1E /* currfmt.cpp */; };
		BBB167931E8275DD0058BF1E /* currpinf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1663F1E8275DD0058BF1E /* currpinf.cpp */; };
		BBB167941E8275DD0058BF1E /* currunit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166401E8275DD0058BF1E /* currunit.cpp */; };
		BBB167951E8275DD0058BF1E /* dangical.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166411E8275DD0058BF1E /* dangical.cpp */; };
		BBB167971E8275DD0058BF1E /* datefmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166431E8275DD0058BF1E /* datefmt.cpp */; };
		BBB167981E8275DD0058BF1E /* dayperiodrules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166441E8275DD0058BF1E /* dayperiodrules.cpp */; };
		BBB1679B1E8275DD0058BF1E /* dcfmtsym.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166471E8275DD0058BF1E /* dcfmtsym.cpp */; };
		BBB1679C1E8275DD0058BF1E /* decContext.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB166481E8275DD0058BF1E /* decContext.c */; };
		BBB1679E1E8275DD0058BF1E /* decfmtst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1664A1E8275DD0058BF1E /* decfmtst.cpp */; };
		BBB167A01E8275DD0058BF1E /* decimalformatpattern.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1664C1E8275DD0058BF1E /* decimalformatpattern.cpp */; };
		BBB167A31E8275DD0058BF1E /* decimfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1664F1E8275DD0058BF1E /* decimfmt.cpp */; };
		BBB167A41E8275DD0058BF1E /* decimfmtimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166501E8275DD0058BF1E /* decimfmtimpl.cpp */; };
		BBB167A61E8275DD0058BF1E /* decNumber.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB166521E8275DD0058BF1E /* decNumber.c */; };
		BBB167A91E8275DD0058BF1E /* digitaffix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166551E8275DD0058BF1E /* digitaffix.cpp */; };
		BBB167AB1E8275DD0058BF1E /* digitaffixesandpadding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166571E8275DD0058BF1E /* digitaffixesandpadding.cpp */; };
		BBB167AD1E8275DD0058BF1E /* digitformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166591E8275DD0058BF1E /* digitformatter.cpp */; };
		BBB167AF1E8275DD0058BF1E /* digitgrouping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1665B1E8275DD0058BF1E /* digitgrouping.cpp */; };
		BBB167B11E8275DD0058BF1E /* digitinterval.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1665D1E8275DD0058BF1E /* digitinterval.cpp */; };
		BBB167B31E8275DD0058BF1E /* digitlst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1665F1E8275DD0058BF1E /* digitlst.cpp */; };
		BBB167B51E8275DD0058BF1E /* dtfmtsym.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166611E8275DD0058BF1E /* dtfmtsym.cpp */; };
		BBB167B71E8275DD0058BF1E /* dtitvfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166631E8275DD0058BF1E /* dtitvfmt.cpp */; };
		BBB167B81E8275DD0058BF1E /* dtitvinf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166641E8275DD0058BF1E /* dtitvinf.cpp */; };
		BBB167BA1E8275DD0058BF1E /* dtptngen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166661E8275DD0058BF1E /* dtptngen.cpp */; };
		BBB167BB1E8275DD0058BF1E /* dtrule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166671E8275DD0058BF1E /* dtrule.cpp */; };
		BBB167BC1E8275DD0058BF1E /* esctrn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166681E8275DD0058BF1E /* esctrn.cpp */; };
		BBB167BE1E8275DD0058BF1E /* ethpccal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1666A1E8275DD0058BF1E /* ethpccal.cpp */; };
		BBB167C01E8275DD0058BF1E /* fmtable_cnv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1666C1E8275DD0058BF1E /* fmtable_cnv.cpp */; };
		BBB167C11E8275DD0058BF1E /* fmtable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1666D1E8275DD0058BF1E /* fmtable.cpp */; };
		BBB167C31E8275DD0058BF1E /* format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1666F1E8275DD0058BF1E /* format.cpp */; };
		BBB167C41E8275DD0058BF1E /* fphdlimp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166701E8275DD0058BF1E /* fphdlimp.cpp */; };
		BBB167C61E8275DD0058BF1E /* fpositer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166721E8275DD0058BF1E /* fpositer.cpp */; };
		BBB167C71E8275DD0058BF1E /* funcrepl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166731E8275DD0058BF1E /* funcrepl.cpp */; };
		BBB167C91E8275DD0058BF1E /* gender.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166751E8275DD0058BF1E /* gender.cpp */; };
		BBB167CA1E8275DD0058BF1E /* gregocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166761E8275DD0058BF1E /* gregocal.cpp */; };
		BBB167CB1E8275DD0058BF1E /* gregoimp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166771E8275DD0058BF1E /* gregoimp.cpp */; };
		BBB167CD1E8275DD0058BF1E /* hebrwcal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166791E8275DD0058BF1E /* hebrwcal.cpp */; };
		BBB167CF1E8275DD0058BF1E /* identifier_info.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1667B1E8275DD0058BF1E /* identifier_info.cpp */; };
		BBB167D11E8275DD0058BF1E /* indiancal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1667D1E8275DD0058BF1E /* indiancal.cpp */; };
		BBB167D31E8275DD0058BF1E /* inputext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1667F1E8275DD0058BF1E /* inputext.cpp */; };
		BBB167D51E8275DD0058BF1E /* islamcal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166811E8275DD0058BF1E /* islamcal.cpp */; };
		BBB167D71E8275DD0058BF1E /* japancal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166831E8275DD0058BF1E /* japancal.cpp */; };
		BBB167D91E8275DD0058BF1E /* measfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166851E8275DD0058BF1E /* measfmt.cpp */; };
		BBB167DA1E8275DD0058BF1E /* measunit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166861E8275DD0058BF1E /* measunit.cpp */; };
		BBB167DB1E8275DD0058BF1E /* measure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166871E8275DD0058BF1E /* measure.cpp */; };
		BBB167DD1E8275DD0058BF1E /* msgfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166891E8275DD0058BF1E /* msgfmt.cpp */; };
		BBB167DE1E8275DD0058BF1E /* name2uni.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1668A1E8275DD0058BF1E /* name2uni.cpp */; };
		BBB167E11E8275DD0058BF1E /* nfrs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1668D1E8275DD0058BF1E /* nfrs.cpp */; };
		BBB167E31E8275DD0058BF1E /* nfrule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1668F1E8275DD0058BF1E /* nfrule.cpp */; };
		BBB167E51E8275DD0058BF1E /* nfsubs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166911E8275DD0058BF1E /* nfsubs.cpp */; };
		BBB167E71E8275DD0058BF1E /* nortrans.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166931E8275DD0058BF1E /* nortrans.cpp */; };
		BBB167E91E8275DD0058BF1E /* nultrans.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166951E8275DD0058BF1E /* nultrans.cpp */; };
		BBB167EB1E8275DD0058BF1E /* numfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166971E8275DD0058BF1E /* numfmt.cpp */; };
		BBB167ED1E8275DD0058BF1E /* numsys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166991E8275DD0058BF1E /* numsys.cpp */; };
		BBB167EE1E8275DD0058BF1E /* olsontz.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1669A1E8275DD0058BF1E /* olsontz.cpp */; };
		BBB167F01E8275DD0058BF1E /* persncal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1669C1E8275DD0058BF1E /* persncal.cpp */; };
		BBB167F21E8275DD0058BF1E /* pluralaffix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1669E1E8275DD0058BF1E /* pluralaffix.cpp */; };
		BBB167F41E8275DD0058BF1E /* plurfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166A01E8275DD0058BF1E /* plurfmt.cpp */; };
		BBB167F61E8275DD0058BF1E /* plurrule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166A21E8275DD0058BF1E /* plurrule.cpp */; };
		BBB167F71E8275DD0058BF1E /* precision.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166A31E8275DD0058BF1E /* precision.cpp */; };
		BBB167F91E8275DD0058BF1E /* quant.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166A51E8275DD0058BF1E /* quant.cpp */; };
		BBB167FB1E8275DD0058BF1E /* quantityformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166A71E8275DD0058BF1E /* quantityformatter.cpp */; };
		BBB167FD1E8275DD0058BF1E /* rbnf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166A91E8275DD0058BF1E /* rbnf.cpp */; };
		BBB167FE1E8275DD0058BF1E /* rbt_data.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166AA1E8275DD0058BF1E /* rbt_data.cpp */; };
		BBB168001E8275DD0058BF1E /* rbt_pars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166AC1E8275DD0058BF1E /* rbt_pars.cpp */; };
		BBB168021E8275DD0058BF1E /* rbt_rule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166AE1E8275DD0058BF1E /* rbt_rule.cpp */; };
		BBB168041E8275DD0058BF1E /* rbt_set.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166B01E8275DD0058BF1E /* rbt_set.cpp */; };
		BBB168061E8275DD0058BF1E /* rbt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166B21E8275DD0058BF1E /* rbt.cpp */; };
		BBB168081E8275DD0058BF1E /* rbtz.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166B41E8275DD0058BF1E /* rbtz.cpp */; };
		BBB168091E8275DD0058BF1E /* regexcmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166B51E8275DD0058BF1E /* regexcmp.cpp */; };
		BBB1680C1E8275DD0058BF1E /* regeximp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166B91E8275DD0058BF1E /* regeximp.cpp */; };
		BBB1680E1E8275DD0058BF1E /* regexst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166BB1E8275DD0058BF1E /* regexst.cpp */; };
		BBB168101E8275DD0058BF1E /* regextxt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166BD1E8275DD0058BF1E /* regextxt.cpp */; };
		BBB168131E8275DD0058BF1E /* region.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166C01E8275DD0058BF1E /* region.cpp */; };
		BBB168141E8275DD0058BF1E /* reldatefmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166C11E8275DD0058BF1E /* reldatefmt.cpp */; };
		BBB168151E8275DD0058BF1E /* reldtfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166C21E8275DD0058BF1E /* reldtfmt.cpp */; };
		BBB168171E8275DD0058BF1E /* rematch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166C41E8275DD0058BF1E /* rematch.cpp */; };
		BBB168181E8275DD0058BF1E /* remtrans.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166C51E8275DD0058BF1E /* remtrans.cpp */; };
		BBB1681A1E8275DD0058BF1E /* repattrn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166C71E8275DD0058BF1E /* repattrn.cpp */; };
		BBB1681B1E8275DD0058BF1E /* rulebasedcollator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166C81E8275DD0058BF1E /* rulebasedcollator.cpp */; };
		BBB1681C1E8275DD0058BF1E /* scientificnumberformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166C91E8275DD0058BF1E /* scientificnumberformatter.cpp */; };
		BBB1681D1E8275DD0058BF1E /* scriptset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166CA1E8275DD0058BF1E /* scriptset.cpp */; };
		BBB1681F1E8275DD0058BF1E /* search.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166CC1E8275DD0058BF1E /* search.cpp */; };
		BBB168201E8275DD0058BF1E /* selfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166CD1E8275DD0058BF1E /* selfmt.cpp */; };
		BBB168221E8275DD0058BF1E /* sharedbreakiterator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166CF1E8275DD0058BF1E /* sharedbreakiterator.cpp */; };
		BBB168291E8275DE0058BF1E /* simpletz.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166D61E8275DD0058BF1E /* simpletz.cpp */; };
		BBB1682A1E8275DE0058BF1E /* smallintformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166D71E8275DD0058BF1E /* smallintformatter.cpp */; };
		BBB1682C1E8275DE0058BF1E /* smpdtfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166D91E8275DD0058BF1E /* smpdtfmt.cpp */; };
		BBB1682D1E8275DE0058BF1E /* smpdtfst.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166DA1E8275DD0058BF1E /* smpdtfst.cpp */; };
		BBB1682F1E8275DE0058BF1E /* sortkey.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166DC1E8275DD0058BF1E /* sortkey.cpp */; };
		BBB168301E8275DE0058BF1E /* standardplural.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166DD1E8275DD0058BF1E /* standardplural.cpp */; };
		BBB168321E8275DE0058BF1E /* strmatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166DF1E8275DD0058BF1E /* strmatch.cpp */; };
		BBB168341E8275DE0058BF1E /* strrepl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166E11E8275DD0058BF1E /* strrepl.cpp */; };
		BBB168361E8275DE0058BF1E /* stsearch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166E31E8275DD0058BF1E /* stsearch.cpp */; };
		BBB168371E8275DE0058BF1E /* taiwncal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166E41E8275DD0058BF1E /* taiwncal.cpp */; };
		BBB168391E8275DE0058BF1E /* timezone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166E61E8275DD0058BF1E /* timezone.cpp */; };
		BBB1683A1E8275DE0058BF1E /* titletrn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166E71E8275DD0058BF1E /* titletrn.cpp */; };
		BBB1683C1E8275DE0058BF1E /* tmunit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166E91E8275DD0058BF1E /* tmunit.cpp */; };
		BBB1683D1E8275DE0058BF1E /* tmutamt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166EA1E8275DD0058BF1E /* tmutamt.cpp */; };
		BBB1683E1E8275DE0058BF1E /* tmutfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166EB1E8275DD0058BF1E /* tmutfmt.cpp */; };
		BBB1683F1E8275DE0058BF1E /* tolowtrn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166EC1E8275DD0058BF1E /* tolowtrn.cpp */; };
		BBB168411E8275DE0058BF1E /* toupptrn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166EE1E8275DD0058BF1E /* toupptrn.cpp */; };
		BBB168431E8275DE0058BF1E /* translit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166F01E8275DD0058BF1E /* translit.cpp */; };
		BBB168441E8275DE0058BF1E /* transreg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166F11E8275DD0058BF1E /* transreg.cpp */; };
		BBB168461E8275DE0058BF1E /* tridpars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166F31E8275DD0058BF1E /* tridpars.cpp */; };
		BBB168481E8275DE0058BF1E /* tzfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166F51E8275DD0058BF1E /* tzfmt.cpp */; };
		BBB168491E8275DE0058BF1E /* tzgnames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166F61E8275DD0058BF1E /* tzgnames.cpp */; };
		BBB1684B1E8275DE0058BF1E /* tznames_impl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166F81E8275DD0058BF1E /* tznames_impl.cpp */; };
		BBB1684D1E8275DE0058BF1E /* tznames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166FA1E8275DD0058BF1E /* tznames.cpp */; };
		BBB1684E1E8275DE0058BF1E /* tzrule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166FB1E8275DD0058BF1E /* tzrule.cpp */; };
		BBB1684F1E8275DE0058BF1E /* tztrans.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166FC1E8275DD0058BF1E /* tztrans.cpp */; };
		BBB168501E8275DE0058BF1E /* ucal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166FD1E8275DD0058BF1E /* ucal.cpp */; };
		BBB168511E8275DE0058BF1E /* ucln_in.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB166FE1E8275DD0058BF1E /* ucln_in.cpp */; };
		BBB168541E8275DE0058BF1E /* ucol_res.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167011E8275DD0058BF1E /* ucol_res.cpp */; };
		BBB168551E8275DE0058BF1E /* ucol_sit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167021E8275DD0058BF1E /* ucol_sit.cpp */; };
		BBB168561E8275DE0058BF1E /* ucol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167031E8275DD0058BF1E /* ucol.cpp */; };
		BBB168571E8275DE0058BF1E /* ucoleitr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167041E8275DD0058BF1E /* ucoleitr.cpp */; };
		BBB168581E8275DE0058BF1E /* ucsdet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167051E8275DD0058BF1E /* ucsdet.cpp */; };
		BBB168591E8275DE0058BF1E /* udat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167061E8275DD0058BF1E /* udat.cpp */; };
		BBB1685A1E8275DE0058BF1E /* udateintervalformat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167071E8275DD0058BF1E /* udateintervalformat.cpp */; };
		BBB1685B1E8275DE0058BF1E /* udatpg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167081E8275DD0058BF1E /* udatpg.cpp */; };
		BBB1685C1E8275DE0058BF1E /* ufieldpositer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167091E8275DD0058BF1E /* ufieldpositer.cpp */; };
		BBB1685D1E8275DE0058BF1E /* uitercollationiterator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1670A1E8275DD0058BF1E /* uitercollationiterator.cpp */; };
		BBB1685F1E8275DE0058BF1E /* ulocdata.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB1670C1E8275DD0058BF1E /* ulocdata.c */; };
		BBB168611E8275DE0058BF1E /* umsg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1670E1E8275DD0058BF1E /* umsg.cpp */; };
		BBB168621E8275DE0058BF1E /* unesctrn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1670F1E8275DD0058BF1E /* unesctrn.cpp */; };
		BBB168641E8275DE0058BF1E /* uni2name.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167111E8275DD0058BF1E /* uni2name.cpp */; };
		BBB168661E8275DE0058BF1E /* unum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167131E8275DD0058BF1E /* unum.cpp */; };
		BBB168671E8275DE0058BF1E /* unumsys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167141E8275DD0058BF1E /* unumsys.cpp */; };
		BBB168681E8275DE0058BF1E /* upluralrules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167151E8275DD0058BF1E /* upluralrules.cpp */; };
		BBB168691E8275DE0058BF1E /* uregex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167161E8275DD0058BF1E /* uregex.cpp */; };
		BBB1686A1E8275DE0058BF1E /* uregexc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167171E8275DD0058BF1E /* uregexc.cpp */; };
		BBB1686B1E8275DE0058BF1E /* uregion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167181E8275DD0058BF1E /* uregion.cpp */; };
		BBB1686C1E8275DE0058BF1E /* usearch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167191E8275DD0058BF1E /* usearch.cpp */; };
		BBB1686D1E8275DE0058BF1E /* uspoof_build.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1671A1E8275DD0058BF1E /* uspoof_build.cpp */; };
		BBB1686E1E8275DE0058BF1E /* uspoof_conf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1671B1E8275DD0058BF1E /* uspoof_conf.cpp */; };
		BBB168701E8275DE0058BF1E /* uspoof_impl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1671D1E8275DD0058BF1E /* uspoof_impl.cpp */; };
		BBB168721E8275DE0058BF1E /* uspoof_wsconf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1671F1E8275DD0058BF1E /* uspoof_wsconf.cpp */; };
		BBB168741E8275DE0058BF1E /* uspoof.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167211E8275DD0058BF1E /* uspoof.cpp */; };
		BBB168761E8275DE0058BF1E /* utf8collationiterator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167231E8275DD0058BF1E /* utf8collationiterator.cpp */; };
		BBB168781E8275DE0058BF1E /* utf16collationiterator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167251E8275DD0058BF1E /* utf16collationiterator.cpp */; };
		BBB1687A1E8275DE0058BF1E /* utmscale.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB167271E8275DD0058BF1E /* utmscale.c */; };
		BBB1687B1E8275DE0058BF1E /* utrans.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167281E8275DD0058BF1E /* utrans.cpp */; };
		BBB1687C1E8275DE0058BF1E /* valueformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167291E8275DD0058BF1E /* valueformatter.cpp */; };
		BBB1687E1E8275DE0058BF1E /* visibledigits.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1672B1E8275DD0058BF1E /* visibledigits.cpp */; };
		BBB168801E8275DE0058BF1E /* vtzone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1672D1E8275DD0058BF1E /* vtzone.cpp */; };
		BBB168811E8275DE0058BF1E /* vzone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1672E1E8275DD0058BF1E /* vzone.cpp */; };
		BBB168831E8275DE0058BF1E /* windtfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167301E8275DD0058BF1E /* windtfmt.cpp */; };
		BBB168851E8275DE0058BF1E /* winnmfmt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167321E8275DD0058BF1E /* winnmfmt.cpp */; };
		BBB168871E8275DE0058BF1E /* wintzimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167341E8275DD0058BF1E /* wintzimpl.cpp */; };
		BBB168891E8275DE0058BF1E /* zonemeta.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167361E8275DD0058BF1E /* zonemeta.cpp */; };
		BBB1688B1E8275DE0058BF1E /* zrule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB167381E8275DD0058BF1E /* zrule.cpp */; };
		BBB1688D1E8275DE0058BF1E /* ztrans.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1673A1E8275DD0058BF1E /* ztrans.cpp */; };
		BBB16A471E82762A0058BF1E /* appendable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1692C1E82762A0058BF1E /* appendable.cpp */; };
		BBB16A481E82762A0058BF1E /* bmpset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1692D1E82762A0058BF1E /* bmpset.cpp */; };
		BBB16A4A1E82762A0058BF1E /* brkeng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1692F1E82762A0058BF1E /* brkeng.cpp */; };
		BBB16A4C1E82762A0058BF1E /* brkiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169311E82762A0058BF1E /* brkiter.cpp */; };
		BBB16A4D1E82762A0058BF1E /* bytestream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169321E82762A0058BF1E /* bytestream.cpp */; };
		BBB16A4E1E82762A0058BF1E /* bytestrie.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169331E82762A0058BF1E /* bytestrie.cpp */; };
		BBB16A4F1E82762A0058BF1E /* bytestriebuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169341E82762A0058BF1E /* bytestriebuilder.cpp */; };
		BBB16A501E82762A0058BF1E /* bytestrieiterator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169351E82762A0058BF1E /* bytestrieiterator.cpp */; };
		BBB16A511E82762A0058BF1E /* caniter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169361E82762A0058BF1E /* caniter.cpp */; };
		BBB16A521E82762A0058BF1E /* chariter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169371E82762A0058BF1E /* chariter.cpp */; };
		BBB16A531E82762A0058BF1E /* charstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169381E82762A0058BF1E /* charstr.cpp */; };
		BBB16A551E82762A0058BF1E /* cmemory.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB1693A1E82762A0058BF1E /* cmemory.c */; };
		BBB16A581E82762A0058BF1E /* cstr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1693D1E82762A0058BF1E /* cstr.cpp */; };
		BBB16A5A1E82762A0058BF1E /* cstring.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB1693F1E82762A0058BF1E /* cstring.c */; };
		BBB16A5C1E82762A0058BF1E /* cwchar.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169411E82762A0058BF1E /* cwchar.c */; };
		BBB16A5E1E82762A0058BF1E /* dictbe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169431E82762A0058BF1E /* dictbe.cpp */; };
		BBB16A601E82762A0058BF1E /* dictionarydata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169451E82762A0058BF1E /* dictionarydata.cpp */; };
		BBB16A621E82762A0058BF1E /* dtintrv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169471E82762A0058BF1E /* dtintrv.cpp */; };
		BBB16A631E82762A0058BF1E /* errorcode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169481E82762A0058BF1E /* errorcode.cpp */; };
		BBB16A641E82762A0058BF1E /* filteredbrk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169491E82762A0058BF1E /* filteredbrk.cpp */; };
		BBB16A651E82762A0058BF1E /* filterednormalizer2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1694A1E82762A0058BF1E /* filterednormalizer2.cpp */; };
		BBB16A671E82762A0058BF1E /* icudataver.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB1694C1E82762A0058BF1E /* icudataver.c */; };
		BBB16A681E82762A0058BF1E /* icuplug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1694D1E82762A0058BF1E /* icuplug.cpp */; };
		BBB16A6A1E82762A0058BF1E /* listformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1694F1E82762A0058BF1E /* listformatter.cpp */; };
		BBB16A6B1E82762A0058BF1E /* loadednormalizer2impl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169501E82762A0058BF1E /* loadednormalizer2impl.cpp */; };
		BBB16A6D1E82762A0058BF1E /* locavailable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169521E82762A0058BF1E /* locavailable.cpp */; };
		BBB16A6E1E82762A0058BF1E /* locbased.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169531E82762A0058BF1E /* locbased.cpp */; };
		BBB16A701E82762A0058BF1E /* locdispnames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169551E82762A0058BF1E /* locdispnames.cpp */; };
		BBB16A711E82762A0058BF1E /* locdspnm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169561E82762A0058BF1E /* locdspnm.cpp */; };
		BBB16A721E82762A0058BF1E /* locid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169571E82762A0058BF1E /* locid.cpp */; };
		BBB16A731E82762A0058BF1E /* loclikely.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169581E82762A0058BF1E /* loclikely.cpp */; };
		BBB16A741E82762A0058BF1E /* locmap.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169591E82762A0058BF1E /* locmap.c */; };
		BBB16A761E82762A0058BF1E /* locresdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1695B1E82762A0058BF1E /* locresdata.cpp */; };
		BBB16A771E82762A0058BF1E /* locutil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1695C1E82762A0058BF1E /* locutil.cpp */; };
		BBB16A7A1E82762A0058BF1E /* messagepattern.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1695F1E82762A0058BF1E /* messagepattern.cpp */; };
		BBB16A7F1E82762A0058BF1E /* normalizer2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169641E82762A0058BF1E /* normalizer2.cpp */; };
		BBB16A801E82762A0058BF1E /* normalizer2impl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169651E82762A0058BF1E /* normalizer2impl.cpp */; };
		BBB16A821E82762A0058BF1E /* normlzr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169671E82762A0058BF1E /* normlzr.cpp */; };
		BBB16A831E82762A0058BF1E /* parsepos.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169681E82762A0058BF1E /* parsepos.cpp */; };
		BBB16A841E82762A0058BF1E /* patternprops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169691E82762A0058BF1E /* patternprops.cpp */; };
		BBB16A861E82762A0058BF1E /* pluralmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1696B1E82762A0058BF1E /* pluralmap.cpp */; };
		BBB16A891E82762A0058BF1E /* propname.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1696E1E82762A0058BF1E /* propname.cpp */; };
		BBB16A8B1E82762A0058BF1E /* propsvec.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169701E82762A0058BF1E /* propsvec.c */; };
		BBB16A8D1E82762A0058BF1E /* punycode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169721E82762A0058BF1E /* punycode.cpp */; };
		BBB16A8F1E82762A0058BF1E /* putil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169741E82762A0058BF1E /* putil.cpp */; };
		BBB16A911E82762A0058BF1E /* rbbi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169761E82762A0058BF1E /* rbbi.cpp */; };
		BBB16A921E82762A0058BF1E /* rbbidata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169781E82762A0058BF1E /* rbbidata.cpp */; };
		BBB16A941E82762A0058BF1E /* rbbinode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1697A1E82762A0058BF1E /* rbbinode.cpp */; };
		BBB16A961E82762A0058BF1E /* rbbirb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1697C1E82762A0058BF1E /* rbbirb.cpp */; };
		BBB16A991E82762A0058BF1E /* rbbiscan.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1697F1E82762A0058BF1E /* rbbiscan.cpp */; };
		BBB16A9B1E82762A0058BF1E /* rbbisetb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169811E82762A0058BF1E /* rbbisetb.cpp */; };
		BBB16A9D1E82762A0058BF1E /* rbbistbl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169831E82762A0058BF1E /* rbbistbl.cpp */; };
		BBB16A9E1E82762A0058BF1E /* rbbitblb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169841E82762A0058BF1E /* rbbitblb.cpp */; };
		BBB16AA01E82762A0058BF1E /* resbund_cnv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169861E82762A0058BF1E /* resbund_cnv.cpp */; };
		BBB16AA11E82762A0058BF1E /* resbund.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169871E82762A0058BF1E /* resbund.cpp */; };
		BBB16AA21E82762A0058BF1E /* resource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169881E82762A0058BF1E /* resource.cpp */; };
		BBB16AA41E82762A0058BF1E /* ruleiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1698A1E82762A0058BF1E /* ruleiter.cpp */; };
		BBB16AA61E82762A0058BF1E /* schriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1698C1E82762A0058BF1E /* schriter.cpp */; };
		BBB16AA71E82762A0058BF1E /* serv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1698D1E82762A0058BF1E /* serv.cpp */; };
		BBB16AA91E82762A0058BF1E /* servlk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1698F1E82762A0058BF1E /* servlk.cpp */; };
		BBB16AAA1E82762A0058BF1E /* servlkf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169901E82762A0058BF1E /* servlkf.cpp */; };
		BBB16AAC1E82762A0058BF1E /* servls.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169921E82762A0058BF1E /* servls.cpp */; };
		BBB16AAD1E82762A0058BF1E /* servnotf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169931E82762A0058BF1E /* servnotf.cpp */; };
		BBB16AAF1E82762A0058BF1E /* servrbf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169951E82762A0058BF1E /* servrbf.cpp */; };
		BBB16AB01E82762A0058BF1E /* servslkf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169961E82762A0058BF1E /* servslkf.cpp */; };
		BBB16AB11E82762A0058BF1E /* sharedobject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169971E82762A0058BF1E /* sharedobject.cpp */; };
		BBB16AB31E82762A0058BF1E /* simpleformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169991E82762A0058BF1E /* simpleformatter.cpp */; };
		BBB16AB51E82762A0058BF1E /* stringpiece.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1699B1E82762A0058BF1E /* stringpiece.cpp */; };
		BBB16AB61E82762A0058BF1E /* stringtriebuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB1699C1E82762A0058BF1E /* stringtriebuilder.cpp */; };
		BBB16AB71E82762A0058BF1E /* uarrsort.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB1699D1E82762A0058BF1E /* uarrsort.c */; };
		BBB16ABB1E82762A0058BF1E /* ubidi_props.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169A11E82762A0058BF1E /* ubidi_props.c */; };
		BBB16ABD1E82762A0058BF1E /* ubidi.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169A31E82762A0058BF1E /* ubidi.c */; };
		BBB16ABF1E82762A0058BF1E /* ubidiln.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169A51E82762A0058BF1E /* ubidiln.c */; };
		BBB16AC01E82762A0058BF1E /* ubidiwrt.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169A61E82762A0058BF1E /* ubidiwrt.c */; };
		BBB16AC11E82762A0058BF1E /* ubrk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169A71E82762A0058BF1E /* ubrk.cpp */; };
		BBB16AC41E82762A0058BF1E /* ucase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169AA1E82762A0058BF1E /* ucase.cpp */; };
		BBB16AC61E82762A0058BF1E /* ucasemap_titlecase_brkiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169AC1E82762A0058BF1E /* ucasemap_titlecase_brkiter.cpp */; };
		BBB16AC71E82762A0058BF1E /* ucasemap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169AD1E82762A0058BF1E /* ucasemap.cpp */; };
		BBB16AC81E82762A0058BF1E /* ucat.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169AE1E82762A0058BF1E /* ucat.c */; };
		BBB16ACA1E82762A0058BF1E /* uchar.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169B01E82762A0058BF1E /* uchar.c */; };
		BBB16ACB1E82762A0058BF1E /* ucharstrie.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169B11E82762A0058BF1E /* ucharstrie.cpp */; };
		BBB16ACC1E82762A0058BF1E /* ucharstriebuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169B21E82762A0058BF1E /* ucharstriebuilder.cpp */; };
		BBB16ACD1E82762A0058BF1E /* ucharstrieiterator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169B31E82762A0058BF1E /* ucharstrieiterator.cpp */; };
		BBB16ACE1E82762A0058BF1E /* uchriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169B41E82762A0058BF1E /* uchriter.cpp */; };
		BBB16ACF1E82762A0058BF1E /* ucln_cmn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169B51E82762A0058BF1E /* ucln_cmn.cpp */; };
		BBB16AD31E82762A0058BF1E /* ucmndata.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169B91E82762A0058BF1E /* ucmndata.c */; };
		BBB16AD51E82762A0058BF1E /* ucnv_bld.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169BB1E82762A0058BF1E /* ucnv_bld.cpp */; };
		BBB16AD71E82762A0058BF1E /* ucnv_cb.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169BD1E82762A0058BF1E /* ucnv_cb.c */; };
		BBB16AD81E82762A0058BF1E /* ucnv_cnv.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169BE1E82762A0058BF1E /* ucnv_cnv.c */; };
		BBB16ADA1E82762A0058BF1E /* ucnv_ct.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169C01E82762A0058BF1E /* ucnv_ct.c */; };
		BBB16ADB1E82762A0058BF1E /* ucnv_err.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169C11E82762A0058BF1E /* ucnv_err.c */; };
		BBB16ADC1E82762A0058BF1E /* ucnv_ext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169C21E82762A0058BF1E /* ucnv_ext.cpp */; };
		BBB16ADF1E82762A0058BF1E /* ucnv_io.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169C51E82762A0058BF1E /* ucnv_io.cpp */; };
		BBB16AE11E82762A0058BF1E /* ucnv_lmb.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169C71E82762A0058BF1E /* ucnv_lmb.c */; };
		BBB16AE21E82762A0058BF1E /* ucnv_set.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169C81E82762A0058BF1E /* ucnv_set.c */; };
		BBB16AE31E82762A0058BF1E /* ucnv_u7.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169C91E82762A0058BF1E /* ucnv_u7.c */; };
		BBB16AE41E82762A0058BF1E /* ucnv_u8.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169CA1E82762A0058BF1E /* ucnv_u8.c */; };
		BBB16AE51E82762A0058BF1E /* ucnv_u16.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169CB1E82762A0058BF1E /* ucnv_u16.c */; };
		BBB16AE61E82762A0058BF1E /* ucnv_u32.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169CC1E82762A0058BF1E /* ucnv_u32.c */; };
		BBB16AE71E82762A0058BF1E /* ucnv.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169CD1E82762A0058BF1E /* ucnv.c */; };
		BBB16AE81E82762A0058BF1E /* ucnv2022.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169CE1E82762A0058BF1E /* ucnv2022.cpp */; };
		BBB16AE91E82762A0058BF1E /* ucnvbocu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169CF1E82762A0058BF1E /* ucnvbocu.cpp */; };
		BBB16AEA1E82762A0058BF1E /* ucnvdisp.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169D01E82762A0058BF1E /* ucnvdisp.c */; };
		BBB16AEB1E82762A0058BF1E /* ucnvhz.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169D11E82762A0058BF1E /* ucnvhz.c */; };
		BBB16AEC1E82762A0058BF1E /* ucnvisci.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169D21E82762A0058BF1E /* ucnvisci.c */; };
		BBB16AED1E82762A0058BF1E /* ucnvlat1.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169D31E82762A0058BF1E /* ucnvlat1.c */; };
		BBB16AEE1E82762A0058BF1E /* ucnvmbcs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169D41E82762A0058BF1E /* ucnvmbcs.cpp */; };
		BBB16AF01E82762A0058BF1E /* ucnvscsu.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169D61E82762A0058BF1E /* ucnvscsu.c */; };
		BBB16AF11E82762A0058BF1E /* ucnvsel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169D71E82762A0058BF1E /* ucnvsel.cpp */; };
		BBB16AF31E82762A0058BF1E /* ucol_swp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169D91E82762A0058BF1E /* ucol_swp.cpp */; };
		BBB16AF51E82762A0058BF1E /* ucurr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169DB1E82762A0058BF1E /* ucurr.cpp */; };
		BBB16AF71E82762A0058BF1E /* udata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169DD1E82762A0058BF1E /* udata.cpp */; };
		BBB16AF81E82762A0058BF1E /* udatamem.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169DE1E82762A0058BF1E /* udatamem.c */; };
		BBB16AFA1E82762A0058BF1E /* udataswp.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169E01E82762A0058BF1E /* udataswp.c */; };
		BBB16AFD1E82762A0058BF1E /* uenum.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169E31E82762A0058BF1E /* uenum.c */; };
		BBB16AFF1E82762B0058BF1E /* uhash_us.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169E51E82762A0058BF1E /* uhash_us.cpp */; };
		BBB16B001E82762B0058BF1E /* uhash.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169E61E82762A0058BF1E /* uhash.c */; };
		BBB16B021E82762B0058BF1E /* uidna.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169E81E82762A0058BF1E /* uidna.cpp */; };
		BBB16B031E82762B0058BF1E /* uinit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169E91E82762A0058BF1E /* uinit.cpp */; };
		BBB16B041E82762B0058BF1E /* uinvchar.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169EA1E82762A0058BF1E /* uinvchar.c */; };
		BBB16B061E82762B0058BF1E /* uiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169EC1E82762A0058BF1E /* uiter.cpp */; };
		BBB16B071E82762B0058BF1E /* ulist.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169ED1E82762A0058BF1E /* ulist.c */; };
		BBB16B091E82762B0058BF1E /* ulistformatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169EF1E82762A0058BF1E /* ulistformatter.cpp */; };
		BBB16B0A1E82762B0058BF1E /* uloc_keytype.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169F01E82762A0058BF1E /* uloc_keytype.cpp */; };
		BBB16B0B1E82762B0058BF1E /* uloc_tag.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169F11E82762A0058BF1E /* uloc_tag.c */; };
		BBB16B0C1E82762B0058BF1E /* uloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169F21E82762A0058BF1E /* uloc.cpp */; };
		BBB16B0E1E82762B0058BF1E /* umapfile.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169F41E82762A0058BF1E /* umapfile.c */; };
		BBB16B101E82762B0058BF1E /* umath.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB169F61E82762A0058BF1E /* umath.c */; };
		BBB16B111E82762B0058BF1E /* umutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169F71E82762A0058BF1E /* umutex.cpp */; };
		BBB16B131E82762B0058BF1E /* unames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169F91E82762A0058BF1E /* unames.cpp */; };
		BBB16B141E82762B0058BF1E /* unifiedcache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169FA1E82762A0058BF1E /* unifiedcache.cpp */; };
		BBB16B161E82762B0058BF1E /* unifilt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169FC1E82762A0058BF1E /* unifilt.cpp */; };
		BBB16B171E82762B0058BF1E /* unifunct.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169FD1E82762A0058BF1E /* unifunct.cpp */; };
		BBB16B181E82762B0058BF1E /* uniset_closure.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169FE1E82762A0058BF1E /* uniset_closure.cpp */; };
		BBB16B191E82762B0058BF1E /* uniset_props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB169FF1E82762A0058BF1E /* uniset_props.cpp */; };
		BBB16B1A1E82762B0058BF1E /* uniset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A001E82762A0058BF1E /* uniset.cpp */; };
		BBB16B1B1E82762B0058BF1E /* unisetspan.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A011E82762A0058BF1E /* unisetspan.cpp */; };
		BBB16B1D1E82762B0058BF1E /* unistr_case_locale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A031E82762A0058BF1E /* unistr_case_locale.cpp */; };
		BBB16B1E1E82762B0058BF1E /* unistr_case.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A041E82762A0058BF1E /* unistr_case.cpp */; };
		BBB16B1F1E82762B0058BF1E /* unistr_cnv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A051E82762A0058BF1E /* unistr_cnv.cpp */; };
		BBB16B201E82762B0058BF1E /* unistr_props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A061E82762A0058BF1E /* unistr_props.cpp */; };
		BBB16B211E82762B0058BF1E /* unistr_titlecase_brkiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A071E82762A0058BF1E /* unistr_titlecase_brkiter.cpp */; };
		BBB16B221E82762B0058BF1E /* unistr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A081E82762A0058BF1E /* unistr.cpp */; };
		BBB16B241E82762B0058BF1E /* unorm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A0A1E82762A0058BF1E /* unorm.cpp */; };
		BBB16B251E82762B0058BF1E /* unormcmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A0B1E82762A0058BF1E /* unormcmp.cpp */; };
		BBB16B271E82762B0058BF1E /* uobject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A0D1E82762A0058BF1E /* uobject.cpp */; };
		BBB16B291E82762B0058BF1E /* uprops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A0F1E82762A0058BF1E /* uprops.cpp */; };
		BBB16B2B1E82762B0058BF1E /* ures_cnv.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A111E82762A0058BF1E /* ures_cnv.c */; };
		BBB16B2C1E82762B0058BF1E /* uresbund.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A121E82762A0058BF1E /* uresbund.cpp */; };
		BBB16B2D1E82762B0058BF1E /* uresdata.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A131E82762A0058BF1E /* uresdata.cpp */; };
		BBB16B311E82762B0058BF1E /* usc_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A171E82762A0058BF1E /* usc_impl.c */; };
		BBB16B331E82762B0058BF1E /* uscript_props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A191E82762A0058BF1E /* uscript_props.cpp */; };
		BBB16B341E82762B0058BF1E /* uscript.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A1A1E82762A0058BF1E /* uscript.c */; };
		BBB16B361E82762B0058BF1E /* uset_props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A1C1E82762A0058BF1E /* uset_props.cpp */; };
		BBB16B371E82762B0058BF1E /* uset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A1D1E82762A0058BF1E /* uset.cpp */; };
		BBB16B381E82762B0058BF1E /* usetiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A1E1E82762A0058BF1E /* usetiter.cpp */; };
		BBB16B391E82762B0058BF1E /* ushape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A1F1E82762A0058BF1E /* ushape.cpp */; };
		BBB16B3A1E82762B0058BF1E /* usprep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A201E82762A0058BF1E /* usprep.cpp */; };
		BBB16B3B1E82762B0058BF1E /* ustack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A211E82762A0058BF1E /* ustack.cpp */; };
		BBB16B3C1E82762B0058BF1E /* ustr_cnv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A221E82762A0058BF1E /* ustr_cnv.cpp */; };
		BBB16B3F1E82762B0058BF1E /* ustr_titlecase_brkiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A251E82762A0058BF1E /* ustr_titlecase_brkiter.cpp */; };
		BBB16B401E82762B0058BF1E /* ustr_wcs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A261E82762A0058BF1E /* ustr_wcs.cpp */; };
		BBB16B411E82762B0058BF1E /* ustrcase_locale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A271E82762A0058BF1E /* ustrcase_locale.cpp */; };
		BBB16B421E82762B0058BF1E /* ustrcase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A281E82762A0058BF1E /* ustrcase.cpp */; };
		BBB16B431E82762B0058BF1E /* ustrenum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A291E82762A0058BF1E /* ustrenum.cpp */; };
		BBB16B451E82762B0058BF1E /* ustrfmt.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A2B1E82762A0058BF1E /* ustrfmt.c */; };
		BBB16B471E82762B0058BF1E /* ustring.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A2D1E82762A0058BF1E /* ustring.cpp */; };
		BBB16B481E82762B0058BF1E /* ustrtrns.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A2E1E82762A0058BF1E /* ustrtrns.cpp */; };
		BBB16B491E82762B0058BF1E /* utext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A2F1E82762A0058BF1E /* utext.cpp */; };
		BBB16B4A1E82762B0058BF1E /* utf_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A301E82762A0058BF1E /* utf_impl.c */; };
		BBB16B4B1E82762B0058BF1E /* util_props.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A311E82762A0058BF1E /* util_props.cpp */; };
		BBB16B4C1E82762B0058BF1E /* util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A321E82762A0058BF1E /* util.cpp */; };
		BBB16B4E1E82762B0058BF1E /* utrace.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A341E82762A0058BF1E /* utrace.c */; };
		BBB16B501E82762B0058BF1E /* utrie.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A361E82762A0058BF1E /* utrie.cpp */; };
		BBB16B521E82762B0058BF1E /* utrie2_builder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A381E82762A0058BF1E /* utrie2_builder.cpp */; };
		BBB16B541E82762B0058BF1E /* utrie2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A3A1E82762A0058BF1E /* utrie2.cpp */; };
		BBB16B561E82762B0058BF1E /* uts46.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A3C1E82762A0058BF1E /* uts46.cpp */; };
		BBB16B581E82762B0058BF1E /* utypes.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A3E1E82762A0058BF1E /* utypes.c */; };
		BBB16B591E82762B0058BF1E /* uvector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A3F1E82762A0058BF1E /* uvector.cpp */; };
		BBB16B5B1E82762B0058BF1E /* uvectr32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A411E82762A0058BF1E /* uvectr32.cpp */; };
		BBB16B5D1E82762B0058BF1E /* uvectr64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A431E82762A0058BF1E /* uvectr64.cpp */; };
		BBB16B5F1E82762B0058BF1E /* wintz.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB16A451E82762A0058BF1E /* wintz.c */; };
		BBB16C191E82765C0058BF1E /* stubdata.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB16C181E82765C0058BF1E /* stubdata.c */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		BBB165D71E8275120058BF1E /* libicu.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libicu.a; sourceTree = BUILT_PRODUCTS_DIR; };
		BBB165E81E8275DC0058BF1E /* affixpatternparser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = affixpatternparser.cpp; sourceTree = "<group>"; };
		BBB165E91E8275DC0058BF1E /* affixpatternparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = affixpatternparser.h; sourceTree = "<group>"; };
		BBB165EA1E8275DC0058BF1E /* alphaindex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = alphaindex.cpp; sourceTree = "<group>"; };
		BBB165EB1E8275DC0058BF1E /* anytrans.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = anytrans.cpp; sourceTree = "<group>"; };
		BBB165EC1E8275DC0058BF1E /* anytrans.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = anytrans.h; sourceTree = "<group>"; };
		BBB165ED1E8275DC0058BF1E /* astro.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = astro.cpp; sourceTree = "<group>"; };
		BBB165EE1E8275DC0058BF1E /* astro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = astro.h; sourceTree = "<group>"; };
		BBB165EF1E8275DC0058BF1E /* basictz.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = basictz.cpp; sourceTree = "<group>"; };
		BBB165F01E8275DC0058BF1E /* bocsu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bocsu.cpp; sourceTree = "<group>"; };
		BBB165F11E8275DC0058BF1E /* bocsu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bocsu.h; sourceTree = "<group>"; };
		BBB165F21E8275DC0058BF1E /* brktrans.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = brktrans.cpp; sourceTree = "<group>"; };
		BBB165F31E8275DC0058BF1E /* brktrans.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = brktrans.h; sourceTree = "<group>"; };
		BBB165F41E8275DC0058BF1E /* buddhcal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buddhcal.cpp; sourceTree = "<group>"; };
		BBB165F51E8275DC0058BF1E /* buddhcal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buddhcal.h; sourceTree = "<group>"; };
		BBB165F61E8275DC0058BF1E /* calendar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = calendar.cpp; sourceTree = "<group>"; };
		BBB165F71E8275DC0058BF1E /* casetrn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = casetrn.cpp; sourceTree = "<group>"; };
		BBB165F81E8275DC0058BF1E /* casetrn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = casetrn.h; sourceTree = "<group>"; };
		BBB165F91E8275DC0058BF1E /* cecal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cecal.cpp; sourceTree = "<group>"; };
		BBB165FA1E8275DC0058BF1E /* cecal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cecal.h; sourceTree = "<group>"; };
		BBB165FB1E8275DC0058BF1E /* chnsecal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chnsecal.cpp; sourceTree = "<group>"; };
		BBB165FC1E8275DC0058BF1E /* chnsecal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chnsecal.h; sourceTree = "<group>"; };
		BBB165FD1E8275DC0058BF1E /* choicfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = choicfmt.cpp; sourceTree = "<group>"; };
		BBB165FE1E8275DC0058BF1E /* coleitr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = coleitr.cpp; sourceTree = "<group>"; };
		BBB165FF1E8275DC0058BF1E /* coll.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = coll.cpp; sourceTree = "<group>"; };
		BBB166001E8275DC0058BF1E /* collation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collation.cpp; sourceTree = "<group>"; };
		BBB166011E8275DC0058BF1E /* collation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collation.h; sourceTree = "<group>"; };
		BBB166021E8275DC0058BF1E /* collationbuilder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationbuilder.cpp; sourceTree = "<group>"; };
		BBB166031E8275DC0058BF1E /* collationbuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationbuilder.h; sourceTree = "<group>"; };
		BBB166041E8275DD0058BF1E /* collationcompare.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationcompare.cpp; sourceTree = "<group>"; };
		BBB166051E8275DD0058BF1E /* collationcompare.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationcompare.h; sourceTree = "<group>"; };
		BBB166061E8275DD0058BF1E /* collationdata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationdata.cpp; sourceTree = "<group>"; };
		BBB166071E8275DD0058BF1E /* collationdata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationdata.h; sourceTree = "<group>"; };
		BBB166081E8275DD0058BF1E /* collationdatabuilder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationdatabuilder.cpp; sourceTree = "<group>"; };
		BBB166091E8275DD0058BF1E /* collationdatabuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationdatabuilder.h; sourceTree = "<group>"; };
		BBB1660A1E8275DD0058BF1E /* collationdatareader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationdatareader.cpp; sourceTree = "<group>"; };
		BBB1660B1E8275DD0058BF1E /* collationdatareader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationdatareader.h; sourceTree = "<group>"; };
		BBB1660C1E8275DD0058BF1E /* collationdatawriter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationdatawriter.cpp; sourceTree = "<group>"; };
		BBB1660D1E8275DD0058BF1E /* collationdatawriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationdatawriter.h; sourceTree = "<group>"; };
		BBB1660E1E8275DD0058BF1E /* collationfastlatin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationfastlatin.cpp; sourceTree = "<group>"; };
		BBB1660F1E8275DD0058BF1E /* collationfastlatin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationfastlatin.h; sourceTree = "<group>"; };
		BBB166101E8275DD0058BF1E /* collationfastlatinbuilder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationfastlatinbuilder.cpp; sourceTree = "<group>"; };
		BBB166111E8275DD0058BF1E /* collationfastlatinbuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationfastlatinbuilder.h; sourceTree = "<group>"; };
		BBB166121E8275DD0058BF1E /* collationfcd.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationfcd.cpp; sourceTree = "<group>"; };
		BBB166131E8275DD0058BF1E /* collationfcd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationfcd.h; sourceTree = "<group>"; };
		BBB166141E8275DD0058BF1E /* collationiterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationiterator.cpp; sourceTree = "<group>"; };
		BBB166151E8275DD0058BF1E /* collationiterator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationiterator.h; sourceTree = "<group>"; };
		BBB166161E8275DD0058BF1E /* collationkeys.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationkeys.cpp; sourceTree = "<group>"; };
		BBB166171E8275DD0058BF1E /* collationkeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationkeys.h; sourceTree = "<group>"; };
		BBB166181E8275DD0058BF1E /* collationroot.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationroot.cpp; sourceTree = "<group>"; };
		BBB166191E8275DD0058BF1E /* collationroot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationroot.h; sourceTree = "<group>"; };
		BBB1661A1E8275DD0058BF1E /* collationrootelements.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationrootelements.cpp; sourceTree = "<group>"; };
		BBB1661B1E8275DD0058BF1E /* collationrootelements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationrootelements.h; sourceTree = "<group>"; };
		BBB1661C1E8275DD0058BF1E /* collationruleparser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationruleparser.cpp; sourceTree = "<group>"; };
		BBB1661D1E8275DD0058BF1E /* collationruleparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationruleparser.h; sourceTree = "<group>"; };
		BBB1661E1E8275DD0058BF1E /* collationsets.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationsets.cpp; sourceTree = "<group>"; };
		BBB1661F1E8275DD0058BF1E /* collationsets.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationsets.h; sourceTree = "<group>"; };
		BBB166201E8275DD0058BF1E /* collationsettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationsettings.cpp; sourceTree = "<group>"; };
		BBB166211E8275DD0058BF1E /* collationsettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationsettings.h; sourceTree = "<group>"; };
		BBB166221E8275DD0058BF1E /* collationtailoring.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationtailoring.cpp; sourceTree = "<group>"; };
		BBB166231E8275DD0058BF1E /* collationtailoring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationtailoring.h; sourceTree = "<group>"; };
		BBB166241E8275DD0058BF1E /* collationweights.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collationweights.cpp; sourceTree = "<group>"; };
		BBB166251E8275DD0058BF1E /* collationweights.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collationweights.h; sourceTree = "<group>"; };
		BBB166261E8275DD0058BF1E /* collunsafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = collunsafe.h; sourceTree = "<group>"; };
		BBB166271E8275DD0058BF1E /* compactdecimalformat.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = compactdecimalformat.cpp; sourceTree = "<group>"; };
		BBB166281E8275DD0058BF1E /* coptccal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = coptccal.cpp; sourceTree = "<group>"; };
		BBB166291E8275DD0058BF1E /* coptccal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = coptccal.h; sourceTree = "<group>"; };
		BBB1662A1E8275DD0058BF1E /* cpdtrans.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cpdtrans.cpp; sourceTree = "<group>"; };
		BBB1662B1E8275DD0058BF1E /* cpdtrans.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cpdtrans.h; sourceTree = "<group>"; };
		BBB1662C1E8275DD0058BF1E /* csdetect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = csdetect.cpp; sourceTree = "<group>"; };
		BBB1662D1E8275DD0058BF1E /* csdetect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csdetect.h; sourceTree = "<group>"; };
		BBB1662E1E8275DD0058BF1E /* csmatch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = csmatch.cpp; sourceTree = "<group>"; };
		BBB1662F1E8275DD0058BF1E /* csmatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csmatch.h; sourceTree = "<group>"; };
		BBB166301E8275DD0058BF1E /* csr2022.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = csr2022.cpp; sourceTree = "<group>"; };
		BBB166311E8275DD0058BF1E /* csr2022.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csr2022.h; sourceTree = "<group>"; };
		BBB166321E8275DD0058BF1E /* csrecog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = csrecog.cpp; sourceTree = "<group>"; };
		BBB166331E8275DD0058BF1E /* csrecog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csrecog.h; sourceTree = "<group>"; };
		BBB166341E8275DD0058BF1E /* csrmbcs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = csrmbcs.cpp; sourceTree = "<group>"; };
		BBB166351E8275DD0058BF1E /* csrmbcs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csrmbcs.h; sourceTree = "<group>"; };
		BBB166361E8275DD0058BF1E /* csrsbcs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = csrsbcs.cpp; sourceTree = "<group>"; };
		BBB166371E8275DD0058BF1E /* csrsbcs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csrsbcs.h; sourceTree = "<group>"; };
		BBB166381E8275DD0058BF1E /* csrucode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = csrucode.cpp; sourceTree = "<group>"; };
		BBB166391E8275DD0058BF1E /* csrucode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csrucode.h; sourceTree = "<group>"; };
		BBB1663A1E8275DD0058BF1E /* csrutf8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = csrutf8.cpp; sourceTree = "<group>"; };
		BBB1663B1E8275DD0058BF1E /* csrutf8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = csrutf8.h; sourceTree = "<group>"; };
		BBB1663C1E8275DD0058BF1E /* curramt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = curramt.cpp; sourceTree = "<group>"; };
		BBB1663D1E8275DD0058BF1E /* currfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = currfmt.cpp; sourceTree = "<group>"; };
		BBB1663E1E8275DD0058BF1E /* currfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = currfmt.h; sourceTree = "<group>"; };
		BBB1663F1E8275DD0058BF1E /* currpinf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = currpinf.cpp; sourceTree = "<group>"; };
		BBB166401E8275DD0058BF1E /* currunit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = currunit.cpp; sourceTree = "<group>"; };
		BBB166411E8275DD0058BF1E /* dangical.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dangical.cpp; sourceTree = "<group>"; };
		BBB166421E8275DD0058BF1E /* dangical.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dangical.h; sourceTree = "<group>"; };
		BBB166431E8275DD0058BF1E /* datefmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = datefmt.cpp; sourceTree = "<group>"; };
		BBB166441E8275DD0058BF1E /* dayperiodrules.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dayperiodrules.cpp; sourceTree = "<group>"; };
		BBB166451E8275DD0058BF1E /* dayperiodrules.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dayperiodrules.h; sourceTree = "<group>"; };
		BBB166461E8275DD0058BF1E /* dcfmtimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dcfmtimp.h; sourceTree = "<group>"; };
		BBB166471E8275DD0058BF1E /* dcfmtsym.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dcfmtsym.cpp; sourceTree = "<group>"; };
		BBB166481E8275DD0058BF1E /* decContext.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = decContext.c; sourceTree = "<group>"; };
		BBB166491E8275DD0058BF1E /* decContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decContext.h; sourceTree = "<group>"; };
		BBB1664A1E8275DD0058BF1E /* decfmtst.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = decfmtst.cpp; sourceTree = "<group>"; };
		BBB1664B1E8275DD0058BF1E /* decfmtst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decfmtst.h; sourceTree = "<group>"; };
		BBB1664C1E8275DD0058BF1E /* decimalformatpattern.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = decimalformatpattern.cpp; sourceTree = "<group>"; };
		BBB1664D1E8275DD0058BF1E /* decimalformatpattern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decimalformatpattern.h; sourceTree = "<group>"; };
		BBB1664E1E8275DD0058BF1E /* decimalformatpatternimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decimalformatpatternimpl.h; sourceTree = "<group>"; };
		BBB1664F1E8275DD0058BF1E /* decimfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = decimfmt.cpp; sourceTree = "<group>"; };
		BBB166501E8275DD0058BF1E /* decimfmtimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = decimfmtimpl.cpp; sourceTree = "<group>"; };
		BBB166511E8275DD0058BF1E /* decimfmtimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decimfmtimpl.h; sourceTree = "<group>"; };
		BBB166521E8275DD0058BF1E /* decNumber.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = decNumber.c; sourceTree = "<group>"; };
		BBB166531E8275DD0058BF1E /* decNumber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decNumber.h; sourceTree = "<group>"; };
		BBB166541E8275DD0058BF1E /* decNumberLocal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decNumberLocal.h; sourceTree = "<group>"; };
		BBB166551E8275DD0058BF1E /* digitaffix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = digitaffix.cpp; sourceTree = "<group>"; };
		BBB166561E8275DD0058BF1E /* digitaffix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = digitaffix.h; sourceTree = "<group>"; };
		BBB166571E8275DD0058BF1E /* digitaffixesandpadding.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = digitaffixesandpadding.cpp; sourceTree = "<group>"; };
		BBB166581E8275DD0058BF1E /* digitaffixesandpadding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = digitaffixesandpadding.h; sourceTree = "<group>"; };
		BBB166591E8275DD0058BF1E /* digitformatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = digitformatter.cpp; sourceTree = "<group>"; };
		BBB1665A1E8275DD0058BF1E /* digitformatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = digitformatter.h; sourceTree = "<group>"; };
		BBB1665B1E8275DD0058BF1E /* digitgrouping.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = digitgrouping.cpp; sourceTree = "<group>"; };
		BBB1665C1E8275DD0058BF1E /* digitgrouping.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = digitgrouping.h; sourceTree = "<group>"; };
		BBB1665D1E8275DD0058BF1E /* digitinterval.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = digitinterval.cpp; sourceTree = "<group>"; };
		BBB1665E1E8275DD0058BF1E /* digitinterval.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = digitinterval.h; sourceTree = "<group>"; };
		BBB1665F1E8275DD0058BF1E /* digitlst.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = digitlst.cpp; sourceTree = "<group>"; };
		BBB166601E8275DD0058BF1E /* digitlst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = digitlst.h; sourceTree = "<group>"; };
		BBB166611E8275DD0058BF1E /* dtfmtsym.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dtfmtsym.cpp; sourceTree = "<group>"; };
		BBB166621E8275DD0058BF1E /* dtitv_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtitv_impl.h; sourceTree = "<group>"; };
		BBB166631E8275DD0058BF1E /* dtitvfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dtitvfmt.cpp; sourceTree = "<group>"; };
		BBB166641E8275DD0058BF1E /* dtitvinf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dtitvinf.cpp; sourceTree = "<group>"; };
		BBB166651E8275DD0058BF1E /* dtptngen_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtptngen_impl.h; sourceTree = "<group>"; };
		BBB166661E8275DD0058BF1E /* dtptngen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dtptngen.cpp; sourceTree = "<group>"; };
		BBB166671E8275DD0058BF1E /* dtrule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dtrule.cpp; sourceTree = "<group>"; };
		BBB166681E8275DD0058BF1E /* esctrn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = esctrn.cpp; sourceTree = "<group>"; };
		BBB166691E8275DD0058BF1E /* esctrn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = esctrn.h; sourceTree = "<group>"; };
		BBB1666A1E8275DD0058BF1E /* ethpccal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ethpccal.cpp; sourceTree = "<group>"; };
		BBB1666B1E8275DD0058BF1E /* ethpccal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ethpccal.h; sourceTree = "<group>"; };
		BBB1666C1E8275DD0058BF1E /* fmtable_cnv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fmtable_cnv.cpp; sourceTree = "<group>"; };
		BBB1666D1E8275DD0058BF1E /* fmtable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fmtable.cpp; sourceTree = "<group>"; };
		BBB1666E1E8275DD0058BF1E /* fmtableimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fmtableimp.h; sourceTree = "<group>"; };
		BBB1666F1E8275DD0058BF1E /* format.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = format.cpp; sourceTree = "<group>"; };
		BBB166701E8275DD0058BF1E /* fphdlimp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fphdlimp.cpp; sourceTree = "<group>"; };
		BBB166711E8275DD0058BF1E /* fphdlimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fphdlimp.h; sourceTree = "<group>"; };
		BBB166721E8275DD0058BF1E /* fpositer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fpositer.cpp; sourceTree = "<group>"; };
		BBB166731E8275DD0058BF1E /* funcrepl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = funcrepl.cpp; sourceTree = "<group>"; };
		BBB166741E8275DD0058BF1E /* funcrepl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = funcrepl.h; sourceTree = "<group>"; };
		BBB166751E8275DD0058BF1E /* gender.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gender.cpp; sourceTree = "<group>"; };
		BBB166761E8275DD0058BF1E /* gregocal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gregocal.cpp; sourceTree = "<group>"; };
		BBB166771E8275DD0058BF1E /* gregoimp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gregoimp.cpp; sourceTree = "<group>"; };
		BBB166781E8275DD0058BF1E /* gregoimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gregoimp.h; sourceTree = "<group>"; };
		BBB166791E8275DD0058BF1E /* hebrwcal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hebrwcal.cpp; sourceTree = "<group>"; };
		BBB1667A1E8275DD0058BF1E /* hebrwcal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hebrwcal.h; sourceTree = "<group>"; };
		BBB1667B1E8275DD0058BF1E /* identifier_info.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = identifier_info.cpp; sourceTree = "<group>"; };
		BBB1667C1E8275DD0058BF1E /* identifier_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = identifier_info.h; sourceTree = "<group>"; };
		BBB1667D1E8275DD0058BF1E /* indiancal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = indiancal.cpp; sourceTree = "<group>"; };
		BBB1667E1E8275DD0058BF1E /* indiancal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = indiancal.h; sourceTree = "<group>"; };
		BBB1667F1E8275DD0058BF1E /* inputext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inputext.cpp; sourceTree = "<group>"; };
		BBB166801E8275DD0058BF1E /* inputext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inputext.h; sourceTree = "<group>"; };
		BBB166811E8275DD0058BF1E /* islamcal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = islamcal.cpp; sourceTree = "<group>"; };
		BBB166821E8275DD0058BF1E /* islamcal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = islamcal.h; sourceTree = "<group>"; };
		BBB166831E8275DD0058BF1E /* japancal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = japancal.cpp; sourceTree = "<group>"; };
		BBB166841E8275DD0058BF1E /* japancal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = japancal.h; sourceTree = "<group>"; };
		BBB166851E8275DD0058BF1E /* measfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = measfmt.cpp; sourceTree = "<group>"; };
		BBB166861E8275DD0058BF1E /* measunit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = measunit.cpp; sourceTree = "<group>"; };
		BBB166871E8275DD0058BF1E /* measure.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = measure.cpp; sourceTree = "<group>"; };
		BBB166881E8275DD0058BF1E /* msgfmt_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msgfmt_impl.h; sourceTree = "<group>"; };
		BBB166891E8275DD0058BF1E /* msgfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = msgfmt.cpp; sourceTree = "<group>"; };
		BBB1668A1E8275DD0058BF1E /* name2uni.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = name2uni.cpp; sourceTree = "<group>"; };
		BBB1668B1E8275DD0058BF1E /* name2uni.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = name2uni.h; sourceTree = "<group>"; };
		BBB1668C1E8275DD0058BF1E /* nfrlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nfrlist.h; sourceTree = "<group>"; };
		BBB1668D1E8275DD0058BF1E /* nfrs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nfrs.cpp; sourceTree = "<group>"; };
		BBB1668E1E8275DD0058BF1E /* nfrs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nfrs.h; sourceTree = "<group>"; };
		BBB1668F1E8275DD0058BF1E /* nfrule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nfrule.cpp; sourceTree = "<group>"; };
		BBB166901E8275DD0058BF1E /* nfrule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nfrule.h; sourceTree = "<group>"; };
		BBB166911E8275DD0058BF1E /* nfsubs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nfsubs.cpp; sourceTree = "<group>"; };
		BBB166921E8275DD0058BF1E /* nfsubs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nfsubs.h; sourceTree = "<group>"; };
		BBB166931E8275DD0058BF1E /* nortrans.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nortrans.cpp; sourceTree = "<group>"; };
		BBB166941E8275DD0058BF1E /* nortrans.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nortrans.h; sourceTree = "<group>"; };
		BBB166951E8275DD0058BF1E /* nultrans.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nultrans.cpp; sourceTree = "<group>"; };
		BBB166961E8275DD0058BF1E /* nultrans.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nultrans.h; sourceTree = "<group>"; };
		BBB166971E8275DD0058BF1E /* numfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = numfmt.cpp; sourceTree = "<group>"; };
		BBB166981E8275DD0058BF1E /* numsys_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = numsys_impl.h; sourceTree = "<group>"; };
		BBB166991E8275DD0058BF1E /* numsys.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = numsys.cpp; sourceTree = "<group>"; };
		BBB1669A1E8275DD0058BF1E /* olsontz.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = olsontz.cpp; sourceTree = "<group>"; };
		BBB1669B1E8275DD0058BF1E /* olsontz.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = olsontz.h; sourceTree = "<group>"; };
		BBB1669C1E8275DD0058BF1E /* persncal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = persncal.cpp; sourceTree = "<group>"; };
		BBB1669D1E8275DD0058BF1E /* persncal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = persncal.h; sourceTree = "<group>"; };
		BBB1669E1E8275DD0058BF1E /* pluralaffix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pluralaffix.cpp; sourceTree = "<group>"; };
		BBB1669F1E8275DD0058BF1E /* pluralaffix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pluralaffix.h; sourceTree = "<group>"; };
		BBB166A01E8275DD0058BF1E /* plurfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plurfmt.cpp; sourceTree = "<group>"; };
		BBB166A11E8275DD0058BF1E /* plurrule_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plurrule_impl.h; sourceTree = "<group>"; };
		BBB166A21E8275DD0058BF1E /* plurrule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plurrule.cpp; sourceTree = "<group>"; };
		BBB166A31E8275DD0058BF1E /* precision.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = precision.cpp; sourceTree = "<group>"; };
		BBB166A41E8275DD0058BF1E /* precision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = precision.h; sourceTree = "<group>"; };
		BBB166A51E8275DD0058BF1E /* quant.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quant.cpp; sourceTree = "<group>"; };
		BBB166A61E8275DD0058BF1E /* quant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quant.h; sourceTree = "<group>"; };
		BBB166A71E8275DD0058BF1E /* quantityformatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quantityformatter.cpp; sourceTree = "<group>"; };
		BBB166A81E8275DD0058BF1E /* quantityformatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quantityformatter.h; sourceTree = "<group>"; };
		BBB166A91E8275DD0058BF1E /* rbnf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbnf.cpp; sourceTree = "<group>"; };
		BBB166AA1E8275DD0058BF1E /* rbt_data.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbt_data.cpp; sourceTree = "<group>"; };
		BBB166AB1E8275DD0058BF1E /* rbt_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbt_data.h; sourceTree = "<group>"; };
		BBB166AC1E8275DD0058BF1E /* rbt_pars.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbt_pars.cpp; sourceTree = "<group>"; };
		BBB166AD1E8275DD0058BF1E /* rbt_pars.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbt_pars.h; sourceTree = "<group>"; };
		BBB166AE1E8275DD0058BF1E /* rbt_rule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbt_rule.cpp; sourceTree = "<group>"; };
		BBB166AF1E8275DD0058BF1E /* rbt_rule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbt_rule.h; sourceTree = "<group>"; };
		BBB166B01E8275DD0058BF1E /* rbt_set.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbt_set.cpp; sourceTree = "<group>"; };
		BBB166B11E8275DD0058BF1E /* rbt_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbt_set.h; sourceTree = "<group>"; };
		BBB166B21E8275DD0058BF1E /* rbt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbt.cpp; sourceTree = "<group>"; };
		BBB166B31E8275DD0058BF1E /* rbt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbt.h; sourceTree = "<group>"; };
		BBB166B41E8275DD0058BF1E /* rbtz.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbtz.cpp; sourceTree = "<group>"; };
		BBB166B51E8275DD0058BF1E /* regexcmp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = regexcmp.cpp; sourceTree = "<group>"; };
		BBB166B61E8275DD0058BF1E /* regexcmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regexcmp.h; sourceTree = "<group>"; };
		BBB166B71E8275DD0058BF1E /* regexcst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regexcst.h; sourceTree = "<group>"; };
		BBB166B81E8275DD0058BF1E /* regexcst.pl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = regexcst.pl; sourceTree = "<group>"; };
		BBB166B91E8275DD0058BF1E /* regeximp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = regeximp.cpp; sourceTree = "<group>"; };
		BBB166BA1E8275DD0058BF1E /* regeximp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regeximp.h; sourceTree = "<group>"; };
		BBB166BB1E8275DD0058BF1E /* regexst.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = regexst.cpp; sourceTree = "<group>"; };
		BBB166BC1E8275DD0058BF1E /* regexst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regexst.h; sourceTree = "<group>"; };
		BBB166BD1E8275DD0058BF1E /* regextxt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = regextxt.cpp; sourceTree = "<group>"; };
		BBB166BE1E8275DD0058BF1E /* regextxt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regextxt.h; sourceTree = "<group>"; };
		BBB166BF1E8275DD0058BF1E /* region_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = region_impl.h; sourceTree = "<group>"; };
		BBB166C01E8275DD0058BF1E /* region.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = region.cpp; sourceTree = "<group>"; };
		BBB166C11E8275DD0058BF1E /* reldatefmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = reldatefmt.cpp; sourceTree = "<group>"; };
		BBB166C21E8275DD0058BF1E /* reldtfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = reldtfmt.cpp; sourceTree = "<group>"; };
		BBB166C31E8275DD0058BF1E /* reldtfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reldtfmt.h; sourceTree = "<group>"; };
		BBB166C41E8275DD0058BF1E /* rematch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rematch.cpp; sourceTree = "<group>"; };
		BBB166C51E8275DD0058BF1E /* remtrans.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = remtrans.cpp; sourceTree = "<group>"; };
		BBB166C61E8275DD0058BF1E /* remtrans.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = remtrans.h; sourceTree = "<group>"; };
		BBB166C71E8275DD0058BF1E /* repattrn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = repattrn.cpp; sourceTree = "<group>"; };
		BBB166C81E8275DD0058BF1E /* rulebasedcollator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rulebasedcollator.cpp; sourceTree = "<group>"; };
		BBB166C91E8275DD0058BF1E /* scientificnumberformatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scientificnumberformatter.cpp; sourceTree = "<group>"; };
		BBB166CA1E8275DD0058BF1E /* scriptset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scriptset.cpp; sourceTree = "<group>"; };
		BBB166CB1E8275DD0058BF1E /* scriptset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scriptset.h; sourceTree = "<group>"; };
		BBB166CC1E8275DD0058BF1E /* search.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = search.cpp; sourceTree = "<group>"; };
		BBB166CD1E8275DD0058BF1E /* selfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = selfmt.cpp; sourceTree = "<group>"; };
		BBB166CE1E8275DD0058BF1E /* selfmtimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = selfmtimpl.h; sourceTree = "<group>"; };
		BBB166CF1E8275DD0058BF1E /* sharedbreakiterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sharedbreakiterator.cpp; sourceTree = "<group>"; };
		BBB166D01E8275DD0058BF1E /* sharedbreakiterator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sharedbreakiterator.h; sourceTree = "<group>"; };
		BBB166D11E8275DD0058BF1E /* sharedcalendar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sharedcalendar.h; sourceTree = "<group>"; };
		BBB166D21E8275DD0058BF1E /* shareddateformatsymbols.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shareddateformatsymbols.h; sourceTree = "<group>"; };
		BBB166D31E8275DD0058BF1E /* sharednumberformat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sharednumberformat.h; sourceTree = "<group>"; };
		BBB166D41E8275DD0058BF1E /* sharedpluralrules.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sharedpluralrules.h; sourceTree = "<group>"; };
		BBB166D51E8275DD0058BF1E /* significantdigitinterval.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = significantdigitinterval.h; sourceTree = "<group>"; };
		BBB166D61E8275DD0058BF1E /* simpletz.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = simpletz.cpp; sourceTree = "<group>"; };
		BBB166D71E8275DD0058BF1E /* smallintformatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = smallintformatter.cpp; sourceTree = "<group>"; };
		BBB166D81E8275DD0058BF1E /* smallintformatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smallintformatter.h; sourceTree = "<group>"; };
		BBB166D91E8275DD0058BF1E /* smpdtfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = smpdtfmt.cpp; sourceTree = "<group>"; };
		BBB166DA1E8275DD0058BF1E /* smpdtfst.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = smpdtfst.cpp; sourceTree = "<group>"; };
		BBB166DB1E8275DD0058BF1E /* smpdtfst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smpdtfst.h; sourceTree = "<group>"; };
		BBB166DC1E8275DD0058BF1E /* sortkey.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sortkey.cpp; sourceTree = "<group>"; };
		BBB166DD1E8275DD0058BF1E /* standardplural.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = standardplural.cpp; sourceTree = "<group>"; };
		BBB166DE1E8275DD0058BF1E /* standardplural.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = standardplural.h; sourceTree = "<group>"; };
		BBB166DF1E8275DD0058BF1E /* strmatch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = strmatch.cpp; sourceTree = "<group>"; };
		BBB166E01E8275DD0058BF1E /* strmatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strmatch.h; sourceTree = "<group>"; };
		BBB166E11E8275DD0058BF1E /* strrepl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = strrepl.cpp; sourceTree = "<group>"; };
		BBB166E21E8275DD0058BF1E /* strrepl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strrepl.h; sourceTree = "<group>"; };
		BBB166E31E8275DD0058BF1E /* stsearch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stsearch.cpp; sourceTree = "<group>"; };
		BBB166E41E8275DD0058BF1E /* taiwncal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = taiwncal.cpp; sourceTree = "<group>"; };
		BBB166E51E8275DD0058BF1E /* taiwncal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = taiwncal.h; sourceTree = "<group>"; };
		BBB166E61E8275DD0058BF1E /* timezone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = timezone.cpp; sourceTree = "<group>"; };
		BBB166E71E8275DD0058BF1E /* titletrn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = titletrn.cpp; sourceTree = "<group>"; };
		BBB166E81E8275DD0058BF1E /* titletrn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = titletrn.h; sourceTree = "<group>"; };
		BBB166E91E8275DD0058BF1E /* tmunit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tmunit.cpp; sourceTree = "<group>"; };
		BBB166EA1E8275DD0058BF1E /* tmutamt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tmutamt.cpp; sourceTree = "<group>"; };
		BBB166EB1E8275DD0058BF1E /* tmutfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tmutfmt.cpp; sourceTree = "<group>"; };
		BBB166EC1E8275DD0058BF1E /* tolowtrn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tolowtrn.cpp; sourceTree = "<group>"; };
		BBB166ED1E8275DD0058BF1E /* tolowtrn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tolowtrn.h; sourceTree = "<group>"; };
		BBB166EE1E8275DD0058BF1E /* toupptrn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = toupptrn.cpp; sourceTree = "<group>"; };
		BBB166EF1E8275DD0058BF1E /* toupptrn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = toupptrn.h; sourceTree = "<group>"; };
		BBB166F01E8275DD0058BF1E /* translit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = translit.cpp; sourceTree = "<group>"; };
		BBB166F11E8275DD0058BF1E /* transreg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = transreg.cpp; sourceTree = "<group>"; };
		BBB166F21E8275DD0058BF1E /* transreg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = transreg.h; sourceTree = "<group>"; };
		BBB166F31E8275DD0058BF1E /* tridpars.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tridpars.cpp; sourceTree = "<group>"; };
		BBB166F41E8275DD0058BF1E /* tridpars.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tridpars.h; sourceTree = "<group>"; };
		BBB166F51E8275DD0058BF1E /* tzfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tzfmt.cpp; sourceTree = "<group>"; };
		BBB166F61E8275DD0058BF1E /* tzgnames.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tzgnames.cpp; sourceTree = "<group>"; };
		BBB166F71E8275DD0058BF1E /* tzgnames.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tzgnames.h; sourceTree = "<group>"; };
		BBB166F81E8275DD0058BF1E /* tznames_impl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tznames_impl.cpp; sourceTree = "<group>"; };
		BBB166F91E8275DD0058BF1E /* tznames_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tznames_impl.h; sourceTree = "<group>"; };
		BBB166FA1E8275DD0058BF1E /* tznames.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tznames.cpp; sourceTree = "<group>"; };
		BBB166FB1E8275DD0058BF1E /* tzrule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tzrule.cpp; sourceTree = "<group>"; };
		BBB166FC1E8275DD0058BF1E /* tztrans.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tztrans.cpp; sourceTree = "<group>"; };
		BBB166FD1E8275DD0058BF1E /* ucal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucal.cpp; sourceTree = "<group>"; };
		BBB166FE1E8275DD0058BF1E /* ucln_in.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucln_in.cpp; sourceTree = "<group>"; };
		BBB166FF1E8275DD0058BF1E /* ucln_in.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucln_in.h; sourceTree = "<group>"; };
		BBB167001E8275DD0058BF1E /* ucol_imp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucol_imp.h; sourceTree = "<group>"; };
		BBB167011E8275DD0058BF1E /* ucol_res.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucol_res.cpp; sourceTree = "<group>"; };
		BBB167021E8275DD0058BF1E /* ucol_sit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucol_sit.cpp; sourceTree = "<group>"; };
		BBB167031E8275DD0058BF1E /* ucol.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucol.cpp; sourceTree = "<group>"; };
		BBB167041E8275DD0058BF1E /* ucoleitr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucoleitr.cpp; sourceTree = "<group>"; };
		BBB167051E8275DD0058BF1E /* ucsdet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucsdet.cpp; sourceTree = "<group>"; };
		BBB167061E8275DD0058BF1E /* udat.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = udat.cpp; sourceTree = "<group>"; };
		BBB167071E8275DD0058BF1E /* udateintervalformat.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = udateintervalformat.cpp; sourceTree = "<group>"; };
		BBB167081E8275DD0058BF1E /* udatpg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = udatpg.cpp; sourceTree = "<group>"; };
		BBB167091E8275DD0058BF1E /* ufieldpositer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ufieldpositer.cpp; sourceTree = "<group>"; };
		BBB1670A1E8275DD0058BF1E /* uitercollationiterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uitercollationiterator.cpp; sourceTree = "<group>"; };
		BBB1670B1E8275DD0058BF1E /* uitercollationiterator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uitercollationiterator.h; sourceTree = "<group>"; };
		BBB1670C1E8275DD0058BF1E /* ulocdata.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ulocdata.c; sourceTree = "<group>"; };
		BBB1670D1E8275DD0058BF1E /* umsg_imp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = umsg_imp.h; sourceTree = "<group>"; };
		BBB1670E1E8275DD0058BF1E /* umsg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = umsg.cpp; sourceTree = "<group>"; };
		BBB1670F1E8275DD0058BF1E /* unesctrn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unesctrn.cpp; sourceTree = "<group>"; };
		BBB167101E8275DD0058BF1E /* unesctrn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unesctrn.h; sourceTree = "<group>"; };
		BBB167111E8275DD0058BF1E /* uni2name.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uni2name.cpp; sourceTree = "<group>"; };
		BBB167121E8275DD0058BF1E /* uni2name.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uni2name.h; sourceTree = "<group>"; };
		BBB167131E8275DD0058BF1E /* unum.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unum.cpp; sourceTree = "<group>"; };
		BBB167141E8275DD0058BF1E /* unumsys.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unumsys.cpp; sourceTree = "<group>"; };
		BBB167151E8275DD0058BF1E /* upluralrules.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = upluralrules.cpp; sourceTree = "<group>"; };
		BBB167161E8275DD0058BF1E /* uregex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uregex.cpp; sourceTree = "<group>"; };
		BBB167171E8275DD0058BF1E /* uregexc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uregexc.cpp; sourceTree = "<group>"; };
		BBB167181E8275DD0058BF1E /* uregion.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uregion.cpp; sourceTree = "<group>"; };
		BBB167191E8275DD0058BF1E /* usearch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = usearch.cpp; sourceTree = "<group>"; };
		BBB1671A1E8275DD0058BF1E /* uspoof_build.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uspoof_build.cpp; sourceTree = "<group>"; };
		BBB1671B1E8275DD0058BF1E /* uspoof_conf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uspoof_conf.cpp; sourceTree = "<group>"; };
		BBB1671C1E8275DD0058BF1E /* uspoof_conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uspoof_conf.h; sourceTree = "<group>"; };
		BBB1671D1E8275DD0058BF1E /* uspoof_impl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uspoof_impl.cpp; sourceTree = "<group>"; };
		BBB1671E1E8275DD0058BF1E /* uspoof_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uspoof_impl.h; sourceTree = "<group>"; };
		BBB1671F1E8275DD0058BF1E /* uspoof_wsconf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uspoof_wsconf.cpp; sourceTree = "<group>"; };
		BBB167201E8275DD0058BF1E /* uspoof_wsconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uspoof_wsconf.h; sourceTree = "<group>"; };
		BBB167211E8275DD0058BF1E /* uspoof.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uspoof.cpp; sourceTree = "<group>"; };
		BBB167221E8275DD0058BF1E /* usrchimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = usrchimp.h; sourceTree = "<group>"; };
		BBB167231E8275DD0058BF1E /* utf8collationiterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utf8collationiterator.cpp; sourceTree = "<group>"; };
		BBB167241E8275DD0058BF1E /* utf8collationiterator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utf8collationiterator.h; sourceTree = "<group>"; };
		BBB167251E8275DD0058BF1E /* utf16collationiterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utf16collationiterator.cpp; sourceTree = "<group>"; };
		BBB167261E8275DD0058BF1E /* utf16collationiterator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utf16collationiterator.h; sourceTree = "<group>"; };
		BBB167271E8275DD0058BF1E /* utmscale.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utmscale.c; sourceTree = "<group>"; };
		BBB167281E8275DD0058BF1E /* utrans.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utrans.cpp; sourceTree = "<group>"; };
		BBB167291E8275DD0058BF1E /* valueformatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valueformatter.cpp; sourceTree = "<group>"; };
		BBB1672A1E8275DD0058BF1E /* valueformatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valueformatter.h; sourceTree = "<group>"; };
		BBB1672B1E8275DD0058BF1E /* visibledigits.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = visibledigits.cpp; sourceTree = "<group>"; };
		BBB1672C1E8275DD0058BF1E /* visibledigits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = visibledigits.h; sourceTree = "<group>"; };
		BBB1672D1E8275DD0058BF1E /* vtzone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vtzone.cpp; sourceTree = "<group>"; };
		BBB1672E1E8275DD0058BF1E /* vzone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vzone.cpp; sourceTree = "<group>"; };
		BBB1672F1E8275DD0058BF1E /* vzone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vzone.h; sourceTree = "<group>"; };
		BBB167301E8275DD0058BF1E /* windtfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = windtfmt.cpp; sourceTree = "<group>"; };
		BBB167311E8275DD0058BF1E /* windtfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windtfmt.h; sourceTree = "<group>"; };
		BBB167321E8275DD0058BF1E /* winnmfmt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = winnmfmt.cpp; sourceTree = "<group>"; };
		BBB167331E8275DD0058BF1E /* winnmfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = winnmfmt.h; sourceTree = "<group>"; };
		BBB167341E8275DD0058BF1E /* wintzimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = wintzimpl.cpp; sourceTree = "<group>"; };
		BBB167351E8275DD0058BF1E /* wintzimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wintzimpl.h; sourceTree = "<group>"; };
		BBB167361E8275DD0058BF1E /* zonemeta.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = zonemeta.cpp; sourceTree = "<group>"; };
		BBB167371E8275DD0058BF1E /* zonemeta.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zonemeta.h; sourceTree = "<group>"; };
		BBB167381E8275DD0058BF1E /* zrule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = zrule.cpp; sourceTree = "<group>"; };
		BBB167391E8275DD0058BF1E /* zrule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zrule.h; sourceTree = "<group>"; };
		BBB1673A1E8275DD0058BF1E /* ztrans.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ztrans.cpp; sourceTree = "<group>"; };
		BBB1673B1E8275DD0058BF1E /* ztrans.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ztrans.h; sourceTree = "<group>"; };
		BBB168901E8275FE0058BF1E /* alphaindex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alphaindex.h; sourceTree = "<group>"; };
		BBB168911E8275FE0058BF1E /* basictz.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = basictz.h; sourceTree = "<group>"; };
		BBB168921E8275FE0058BF1E /* calendar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = calendar.h; sourceTree = "<group>"; };
		BBB168931E8275FE0058BF1E /* choicfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = choicfmt.h; sourceTree = "<group>"; };
		BBB168941E8275FE0058BF1E /* coleitr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = coleitr.h; sourceTree = "<group>"; };
		BBB168951E8275FE0058BF1E /* coll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = coll.h; sourceTree = "<group>"; };
		BBB168961E8275FE0058BF1E /* compactdecimalformat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = compactdecimalformat.h; sourceTree = "<group>"; };
		BBB168971E8275FE0058BF1E /* curramt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = curramt.h; sourceTree = "<group>"; };
		BBB168981E8275FE0058BF1E /* currpinf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = currpinf.h; sourceTree = "<group>"; };
		BBB168991E8275FE0058BF1E /* currunit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = currunit.h; sourceTree = "<group>"; };
		BBB1689A1E8275FE0058BF1E /* datefmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = datefmt.h; sourceTree = "<group>"; };
		BBB1689B1E8275FE0058BF1E /* dcfmtsym.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dcfmtsym.h; sourceTree = "<group>"; };
		BBB1689C1E8275FE0058BF1E /* decimfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = decimfmt.h; sourceTree = "<group>"; };
		BBB1689D1E8275FE0058BF1E /* dtfmtsym.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtfmtsym.h; sourceTree = "<group>"; };
		BBB1689E1E8275FE0058BF1E /* dtitvfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtitvfmt.h; sourceTree = "<group>"; };
		BBB1689F1E8275FE0058BF1E /* dtitvinf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtitvinf.h; sourceTree = "<group>"; };
		BBB168A01E8275FE0058BF1E /* dtptngen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtptngen.h; sourceTree = "<group>"; };
		BBB168A11E8275FE0058BF1E /* dtrule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtrule.h; sourceTree = "<group>"; };
		BBB168A21E8275FE0058BF1E /* fieldpos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fieldpos.h; sourceTree = "<group>"; };
		BBB168A31E8275FE0058BF1E /* fmtable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fmtable.h; sourceTree = "<group>"; };
		BBB168A41E8275FE0058BF1E /* format.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = format.h; sourceTree = "<group>"; };
		BBB168A51E8275FE0058BF1E /* fpositer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fpositer.h; sourceTree = "<group>"; };
		BBB168A61E8275FE0058BF1E /* gender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gender.h; sourceTree = "<group>"; };
		BBB168A71E8275FE0058BF1E /* gregocal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gregocal.h; sourceTree = "<group>"; };
		BBB168A81E8275FE0058BF1E /* measfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = measfmt.h; sourceTree = "<group>"; };
		BBB168A91E8275FE0058BF1E /* measunit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = measunit.h; sourceTree = "<group>"; };
		BBB168AA1E8275FE0058BF1E /* measure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = measure.h; sourceTree = "<group>"; };
		BBB168AB1E8275FE0058BF1E /* msgfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msgfmt.h; sourceTree = "<group>"; };
		BBB168AC1E8275FE0058BF1E /* numfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = numfmt.h; sourceTree = "<group>"; };
		BBB168AD1E8275FE0058BF1E /* numsys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = numsys.h; sourceTree = "<group>"; };
		BBB168AE1E8275FE0058BF1E /* plurfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plurfmt.h; sourceTree = "<group>"; };
		BBB168AF1E8275FE0058BF1E /* plurrule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plurrule.h; sourceTree = "<group>"; };
		BBB168B01E8275FE0058BF1E /* rbnf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbnf.h; sourceTree = "<group>"; };
		BBB168B11E8275FE0058BF1E /* rbtz.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbtz.h; sourceTree = "<group>"; };
		BBB168B21E8275FE0058BF1E /* regex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regex.h; sourceTree = "<group>"; };
		BBB168B31E8275FE0058BF1E /* region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = region.h; sourceTree = "<group>"; };
		BBB168B41E8275FE0058BF1E /* reldatefmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reldatefmt.h; sourceTree = "<group>"; };
		BBB168B51E8275FE0058BF1E /* scientificnumberformatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scientificnumberformatter.h; sourceTree = "<group>"; };
		BBB168B61E8275FE0058BF1E /* search.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = search.h; sourceTree = "<group>"; };
		BBB168B71E8275FE0058BF1E /* selfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = selfmt.h; sourceTree = "<group>"; };
		BBB168B81E8275FE0058BF1E /* simpletz.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = simpletz.h; sourceTree = "<group>"; };
		BBB168B91E8275FE0058BF1E /* smpdtfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smpdtfmt.h; sourceTree = "<group>"; };
		BBB168BA1E8275FE0058BF1E /* sortkey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sortkey.h; sourceTree = "<group>"; };
		BBB168BB1E8275FE0058BF1E /* stsearch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stsearch.h; sourceTree = "<group>"; };
		BBB168BC1E8275FE0058BF1E /* tblcoll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tblcoll.h; sourceTree = "<group>"; };
		BBB168BD1E8275FE0058BF1E /* timezone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timezone.h; sourceTree = "<group>"; };
		BBB168BE1E8275FE0058BF1E /* tmunit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tmunit.h; sourceTree = "<group>"; };
		BBB168BF1E8275FE0058BF1E /* tmutamt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tmutamt.h; sourceTree = "<group>"; };
		BBB168C01E8275FE0058BF1E /* tmutfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tmutfmt.h; sourceTree = "<group>"; };
		BBB168C11E8275FE0058BF1E /* translit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = translit.h; sourceTree = "<group>"; };
		BBB168C21E8275FE0058BF1E /* tzfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tzfmt.h; sourceTree = "<group>"; };
		BBB168C31E8275FE0058BF1E /* tznames.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tznames.h; sourceTree = "<group>"; };
		BBB168C41E8275FE0058BF1E /* tzrule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tzrule.h; sourceTree = "<group>"; };
		BBB168C51E8275FE0058BF1E /* tztrans.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tztrans.h; sourceTree = "<group>"; };
		BBB168C61E8275FE0058BF1E /* ucal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucal.h; sourceTree = "<group>"; };
		BBB168C71E8275FE0058BF1E /* ucol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucol.h; sourceTree = "<group>"; };
		BBB168C81E8275FE0058BF1E /* ucoleitr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucoleitr.h; sourceTree = "<group>"; };
		BBB168C91E8275FE0058BF1E /* ucsdet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucsdet.h; sourceTree = "<group>"; };
		BBB168CA1E8275FE0058BF1E /* udat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udat.h; sourceTree = "<group>"; };
		BBB168CB1E8275FE0058BF1E /* udateintervalformat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udateintervalformat.h; sourceTree = "<group>"; };
		BBB168CC1E8275FE0058BF1E /* udatpg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udatpg.h; sourceTree = "<group>"; };
		BBB168CD1E8275FE0058BF1E /* ufieldpositer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufieldpositer.h; sourceTree = "<group>"; };
		BBB168CE1E8275FE0058BF1E /* uformattable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uformattable.h; sourceTree = "<group>"; };
		BBB168CF1E8275FE0058BF1E /* ugender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ugender.h; sourceTree = "<group>"; };
		BBB168D01E8275FE0058BF1E /* ulocdata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ulocdata.h; sourceTree = "<group>"; };
		BBB168D11E8275FE0058BF1E /* umsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = umsg.h; sourceTree = "<group>"; };
		BBB168D21E8275FE0058BF1E /* unirepl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unirepl.h; sourceTree = "<group>"; };
		BBB168D31E8275FE0058BF1E /* unum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unum.h; sourceTree = "<group>"; };
		BBB168D41E8275FE0058BF1E /* unumsys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unumsys.h; sourceTree = "<group>"; };
		BBB168D51E8275FE0058BF1E /* upluralrules.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = upluralrules.h; sourceTree = "<group>"; };
		BBB168D61E8275FE0058BF1E /* uregex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uregex.h; sourceTree = "<group>"; };
		BBB168D71E8275FE0058BF1E /* uregion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uregion.h; sourceTree = "<group>"; };
		BBB168D81E8275FE0058BF1E /* ureldatefmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ureldatefmt.h; sourceTree = "<group>"; };
		BBB168D91E8275FE0058BF1E /* usearch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = usearch.h; sourceTree = "<group>"; };
		BBB168DA1E8275FE0058BF1E /* uspoof.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uspoof.h; sourceTree = "<group>"; };
		BBB168DB1E8275FE0058BF1E /* utmscale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utmscale.h; sourceTree = "<group>"; };
		BBB168DC1E8275FE0058BF1E /* utrans.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utrans.h; sourceTree = "<group>"; };
		BBB168DD1E8275FE0058BF1E /* vtzone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vtzone.h; sourceTree = "<group>"; };
		BBB1692C1E82762A0058BF1E /* appendable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = appendable.cpp; sourceTree = "<group>"; };
		BBB1692D1E82762A0058BF1E /* bmpset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bmpset.cpp; sourceTree = "<group>"; };
		BBB1692E1E82762A0058BF1E /* bmpset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bmpset.h; sourceTree = "<group>"; };
		BBB1692F1E82762A0058BF1E /* brkeng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = brkeng.cpp; sourceTree = "<group>"; };
		BBB169301E82762A0058BF1E /* brkeng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = brkeng.h; sourceTree = "<group>"; };
		BBB169311E82762A0058BF1E /* brkiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = brkiter.cpp; sourceTree = "<group>"; };
		BBB169321E82762A0058BF1E /* bytestream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bytestream.cpp; sourceTree = "<group>"; };
		BBB169331E82762A0058BF1E /* bytestrie.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bytestrie.cpp; sourceTree = "<group>"; };
		BBB169341E82762A0058BF1E /* bytestriebuilder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bytestriebuilder.cpp; sourceTree = "<group>"; };
		BBB169351E82762A0058BF1E /* bytestrieiterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bytestrieiterator.cpp; sourceTree = "<group>"; };
		BBB169361E82762A0058BF1E /* caniter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = caniter.cpp; sourceTree = "<group>"; };
		BBB169371E82762A0058BF1E /* chariter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chariter.cpp; sourceTree = "<group>"; };
		BBB169381E82762A0058BF1E /* charstr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charstr.cpp; sourceTree = "<group>"; };
		BBB169391E82762A0058BF1E /* charstr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charstr.h; sourceTree = "<group>"; };
		BBB1693A1E82762A0058BF1E /* cmemory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cmemory.c; sourceTree = "<group>"; };
		BBB1693B1E82762A0058BF1E /* cmemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmemory.h; sourceTree = "<group>"; };
		BBB1693C1E82762A0058BF1E /* cpputils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cpputils.h; sourceTree = "<group>"; };
		BBB1693D1E82762A0058BF1E /* cstr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cstr.cpp; sourceTree = "<group>"; };
		BBB1693E1E82762A0058BF1E /* cstr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cstr.h; sourceTree = "<group>"; };
		BBB1693F1E82762A0058BF1E /* cstring.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cstring.c; sourceTree = "<group>"; };
		BBB169401E82762A0058BF1E /* cstring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cstring.h; sourceTree = "<group>"; };
		BBB169411E82762A0058BF1E /* cwchar.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cwchar.c; sourceTree = "<group>"; };
		BBB169421E82762A0058BF1E /* cwchar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cwchar.h; sourceTree = "<group>"; };
		BBB169431E82762A0058BF1E /* dictbe.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dictbe.cpp; sourceTree = "<group>"; };
		BBB169441E82762A0058BF1E /* dictbe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dictbe.h; sourceTree = "<group>"; };
		BBB169451E82762A0058BF1E /* dictionarydata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dictionarydata.cpp; sourceTree = "<group>"; };
		BBB169461E82762A0058BF1E /* dictionarydata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dictionarydata.h; sourceTree = "<group>"; };
		BBB169471E82762A0058BF1E /* dtintrv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dtintrv.cpp; sourceTree = "<group>"; };
		BBB169481E82762A0058BF1E /* errorcode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = errorcode.cpp; sourceTree = "<group>"; };
		BBB169491E82762A0058BF1E /* filteredbrk.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = filteredbrk.cpp; sourceTree = "<group>"; };
		BBB1694A1E82762A0058BF1E /* filterednormalizer2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = filterednormalizer2.cpp; sourceTree = "<group>"; };
		BBB1694B1E82762A0058BF1E /* hash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hash.h; sourceTree = "<group>"; };
		BBB1694C1E82762A0058BF1E /* icudataver.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = icudataver.c; sourceTree = "<group>"; };
		BBB1694D1E82762A0058BF1E /* icuplug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icuplug.cpp; sourceTree = "<group>"; };
		BBB1694E1E82762A0058BF1E /* icuplugimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icuplugimp.h; sourceTree = "<group>"; };
		BBB1694F1E82762A0058BF1E /* listformatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = listformatter.cpp; sourceTree = "<group>"; };
		BBB169501E82762A0058BF1E /* loadednormalizer2impl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loadednormalizer2impl.cpp; sourceTree = "<group>"; };
		BBB169511E82762A0058BF1E /* localsvc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = localsvc.h; sourceTree = "<group>"; };
		BBB169521E82762A0058BF1E /* locavailable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locavailable.cpp; sourceTree = "<group>"; };
		BBB169531E82762A0058BF1E /* locbased.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locbased.cpp; sourceTree = "<group>"; };
		BBB169541E82762A0058BF1E /* locbased.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = locbased.h; sourceTree = "<group>"; };
		BBB169551E82762A0058BF1E /* locdispnames.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locdispnames.cpp; sourceTree = "<group>"; };
		BBB169561E82762A0058BF1E /* locdspnm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locdspnm.cpp; sourceTree = "<group>"; };
		BBB169571E82762A0058BF1E /* locid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locid.cpp; sourceTree = "<group>"; };
		BBB169581E82762A0058BF1E /* loclikely.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loclikely.cpp; sourceTree = "<group>"; };
		BBB169591E82762A0058BF1E /* locmap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = locmap.c; sourceTree = "<group>"; };
		BBB1695A1E82762A0058BF1E /* locmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = locmap.h; sourceTree = "<group>"; };
		BBB1695B1E82762A0058BF1E /* locresdata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locresdata.cpp; sourceTree = "<group>"; };
		BBB1695C1E82762A0058BF1E /* locutil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locutil.cpp; sourceTree = "<group>"; };
		BBB1695D1E82762A0058BF1E /* locutil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = locutil.h; sourceTree = "<group>"; };
		BBB1695E1E82762A0058BF1E /* messageimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageimpl.h; sourceTree = "<group>"; };
		BBB1695F1E82762A0058BF1E /* messagepattern.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagepattern.cpp; sourceTree = "<group>"; };
		BBB169601E82762A0058BF1E /* msvcres.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msvcres.h; sourceTree = "<group>"; };
		BBB169611E82762A0058BF1E /* mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mutex.h; sourceTree = "<group>"; };
		BBB169621E82762A0058BF1E /* norm2_nfc_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = norm2_nfc_data.h; sourceTree = "<group>"; };
		BBB169631E82762A0058BF1E /* norm2allmodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = norm2allmodes.h; sourceTree = "<group>"; };
		BBB169641E82762A0058BF1E /* normalizer2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = normalizer2.cpp; sourceTree = "<group>"; };
		BBB169651E82762A0058BF1E /* normalizer2impl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = normalizer2impl.cpp; sourceTree = "<group>"; };
		BBB169661E82762A0058BF1E /* normalizer2impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = normalizer2impl.h; sourceTree = "<group>"; };
		BBB169671E82762A0058BF1E /* normlzr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = normlzr.cpp; sourceTree = "<group>"; };
		BBB169681E82762A0058BF1E /* parsepos.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = parsepos.cpp; sourceTree = "<group>"; };
		BBB169691E82762A0058BF1E /* patternprops.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = patternprops.cpp; sourceTree = "<group>"; };
		BBB1696A1E82762A0058BF1E /* patternprops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = patternprops.h; sourceTree = "<group>"; };
		BBB1696B1E82762A0058BF1E /* pluralmap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pluralmap.cpp; sourceTree = "<group>"; };
		BBB1696C1E82762A0058BF1E /* pluralmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pluralmap.h; sourceTree = "<group>"; };
		BBB1696D1E82762A0058BF1E /* propname_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = propname_data.h; sourceTree = "<group>"; };
		BBB1696E1E82762A0058BF1E /* propname.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = propname.cpp; sourceTree = "<group>"; };
		BBB1696F1E82762A0058BF1E /* propname.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = propname.h; sourceTree = "<group>"; };
		BBB169701E82762A0058BF1E /* propsvec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = propsvec.c; sourceTree = "<group>"; };
		BBB169711E82762A0058BF1E /* propsvec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = propsvec.h; sourceTree = "<group>"; };
		BBB169721E82762A0058BF1E /* punycode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = punycode.cpp; sourceTree = "<group>"; };
		BBB169731E82762A0058BF1E /* punycode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = punycode.h; sourceTree = "<group>"; };
		BBB169741E82762A0058BF1E /* putil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = putil.cpp; sourceTree = "<group>"; };
		BBB169751E82762A0058BF1E /* putilimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = putilimp.h; sourceTree = "<group>"; };
		BBB169761E82762A0058BF1E /* rbbi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbbi.cpp; sourceTree = "<group>"; };
		BBB169781E82762A0058BF1E /* rbbidata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbbidata.cpp; sourceTree = "<group>"; };
		BBB169791E82762A0058BF1E /* rbbidata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbbidata.h; sourceTree = "<group>"; };
		BBB1697A1E82762A0058BF1E /* rbbinode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbbinode.cpp; sourceTree = "<group>"; };
		BBB1697B1E82762A0058BF1E /* rbbinode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbbinode.h; sourceTree = "<group>"; };
		BBB1697C1E82762A0058BF1E /* rbbirb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbbirb.cpp; sourceTree = "<group>"; };
		BBB1697D1E82762A0058BF1E /* rbbirb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbbirb.h; sourceTree = "<group>"; };
		BBB1697E1E82762A0058BF1E /* rbbirpt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbbirpt.h; sourceTree = "<group>"; };
		BBB1697F1E82762A0058BF1E /* rbbiscan.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbbiscan.cpp; sourceTree = "<group>"; };
		BBB169801E82762A0058BF1E /* rbbiscan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbbiscan.h; sourceTree = "<group>"; };
		BBB169811E82762A0058BF1E /* rbbisetb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbbisetb.cpp; sourceTree = "<group>"; };
		BBB169821E82762A0058BF1E /* rbbisetb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbbisetb.h; sourceTree = "<group>"; };
		BBB169831E82762A0058BF1E /* rbbistbl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbbistbl.cpp; sourceTree = "<group>"; };
		BBB169841E82762A0058BF1E /* rbbitblb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rbbitblb.cpp; sourceTree = "<group>"; };
		BBB169851E82762A0058BF1E /* rbbitblb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbbitblb.h; sourceTree = "<group>"; };
		BBB169861E82762A0058BF1E /* resbund_cnv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resbund_cnv.cpp; sourceTree = "<group>"; };
		BBB169871E82762A0058BF1E /* resbund.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resbund.cpp; sourceTree = "<group>"; };
		BBB169881E82762A0058BF1E /* resource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resource.cpp; sourceTree = "<group>"; };
		BBB169891E82762A0058BF1E /* resource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resource.h; sourceTree = "<group>"; };
		BBB1698A1E82762A0058BF1E /* ruleiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ruleiter.cpp; sourceTree = "<group>"; };
		BBB1698B1E82762A0058BF1E /* ruleiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ruleiter.h; sourceTree = "<group>"; };
		BBB1698C1E82762A0058BF1E /* schriter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = schriter.cpp; sourceTree = "<group>"; };
		BBB1698D1E82762A0058BF1E /* serv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = serv.cpp; sourceTree = "<group>"; };
		BBB1698E1E82762A0058BF1E /* serv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serv.h; sourceTree = "<group>"; };
		BBB1698F1E82762A0058BF1E /* servlk.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = servlk.cpp; sourceTree = "<group>"; };
		BBB169901E82762A0058BF1E /* servlkf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = servlkf.cpp; sourceTree = "<group>"; };
		BBB169911E82762A0058BF1E /* servloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = servloc.h; sourceTree = "<group>"; };
		BBB169921E82762A0058BF1E /* servls.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = servls.cpp; sourceTree = "<group>"; };
		BBB169931E82762A0058BF1E /* servnotf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = servnotf.cpp; sourceTree = "<group>"; };
		BBB169941E82762A0058BF1E /* servnotf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = servnotf.h; sourceTree = "<group>"; };
		BBB169951E82762A0058BF1E /* servrbf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = servrbf.cpp; sourceTree = "<group>"; };
		BBB169961E82762A0058BF1E /* servslkf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = servslkf.cpp; sourceTree = "<group>"; };
		BBB169971E82762A0058BF1E /* sharedobject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sharedobject.cpp; sourceTree = "<group>"; };
		BBB169981E82762A0058BF1E /* sharedobject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sharedobject.h; sourceTree = "<group>"; };
		BBB169991E82762A0058BF1E /* simpleformatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = simpleformatter.cpp; sourceTree = "<group>"; };
		BBB1699A1E82762A0058BF1E /* sprpimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sprpimpl.h; sourceTree = "<group>"; };
		BBB1699B1E82762A0058BF1E /* stringpiece.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stringpiece.cpp; sourceTree = "<group>"; };
		BBB1699C1E82762A0058BF1E /* stringtriebuilder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stringtriebuilder.cpp; sourceTree = "<group>"; };
		BBB1699D1E82762A0058BF1E /* uarrsort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uarrsort.c; sourceTree = "<group>"; };
		BBB1699E1E82762A0058BF1E /* uarrsort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uarrsort.h; sourceTree = "<group>"; };
		BBB1699F1E82762A0058BF1E /* uassert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uassert.h; sourceTree = "<group>"; };
		BBB169A01E82762A0058BF1E /* ubidi_props_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ubidi_props_data.h; sourceTree = "<group>"; };
		BBB169A11E82762A0058BF1E /* ubidi_props.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ubidi_props.c; sourceTree = "<group>"; };
		BBB169A21E82762A0058BF1E /* ubidi_props.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ubidi_props.h; sourceTree = "<group>"; };
		BBB169A31E82762A0058BF1E /* ubidi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ubidi.c; sourceTree = "<group>"; };
		BBB169A41E82762A0058BF1E /* ubidiimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ubidiimp.h; sourceTree = "<group>"; };
		BBB169A51E82762A0058BF1E /* ubidiln.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ubidiln.c; sourceTree = "<group>"; };
		BBB169A61E82762A0058BF1E /* ubidiwrt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ubidiwrt.c; sourceTree = "<group>"; };
		BBB169A71E82762A0058BF1E /* ubrk.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ubrk.cpp; sourceTree = "<group>"; };
		BBB169A81E82762A0058BF1E /* ubrkimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ubrkimpl.h; sourceTree = "<group>"; };
		BBB169A91E82762A0058BF1E /* ucase_props_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucase_props_data.h; sourceTree = "<group>"; };
		BBB169AA1E82762A0058BF1E /* ucase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucase.cpp; sourceTree = "<group>"; };
		BBB169AB1E82762A0058BF1E /* ucase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucase.h; sourceTree = "<group>"; };
		BBB169AC1E82762A0058BF1E /* ucasemap_titlecase_brkiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucasemap_titlecase_brkiter.cpp; sourceTree = "<group>"; };
		BBB169AD1E82762A0058BF1E /* ucasemap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucasemap.cpp; sourceTree = "<group>"; };
		BBB169AE1E82762A0058BF1E /* ucat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucat.c; sourceTree = "<group>"; };
		BBB169AF1E82762A0058BF1E /* uchar_props_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uchar_props_data.h; sourceTree = "<group>"; };
		BBB169B01E82762A0058BF1E /* uchar.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uchar.c; sourceTree = "<group>"; };
		BBB169B11E82762A0058BF1E /* ucharstrie.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucharstrie.cpp; sourceTree = "<group>"; };
		BBB169B21E82762A0058BF1E /* ucharstriebuilder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucharstriebuilder.cpp; sourceTree = "<group>"; };
		BBB169B31E82762A0058BF1E /* ucharstrieiterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucharstrieiterator.cpp; sourceTree = "<group>"; };
		BBB169B41E82762A0058BF1E /* uchriter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uchriter.cpp; sourceTree = "<group>"; };
		BBB169B51E82762A0058BF1E /* ucln_cmn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucln_cmn.cpp; sourceTree = "<group>"; };
		BBB169B61E82762A0058BF1E /* ucln_cmn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucln_cmn.h; sourceTree = "<group>"; };
		BBB169B71E82762A0058BF1E /* ucln_imp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucln_imp.h; sourceTree = "<group>"; };
		BBB169B81E82762A0058BF1E /* ucln.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucln.h; sourceTree = "<group>"; };
		BBB169B91E82762A0058BF1E /* ucmndata.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucmndata.c; sourceTree = "<group>"; };
		BBB169BA1E82762A0058BF1E /* ucmndata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucmndata.h; sourceTree = "<group>"; };
		BBB169BB1E82762A0058BF1E /* ucnv_bld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucnv_bld.cpp; sourceTree = "<group>"; };
		BBB169BC1E82762A0058BF1E /* ucnv_bld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucnv_bld.h; sourceTree = "<group>"; };
		BBB169BD1E82762A0058BF1E /* ucnv_cb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv_cb.c; sourceTree = "<group>"; };
		BBB169BE1E82762A0058BF1E /* ucnv_cnv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv_cnv.c; sourceTree = "<group>"; };
		BBB169BF1E82762A0058BF1E /* ucnv_cnv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucnv_cnv.h; sourceTree = "<group>"; };
		BBB169C01E82762A0058BF1E /* ucnv_ct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv_ct.c; sourceTree = "<group>"; };
		BBB169C11E82762A0058BF1E /* ucnv_err.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv_err.c; sourceTree = "<group>"; };
		BBB169C21E82762A0058BF1E /* ucnv_ext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucnv_ext.cpp; sourceTree = "<group>"; };
		BBB169C31E82762A0058BF1E /* ucnv_ext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucnv_ext.h; sourceTree = "<group>"; };
		BBB169C41E82762A0058BF1E /* ucnv_imp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucnv_imp.h; sourceTree = "<group>"; };
		BBB169C51E82762A0058BF1E /* ucnv_io.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucnv_io.cpp; sourceTree = "<group>"; };
		BBB169C61E82762A0058BF1E /* ucnv_io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucnv_io.h; sourceTree = "<group>"; };
		BBB169C71E82762A0058BF1E /* ucnv_lmb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv_lmb.c; sourceTree = "<group>"; };
		BBB169C81E82762A0058BF1E /* ucnv_set.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv_set.c; sourceTree = "<group>"; };
		BBB169C91E82762A0058BF1E /* ucnv_u7.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv_u7.c; sourceTree = "<group>"; };
		BBB169CA1E82762A0058BF1E /* ucnv_u8.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv_u8.c; sourceTree = "<group>"; };
		BBB169CB1E82762A0058BF1E /* ucnv_u16.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv_u16.c; sourceTree = "<group>"; };
		BBB169CC1E82762A0058BF1E /* ucnv_u32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv_u32.c; sourceTree = "<group>"; };
		BBB169CD1E82762A0058BF1E /* ucnv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnv.c; sourceTree = "<group>"; };
		BBB169CE1E82762A0058BF1E /* ucnv2022.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucnv2022.cpp; sourceTree = "<group>"; };
		BBB169CF1E82762A0058BF1E /* ucnvbocu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucnvbocu.cpp; sourceTree = "<group>"; };
		BBB169D01E82762A0058BF1E /* ucnvdisp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnvdisp.c; sourceTree = "<group>"; };
		BBB169D11E82762A0058BF1E /* ucnvhz.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnvhz.c; sourceTree = "<group>"; };
		BBB169D21E82762A0058BF1E /* ucnvisci.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnvisci.c; sourceTree = "<group>"; };
		BBB169D31E82762A0058BF1E /* ucnvlat1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnvlat1.c; sourceTree = "<group>"; };
		BBB169D41E82762A0058BF1E /* ucnvmbcs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucnvmbcs.cpp; sourceTree = "<group>"; };
		BBB169D51E82762A0058BF1E /* ucnvmbcs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucnvmbcs.h; sourceTree = "<group>"; };
		BBB169D61E82762A0058BF1E /* ucnvscsu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ucnvscsu.c; sourceTree = "<group>"; };
		BBB169D71E82762A0058BF1E /* ucnvsel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucnvsel.cpp; sourceTree = "<group>"; };
		BBB169D81E82762A0058BF1E /* ucol_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucol_data.h; sourceTree = "<group>"; };
		BBB169D91E82762A0058BF1E /* ucol_swp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucol_swp.cpp; sourceTree = "<group>"; };
		BBB169DA1E82762A0058BF1E /* ucol_swp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucol_swp.h; sourceTree = "<group>"; };
		BBB169DB1E82762A0058BF1E /* ucurr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ucurr.cpp; sourceTree = "<group>"; };
		BBB169DC1E82762A0058BF1E /* ucurrimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucurrimp.h; sourceTree = "<group>"; };
		BBB169DD1E82762A0058BF1E /* udata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = udata.cpp; sourceTree = "<group>"; };
		BBB169DE1E82762A0058BF1E /* udatamem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = udatamem.c; sourceTree = "<group>"; };
		BBB169DF1E82762A0058BF1E /* udatamem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udatamem.h; sourceTree = "<group>"; };
		BBB169E01E82762A0058BF1E /* udataswp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = udataswp.c; sourceTree = "<group>"; };
		BBB169E11E82762A0058BF1E /* udataswp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udataswp.h; sourceTree = "<group>"; };
		BBB169E21E82762A0058BF1E /* uelement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uelement.h; sourceTree = "<group>"; };
		BBB169E31E82762A0058BF1E /* uenum.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uenum.c; sourceTree = "<group>"; };
		BBB169E41E82762A0058BF1E /* uenumimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uenumimp.h; sourceTree = "<group>"; };
		BBB169E51E82762A0058BF1E /* uhash_us.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uhash_us.cpp; sourceTree = "<group>"; };
		BBB169E61E82762A0058BF1E /* uhash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uhash.c; sourceTree = "<group>"; };
		BBB169E71E82762A0058BF1E /* uhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uhash.h; sourceTree = "<group>"; };
		BBB169E81E82762A0058BF1E /* uidna.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uidna.cpp; sourceTree = "<group>"; };
		BBB169E91E82762A0058BF1E /* uinit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uinit.cpp; sourceTree = "<group>"; };
		BBB169EA1E82762A0058BF1E /* uinvchar.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uinvchar.c; sourceTree = "<group>"; };
		BBB169EB1E82762A0058BF1E /* uinvchar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uinvchar.h; sourceTree = "<group>"; };
		BBB169EC1E82762A0058BF1E /* uiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uiter.cpp; sourceTree = "<group>"; };
		BBB169ED1E82762A0058BF1E /* ulist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ulist.c; sourceTree = "<group>"; };
		BBB169EE1E82762A0058BF1E /* ulist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ulist.h; sourceTree = "<group>"; };
		BBB169EF1E82762A0058BF1E /* ulistformatter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ulistformatter.cpp; sourceTree = "<group>"; };
		BBB169F01E82762A0058BF1E /* uloc_keytype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uloc_keytype.cpp; sourceTree = "<group>"; };
		BBB169F11E82762A0058BF1E /* uloc_tag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uloc_tag.c; sourceTree = "<group>"; };
		BBB169F21E82762A0058BF1E /* uloc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uloc.cpp; sourceTree = "<group>"; };
		BBB169F31E82762A0058BF1E /* ulocimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ulocimp.h; sourceTree = "<group>"; };
		BBB169F41E82762A0058BF1E /* umapfile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = umapfile.c; sourceTree = "<group>"; };
		BBB169F51E82762A0058BF1E /* umapfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = umapfile.h; sourceTree = "<group>"; };
		BBB169F61E82762A0058BF1E /* umath.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = umath.c; sourceTree = "<group>"; };
		BBB169F71E82762A0058BF1E /* umutex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = umutex.cpp; sourceTree = "<group>"; };
		BBB169F81E82762A0058BF1E /* umutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = umutex.h; sourceTree = "<group>"; };
		BBB169F91E82762A0058BF1E /* unames.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unames.cpp; sourceTree = "<group>"; };
		BBB169FA1E82762A0058BF1E /* unifiedcache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unifiedcache.cpp; sourceTree = "<group>"; };
		BBB169FB1E82762A0058BF1E /* unifiedcache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unifiedcache.h; sourceTree = "<group>"; };
		BBB169FC1E82762A0058BF1E /* unifilt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unifilt.cpp; sourceTree = "<group>"; };
		BBB169FD1E82762A0058BF1E /* unifunct.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unifunct.cpp; sourceTree = "<group>"; };
		BBB169FE1E82762A0058BF1E /* uniset_closure.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uniset_closure.cpp; sourceTree = "<group>"; };
		BBB169FF1E82762A0058BF1E /* uniset_props.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uniset_props.cpp; sourceTree = "<group>"; };
		BBB16A001E82762A0058BF1E /* uniset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uniset.cpp; sourceTree = "<group>"; };
		BBB16A011E82762A0058BF1E /* unisetspan.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unisetspan.cpp; sourceTree = "<group>"; };
		BBB16A021E82762A0058BF1E /* unisetspan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unisetspan.h; sourceTree = "<group>"; };
		BBB16A031E82762A0058BF1E /* unistr_case_locale.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unistr_case_locale.cpp; sourceTree = "<group>"; };
		BBB16A041E82762A0058BF1E /* unistr_case.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unistr_case.cpp; sourceTree = "<group>"; };
		BBB16A051E82762A0058BF1E /* unistr_cnv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unistr_cnv.cpp; sourceTree = "<group>"; };
		BBB16A061E82762A0058BF1E /* unistr_props.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unistr_props.cpp; sourceTree = "<group>"; };
		BBB16A071E82762A0058BF1E /* unistr_titlecase_brkiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unistr_titlecase_brkiter.cpp; sourceTree = "<group>"; };
		BBB16A081E82762A0058BF1E /* unistr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unistr.cpp; sourceTree = "<group>"; };
		BBB16A091E82762A0058BF1E /* unistrappender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unistrappender.h; sourceTree = "<group>"; };
		BBB16A0A1E82762A0058BF1E /* unorm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unorm.cpp; sourceTree = "<group>"; };
		BBB16A0B1E82762A0058BF1E /* unormcmp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unormcmp.cpp; sourceTree = "<group>"; };
		BBB16A0C1E82762A0058BF1E /* unormimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unormimp.h; sourceTree = "<group>"; };
		BBB16A0D1E82762A0058BF1E /* uobject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uobject.cpp; sourceTree = "<group>"; };
		BBB16A0E1E82762A0058BF1E /* uposixdefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uposixdefs.h; sourceTree = "<group>"; };
		BBB16A0F1E82762A0058BF1E /* uprops.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uprops.cpp; sourceTree = "<group>"; };
		BBB16A101E82762A0058BF1E /* uprops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uprops.h; sourceTree = "<group>"; };
		BBB16A111E82762A0058BF1E /* ures_cnv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ures_cnv.c; sourceTree = "<group>"; };
		BBB16A121E82762A0058BF1E /* uresbund.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uresbund.cpp; sourceTree = "<group>"; };
		BBB16A131E82762A0058BF1E /* uresdata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uresdata.cpp; sourceTree = "<group>"; };
		BBB16A141E82762A0058BF1E /* uresdata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uresdata.h; sourceTree = "<group>"; };
		BBB16A151E82762A0058BF1E /* uresimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uresimp.h; sourceTree = "<group>"; };
		BBB16A161E82762A0058BF1E /* ureslocs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ureslocs.h; sourceTree = "<group>"; };
		BBB16A171E82762A0058BF1E /* usc_impl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = usc_impl.c; sourceTree = "<group>"; };
		BBB16A181E82762A0058BF1E /* usc_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = usc_impl.h; sourceTree = "<group>"; };
		BBB16A191E82762A0058BF1E /* uscript_props.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uscript_props.cpp; sourceTree = "<group>"; };
		BBB16A1A1E82762A0058BF1E /* uscript.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uscript.c; sourceTree = "<group>"; };
		BBB16A1B1E82762A0058BF1E /* uset_imp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uset_imp.h; sourceTree = "<group>"; };
		BBB16A1C1E82762A0058BF1E /* uset_props.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uset_props.cpp; sourceTree = "<group>"; };
		BBB16A1D1E82762A0058BF1E /* uset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uset.cpp; sourceTree = "<group>"; };
		BBB16A1E1E82762A0058BF1E /* usetiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = usetiter.cpp; sourceTree = "<group>"; };
		BBB16A1F1E82762A0058BF1E /* ushape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ushape.cpp; sourceTree = "<group>"; };
		BBB16A201E82762A0058BF1E /* usprep.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = usprep.cpp; sourceTree = "<group>"; };
		BBB16A211E82762A0058BF1E /* ustack.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ustack.cpp; sourceTree = "<group>"; };
		BBB16A221E82762A0058BF1E /* ustr_cnv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ustr_cnv.cpp; sourceTree = "<group>"; };
		BBB16A231E82762A0058BF1E /* ustr_cnv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ustr_cnv.h; sourceTree = "<group>"; };
		BBB16A241E82762A0058BF1E /* ustr_imp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ustr_imp.h; sourceTree = "<group>"; };
		BBB16A251E82762A0058BF1E /* ustr_titlecase_brkiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ustr_titlecase_brkiter.cpp; sourceTree = "<group>"; };
		BBB16A261E82762A0058BF1E /* ustr_wcs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ustr_wcs.cpp; sourceTree = "<group>"; };
		BBB16A271E82762A0058BF1E /* ustrcase_locale.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ustrcase_locale.cpp; sourceTree = "<group>"; };
		BBB16A281E82762A0058BF1E /* ustrcase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ustrcase.cpp; sourceTree = "<group>"; };
		BBB16A291E82762A0058BF1E /* ustrenum.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ustrenum.cpp; sourceTree = "<group>"; };
		BBB16A2A1E82762A0058BF1E /* ustrenum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ustrenum.h; sourceTree = "<group>"; };
		BBB16A2B1E82762A0058BF1E /* ustrfmt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ustrfmt.c; sourceTree = "<group>"; };
		BBB16A2C1E82762A0058BF1E /* ustrfmt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ustrfmt.h; sourceTree = "<group>"; };
		BBB16A2D1E82762A0058BF1E /* ustring.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ustring.cpp; sourceTree = "<group>"; };
		BBB16A2E1E82762A0058BF1E /* ustrtrns.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ustrtrns.cpp; sourceTree = "<group>"; };
		BBB16A2F1E82762A0058BF1E /* utext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utext.cpp; sourceTree = "<group>"; };
		BBB16A301E82762A0058BF1E /* utf_impl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utf_impl.c; sourceTree = "<group>"; };
		BBB16A311E82762A0058BF1E /* util_props.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = util_props.cpp; sourceTree = "<group>"; };
		BBB16A321E82762A0058BF1E /* util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = util.cpp; sourceTree = "<group>"; };
		BBB16A331E82762A0058BF1E /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
		BBB16A341E82762A0058BF1E /* utrace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utrace.c; sourceTree = "<group>"; };
		BBB16A351E82762A0058BF1E /* utracimp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utracimp.h; sourceTree = "<group>"; };
		BBB16A361E82762A0058BF1E /* utrie.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utrie.cpp; sourceTree = "<group>"; };
		BBB16A371E82762A0058BF1E /* utrie.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utrie.h; sourceTree = "<group>"; };
		BBB16A381E82762A0058BF1E /* utrie2_builder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utrie2_builder.cpp; sourceTree = "<group>"; };
		BBB16A391E82762A0058BF1E /* utrie2_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utrie2_impl.h; sourceTree = "<group>"; };
		BBB16A3A1E82762A0058BF1E /* utrie2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utrie2.cpp; sourceTree = "<group>"; };
		BBB16A3B1E82762A0058BF1E /* utrie2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utrie2.h; sourceTree = "<group>"; };
		BBB16A3C1E82762A0058BF1E /* uts46.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uts46.cpp; sourceTree = "<group>"; };
		BBB16A3D1E82762A0058BF1E /* utypeinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utypeinfo.h; sourceTree = "<group>"; };
		BBB16A3E1E82762A0058BF1E /* utypes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utypes.c; sourceTree = "<group>"; };
		BBB16A3F1E82762A0058BF1E /* uvector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uvector.cpp; sourceTree = "<group>"; };
		BBB16A401E82762A0058BF1E /* uvector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uvector.h; sourceTree = "<group>"; };
		BBB16A411E82762A0058BF1E /* uvectr32.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uvectr32.cpp; sourceTree = "<group>"; };
		BBB16A421E82762A0058BF1E /* uvectr32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uvectr32.h; sourceTree = "<group>"; };
		BBB16A431E82762A0058BF1E /* uvectr64.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uvectr64.cpp; sourceTree = "<group>"; };
		BBB16A441E82762A0058BF1E /* uvectr64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uvectr64.h; sourceTree = "<group>"; };
		BBB16A451E82762A0058BF1E /* wintz.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = wintz.c; sourceTree = "<group>"; };
		BBB16A461E82762A0058BF1E /* wintz.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wintz.h; sourceTree = "<group>"; };
		BBB16B621E8276480058BF1E /* appendable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = appendable.h; sourceTree = "<group>"; };
		BBB16B631E8276480058BF1E /* brkiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = brkiter.h; sourceTree = "<group>"; };
		BBB16B641E8276480058BF1E /* bytestream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bytestream.h; sourceTree = "<group>"; };
		BBB16B651E8276480058BF1E /* bytestrie.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bytestrie.h; sourceTree = "<group>"; };
		BBB16B661E8276480058BF1E /* bytestriebuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bytestriebuilder.h; sourceTree = "<group>"; };
		BBB16B671E8276480058BF1E /* caniter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = caniter.h; sourceTree = "<group>"; };
		BBB16B681E8276480058BF1E /* chariter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chariter.h; sourceTree = "<group>"; };
		BBB16B691E8276480058BF1E /* dbbi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dbbi.h; sourceTree = "<group>"; };
		BBB16B6A1E8276480058BF1E /* docmain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = docmain.h; sourceTree = "<group>"; };
		BBB16B6B1E8276480058BF1E /* dtintrv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtintrv.h; sourceTree = "<group>"; };
		BBB16B6C1E8276480058BF1E /* enumset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = enumset.h; sourceTree = "<group>"; };
		BBB16B6D1E8276480058BF1E /* errorcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = errorcode.h; sourceTree = "<group>"; };
		BBB16B6E1E8276480058BF1E /* filteredbrk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filteredbrk.h; sourceTree = "<group>"; };
		BBB16B6F1E8276480058BF1E /* icudataver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icudataver.h; sourceTree = "<group>"; };
		BBB16B701E8276480058BF1E /* icuplug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icuplug.h; sourceTree = "<group>"; };
		BBB16B711E8276480058BF1E /* idna.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idna.h; sourceTree = "<group>"; };
		BBB16B721E8276480058BF1E /* listformatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = listformatter.h; sourceTree = "<group>"; };
		BBB16B731E8276480058BF1E /* localpointer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = localpointer.h; sourceTree = "<group>"; };
		BBB16B741E8276480058BF1E /* locdspnm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = locdspnm.h; sourceTree = "<group>"; };
		BBB16B751E8276480058BF1E /* locid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = locid.h; sourceTree = "<group>"; };
		BBB16B761E8276480058BF1E /* messagepattern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagepattern.h; sourceTree = "<group>"; };
		BBB16B771E8276480058BF1E /* normalizer2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = normalizer2.h; sourceTree = "<group>"; };
		BBB16B781E8276480058BF1E /* normlzr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = normlzr.h; sourceTree = "<group>"; };
		BBB16B791E8276480058BF1E /* parseerr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = parseerr.h; sourceTree = "<group>"; };
		BBB16B7A1E8276480058BF1E /* parsepos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = parsepos.h; sourceTree = "<group>"; };
		BBB16B7B1E8276480058BF1E /* platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platform.h; sourceTree = "<group>"; };
		BBB16B7C1E8276480058BF1E /* ptypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ptypes.h; sourceTree = "<group>"; };
		BBB16B7D1E8276480058BF1E /* putil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = putil.h; sourceTree = "<group>"; };
		BBB16B7E1E8276480058BF1E /* rbbi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rbbi.h; sourceTree = "<group>"; };
		BBB16B7F1E8276480058BF1E /* rep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rep.h; sourceTree = "<group>"; };
		BBB16B801E8276480058BF1E /* resbund.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resbund.h; sourceTree = "<group>"; };
		BBB16B811E8276480058BF1E /* schriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = schriter.h; sourceTree = "<group>"; };
		BBB16B821E8276480058BF1E /* simpleformatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = simpleformatter.h; sourceTree = "<group>"; };
		BBB16B831E8276480058BF1E /* std_string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = std_string.h; sourceTree = "<group>"; };
		BBB16B841E8276480058BF1E /* strenum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strenum.h; sourceTree = "<group>"; };
		BBB16B851E8276480058BF1E /* stringpiece.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stringpiece.h; sourceTree = "<group>"; };
		BBB16B861E8276480058BF1E /* stringtriebuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stringtriebuilder.h; sourceTree = "<group>"; };
		BBB16B871E8276480058BF1E /* symtable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symtable.h; sourceTree = "<group>"; };
		BBB16B881E8276480058BF1E /* ubidi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ubidi.h; sourceTree = "<group>"; };
		BBB16B891E8276480058BF1E /* ubrk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ubrk.h; sourceTree = "<group>"; };
		BBB16B8A1E8276480058BF1E /* ucasemap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucasemap.h; sourceTree = "<group>"; };
		BBB16B8B1E8276480058BF1E /* ucat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucat.h; sourceTree = "<group>"; };
		BBB16B8C1E8276480058BF1E /* uchar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uchar.h; sourceTree = "<group>"; };
		BBB16B8D1E8276480058BF1E /* ucharstrie.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucharstrie.h; sourceTree = "<group>"; };
		BBB16B8E1E8276480058BF1E /* ucharstriebuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucharstriebuilder.h; sourceTree = "<group>"; };
		BBB16B8F1E8276480058BF1E /* uchriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uchriter.h; sourceTree = "<group>"; };
		BBB16B901E8276480058BF1E /* uclean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uclean.h; sourceTree = "<group>"; };
		BBB16B911E8276480058BF1E /* ucnv_cb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucnv_cb.h; sourceTree = "<group>"; };
		BBB16B921E8276480058BF1E /* ucnv_err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucnv_err.h; sourceTree = "<group>"; };
		BBB16B931E8276480058BF1E /* ucnv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucnv.h; sourceTree = "<group>"; };
		BBB16B941E8276480058BF1E /* ucnvsel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucnvsel.h; sourceTree = "<group>"; };
		BBB16B951E8276480058BF1E /* uconfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uconfig.h; sourceTree = "<group>"; };
		BBB16B961E8276480058BF1E /* ucurr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ucurr.h; sourceTree = "<group>"; };
		BBB16B971E8276480058BF1E /* udata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udata.h; sourceTree = "<group>"; };
		BBB16B981E8276480058BF1E /* udisplaycontext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udisplaycontext.h; sourceTree = "<group>"; };
		BBB16B991E8276480058BF1E /* uenum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uenum.h; sourceTree = "<group>"; };
		BBB16B9A1E8276480058BF1E /* uidna.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uidna.h; sourceTree = "<group>"; };
		BBB16B9B1E8276480058BF1E /* uiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uiter.h; sourceTree = "<group>"; };
		BBB16B9C1E8276480058BF1E /* uldnames.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uldnames.h; sourceTree = "<group>"; };
		BBB16B9D1E8276480058BF1E /* ulistformatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ulistformatter.h; sourceTree = "<group>"; };
		BBB16B9E1E8276480058BF1E /* uloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uloc.h; sourceTree = "<group>"; };
		BBB16B9F1E8276480058BF1E /* umachine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = umachine.h; sourceTree = "<group>"; };
		BBB16BA01E8276480058BF1E /* umisc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = umisc.h; sourceTree = "<group>"; };
		BBB16BA11E8276480058BF1E /* unifilt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unifilt.h; sourceTree = "<group>"; };
		BBB16BA21E8276480058BF1E /* unifunct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unifunct.h; sourceTree = "<group>"; };
		BBB16BA31E8276480058BF1E /* unimatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unimatch.h; sourceTree = "<group>"; };
		BBB16BA41E8276480058BF1E /* uniset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uniset.h; sourceTree = "<group>"; };
		BBB16BA51E8276480058BF1E /* unistr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unistr.h; sourceTree = "<group>"; };
		BBB16BA61E8276480058BF1E /* unorm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unorm.h; sourceTree = "<group>"; };
		BBB16BA71E8276480058BF1E /* unorm2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unorm2.h; sourceTree = "<group>"; };
		BBB16BA81E8276480058BF1E /* uobject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uobject.h; sourceTree = "<group>"; };
		BBB16BA91E8276480058BF1E /* urename.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = urename.h; sourceTree = "<group>"; };
		BBB16BAA1E8276480058BF1E /* urep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = urep.h; sourceTree = "<group>"; };
		BBB16BAB1E8276480058BF1E /* ures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ures.h; sourceTree = "<group>"; };
		BBB16BAC1E8276480058BF1E /* uscript.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uscript.h; sourceTree = "<group>"; };
		BBB16BAD1E8276480058BF1E /* uset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uset.h; sourceTree = "<group>"; };
		BBB16BAE1E8276480058BF1E /* usetiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = usetiter.h; sourceTree = "<group>"; };
		BBB16BAF1E8276480058BF1E /* ushape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ushape.h; sourceTree = "<group>"; };
		BBB16BB01E8276480058BF1E /* usprep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = usprep.h; sourceTree = "<group>"; };
		BBB16BB11E8276480058BF1E /* ustring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ustring.h; sourceTree = "<group>"; };
		BBB16BB21E8276480058BF1E /* ustringtrie.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ustringtrie.h; sourceTree = "<group>"; };
		BBB16BB31E8276480058BF1E /* utext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utext.h; sourceTree = "<group>"; };
		BBB16BB41E8276480058BF1E /* utf_old.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utf_old.h; sourceTree = "<group>"; };
		BBB16BB51E8276480058BF1E /* utf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utf.h; sourceTree = "<group>"; };
		BBB16BB61E8276480058BF1E /* utf8.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utf8.h; sourceTree = "<group>"; };
		BBB16BB71E8276480058BF1E /* utf16.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utf16.h; sourceTree = "<group>"; };
		BBB16BB81E8276480058BF1E /* utf32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utf32.h; sourceTree = "<group>"; };
		BBB16BB91E8276480058BF1E /* utrace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utrace.h; sourceTree = "<group>"; };
		BBB16BBA1E8276480058BF1E /* utypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utypes.h; sourceTree = "<group>"; };
		BBB16BBB1E8276480058BF1E /* uvernum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uvernum.h; sourceTree = "<group>"; };
		BBB16BBC1E8276480058BF1E /* uversion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uversion.h; sourceTree = "<group>"; };
		BBB16C181E82765C0058BF1E /* stubdata.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stubdata.c; sourceTree = "<group>"; };
		BBB16C1A1E8276A50058BF1E /* common-debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "common-debug.xcconfig"; path = "../common-debug.xcconfig"; sourceTree = "<group>"; };
		BBB16C1B1E8276A50058BF1E /* common-release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "common-release.xcconfig"; path = "../common-release.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		BBB165D41E8275120058BF1E /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		BBB165CE1E8275120058BF1E = {
			isa = PBXGroup;
			children = (
				BBB16C1A1E8276A50058BF1E /* common-debug.xcconfig */,
				BBB16C1B1E8276A50058BF1E /* common-release.xcconfig */,
				BBB165D91E8275120058BF1E /* icu */,
				BBB165D81E8275120058BF1E /* Products */,
			);
			sourceTree = "<group>";
		};
		BBB165D81E8275120058BF1E /* Products */ = {
			isa = PBXGroup;
			children = (
				BBB165D71E8275120058BF1E /* libicu.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		BBB165D91E8275120058BF1E /* icu */ = {
			isa = PBXGroup;
			children = (
				BBB165E71E82758B0058BF1E /* stubdata */,
				BBB165E61E8275860058BF1E /* common */,
				BBB165E51E82757F0058BF1E /* i18n */,
			);
			name = icu;
			path = ../../3party/icu;
			sourceTree = "<group>";
		};
		BBB165E51E82757F0058BF1E /* i18n */ = {
			isa = PBXGroup;
			children = (
				BBB1688F1E8275E30058BF1E /* unicode */,
				BBB165E81E8275DC0058BF1E /* affixpatternparser.cpp */,
				BBB165E91E8275DC0058BF1E /* affixpatternparser.h */,
				BBB165EA1E8275DC0058BF1E /* alphaindex.cpp */,
				BBB165EB1E8275DC0058BF1E /* anytrans.cpp */,
				BBB165EC1E8275DC0058BF1E /* anytrans.h */,
				BBB165ED1E8275DC0058BF1E /* astro.cpp */,
				BBB165EE1E8275DC0058BF1E /* astro.h */,
				BBB165EF1E8275DC0058BF1E /* basictz.cpp */,
				BBB165F01E8275DC0058BF1E /* bocsu.cpp */,
				BBB165F11E8275DC0058BF1E /* bocsu.h */,
				BBB165F21E8275DC0058BF1E /* brktrans.cpp */,
				BBB165F31E8275DC0058BF1E /* brktrans.h */,
				BBB165F41E8275DC0058BF1E /* buddhcal.cpp */,
				BBB165F51E8275DC0058BF1E /* buddhcal.h */,
				BBB165F61E8275DC0058BF1E /* calendar.cpp */,
				BBB165F71E8275DC0058BF1E /* casetrn.cpp */,
				BBB165F81E8275DC0058BF1E /* casetrn.h */,
				BBB165F91E8275DC0058BF1E /* cecal.cpp */,
				BBB165FA1E8275DC0058BF1E /* cecal.h */,
				BBB165FB1E8275DC0058BF1E /* chnsecal.cpp */,
				BBB165FC1E8275DC0058BF1E /* chnsecal.h */,
				BBB165FD1E8275DC0058BF1E /* choicfmt.cpp */,
				BBB165FE1E8275DC0058BF1E /* coleitr.cpp */,
				BBB165FF1E8275DC0058BF1E /* coll.cpp */,
				BBB166001E8275DC0058BF1E /* collation.cpp */,
				BBB166011E8275DC0058BF1E /* collation.h */,
				BBB166021E8275DC0058BF1E /* collationbuilder.cpp */,
				BBB166031E8275DC0058BF1E /* collationbuilder.h */,
				BBB166041E8275DD0058BF1E /* collationcompare.cpp */,
				BBB166051E8275DD0058BF1E /* collationcompare.h */,
				BBB166061E8275DD0058BF1E /* collationdata.cpp */,
				BBB166071E8275DD0058BF1E /* collationdata.h */,
				BBB166081E8275DD0058BF1E /* collationdatabuilder.cpp */,
				BBB166091E8275DD0058BF1E /* collationdatabuilder.h */,
				BBB1660A1E8275DD0058BF1E /* collationdatareader.cpp */,
				BBB1660B1E8275DD0058BF1E /* collationdatareader.h */,
				BBB1660C1E8275DD0058BF1E /* collationdatawriter.cpp */,
				BBB1660D1E8275DD0058BF1E /* collationdatawriter.h */,
				BBB1660E1E8275DD0058BF1E /* collationfastlatin.cpp */,
				BBB1660F1E8275DD0058BF1E /* collationfastlatin.h */,
				BBB166101E8275DD0058BF1E /* collationfastlatinbuilder.cpp */,
				BBB166111E8275DD0058BF1E /* collationfastlatinbuilder.h */,
				BBB166121E8275DD0058BF1E /* collationfcd.cpp */,
				BBB166131E8275DD0058BF1E /* collationfcd.h */,
				BBB166141E8275DD0058BF1E /* collationiterator.cpp */,
				BBB166151E8275DD0058BF1E /* collationiterator.h */,
				BBB166161E8275DD0058BF1E /* collationkeys.cpp */,
				BBB166171E8275DD0058BF1E /* collationkeys.h */,
				BBB166181E8275DD0058BF1E /* collationroot.cpp */,
				BBB166191E8275DD0058BF1E /* collationroot.h */,
				BBB1661A1E8275DD0058BF1E /* collationrootelements.cpp */,
				BBB1661B1E8275DD0058BF1E /* collationrootelements.h */,
				BBB1661C1E8275DD0058BF1E /* collationruleparser.cpp */,
				BBB1661D1E8275DD0058BF1E /* collationruleparser.h */,
				BBB1661E1E8275DD0058BF1E /* collationsets.cpp */,
				BBB1661F1E8275DD0058BF1E /* collationsets.h */,
				BBB166201E8275DD0058BF1E /* collationsettings.cpp */,
				BBB166211E8275DD0058BF1E /* collationsettings.h */,
				BBB166221E8275DD0058BF1E /* collationtailoring.cpp */,
				BBB166231E8275DD0058BF1E /* collationtailoring.h */,
				BBB166241E8275DD0058BF1E /* collationweights.cpp */,
				BBB166251E8275DD0058BF1E /* collationweights.h */,
				BBB166261E8275DD0058BF1E /* collunsafe.h */,
				BBB166271E8275DD0058BF1E /* compactdecimalformat.cpp */,
				BBB166281E8275DD0058BF1E /* coptccal.cpp */,
				BBB166291E8275DD0058BF1E /* coptccal.h */,
				BBB1662A1E8275DD0058BF1E /* cpdtrans.cpp */,
				BBB1662B1E8275DD0058BF1E /* cpdtrans.h */,
				BBB1662C1E8275DD0058BF1E /* csdetect.cpp */,
				BBB1662D1E8275DD0058BF1E /* csdetect.h */,
				BBB1662E1E8275DD0058BF1E /* csmatch.cpp */,
				BBB1662F1E8275DD0058BF1E /* csmatch.h */,
				BBB166301E8275DD0058BF1E /* csr2022.cpp */,
				BBB166311E8275DD0058BF1E /* csr2022.h */,
				BBB166321E8275DD0058BF1E /* csrecog.cpp */,
				BBB166331E8275DD0058BF1E /* csrecog.h */,
				BBB166341E8275DD0058BF1E /* csrmbcs.cpp */,
				BBB166351E8275DD0058BF1E /* csrmbcs.h */,
				BBB166361E8275DD0058BF1E /* csrsbcs.cpp */,
				BBB166371E8275DD0058BF1E /* csrsbcs.h */,
				BBB166381E8275DD0058BF1E /* csrucode.cpp */,
				BBB166391E8275DD0058BF1E /* csrucode.h */,
				BBB1663A1E8275DD0058BF1E /* csrutf8.cpp */,
				BBB1663B1E8275DD0058BF1E /* csrutf8.h */,
				BBB1663C1E8275DD0058BF1E /* curramt.cpp */,
				BBB1663D1E8275DD0058BF1E /* currfmt.cpp */,
				BBB1663E1E8275DD0058BF1E /* currfmt.h */,
				BBB1663F1E8275DD0058BF1E /* currpinf.cpp */,
				BBB166401E8275DD0058BF1E /* currunit.cpp */,
				BBB166411E8275DD0058BF1E /* dangical.cpp */,
				BBB166421E8275DD0058BF1E /* dangical.h */,
				BBB166431E8275DD0058BF1E /* datefmt.cpp */,
				BBB166441E8275DD0058BF1E /* dayperiodrules.cpp */,
				BBB166451E8275DD0058BF1E /* dayperiodrules.h */,
				BBB166461E8275DD0058BF1E /* dcfmtimp.h */,
				BBB166471E8275DD0058BF1E /* dcfmtsym.cpp */,
				BBB166481E8275DD0058BF1E /* decContext.c */,
				BBB166491E8275DD0058BF1E /* decContext.h */,
				BBB1664A1E8275DD0058BF1E /* decfmtst.cpp */,
				BBB1664B1E8275DD0058BF1E /* decfmtst.h */,
				BBB1664C1E8275DD0058BF1E /* decimalformatpattern.cpp */,
				BBB1664D1E8275DD0058BF1E /* decimalformatpattern.h */,
				BBB1664E1E8275DD0058BF1E /* decimalformatpatternimpl.h */,
				BBB1664F1E8275DD0058BF1E /* decimfmt.cpp */,
				BBB166501E8275DD0058BF1E /* decimfmtimpl.cpp */,
				BBB166511E8275DD0058BF1E /* decimfmtimpl.h */,
				BBB166521E8275DD0058BF1E /* decNumber.c */,
				BBB166531E8275DD0058BF1E /* decNumber.h */,
				BBB166541E8275DD0058BF1E /* decNumberLocal.h */,
				BBB166551E8275DD0058BF1E /* digitaffix.cpp */,
				BBB166561E8275DD0058BF1E /* digitaffix.h */,
				BBB166571E8275DD0058BF1E /* digitaffixesandpadding.cpp */,
				BBB166581E8275DD0058BF1E /* digitaffixesandpadding.h */,
				BBB166591E8275DD0058BF1E /* digitformatter.cpp */,
				BBB1665A1E8275DD0058BF1E /* digitformatter.h */,
				BBB1665B1E8275DD0058BF1E /* digitgrouping.cpp */,
				BBB1665C1E8275DD0058BF1E /* digitgrouping.h */,
				BBB1665D1E8275DD0058BF1E /* digitinterval.cpp */,
				BBB1665E1E8275DD0058BF1E /* digitinterval.h */,
				BBB1665F1E8275DD0058BF1E /* digitlst.cpp */,
				BBB166601E8275DD0058BF1E /* digitlst.h */,
				BBB166611E8275DD0058BF1E /* dtfmtsym.cpp */,
				BBB166621E8275DD0058BF1E /* dtitv_impl.h */,
				BBB166631E8275DD0058BF1E /* dtitvfmt.cpp */,
				BBB166641E8275DD0058BF1E /* dtitvinf.cpp */,
				BBB166651E8275DD0058BF1E /* dtptngen_impl.h */,
				BBB166661E8275DD0058BF1E /* dtptngen.cpp */,
				BBB166671E8275DD0058BF1E /* dtrule.cpp */,
				BBB166681E8275DD0058BF1E /* esctrn.cpp */,
				BBB166691E8275DD0058BF1E /* esctrn.h */,
				BBB1666A1E8275DD0058BF1E /* ethpccal.cpp */,
				BBB1666B1E8275DD0058BF1E /* ethpccal.h */,
				BBB1666C1E8275DD0058BF1E /* fmtable_cnv.cpp */,
				BBB1666D1E8275DD0058BF1E /* fmtable.cpp */,
				BBB1666E1E8275DD0058BF1E /* fmtableimp.h */,
				BBB1666F1E8275DD0058BF1E /* format.cpp */,
				BBB166701E8275DD0058BF1E /* fphdlimp.cpp */,
				BBB166711E8275DD0058BF1E /* fphdlimp.h */,
				BBB166721E8275DD0058BF1E /* fpositer.cpp */,
				BBB166731E8275DD0058BF1E /* funcrepl.cpp */,
				BBB166741E8275DD0058BF1E /* funcrepl.h */,
				BBB166751E8275DD0058BF1E /* gender.cpp */,
				BBB166761E8275DD0058BF1E /* gregocal.cpp */,
				BBB166771E8275DD0058BF1E /* gregoimp.cpp */,
				BBB166781E8275DD0058BF1E /* gregoimp.h */,
				BBB166791E8275DD0058BF1E /* hebrwcal.cpp */,
				BBB1667A1E8275DD0058BF1E /* hebrwcal.h */,
				BBB1667B1E8275DD0058BF1E /* identifier_info.cpp */,
				BBB1667C1E8275DD0058BF1E /* identifier_info.h */,
				BBB1667D1E8275DD0058BF1E /* indiancal.cpp */,
				BBB1667E1E8275DD0058BF1E /* indiancal.h */,
				BBB1667F1E8275DD0058BF1E /* inputext.cpp */,
				BBB166801E8275DD0058BF1E /* inputext.h */,
				BBB166811E8275DD0058BF1E /* islamcal.cpp */,
				BBB166821E8275DD0058BF1E /* islamcal.h */,
				BBB166831E8275DD0058BF1E /* japancal.cpp */,
				BBB166841E8275DD0058BF1E /* japancal.h */,
				BBB166851E8275DD0058BF1E /* measfmt.cpp */,
				BBB166861E8275DD0058BF1E /* measunit.cpp */,
				BBB166871E8275DD0058BF1E /* measure.cpp */,
				BBB166881E8275DD0058BF1E /* msgfmt_impl.h */,
				BBB166891E8275DD0058BF1E /* msgfmt.cpp */,
				BBB1668A1E8275DD0058BF1E /* name2uni.cpp */,
				BBB1668B1E8275DD0058BF1E /* name2uni.h */,
				BBB1668C1E8275DD0058BF1E /* nfrlist.h */,
				BBB1668D1E8275DD0058BF1E /* nfrs.cpp */,
				BBB1668E1E8275DD0058BF1E /* nfrs.h */,
				BBB1668F1E8275DD0058BF1E /* nfrule.cpp */,
				BBB166901E8275DD0058BF1E /* nfrule.h */,
				BBB166911E8275DD0058BF1E /* nfsubs.cpp */,
				BBB166921E8275DD0058BF1E /* nfsubs.h */,
				BBB166931E8275DD0058BF1E /* nortrans.cpp */,
				BBB166941E8275DD0058BF1E /* nortrans.h */,
				BBB166951E8275DD0058BF1E /* nultrans.cpp */,
				BBB166961E8275DD0058BF1E /* nultrans.h */,
				BBB166971E8275DD0058BF1E /* numfmt.cpp */,
				BBB166981E8275DD0058BF1E /* numsys_impl.h */,
				BBB166991E8275DD0058BF1E /* numsys.cpp */,
				BBB1669A1E8275DD0058BF1E /* olsontz.cpp */,
				BBB1669B1E8275DD0058BF1E /* olsontz.h */,
				BBB1669C1E8275DD0058BF1E /* persncal.cpp */,
				BBB1669D1E8275DD0058BF1E /* persncal.h */,
				BBB1669E1E8275DD0058BF1E /* pluralaffix.cpp */,
				BBB1669F1E8275DD0058BF1E /* pluralaffix.h */,
				BBB166A01E8275DD0058BF1E /* plurfmt.cpp */,
				BBB166A11E8275DD0058BF1E /* plurrule_impl.h */,
				BBB166A21E8275DD0058BF1E /* plurrule.cpp */,
				BBB166A31E8275DD0058BF1E /* precision.cpp */,
				BBB166A41E8275DD0058BF1E /* precision.h */,
				BBB166A51E8275DD0058BF1E /* quant.cpp */,
				BBB166A61E8275DD0058BF1E /* quant.h */,
				BBB166A71E8275DD0058BF1E /* quantityformatter.cpp */,
				BBB166A81E8275DD0058BF1E /* quantityformatter.h */,
				BBB166A91E8275DD0058BF1E /* rbnf.cpp */,
				BBB166AA1E8275DD0058BF1E /* rbt_data.cpp */,
				BBB166AB1E8275DD0058BF1E /* rbt_data.h */,
				BBB166AC1E8275DD0058BF1E /* rbt_pars.cpp */,
				BBB166AD1E8275DD0058BF1E /* rbt_pars.h */,
				BBB166AE1E8275DD0058BF1E /* rbt_rule.cpp */,
				BBB166AF1E8275DD0058BF1E /* rbt_rule.h */,
				BBB166B01E8275DD0058BF1E /* rbt_set.cpp */,
				BBB166B11E8275DD0058BF1E /* rbt_set.h */,
				BBB166B21E8275DD0058BF1E /* rbt.cpp */,
				BBB166B31E8275DD0058BF1E /* rbt.h */,
				BBB166B41E8275DD0058BF1E /* rbtz.cpp */,
				BBB166B51E8275DD0058BF1E /* regexcmp.cpp */,
				BBB166B61E8275DD0058BF1E /* regexcmp.h */,
				BBB166B71E8275DD0058BF1E /* regexcst.h */,
				BBB166B81E8275DD0058BF1E /* regexcst.pl */,
				BBB166B91E8275DD0058BF1E /* regeximp.cpp */,
				BBB166BA1E8275DD0058BF1E /* regeximp.h */,
				BBB166BB1E8275DD0058BF1E /* regexst.cpp */,
				BBB166BC1E8275DD0058BF1E /* regexst.h */,
				BBB166BD1E8275DD0058BF1E /* regextxt.cpp */,
				BBB166BE1E8275DD0058BF1E /* regextxt.h */,
				BBB166BF1E8275DD0058BF1E /* region_impl.h */,
				BBB166C01E8275DD0058BF1E /* region.cpp */,
				BBB166C11E8275DD0058BF1E /* reldatefmt.cpp */,
				BBB166C21E8275DD0058BF1E /* reldtfmt.cpp */,
				BBB166C31E8275DD0058BF1E /* reldtfmt.h */,
				BBB166C41E8275DD0058BF1E /* rematch.cpp */,
				BBB166C51E8275DD0058BF1E /* remtrans.cpp */,
				BBB166C61E8275DD0058BF1E /* remtrans.h */,
				BBB166C71E8275DD0058BF1E /* repattrn.cpp */,
				BBB166C81E8275DD0058BF1E /* rulebasedcollator.cpp */,
				BBB166C91E8275DD0058BF1E /* scientificnumberformatter.cpp */,
				BBB166CA1E8275DD0058BF1E /* scriptset.cpp */,
				BBB166CB1E8275DD0058BF1E /* scriptset.h */,
				BBB166CC1E8275DD0058BF1E /* search.cpp */,
				BBB166CD1E8275DD0058BF1E /* selfmt.cpp */,
				BBB166CE1E8275DD0058BF1E /* selfmtimpl.h */,
				BBB166CF1E8275DD0058BF1E /* sharedbreakiterator.cpp */,
				BBB166D01E8275DD0058BF1E /* sharedbreakiterator.h */,
				BBB166D11E8275DD0058BF1E /* sharedcalendar.h */,
				BBB166D21E8275DD0058BF1E /* shareddateformatsymbols.h */,
				BBB166D31E8275DD0058BF1E /* sharednumberformat.h */,
				BBB166D41E8275DD0058BF1E /* sharedpluralrules.h */,
				BBB166D51E8275DD0058BF1E /* significantdigitinterval.h */,
				BBB166D61E8275DD0058BF1E /* simpletz.cpp */,
				BBB166D71E8275DD0058BF1E /* smallintformatter.cpp */,
				BBB166D81E8275DD0058BF1E /* smallintformatter.h */,
				BBB166D91E8275DD0058BF1E /* smpdtfmt.cpp */,
				BBB166DA1E8275DD0058BF1E /* smpdtfst.cpp */,
				BBB166DB1E8275DD0058BF1E /* smpdtfst.h */,
				BBB166DC1E8275DD0058BF1E /* sortkey.cpp */,
				BBB166DD1E8275DD0058BF1E /* standardplural.cpp */,
				BBB166DE1E8275DD0058BF1E /* standardplural.h */,
				BBB166DF1E8275DD0058BF1E /* strmatch.cpp */,
				BBB166E01E8275DD0058BF1E /* strmatch.h */,
				BBB166E11E8275DD0058BF1E /* strrepl.cpp */,
				BBB166E21E8275DD0058BF1E /* strrepl.h */,
				BBB166E31E8275DD0058BF1E /* stsearch.cpp */,
				BBB166E41E8275DD0058BF1E /* taiwncal.cpp */,
				BBB166E51E8275DD0058BF1E /* taiwncal.h */,
				BBB166E61E8275DD0058BF1E /* timezone.cpp */,
				BBB166E71E8275DD0058BF1E /* titletrn.cpp */,
				BBB166E81E8275DD0058BF1E /* titletrn.h */,
				BBB166E91E8275DD0058BF1E /* tmunit.cpp */,
				BBB166EA1E8275DD0058BF1E /* tmutamt.cpp */,
				BBB166EB1E8275DD0058BF1E /* tmutfmt.cpp */,
				BBB166EC1E8275DD0058BF1E /* tolowtrn.cpp */,
				BBB166ED1E8275DD0058BF1E /* tolowtrn.h */,
				BBB166EE1E8275DD0058BF1E /* toupptrn.cpp */,
				BBB166EF1E8275DD0058BF1E /* toupptrn.h */,
				BBB166F01E8275DD0058BF1E /* translit.cpp */,
				BBB166F11E8275DD0058BF1E /* transreg.cpp */,
				BBB166F21E8275DD0058BF1E /* transreg.h */,
				BBB166F31E8275DD0058BF1E /* tridpars.cpp */,
				BBB166F41E8275DD0058BF1E /* tridpars.h */,
				BBB166F51E8275DD0058BF1E /* tzfmt.cpp */,
				BBB166F61E8275DD0058BF1E /* tzgnames.cpp */,
				BBB166F71E8275DD0058BF1E /* tzgnames.h */,
				BBB166F81E8275DD0058BF1E /* tznames_impl.cpp */,
				BBB166F91E8275DD0058BF1E /* tznames_impl.h */,
				BBB166FA1E8275DD0058BF1E /* tznames.cpp */,
				BBB166FB1E8275DD0058BF1E /* tzrule.cpp */,
				BBB166FC1E8275DD0058BF1E /* tztrans.cpp */,
				BBB166FD1E8275DD0058BF1E /* ucal.cpp */,
				BBB166FE1E8275DD0058BF1E /* ucln_in.cpp */,
				BBB166FF1E8275DD0058BF1E /* ucln_in.h */,
				BBB167001E8275DD0058BF1E /* ucol_imp.h */,
				BBB167011E8275DD0058BF1E /* ucol_res.cpp */,
				BBB167021E8275DD0058BF1E /* ucol_sit.cpp */,
				BBB167031E8275DD0058BF1E /* ucol.cpp */,
				BBB167041E8275DD0058BF1E /* ucoleitr.cpp */,
				BBB167051E8275DD0058BF1E /* ucsdet.cpp */,
				BBB167061E8275DD0058BF1E /* udat.cpp */,
				BBB167071E8275DD0058BF1E /* udateintervalformat.cpp */,
				BBB167081E8275DD0058BF1E /* udatpg.cpp */,
				BBB167091E8275DD0058BF1E /* ufieldpositer.cpp */,
				BBB1670A1E8275DD0058BF1E /* uitercollationiterator.cpp */,
				BBB1670B1E8275DD0058BF1E /* uitercollationiterator.h */,
				BBB1670C1E8275DD0058BF1E /* ulocdata.c */,
				BBB1670D1E8275DD0058BF1E /* umsg_imp.h */,
				BBB1670E1E8275DD0058BF1E /* umsg.cpp */,
				BBB1670F1E8275DD0058BF1E /* unesctrn.cpp */,
				BBB167101E8275DD0058BF1E /* unesctrn.h */,
				BBB167111E8275DD0058BF1E /* uni2name.cpp */,
				BBB167121E8275DD0058BF1E /* uni2name.h */,
				BBB167131E8275DD0058BF1E /* unum.cpp */,
				BBB167141E8275DD0058BF1E /* unumsys.cpp */,
				BBB167151E8275DD0058BF1E /* upluralrules.cpp */,
				BBB167161E8275DD0058BF1E /* uregex.cpp */,
				BBB167171E8275DD0058BF1E /* uregexc.cpp */,
				BBB167181E8275DD0058BF1E /* uregion.cpp */,
				BBB167191E8275DD0058BF1E /* usearch.cpp */,
				BBB1671A1E8275DD0058BF1E /* uspoof_build.cpp */,
				BBB1671B1E8275DD0058BF1E /* uspoof_conf.cpp */,
				BBB1671C1E8275DD0058BF1E /* uspoof_conf.h */,
				BBB1671D1E8275DD0058BF1E /* uspoof_impl.cpp */,
				BBB1671E1E8275DD0058BF1E /* uspoof_impl.h */,
				BBB1671F1E8275DD0058BF1E /* uspoof_wsconf.cpp */,
				BBB167201E8275DD0058BF1E /* uspoof_wsconf.h */,
				BBB167211E8275DD0058BF1E /* uspoof.cpp */,
				BBB167221E8275DD0058BF1E /* usrchimp.h */,
				BBB167231E8275DD0058BF1E /* utf8collationiterator.cpp */,
				BBB167241E8275DD0058BF1E /* utf8collationiterator.h */,
				BBB167251E8275DD0058BF1E /* utf16collationiterator.cpp */,
				BBB167261E8275DD0058BF1E /* utf16collationiterator.h */,
				BBB167271E8275DD0058BF1E /* utmscale.c */,
				BBB167281E8275DD0058BF1E /* utrans.cpp */,
				BBB167291E8275DD0058BF1E /* valueformatter.cpp */,
				BBB1672A1E8275DD0058BF1E /* valueformatter.h */,
				BBB1672B1E8275DD0058BF1E /* visibledigits.cpp */,
				BBB1672C1E8275DD0058BF1E /* visibledigits.h */,
				BBB1672D1E8275DD0058BF1E /* vtzone.cpp */,
				BBB1672E1E8275DD0058BF1E /* vzone.cpp */,
				BBB1672F1E8275DD0058BF1E /* vzone.h */,
				BBB167301E8275DD0058BF1E /* windtfmt.cpp */,
				BBB167311E8275DD0058BF1E /* windtfmt.h */,
				BBB167321E8275DD0058BF1E /* winnmfmt.cpp */,
				BBB167331E8275DD0058BF1E /* winnmfmt.h */,
				BBB167341E8275DD0058BF1E /* wintzimpl.cpp */,
				BBB167351E8275DD0058BF1E /* wintzimpl.h */,
				BBB167361E8275DD0058BF1E /* zonemeta.cpp */,
				BBB167371E8275DD0058BF1E /* zonemeta.h */,
				BBB167381E8275DD0058BF1E /* zrule.cpp */,
				BBB167391E8275DD0058BF1E /* zrule.h */,
				BBB1673A1E8275DD0058BF1E /* ztrans.cpp */,
				BBB1673B1E8275DD0058BF1E /* ztrans.h */,
			);
			path = i18n;
			sourceTree = "<group>";
		};
		BBB165E61E8275860058BF1E /* common */ = {
			isa = PBXGroup;
			children = (
				BBB16B611E82762E0058BF1E /* unicode */,
				BBB1692C1E82762A0058BF1E /* appendable.cpp */,
				BBB1692D1E82762A0058BF1E /* bmpset.cpp */,
				BBB1692E1E82762A0058BF1E /* bmpset.h */,
				BBB1692F1E82762A0058BF1E /* brkeng.cpp */,
				BBB169301E82762A0058BF1E /* brkeng.h */,
				BBB169311E82762A0058BF1E /* brkiter.cpp */,
				BBB169321E82762A0058BF1E /* bytestream.cpp */,
				BBB169331E82762A0058BF1E /* bytestrie.cpp */,
				BBB169341E82762A0058BF1E /* bytestriebuilder.cpp */,
				BBB169351E82762A0058BF1E /* bytestrieiterator.cpp */,
				BBB169361E82762A0058BF1E /* caniter.cpp */,
				BBB169371E82762A0058BF1E /* chariter.cpp */,
				BBB169381E82762A0058BF1E /* charstr.cpp */,
				BBB169391E82762A0058BF1E /* charstr.h */,
				BBB1693A1E82762A0058BF1E /* cmemory.c */,
				BBB1693B1E82762A0058BF1E /* cmemory.h */,
				BBB1693C1E82762A0058BF1E /* cpputils.h */,
				BBB1693D1E82762A0058BF1E /* cstr.cpp */,
				BBB1693E1E82762A0058BF1E /* cstr.h */,
				BBB1693F1E82762A0058BF1E /* cstring.c */,
				BBB169401E82762A0058BF1E /* cstring.h */,
				BBB169411E82762A0058BF1E /* cwchar.c */,
				BBB169421E82762A0058BF1E /* cwchar.h */,
				BBB169431E82762A0058BF1E /* dictbe.cpp */,
				BBB169441E82762A0058BF1E /* dictbe.h */,
				BBB169451E82762A0058BF1E /* dictionarydata.cpp */,
				BBB169461E82762A0058BF1E /* dictionarydata.h */,
				BBB169471E82762A0058BF1E /* dtintrv.cpp */,
				BBB169481E82762A0058BF1E /* errorcode.cpp */,
				BBB169491E82762A0058BF1E /* filteredbrk.cpp */,
				BBB1694A1E82762A0058BF1E /* filterednormalizer2.cpp */,
				BBB1694B1E82762A0058BF1E /* hash.h */,
				BBB1694C1E82762A0058BF1E /* icudataver.c */,
				BBB1694D1E82762A0058BF1E /* icuplug.cpp */,
				BBB1694E1E82762A0058BF1E /* icuplugimp.h */,
				BBB1694F1E82762A0058BF1E /* listformatter.cpp */,
				BBB169501E82762A0058BF1E /* loadednormalizer2impl.cpp */,
				BBB169511E82762A0058BF1E /* localsvc.h */,
				BBB169521E82762A0058BF1E /* locavailable.cpp */,
				BBB169531E82762A0058BF1E /* locbased.cpp */,
				BBB169541E82762A0058BF1E /* locbased.h */,
				BBB169551E82762A0058BF1E /* locdispnames.cpp */,
				BBB169561E82762A0058BF1E /* locdspnm.cpp */,
				BBB169571E82762A0058BF1E /* locid.cpp */,
				BBB169581E82762A0058BF1E /* loclikely.cpp */,
				BBB169591E82762A0058BF1E /* locmap.c */,
				BBB1695A1E82762A0058BF1E /* locmap.h */,
				BBB1695B1E82762A0058BF1E /* locresdata.cpp */,
				BBB1695C1E82762A0058BF1E /* locutil.cpp */,
				BBB1695D1E82762A0058BF1E /* locutil.h */,
				BBB1695E1E82762A0058BF1E /* messageimpl.h */,
				BBB1695F1E82762A0058BF1E /* messagepattern.cpp */,
				BBB169601E82762A0058BF1E /* msvcres.h */,
				BBB169611E82762A0058BF1E /* mutex.h */,
				BBB169621E82762A0058BF1E /* norm2_nfc_data.h */,
				BBB169631E82762A0058BF1E /* norm2allmodes.h */,
				BBB169641E82762A0058BF1E /* normalizer2.cpp */,
				BBB169651E82762A0058BF1E /* normalizer2impl.cpp */,
				BBB169661E82762A0058BF1E /* normalizer2impl.h */,
				BBB169671E82762A0058BF1E /* normlzr.cpp */,
				BBB169681E82762A0058BF1E /* parsepos.cpp */,
				BBB169691E82762A0058BF1E /* patternprops.cpp */,
				BBB1696A1E82762A0058BF1E /* patternprops.h */,
				BBB1696B1E82762A0058BF1E /* pluralmap.cpp */,
				BBB1696C1E82762A0058BF1E /* pluralmap.h */,
				BBB1696D1E82762A0058BF1E /* propname_data.h */,
				BBB1696E1E82762A0058BF1E /* propname.cpp */,
				BBB1696F1E82762A0058BF1E /* propname.h */,
				BBB169701E82762A0058BF1E /* propsvec.c */,
				BBB169711E82762A0058BF1E /* propsvec.h */,
				BBB169721E82762A0058BF1E /* punycode.cpp */,
				BBB169731E82762A0058BF1E /* punycode.h */,
				BBB169741E82762A0058BF1E /* putil.cpp */,
				BBB169751E82762A0058BF1E /* putilimp.h */,
				BBB169761E82762A0058BF1E /* rbbi.cpp */,
				BBB169781E82762A0058BF1E /* rbbidata.cpp */,
				BBB169791E82762A0058BF1E /* rbbidata.h */,
				BBB1697A1E82762A0058BF1E /* rbbinode.cpp */,
				BBB1697B1E82762A0058BF1E /* rbbinode.h */,
				BBB1697C1E82762A0058BF1E /* rbbirb.cpp */,
				BBB1697D1E82762A0058BF1E /* rbbirb.h */,
				BBB1697E1E82762A0058BF1E /* rbbirpt.h */,
				BBB1697F1E82762A0058BF1E /* rbbiscan.cpp */,
				BBB169801E82762A0058BF1E /* rbbiscan.h */,
				BBB169811E82762A0058BF1E /* rbbisetb.cpp */,
				BBB169821E82762A0058BF1E /* rbbisetb.h */,
				BBB169831E82762A0058BF1E /* rbbistbl.cpp */,
				BBB169841E82762A0058BF1E /* rbbitblb.cpp */,
				BBB169851E82762A0058BF1E /* rbbitblb.h */,
				BBB169861E82762A0058BF1E /* resbund_cnv.cpp */,
				BBB169871E82762A0058BF1E /* resbund.cpp */,
				BBB169881E82762A0058BF1E /* resource.cpp */,
				BBB169891E82762A0058BF1E /* resource.h */,
				BBB1698A1E82762A0058BF1E /* ruleiter.cpp */,
				BBB1698B1E82762A0058BF1E /* ruleiter.h */,
				BBB1698C1E82762A0058BF1E /* schriter.cpp */,
				BBB1698D1E82762A0058BF1E /* serv.cpp */,
				BBB1698E1E82762A0058BF1E /* serv.h */,
				BBB1698F1E82762A0058BF1E /* servlk.cpp */,
				BBB169901E82762A0058BF1E /* servlkf.cpp */,
				BBB169911E82762A0058BF1E /* servloc.h */,
				BBB169921E82762A0058BF1E /* servls.cpp */,
				BBB169931E82762A0058BF1E /* servnotf.cpp */,
				BBB169941E82762A0058BF1E /* servnotf.h */,
				BBB169951E82762A0058BF1E /* servrbf.cpp */,
				BBB169961E82762A0058BF1E /* servslkf.cpp */,
				BBB169971E82762A0058BF1E /* sharedobject.cpp */,
				BBB169981E82762A0058BF1E /* sharedobject.h */,
				BBB169991E82762A0058BF1E /* simpleformatter.cpp */,
				BBB1699A1E82762A0058BF1E /* sprpimpl.h */,
				BBB1699B1E82762A0058BF1E /* stringpiece.cpp */,
				BBB1699C1E82762A0058BF1E /* stringtriebuilder.cpp */,
				BBB1699D1E82762A0058BF1E /* uarrsort.c */,
				BBB1699E1E82762A0058BF1E /* uarrsort.h */,
				BBB1699F1E82762A0058BF1E /* uassert.h */,
				BBB169A01E82762A0058BF1E /* ubidi_props_data.h */,
				BBB169A11E82762A0058BF1E /* ubidi_props.c */,
				BBB169A21E82762A0058BF1E /* ubidi_props.h */,
				BBB169A31E82762A0058BF1E /* ubidi.c */,
				BBB169A41E82762A0058BF1E /* ubidiimp.h */,
				BBB169A51E82762A0058BF1E /* ubidiln.c */,
				BBB169A61E82762A0058BF1E /* ubidiwrt.c */,
				BBB169A71E82762A0058BF1E /* ubrk.cpp */,
				BBB169A81E82762A0058BF1E /* ubrkimpl.h */,
				BBB169A91E82762A0058BF1E /* ucase_props_data.h */,
				BBB169AA1E82762A0058BF1E /* ucase.cpp */,
				BBB169AB1E82762A0058BF1E /* ucase.h */,
				BBB169AC1E82762A0058BF1E /* ucasemap_titlecase_brkiter.cpp */,
				BBB169AD1E82762A0058BF1E /* ucasemap.cpp */,
				BBB169AE1E82762A0058BF1E /* ucat.c */,
				BBB169AF1E82762A0058BF1E /* uchar_props_data.h */,
				BBB169B01E82762A0058BF1E /* uchar.c */,
				BBB169B11E82762A0058BF1E /* ucharstrie.cpp */,
				BBB169B21E82762A0058BF1E /* ucharstriebuilder.cpp */,
				BBB169B31E82762A0058BF1E /* ucharstrieiterator.cpp */,
				BBB169B41E82762A0058BF1E /* uchriter.cpp */,
				BBB169B51E82762A0058BF1E /* ucln_cmn.cpp */,
				BBB169B61E82762A0058BF1E /* ucln_cmn.h */,
				BBB169B71E82762A0058BF1E /* ucln_imp.h */,
				BBB169B81E82762A0058BF1E /* ucln.h */,
				BBB169B91E82762A0058BF1E /* ucmndata.c */,
				BBB169BA1E82762A0058BF1E /* ucmndata.h */,
				BBB169BB1E82762A0058BF1E /* ucnv_bld.cpp */,
				BBB169BC1E82762A0058BF1E /* ucnv_bld.h */,
				BBB169BD1E82762A0058BF1E /* ucnv_cb.c */,
				BBB169BE1E82762A0058BF1E /* ucnv_cnv.c */,
				BBB169BF1E82762A0058BF1E /* ucnv_cnv.h */,
				BBB169C01E82762A0058BF1E /* ucnv_ct.c */,
				BBB169C11E82762A0058BF1E /* ucnv_err.c */,
				BBB169C21E82762A0058BF1E /* ucnv_ext.cpp */,
				BBB169C31E82762A0058BF1E /* ucnv_ext.h */,
				BBB169C41E82762A0058BF1E /* ucnv_imp.h */,
				BBB169C51E82762A0058BF1E /* ucnv_io.cpp */,
				BBB169C61E82762A0058BF1E /* ucnv_io.h */,
				BBB169C71E82762A0058BF1E /* ucnv_lmb.c */,
				BBB169C81E82762A0058BF1E /* ucnv_set.c */,
				BBB169C91E82762A0058BF1E /* ucnv_u7.c */,
				BBB169CA1E82762A0058BF1E /* ucnv_u8.c */,
				BBB169CB1E82762A0058BF1E /* ucnv_u16.c */,
				BBB169CC1E82762A0058BF1E /* ucnv_u32.c */,
				BBB169CD1E82762A0058BF1E /* ucnv.c */,
				BBB169CE1E82762A0058BF1E /* ucnv2022.cpp */,
				BBB169CF1E82762A0058BF1E /* ucnvbocu.cpp */,
				BBB169D01E82762A0058BF1E /* ucnvdisp.c */,
				BBB169D11E82762A0058BF1E /* ucnvhz.c */,
				BBB169D21E82762A0058BF1E /* ucnvisci.c */,
				BBB169D31E82762A0058BF1E /* ucnvlat1.c */,
				BBB169D41E82762A0058BF1E /* ucnvmbcs.cpp */,
				BBB169D51E82762A0058BF1E /* ucnvmbcs.h */,
				BBB169D61E82762A0058BF1E /* ucnvscsu.c */,
				BBB169D71E82762A0058BF1E /* ucnvsel.cpp */,
				BBB169D81E82762A0058BF1E /* ucol_data.h */,
				BBB169D91E82762A0058BF1E /* ucol_swp.cpp */,
				BBB169DA1E82762A0058BF1E /* ucol_swp.h */,
				BBB169DB1E82762A0058BF1E /* ucurr.cpp */,
				BBB169DC1E82762A0058BF1E /* ucurrimp.h */,
				BBB169DD1E82762A0058BF1E /* udata.cpp */,
				BBB169DE1E82762A0058BF1E /* udatamem.c */,
				BBB169DF1E82762A0058BF1E /* udatamem.h */,
				BBB169E01E82762A0058BF1E /* udataswp.c */,
				BBB169E11E82762A0058BF1E /* udataswp.h */,
				BBB169E21E82762A0058BF1E /* uelement.h */,
				BBB169E31E82762A0058BF1E /* uenum.c */,
				BBB169E41E82762A0058BF1E /* uenumimp.h */,
				BBB169E51E82762A0058BF1E /* uhash_us.cpp */,
				BBB169E61E82762A0058BF1E /* uhash.c */,
				BBB169E71E82762A0058BF1E /* uhash.h */,
				BBB169E81E82762A0058BF1E /* uidna.cpp */,
				BBB169E91E82762A0058BF1E /* uinit.cpp */,
				BBB169EA1E82762A0058BF1E /* uinvchar.c */,
				BBB169EB1E82762A0058BF1E /* uinvchar.h */,
				BBB169EC1E82762A0058BF1E /* uiter.cpp */,
				BBB169ED1E82762A0058BF1E /* ulist.c */,
				BBB169EE1E82762A0058BF1E /* ulist.h */,
				BBB169EF1E82762A0058BF1E /* ulistformatter.cpp */,
				BBB169F01E82762A0058BF1E /* uloc_keytype.cpp */,
				BBB169F11E82762A0058BF1E /* uloc_tag.c */,
				BBB169F21E82762A0058BF1E /* uloc.cpp */,
				BBB169F31E82762A0058BF1E /* ulocimp.h */,
				BBB169F41E82762A0058BF1E /* umapfile.c */,
				BBB169F51E82762A0058BF1E /* umapfile.h */,
				BBB169F61E82762A0058BF1E /* umath.c */,
				BBB169F71E82762A0058BF1E /* umutex.cpp */,
				BBB169F81E82762A0058BF1E /* umutex.h */,
				BBB169F91E82762A0058BF1E /* unames.cpp */,
				BBB169FA1E82762A0058BF1E /* unifiedcache.cpp */,
				BBB169FB1E82762A0058BF1E /* unifiedcache.h */,
				BBB169FC1E82762A0058BF1E /* unifilt.cpp */,
				BBB169FD1E82762A0058BF1E /* unifunct.cpp */,
				BBB169FE1E82762A0058BF1E /* uniset_closure.cpp */,
				BBB169FF1E82762A0058BF1E /* uniset_props.cpp */,
				BBB16A001E82762A0058BF1E /* uniset.cpp */,
				BBB16A011E82762A0058BF1E /* unisetspan.cpp */,
				BBB16A021E82762A0058BF1E /* unisetspan.h */,
				BBB16A031E82762A0058BF1E /* unistr_case_locale.cpp */,
				BBB16A041E82762A0058BF1E /* unistr_case.cpp */,
				BBB16A051E82762A0058BF1E /* unistr_cnv.cpp */,
				BBB16A061E82762A0058BF1E /* unistr_props.cpp */,
				BBB16A071E82762A0058BF1E /* unistr_titlecase_brkiter.cpp */,
				BBB16A081E82762A0058BF1E /* unistr.cpp */,
				BBB16A091E82762A0058BF1E /* unistrappender.h */,
				BBB16A0A1E82762A0058BF1E /* unorm.cpp */,
				BBB16A0B1E82762A0058BF1E /* unormcmp.cpp */,
				BBB16A0C1E82762A0058BF1E /* unormimp.h */,
				BBB16A0D1E82762A0058BF1E /* uobject.cpp */,
				BBB16A0E1E82762A0058BF1E /* uposixdefs.h */,
				BBB16A0F1E82762A0058BF1E /* uprops.cpp */,
				BBB16A101E82762A0058BF1E /* uprops.h */,
				BBB16A111E82762A0058BF1E /* ures_cnv.c */,
				BBB16A121E82762A0058BF1E /* uresbund.cpp */,
				BBB16A131E82762A0058BF1E /* uresdata.cpp */,
				BBB16A141E82762A0058BF1E /* uresdata.h */,
				BBB16A151E82762A0058BF1E /* uresimp.h */,
				BBB16A161E82762A0058BF1E /* ureslocs.h */,
				BBB16A171E82762A0058BF1E /* usc_impl.c */,
				BBB16A181E82762A0058BF1E /* usc_impl.h */,
				BBB16A191E82762A0058BF1E /* uscript_props.cpp */,
				BBB16A1A1E82762A0058BF1E /* uscript.c */,
				BBB16A1B1E82762A0058BF1E /* uset_imp.h */,
				BBB16A1C1E82762A0058BF1E /* uset_props.cpp */,
				BBB16A1D1E82762A0058BF1E /* uset.cpp */,
				BBB16A1E1E82762A0058BF1E /* usetiter.cpp */,
				BBB16A1F1E82762A0058BF1E /* ushape.cpp */,
				BBB16A201E82762A0058BF1E /* usprep.cpp */,
				BBB16A211E82762A0058BF1E /* ustack.cpp */,
				BBB16A221E82762A0058BF1E /* ustr_cnv.cpp */,
				BBB16A231E82762A0058BF1E /* ustr_cnv.h */,
				BBB16A241E82762A0058BF1E /* ustr_imp.h */,
				BBB16A251E82762A0058BF1E /* ustr_titlecase_brkiter.cpp */,
				BBB16A261E82762A0058BF1E /* ustr_wcs.cpp */,
				BBB16A271E82762A0058BF1E /* ustrcase_locale.cpp */,
				BBB16A281E82762A0058BF1E /* ustrcase.cpp */,
				BBB16A291E82762A0058BF1E /* ustrenum.cpp */,
				BBB16A2A1E82762A0058BF1E /* ustrenum.h */,
				BBB16A2B1E82762A0058BF1E /* ustrfmt.c */,
				BBB16A2C1E82762A0058BF1E /* ustrfmt.h */,
				BBB16A2D1E82762A0058BF1E /* ustring.cpp */,
				BBB16A2E1E82762A0058BF1E /* ustrtrns.cpp */,
				BBB16A2F1E82762A0058BF1E /* utext.cpp */,
				BBB16A301E82762A0058BF1E /* utf_impl.c */,
				BBB16A311E82762A0058BF1E /* util_props.cpp */,
				BBB16A321E82762A0058BF1E /* util.cpp */,
				BBB16A331E82762A0058BF1E /* util.h */,
				BBB16A341E82762A0058BF1E /* utrace.c */,
				BBB16A351E82762A0058BF1E /* utracimp.h */,
				BBB16A361E82762A0058BF1E /* utrie.cpp */,
				BBB16A371E82762A0058BF1E /* utrie.h */,
				BBB16A381E82762A0058BF1E /* utrie2_builder.cpp */,
				BBB16A391E82762A0058BF1E /* utrie2_impl.h */,
				BBB16A3A1E82762A0058BF1E /* utrie2.cpp */,
				BBB16A3B1E82762A0058BF1E /* utrie2.h */,
				BBB16A3C1E82762A0058BF1E /* uts46.cpp */,
				BBB16A3D1E82762A0058BF1E /* utypeinfo.h */,
				BBB16A3E1E82762A0058BF1E /* utypes.c */,
				BBB16A3F1E82762A0058BF1E /* uvector.cpp */,
				BBB16A401E82762A0058BF1E /* uvector.h */,
				BBB16A411E82762A0058BF1E /* uvectr32.cpp */,
				BBB16A421E82762A0058BF1E /* uvectr32.h */,
				BBB16A431E82762A0058BF1E /* uvectr64.cpp */,
				BBB16A441E82762A0058BF1E /* uvectr64.h */,
				BBB16A451E82762A0058BF1E /* wintz.c */,
				BBB16A461E82762A0058BF1E /* wintz.h */,
			);
			path = common;
			sourceTree = "<group>";
		};
		BBB165E71E82758B0058BF1E /* stubdata */ = {
			isa = PBXGroup;
			children = (
				BBB16C181E82765C0058BF1E /* stubdata.c */,
			);
			path = stubdata;
			sourceTree = "<group>";
		};
		BBB1688F1E8275E30058BF1E /* unicode */ = {
			isa = PBXGroup;
			children = (
				BBB168901E8275FE0058BF1E /* alphaindex.h */,
				BBB168911E8275FE0058BF1E /* basictz.h */,
				BBB168921E8275FE0058BF1E /* calendar.h */,
				BBB168931E8275FE0058BF1E /* choicfmt.h */,
				BBB168941E8275FE0058BF1E /* coleitr.h */,
				BBB168951E8275FE0058BF1E /* coll.h */,
				BBB168961E8275FE0058BF1E /* compactdecimalformat.h */,
				BBB168971E8275FE0058BF1E /* curramt.h */,
				BBB168981E8275FE0058BF1E /* currpinf.h */,
				BBB168991E8275FE0058BF1E /* currunit.h */,
				BBB1689A1E8275FE0058BF1E /* datefmt.h */,
				BBB1689B1E8275FE0058BF1E /* dcfmtsym.h */,
				BBB1689C1E8275FE0058BF1E /* decimfmt.h */,
				BBB1689D1E8275FE0058BF1E /* dtfmtsym.h */,
				BBB1689E1E8275FE0058BF1E /* dtitvfmt.h */,
				BBB1689F1E8275FE0058BF1E /* dtitvinf.h */,
				BBB168A01E8275FE0058BF1E /* dtptngen.h */,
				BBB168A11E8275FE0058BF1E /* dtrule.h */,
				BBB168A21E8275FE0058BF1E /* fieldpos.h */,
				BBB168A31E8275FE0058BF1E /* fmtable.h */,
				BBB168A41E8275FE0058BF1E /* format.h */,
				BBB168A51E8275FE0058BF1E /* fpositer.h */,
				BBB168A61E8275FE0058BF1E /* gender.h */,
				BBB168A71E8275FE0058BF1E /* gregocal.h */,
				BBB168A81E8275FE0058BF1E /* measfmt.h */,
				BBB168A91E8275FE0058BF1E /* measunit.h */,
				BBB168AA1E8275FE0058BF1E /* measure.h */,
				BBB168AB1E8275FE0058BF1E /* msgfmt.h */,
				BBB168AC1E8275FE0058BF1E /* numfmt.h */,
				BBB168AD1E8275FE0058BF1E /* numsys.h */,
				BBB168AE1E8275FE0058BF1E /* plurfmt.h */,
				BBB168AF1E8275FE0058BF1E /* plurrule.h */,
				BBB168B01E8275FE0058BF1E /* rbnf.h */,
				BBB168B11E8275FE0058BF1E /* rbtz.h */,
				BBB168B21E8275FE0058BF1E /* regex.h */,
				BBB168B31E8275FE0058BF1E /* region.h */,
				BBB168B41E8275FE0058BF1E /* reldatefmt.h */,
				BBB168B51E8275FE0058BF1E /* scientificnumberformatter.h */,
				BBB168B61E8275FE0058BF1E /* search.h */,
				BBB168B71E8275FE0058BF1E /* selfmt.h */,
				BBB168B81E8275FE0058BF1E /* simpletz.h */,
				BBB168B91E8275FE0058BF1E /* smpdtfmt.h */,
				BBB168BA1E8275FE0058BF1E /* sortkey.h */,
				BBB168BB1E8275FE0058BF1E /* stsearch.h */,
				BBB168BC1E8275FE0058BF1E /* tblcoll.h */,
				BBB168BD1E8275FE0058BF1E /* timezone.h */,
				BBB168BE1E8275FE0058BF1E /* tmunit.h */,
				BBB168BF1E8275FE0058BF1E /* tmutamt.h */,
				BBB168C01E8275FE0058BF1E /* tmutfmt.h */,
				BBB168C11E8275FE0058BF1E /* translit.h */,
				BBB168C21E8275FE0058BF1E /* tzfmt.h */,
				BBB168C31E8275FE0058BF1E /* tznames.h */,
				BBB168C41E8275FE0058BF1E /* tzrule.h */,
				BBB168C51E8275FE0058BF1E /* tztrans.h */,
				BBB168C61E8275FE0058BF1E /* ucal.h */,
				BBB168C71E8275FE0058BF1E /* ucol.h */,
				BBB168C81E8275FE0058BF1E /* ucoleitr.h */,
				BBB168C91E8275FE0058BF1E /* ucsdet.h */,
				BBB168CA1E8275FE0058BF1E /* udat.h */,
				BBB168CB1E8275FE0058BF1E /* udateintervalformat.h */,
				BBB168CC1E8275FE0058BF1E /* udatpg.h */,
				BBB168CD1E8275FE0058BF1E /* ufieldpositer.h */,
				BBB168CE1E8275FE0058BF1E /* uformattable.h */,
				BBB168CF1E8275FE0058BF1E /* ugender.h */,
				BBB168D01E8275FE0058BF1E /* ulocdata.h */,
				BBB168D11E8275FE0058BF1E /* umsg.h */,
				BBB168D21E8275FE0058BF1E /* unirepl.h */,
				BBB168D31E8275FE0058BF1E /* unum.h */,
				BBB168D41E8275FE0058BF1E /* unumsys.h */,
				BBB168D51E8275FE0058BF1E /* upluralrules.h */,
				BBB168D61E8275FE0058BF1E /* uregex.h */,
				BBB168D71E8275FE0058BF1E /* uregion.h */,
				BBB168D81E8275FE0058BF1E /* ureldatefmt.h */,
				BBB168D91E8275FE0058BF1E /* usearch.h */,
				BBB168DA1E8275FE0058BF1E /* uspoof.h */,
				BBB168DB1E8275FE0058BF1E /* utmscale.h */,
				BBB168DC1E8275FE0058BF1E /* utrans.h */,
				BBB168DD1E8275FE0058BF1E /* vtzone.h */,
			);
			path = unicode;
			sourceTree = "<group>";
		};
		BBB16B611E82762E0058BF1E /* unicode */ = {
			isa = PBXGroup;
			children = (
				BBB16B621E8276480058BF1E /* appendable.h */,
				BBB16B631E8276480058BF1E /* brkiter.h */,
				BBB16B641E8276480058BF1E /* bytestream.h */,
				BBB16B651E8276480058BF1E /* bytestrie.h */,
				BBB16B661E8276480058BF1E /* bytestriebuilder.h */,
				BBB16B671E8276480058BF1E /* caniter.h */,
				BBB16B681E8276480058BF1E /* chariter.h */,
				BBB16B691E8276480058BF1E /* dbbi.h */,
				BBB16B6A1E8276480058BF1E /* docmain.h */,
				BBB16B6B1E8276480058BF1E /* dtintrv.h */,
				BBB16B6C1E8276480058BF1E /* enumset.h */,
				BBB16B6D1E8276480058BF1E /* errorcode.h */,
				BBB16B6E1E8276480058BF1E /* filteredbrk.h */,
				BBB16B6F1E8276480058BF1E /* icudataver.h */,
				BBB16B701E8276480058BF1E /* icuplug.h */,
				BBB16B711E8276480058BF1E /* idna.h */,
				BBB16B721E8276480058BF1E /* listformatter.h */,
				BBB16B731E8276480058BF1E /* localpointer.h */,
				BBB16B741E8276480058BF1E /* locdspnm.h */,
				BBB16B751E8276480058BF1E /* locid.h */,
				BBB16B761E8276480058BF1E /* messagepattern.h */,
				BBB16B771E8276480058BF1E /* normalizer2.h */,
				BBB16B781E8276480058BF1E /* normlzr.h */,
				BBB16B791E8276480058BF1E /* parseerr.h */,
				BBB16B7A1E8276480058BF1E /* parsepos.h */,
				BBB16B7B1E8276480058BF1E /* platform.h */,
				BBB16B7C1E8276480058BF1E /* ptypes.h */,
				BBB16B7D1E8276480058BF1E /* putil.h */,
				BBB16B7E1E8276480058BF1E /* rbbi.h */,
				BBB16B7F1E8276480058BF1E /* rep.h */,
				BBB16B801E8276480058BF1E /* resbund.h */,
				BBB16B811E8276480058BF1E /* schriter.h */,
				BBB16B821E8276480058BF1E /* simpleformatter.h */,
				BBB16B831E8276480058BF1E /* std_string.h */,
				BBB16B841E8276480058BF1E /* strenum.h */,
				BBB16B851E8276480058BF1E /* stringpiece.h */,
				BBB16B861E8276480058BF1E /* stringtriebuilder.h */,
				BBB16B871E8276480058BF1E /* symtable.h */,
				BBB16B881E8276480058BF1E /* ubidi.h */,
				BBB16B891E8276480058BF1E /* ubrk.h */,
				BBB16B8A1E8276480058BF1E /* ucasemap.h */,
				BBB16B8B1E8276480058BF1E /* ucat.h */,
				BBB16B8C1E8276480058BF1E /* uchar.h */,
				BBB16B8D1E8276480058BF1E /* ucharstrie.h */,
				BBB16B8E1E8276480058BF1E /* ucharstriebuilder.h */,
				BBB16B8F1E8276480058BF1E /* uchriter.h */,
				BBB16B901E8276480058BF1E /* uclean.h */,
				BBB16B911E8276480058BF1E /* ucnv_cb.h */,
				BBB16B921E8276480058BF1E /* ucnv_err.h */,
				BBB16B931E8276480058BF1E /* ucnv.h */,
				BBB16B941E8276480058BF1E /* ucnvsel.h */,
				BBB16B951E8276480058BF1E /* uconfig.h */,
				BBB16B961E8276480058BF1E /* ucurr.h */,
				BBB16B971E8276480058BF1E /* udata.h */,
				BBB16B981E8276480058BF1E /* udisplaycontext.h */,
				BBB16B991E8276480058BF1E /* uenum.h */,
				BBB16B9A1E8276480058BF1E /* uidna.h */,
				BBB16B9B1E8276480058BF1E /* uiter.h */,
				BBB16B9C1E8276480058BF1E /* uldnames.h */,
				BBB16B9D1E8276480058BF1E /* ulistformatter.h */,
				BBB16B9E1E8276480058BF1E /* uloc.h */,
				BBB16B9F1E8276480058BF1E /* umachine.h */,
				BBB16BA01E8276480058BF1E /* umisc.h */,
				BBB16BA11E8276480058BF1E /* unifilt.h */,
				BBB16BA21E8276480058BF1E /* unifunct.h */,
				BBB16BA31E8276480058BF1E /* unimatch.h */,
				BBB16BA41E8276480058BF1E /* uniset.h */,
				BBB16BA51E8276480058BF1E /* unistr.h */,
				BBB16BA61E8276480058BF1E /* unorm.h */,
				BBB16BA71E8276480058BF1E /* unorm2.h */,
				BBB16BA81E8276480058BF1E /* uobject.h */,
				BBB16BA91E8276480058BF1E /* urename.h */,
				BBB16BAA1E8276480058BF1E /* urep.h */,
				BBB16BAB1E8276480058BF1E /* ures.h */,
				BBB16BAC1E8276480058BF1E /* uscript.h */,
				BBB16BAD1E8276480058BF1E /* uset.h */,
				BBB16BAE1E8276480058BF1E /* usetiter.h */,
				BBB16BAF1E8276480058BF1E /* ushape.h */,
				BBB16BB01E8276480058BF1E /* usprep.h */,
				BBB16BB11E8276480058BF1E /* ustring.h */,
				BBB16BB21E8276480058BF1E /* ustringtrie.h */,
				BBB16BB31E8276480058BF1E /* utext.h */,
				BBB16BB41E8276480058BF1E /* utf_old.h */,
				BBB16BB51E8276480058BF1E /* utf.h */,
				BBB16BB61E8276480058BF1E /* utf8.h */,
				BBB16BB71E8276480058BF1E /* utf16.h */,
				BBB16BB81E8276480058BF1E /* utf32.h */,
				BBB16BB91E8276480058BF1E /* utrace.h */,
				BBB16BBA1E8276480058BF1E /* utypes.h */,
				BBB16BBB1E8276480058BF1E /* uvernum.h */,
				BBB16BBC1E8276480058BF1E /* uversion.h */,
			);
			path = unicode;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		BBB165D51E8275120058BF1E /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		BBB165D61E8275120058BF1E /* icu */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = BBB165E21E8275120058BF1E /* Build configuration list for PBXNativeTarget "icu" */;
			buildPhases = (
				BBB165D31E8275120058BF1E /* Sources */,
				BBB165D41E8275120058BF1E /* Frameworks */,
				BBB165D51E8275120058BF1E /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = icu;
			productName = icu;
			productReference = BBB165D71E8275120058BF1E /* libicu.a */;
			productType = "com.apple.product-type.library.static";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		BBB165CF1E8275120058BF1E /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0820;
				ORGANIZATIONNAME = "Дарья Волвенкова";
				TargetAttributes = {
					BBB165D61E8275120058BF1E = {
						CreatedOnToolsVersion = 8.2.1;
						ProvisioningStyle = Automatic;
					};
				};
			};
			buildConfigurationList = BBB165D21E8275120058BF1E /* Build configuration list for PBXProject "icu" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = BBB165CE1E8275120058BF1E;
			productRefGroup = BBB165D81E8275120058BF1E /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				BBB165D61E8275120058BF1E /* icu */,
			);
		};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
		BBB165D31E8275120058BF1E /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BBB1683F1E8275DE0058BF1E /* tolowtrn.cpp in Sources */,
				BBB16A631E82762A0058BF1E /* errorcode.cpp in Sources */,
				BBB16AA41E82762A0058BF1E /* ruleiter.cpp in Sources */,
				BBB167C91E8275DD0058BF1E /* gender.cpp in Sources */,
				BBB16B131E82762B0058BF1E /* unames.cpp in Sources */,
				BBB167FE1E8275DD0058BF1E /* rbt_data.cpp in Sources */,
				BBB167CA1E8275DD0058BF1E /* gregocal.cpp in Sources */,
				BBB16AC61E82762A0058BF1E /* ucasemap_titlecase_brkiter.cpp in Sources */,
				BBB16A5A1E82762A0058BF1E /* cstring.c in Sources */,
				BBB167901E8275DD0058BF1E /* curramt.cpp in Sources */,
				BBB168391E8275DE0058BF1E /* timezone.cpp in Sources */,
				BBB16AE21E82762A0058BF1E /* ucnv_set.c in Sources */,
				BBB168491E8275DE0058BF1E /* tzgnames.cpp in Sources */,
				BBB167ED1E8275DD0058BF1E /* numsys.cpp in Sources */,
				BBB167D51E8275DD0058BF1E /* islamcal.cpp in Sources */,
				BBB167641E8275DD0058BF1E /* collationfastlatinbuilder.cpp in Sources */,
				BBB167C71E8275DD0058BF1E /* funcrepl.cpp in Sources */,
				BBB168871E8275DE0058BF1E /* wintzimpl.cpp in Sources */,
				BBB168691E8275DE0058BF1E /* uregex.cpp in Sources */,
				BBB16A651E82762A0058BF1E /* filterednormalizer2.cpp in Sources */,
				BBB16AFD1E82762A0058BF1E /* uenum.c in Sources */,
				BBB168461E8275DE0058BF1E /* tridpars.cpp in Sources */,
				BBB16A671E82762A0058BF1E /* icudataver.c in Sources */,
				BBB16A641E82762A0058BF1E /* filteredbrk.cpp in Sources */,
				BBB168371E8275DE0058BF1E /* taiwncal.cpp in Sources */,
				BBB16AF01E82762A0058BF1E /* ucnvscsu.c in Sources */,
				BBB167911E8275DD0058BF1E /* currfmt.cpp in Sources */,
				BBB167F71E8275DD0058BF1E /* precision.cpp in Sources */,
				BBB1684E1E8275DE0058BF1E /* tzrule.cpp in Sources */,
				BBB168001E8275DD0058BF1E /* rbt_pars.cpp in Sources */,
				BBB168781E8275DE0058BF1E /* utf16collationiterator.cpp in Sources */,
				BBB16A8F1E82762A0058BF1E /* putil.cpp in Sources */,
				BBB16ADB1E82762A0058BF1E /* ucnv_err.c in Sources */,
				BBB16AB61E82762A0058BF1E /* stringtriebuilder.cpp in Sources */,
				BBB16B111E82762B0058BF1E /* umutex.cpp in Sources */,
				BBB16B0B1E82762B0058BF1E /* uloc_tag.c in Sources */,
				BBB16A721E82762A0058BF1E /* locid.cpp in Sources */,
				BBB1681D1E8275DD0058BF1E /* scriptset.cpp in Sources */,
				BBB167AF1E8275DD0058BF1E /* digitgrouping.cpp in Sources */,
				BBB16B491E82762B0058BF1E /* utext.cpp in Sources */,
				BBB16ACB1E82762A0058BF1E /* ucharstrie.cpp in Sources */,
				BBB167521E8275DD0058BF1E /* coleitr.cpp in Sources */,
				BBB1682A1E8275DE0058BF1E /* smallintformatter.cpp in Sources */,
				BBB1677C1E8275DD0058BF1E /* coptccal.cpp in Sources */,
				BBB167581E8275DD0058BF1E /* collationcompare.cpp in Sources */,
				BBB16A771E82762A0058BF1E /* locutil.cpp in Sources */,
				BBB1686C1E8275DE0058BF1E /* usearch.cpp in Sources */,
				BBB16A6D1E82762A0058BF1E /* locavailable.cpp in Sources */,
				BBB16B561E82762B0058BF1E /* uts46.cpp in Sources */,
				BBB16A7F1E82762A0058BF1E /* normalizer2.cpp in Sources */,
				BBB16B481E82762B0058BF1E /* ustrtrns.cpp in Sources */,
				BBB16A501E82762A0058BF1E /* bytestrieiterator.cpp in Sources */,
				BBB16B0A1E82762B0058BF1E /* uloc_keytype.cpp in Sources */,
				BBB16B371E82762B0058BF1E /* uset.cpp in Sources */,
				BBB1684D1E8275DE0058BF1E /* tznames.cpp in Sources */,
				BBB16B101E82762B0058BF1E /* umath.c in Sources */,
				BBB168061E8275DD0058BF1E /* rbt.cpp in Sources */,
				BBB16B331E82762B0058BF1E /* uscript_props.cpp in Sources */,
				BBB1682D1E8275DE0058BF1E /* smpdtfst.cpp in Sources */,
				BBB167A61E8275DD0058BF1E /* decNumber.c in Sources */,
				BBB16ADF1E82762A0058BF1E /* ucnv_io.cpp in Sources */,
				BBB16A801E82762A0058BF1E /* normalizer2impl.cpp in Sources */,
				BBB16A681E82762A0058BF1E /* icuplug.cpp in Sources */,
				BBB16A7A1E82762A0058BF1E /* messagepattern.cpp in Sources */,
				BBB1682C1E8275DE0058BF1E /* smpdtfmt.cpp in Sources */,
				BBB167CF1E8275DD0058BF1E /* identifier_info.cpp in Sources */,
				BBB1687E1E8275DE0058BF1E /* visibledigits.cpp in Sources */,
				BBB1679C1E8275DD0058BF1E /* decContext.c in Sources */,
				BBB1685A1E8275DE0058BF1E /* udateintervalformat.cpp in Sources */,
				BBB1684F1E8275DE0058BF1E /* tztrans.cpp in Sources */,
				BBB16B061E82762B0058BF1E /* uiter.cpp in Sources */,
				BBB16AC01E82762A0058BF1E /* ubidiwrt.c in Sources */,
				BBB1673C1E8275DD0058BF1E /* affixpatternparser.cpp in Sources */,
				BBB168561E8275DE0058BF1E /* ucol.cpp in Sources */,
				BBB1686D1E8275DE0058BF1E /* uspoof_build.cpp in Sources */,
				BBB16B1B1E82762B0058BF1E /* unisetspan.cpp in Sources */,
				BBB16A861E82762A0058BF1E /* pluralmap.cpp in Sources */,
				BBB16ABF1E82762A0058BF1E /* ubidiln.c in Sources */,
				BBB16A841E82762A0058BF1E /* patternprops.cpp in Sources */,
				BBB168681E8275DE0058BF1E /* upluralrules.cpp in Sources */,
				BBB16ACC1E82762A0058BF1E /* ucharstriebuilder.cpp in Sources */,
				BBB1673F1E8275DD0058BF1E /* anytrans.cpp in Sources */,
				BBB168801E8275DE0058BF1E /* vtzone.cpp in Sources */,
				BBB16B5B1E82762B0058BF1E /* uvectr32.cpp in Sources */,
				BBB1679B1E8275DD0058BF1E /* dcfmtsym.cpp in Sources */,
				BBB1680C1E8275DD0058BF1E /* regeximp.cpp in Sources */,
				BBB167E31E8275DD0058BF1E /* nfrule.cpp in Sources */,
				BBB1677B1E8275DD0058BF1E /* compactdecimalformat.cpp in Sources */,
				BBB16B361E82762B0058BF1E /* uset_props.cpp in Sources */,
				BBB167761E8275DD0058BF1E /* collationtailoring.cpp in Sources */,
				BBB16A921E82762A0058BF1E /* rbbidata.cpp in Sources */,
				BBB16A891E82762A0058BF1E /* propname.cpp in Sources */,
				BBB167681E8275DD0058BF1E /* collationiterator.cpp in Sources */,
				BBB16B2D1E82762B0058BF1E /* uresdata.cpp in Sources */,
				BBB167941E8275DD0058BF1E /* currunit.cpp in Sources */,
				BBB168501E8275DE0058BF1E /* ucal.cpp in Sources */,
				BBB1681C1E8275DD0058BF1E /* scientificnumberformatter.cpp in Sources */,
				BBB16B4E1E82762B0058BF1E /* utrace.c in Sources */,
				BBB167AB1E8275DD0058BF1E /* digitaffixesandpadding.cpp in Sources */,
				BBB16C191E82765C0058BF1E /* stubdata.c in Sources */,
				BBB16A9D1E82762A0058BF1E /* rbbistbl.cpp in Sources */,
				BBB16A4E1E82762A0058BF1E /* bytestrie.cpp in Sources */,
				BBB167BE1E8275DD0058BF1E /* ethpccal.cpp in Sources */,
				BBB16B291E82762B0058BF1E /* uprops.cpp in Sources */,
				BBB1685F1E8275DE0058BF1E /* ulocdata.c in Sources */,
				BBB167BB1E8275DD0058BF1E /* dtrule.cpp in Sources */,
				BBB16ACF1E82762A0058BF1E /* ucln_cmn.cpp in Sources */,
				BBB167821E8275DD0058BF1E /* csmatch.cpp in Sources */,
				BBB167601E8275DD0058BF1E /* collationdatawriter.cpp in Sources */,
				BBB168851E8275DE0058BF1E /* winnmfmt.cpp in Sources */,
				BBB16AAF1E82762A0058BF1E /* servrbf.cpp in Sources */,
				BBB167FD1E8275DD0058BF1E /* rbnf.cpp in Sources */,
				BBB168581E8275DE0058BF1E /* ucsdet.cpp in Sources */,
				BBB16B1D1E82762B0058BF1E /* unistr_case_locale.cpp in Sources */,
				BBB16AC11E82762A0058BF1E /* ubrk.cpp in Sources */,
				BBB168641E8275DE0058BF1E /* uni2name.cpp in Sources */,
				BBB168361E8275DE0058BF1E /* stsearch.cpp in Sources */,
				BBB167C41E8275DD0058BF1E /* fphdlimp.cpp in Sources */,
				BBB168541E8275DE0058BF1E /* ucol_res.cpp in Sources */,
				BBB16B171E82762B0058BF1E /* unifunct.cpp in Sources */,
				BBB167EE1E8275DD0058BF1E /* olsontz.cpp in Sources */,
				BBB16AE31E82762A0058BF1E /* ucnv_u7.c in Sources */,
				BBB167F01E8275DD0058BF1E /* persncal.cpp in Sources */,
				BBB16A6B1E82762A0058BF1E /* loadednormalizer2impl.cpp in Sources */,
				BBB1681A1E8275DD0058BF1E /* repattrn.cpp in Sources */,
				BBB16B001E82762B0058BF1E /* uhash.c in Sources */,
				BBB16A711E82762A0058BF1E /* locdspnm.cpp in Sources */,
				BBB167D31E8275DD0058BF1E /* inputext.cpp in Sources */,
				BBB1685C1E8275DE0058BF1E /* ufieldpositer.cpp in Sources */,
				BBB16AE51E82762A0058BF1E /* ucnv_u16.c in Sources */,
				BBB167541E8275DD0058BF1E /* collation.cpp in Sources */,
				BBB16B541E82762B0058BF1E /* utrie2.cpp in Sources */,
				BBB167A91E8275DD0058BF1E /* digitaffix.cpp in Sources */,
				BBB16AB71E82762A0058BF1E /* uarrsort.c in Sources */,
				BBB16A601E82762A0058BF1E /* dictionarydata.cpp in Sources */,
				BBB16AA11E82762A0058BF1E /* resbund.cpp in Sources */,
				BBB16A4F1E82762A0058BF1E /* bytestriebuilder.cpp in Sources */,
				BBB167511E8275DD0058BF1E /* choicfmt.cpp in Sources */,
				BBB168181E8275DD0058BF1E /* remtrans.cpp in Sources */,
				BBB16A761E82762A0058BF1E /* locresdata.cpp in Sources */,
				BBB1674F1E8275DD0058BF1E /* chnsecal.cpp in Sources */,
				BBB16ABD1E82762A0058BF1E /* ubidi.c in Sources */,
				BBB167441E8275DD0058BF1E /* bocsu.cpp in Sources */,
				BBB1673E1E8275DD0058BF1E /* alphaindex.cpp in Sources */,
				BBB168171E8275DD0058BF1E /* rematch.cpp in Sources */,
				BBB16A8D1E82762A0058BF1E /* punycode.cpp in Sources */,
				BBB167A31E8275DD0058BF1E /* decimfmt.cpp in Sources */,
				BBB16B381E82762B0058BF1E /* usetiter.cpp in Sources */,
				BBB1683E1E8275DE0058BF1E /* tmutfmt.cpp in Sources */,
				BBB16B271E82762B0058BF1E /* uobject.cpp in Sources */,
				BBB16AF81E82762A0058BF1E /* udatamem.c in Sources */,
				BBB1687A1E8275DE0058BF1E /* utmscale.c in Sources */,
				BBB1686A1E8275DE0058BF1E /* uregexc.cpp in Sources */,
				BBB16B5F1E82762B0058BF1E /* wintz.c in Sources */,
				BBB1683D1E8275DE0058BF1E /* tmutamt.cpp in Sources */,
				BBB168661E8275DE0058BF1E /* unum.cpp in Sources */,
				BBB167C31E8275DD0058BF1E /* format.cpp in Sources */,
				BBB1676E1E8275DD0058BF1E /* collationrootelements.cpp in Sources */,
				BBB1684B1E8275DE0058BF1E /* tznames_impl.cpp in Sources */,
				BBB16AEC1E82762A0058BF1E /* ucnvisci.c in Sources */,
				BBB168761E8275DE0058BF1E /* utf8collationiterator.cpp in Sources */,
				BBB16B4A1E82762B0058BF1E /* utf_impl.c in Sources */,
				BBB1675A1E8275DD0058BF1E /* collationdata.cpp in Sources */,
				BBB16B431E82762B0058BF1E /* ustrenum.cpp in Sources */,
				BBB167E91E8275DD0058BF1E /* nultrans.cpp in Sources */,
				BBB1685B1E8275DE0058BF1E /* udatpg.cpp in Sources */,
				BBB1674D1E8275DD0058BF1E /* cecal.cpp in Sources */,
				BBB168701E8275DE0058BF1E /* uspoof_impl.cpp in Sources */,
				BBB167DA1E8275DD0058BF1E /* measunit.cpp in Sources */,
				BBB168741E8275DE0058BF1E /* uspoof.cpp in Sources */,
				BBB16AEE1E82762A0058BF1E /* ucnvmbcs.cpp in Sources */,
				BBB167951E8275DD0058BF1E /* dangical.cpp in Sources */,
				BBB16AE11E82762A0058BF1E /* ucnv_lmb.c in Sources */,
				BBB16AE71E82762A0058BF1E /* ucnv.c in Sources */,
				BBB167FB1E8275DD0058BF1E /* quantityformatter.cpp in Sources */,
				BBB16A511E82762A0058BF1E /* caniter.cpp in Sources */,
				BBB16AF71E82762A0058BF1E /* udata.cpp in Sources */,
				BBB167881E8275DD0058BF1E /* csrmbcs.cpp in Sources */,
				BBB1675C1E8275DD0058BF1E /* collationdatabuilder.cpp in Sources */,
				BBB1688B1E8275DE0058BF1E /* zrule.cpp in Sources */,
				BBB168611E8275DE0058BF1E /* umsg.cpp in Sources */,
				BBB1678C1E8275DD0058BF1E /* csrucode.cpp in Sources */,
				BBB168721E8275DE0058BF1E /* uspoof_wsconf.cpp in Sources */,
				BBB168291E8275DE0058BF1E /* simpletz.cpp in Sources */,
				BBB16AFA1E82762A0058BF1E /* udataswp.c in Sources */,
				BBB167EB1E8275DD0058BF1E /* numfmt.cpp in Sources */,
				BBB167E11E8275DD0058BF1E /* nfrs.cpp in Sources */,
				BBB16ACA1E82762A0058BF1E /* uchar.c in Sources */,
				BBB167F41E8275DD0058BF1E /* plurfmt.cpp in Sources */,
				BBB16A911E82762A0058BF1E /* rbbi.cpp in Sources */,
				BBB167AD1E8275DD0058BF1E /* digitformatter.cpp in Sources */,
				BBB16AAC1E82762A0058BF1E /* servls.cpp in Sources */,
				BBB167B31E8275DD0058BF1E /* digitlst.cpp in Sources */,
				BBB16B4B1E82762B0058BF1E /* util_props.cpp in Sources */,
				BBB167DD1E8275DD0058BF1E /* msgfmt.cpp in Sources */,
				BBB16ACD1E82762A0058BF1E /* ucharstrieiterator.cpp in Sources */,
				BBB1679E1E8275DD0058BF1E /* decfmtst.cpp in Sources */,
				BBB168811E8275DE0058BF1E /* vzone.cpp in Sources */,
				BBB16AE61E82762A0058BF1E /* ucnv_u32.c in Sources */,
				BBB167C01E8275DD0058BF1E /* fmtable_cnv.cpp in Sources */,
				BBB167561E8275DD0058BF1E /* collationbuilder.cpp in Sources */,
				BBB168621E8275DE0058BF1E /* unesctrn.cpp in Sources */,
				BBB16B5D1E82762B0058BF1E /* uvectr64.cpp in Sources */,
				BBB1678A1E8275DD0058BF1E /* csrsbcs.cpp in Sources */,
				BBB16AA21E82762A0058BF1E /* resource.cpp in Sources */,
				BBB1683C1E8275DE0058BF1E /* tmunit.cpp in Sources */,
				BBB167A01E8275DD0058BF1E /* decimalformatpattern.cpp in Sources */,
				BBB168301E8275DE0058BF1E /* standardplural.cpp in Sources */,
				BBB168131E8275DD0058BF1E /* region.cpp in Sources */,
				BBB16B161E82762B0058BF1E /* unifilt.cpp in Sources */,
				BBB167531E8275DD0058BF1E /* coll.cpp in Sources */,
				BBB16AA91E82762A0058BF1E /* servlk.cpp in Sources */,
				BBB16B041E82762B0058BF1E /* uinvchar.c in Sources */,
				BBB1680E1E8275DD0058BF1E /* regexst.cpp in Sources */,
				BBB1687C1E8275DE0058BF1E /* valueformatter.cpp in Sources */,
				BBB1674A1E8275DD0058BF1E /* calendar.cpp in Sources */,
				BBB168201E8275DD0058BF1E /* selfmt.cpp in Sources */,
				BBB16A961E82762A0058BF1E /* rbbirb.cpp in Sources */,
				BBB16B471E82762B0058BF1E /* ustring.cpp in Sources */,
				BBB1678E1E8275DD0058BF1E /* csrutf8.cpp in Sources */,
				BBB16B191E82762B0058BF1E /* uniset_props.cpp in Sources */,
				BBB167BA1E8275DD0058BF1E /* dtptngen.cpp in Sources */,
				BBB16B521E82762B0058BF1E /* utrie2_builder.cpp in Sources */,
				BBB167F61E8275DD0058BF1E /* plurrule.cpp in Sources */,
				BBB16B1A1E82762B0058BF1E /* uniset.cpp in Sources */,
				BBB167481E8275DD0058BF1E /* buddhcal.cpp in Sources */,
				BBB16B591E82762B0058BF1E /* uvector.cpp in Sources */,
				BBB167B71E8275DD0058BF1E /* dtitvfmt.cpp in Sources */,
				BBB16AC41E82762A0058BF1E /* ucase.cpp in Sources */,
				BBB1685D1E8275DE0058BF1E /* uitercollationiterator.cpp in Sources */,
				BBB1686E1E8275DE0058BF1E /* uspoof_conf.cpp in Sources */,
				BBB167D71E8275DD0058BF1E /* japancal.cpp in Sources */,
				BBB16B581E82762B0058BF1E /* utypes.c in Sources */,
				BBB16ABB1E82762A0058BF1E /* ubidi_props.c in Sources */,
				BBB16B2C1E82762B0058BF1E /* uresbund.cpp in Sources */,
				BBB16A991E82762A0058BF1E /* rbbiscan.cpp in Sources */,
				BBB16B1F1E82762B0058BF1E /* unistr_cnv.cpp in Sources */,
				BBB16B071E82762B0058BF1E /* ulist.c in Sources */,
				BBB1675E1E8275DD0058BF1E /* collationdatareader.cpp in Sources */,
				BBB168151E8275DD0058BF1E /* reldtfmt.cpp in Sources */,
				BBB167861E8275DD0058BF1E /* csrecog.cpp in Sources */,
				BBB168441E8275DE0058BF1E /* transreg.cpp in Sources */,
				BBB168891E8275DE0058BF1E /* zonemeta.cpp in Sources */,
				BBB16A9B1E82762A0058BF1E /* rbbisetb.cpp in Sources */,
				BBB16AE41E82762A0058BF1E /* ucnv_u8.c in Sources */,
				BBB16A741E82762A0058BF1E /* locmap.c in Sources */,
				BBB16A581E82762A0058BF1E /* cstr.cpp in Sources */,
				BBB16AE81E82762A0058BF1E /* ucnv2022.cpp in Sources */,
				BBB16A5C1E82762A0058BF1E /* cwchar.c in Sources */,
				BBB167CB1E8275DD0058BF1E /* gregoimp.cpp in Sources */,
				BBB1683A1E8275DE0058BF1E /* titletrn.cpp in Sources */,
				BBB168591E8275DE0058BF1E /* udat.cpp in Sources */,
				BBB167431E8275DD0058BF1E /* basictz.cpp in Sources */,
				BBB16AF31E82762A0058BF1E /* ucol_swp.cpp in Sources */,
				BBB16A481E82762A0058BF1E /* bmpset.cpp in Sources */,
				BBB168221E8275DD0058BF1E /* sharedbreakiterator.cpp in Sources */,
				BBB168341E8275DE0058BF1E /* strrepl.cpp in Sources */,
				BBB16B211E82762B0058BF1E /* unistr_titlecase_brkiter.cpp in Sources */,
				BBB167981E8275DD0058BF1E /* dayperiodrules.cpp in Sources */,
				BBB1677E1E8275DD0058BF1E /* cpdtrans.cpp in Sources */,
				BBB16A731E82762A0058BF1E /* loclikely.cpp in Sources */,
				BBB167701E8275DD0058BF1E /* collationruleparser.cpp in Sources */,
				BBB168511E8275DE0058BF1E /* ucln_in.cpp in Sources */,
				BBB16B411E82762B0058BF1E /* ustrcase_locale.cpp in Sources */,
				BBB16B501E82762B0058BF1E /* utrie.cpp in Sources */,
				BBB16ADA1E82762A0058BF1E /* ucnv_ct.c in Sources */,
				BBB16AD51E82762A0058BF1E /* ucnv_bld.cpp in Sources */,
				BBB16AED1E82762A0058BF1E /* ucnvlat1.c in Sources */,
				BBB168321E8275DE0058BF1E /* strmatch.cpp in Sources */,
				BBB16B021E82762B0058BF1E /* uidna.cpp in Sources */,
				BBB16B2B1E82762B0058BF1E /* ures_cnv.c in Sources */,
				BBB16AB11E82762A0058BF1E /* sharedobject.cpp in Sources */,
				BBB16AE91E82762A0058BF1E /* ucnvbocu.cpp in Sources */,
				BBB167E51E8275DD0058BF1E /* nfsubs.cpp in Sources */,
				BBB16B4C1E82762B0058BF1E /* util.cpp in Sources */,
				BBB16B311E82762B0058BF1E /* usc_impl.c in Sources */,
				BBB167411E8275DD0058BF1E /* astro.cpp in Sources */,
				BBB16AEB1E82762A0058BF1E /* ucnvhz.c in Sources */,
				BBB168021E8275DD0058BF1E /* rbt_rule.cpp in Sources */,
				BBB167D91E8275DD0058BF1E /* measfmt.cpp in Sources */,
				BBB167781E8275DD0058BF1E /* collationweights.cpp in Sources */,
				BBB1674B1E8275DD0058BF1E /* casetrn.cpp in Sources */,
				BBB167971E8275DD0058BF1E /* datefmt.cpp in Sources */,
				BBB16B251E82762B0058BF1E /* unormcmp.cpp in Sources */,
				BBB167D11E8275DD0058BF1E /* indiancal.cpp in Sources */,
				BBB16A551E82762A0058BF1E /* cmemory.c in Sources */,
				BBB168081E8275DD0058BF1E /* rbtz.cpp in Sources */,
				BBB16B421E82762B0058BF1E /* ustrcase.cpp in Sources */,
				BBB168671E8275DE0058BF1E /* unumsys.cpp in Sources */,
				BBB16A941E82762A0058BF1E /* rbbinode.cpp in Sources */,
				BBB167F21E8275DD0058BF1E /* pluralaffix.cpp in Sources */,
				BBB167931E8275DD0058BF1E /* currpinf.cpp in Sources */,
				BBB168091E8275DD0058BF1E /* regexcmp.cpp in Sources */,
				BBB16A821E82762A0058BF1E /* normlzr.cpp in Sources */,
				BBB16B3F1E82762B0058BF1E /* ustr_titlecase_brkiter.cpp in Sources */,
				BBB168411E8275DE0058BF1E /* toupptrn.cpp in Sources */,
				BBB16B391E82762B0058BF1E /* ushape.cpp in Sources */,
				BBB16B201E82762B0058BF1E /* unistr_props.cpp in Sources */,
				BBB16AB01E82762A0058BF1E /* servslkf.cpp in Sources */,
				BBB167BC1E8275DD0058BF1E /* esctrn.cpp in Sources */,
				BBB16A4A1E82762A0058BF1E /* brkeng.cpp in Sources */,
				BBB16A471E82762A0058BF1E /* appendable.cpp in Sources */,
				BBB16AA01E82762A0058BF1E /* resbund_cnv.cpp in Sources */,
				BBB16B0E1E82762B0058BF1E /* umapfile.c in Sources */,
				BBB1686B1E8275DE0058BF1E /* uregion.cpp in Sources */,
				BBB168571E8275DE0058BF1E /* ucoleitr.cpp in Sources */,
				BBB16AF51E82762A0058BF1E /* ucurr.cpp in Sources */,
				BBB167661E8275DD0058BF1E /* collationfcd.cpp in Sources */,
				BBB16AF11E82762A0058BF1E /* ucnvsel.cpp in Sources */,
				BBB16AEA1E82762A0058BF1E /* ucnvdisp.c in Sources */,
				BBB16AAD1E82762A0058BF1E /* servnotf.cpp in Sources */,
				BBB1681B1E8275DD0058BF1E /* rulebasedcollator.cpp in Sources */,
				BBB16B031E82762B0058BF1E /* uinit.cpp in Sources */,
				BBB16A531E82762A0058BF1E /* charstr.cpp in Sources */,
				BBB16A521E82762A0058BF1E /* chariter.cpp in Sources */,
				BBB16B141E82762B0058BF1E /* unifiedcache.cpp in Sources */,
				BBB167DB1E8275DD0058BF1E /* measure.cpp in Sources */,
				BBB16A621E82762A0058BF1E /* dtintrv.cpp in Sources */,
				BBB16B241E82762B0058BF1E /* unorm.cpp in Sources */,
				BBB1676A1E8275DD0058BF1E /* collationkeys.cpp in Sources */,
				BBB16B0C1E82762B0058BF1E /* uloc.cpp in Sources */,
				BBB167B81E8275DD0058BF1E /* dtitvinf.cpp in Sources */,
				BBB16AB51E82762A0058BF1E /* stringpiece.cpp in Sources */,
				BBB167A41E8275DD0058BF1E /* decimfmtimpl.cpp in Sources */,
				BBB167C61E8275DD0058BF1E /* fpositer.cpp in Sources */,
				BBB167B11E8275DD0058BF1E /* digitinterval.cpp in Sources */,
				BBB167E71E8275DD0058BF1E /* nortrans.cpp in Sources */,
				BBB16A5E1E82762A0058BF1E /* dictbe.cpp in Sources */,
				BBB167801E8275DD0058BF1E /* csdetect.cpp in Sources */,
				BBB16ADC1E82762A0058BF1E /* ucnv_ext.cpp in Sources */,
				BBB16AA61E82762A0058BF1E /* schriter.cpp in Sources */,
				BBB16AB31E82762A0058BF1E /* simpleformatter.cpp in Sources */,
				BBB16B451E82762B0058BF1E /* ustrfmt.c in Sources */,
				BBB1687B1E8275DE0058BF1E /* utrans.cpp in Sources */,
				BBB16A6A1E82762A0058BF1E /* listformatter.cpp in Sources */,
				BBB16AC81E82762A0058BF1E /* ucat.c in Sources */,
				BBB16A831E82762A0058BF1E /* parsepos.cpp in Sources */,
				BBB16A4D1E82762A0058BF1E /* bytestream.cpp in Sources */,
				BBB1681F1E8275DD0058BF1E /* search.cpp in Sources */,
				BBB16A6E1E82762A0058BF1E /* locbased.cpp in Sources */,
				BBB16B3B1E82762B0058BF1E /* ustack.cpp in Sources */,
				BBB1682F1E8275DE0058BF1E /* sortkey.cpp in Sources */,
				BBB16B181E82762B0058BF1E /* uniset_closure.cpp in Sources */,
				BBB16AFF1E82762B0058BF1E /* uhash_us.cpp in Sources */,
				BBB168481E8275DE0058BF1E /* tzfmt.cpp in Sources */,
				BBB16AD71E82762A0058BF1E /* ucnv_cb.c in Sources */,
				BBB167CD1E8275DD0058BF1E /* hebrwcal.cpp in Sources */,
				BBB16B3C1E82762B0058BF1E /* ustr_cnv.cpp in Sources */,
				BBB167841E8275DD0058BF1E /* csr2022.cpp in Sources */,
				BBB16B341E82762B0058BF1E /* uscript.c in Sources */,
				BBB16B091E82762B0058BF1E /* ulistformatter.cpp in Sources */,
				BBB167C11E8275DD0058BF1E /* fmtable.cpp in Sources */,
				BBB168101E8275DD0058BF1E /* regextxt.cpp in Sources */,
				BBB168831E8275DE0058BF1E /* windtfmt.cpp in Sources */,
				BBB16B221E82762B0058BF1E /* unistr.cpp in Sources */,
				BBB16AC71E82762A0058BF1E /* ucasemap.cpp in Sources */,
				BBB167721E8275DD0058BF1E /* collationsets.cpp in Sources */,
				BBB16AD31E82762A0058BF1E /* ucmndata.c in Sources */,
				BBB167741E8275DD0058BF1E /* collationsettings.cpp in Sources */,
				BBB16A9E1E82762A0058BF1E /* rbbitblb.cpp in Sources */,
				BBB16B1E1E82762B0058BF1E /* unistr_case.cpp in Sources */,
				BBB167461E8275DD0058BF1E /* brktrans.cpp in Sources */,
				BBB167DE1E8275DD0058BF1E /* name2uni.cpp in Sources */,
				BBB167B51E8275DD0058BF1E /* dtfmtsym.cpp in Sources */,
				BBB167621E8275DD0058BF1E /* collationfastlatin.cpp in Sources */,
				BBB16AAA1E82762A0058BF1E /* servlkf.cpp in Sources */,
				BBB1688D1E8275DE0058BF1E /* ztrans.cpp in Sources */,
				BBB16A4C1E82762A0058BF1E /* brkiter.cpp in Sources */,
				BBB16A701E82762A0058BF1E /* locdispnames.cpp in Sources */,
				BBB1676C1E8275DD0058BF1E /* collationroot.cpp in Sources */,
				BBB16B3A1E82762B0058BF1E /* usprep.cpp in Sources */,
				BBB167F91E8275DD0058BF1E /* quant.cpp in Sources */,
				BBB168041E8275DD0058BF1E /* rbt_set.cpp in Sources */,
				BBB168431E8275DE0058BF1E /* translit.cpp in Sources */,
				BBB16A8B1E82762A0058BF1E /* propsvec.c in Sources */,
				BBB168141E8275DD0058BF1E /* reldatefmt.cpp in Sources */,
				BBB16AA71E82762A0058BF1E /* serv.cpp in Sources */,
				BBB168551E8275DE0058BF1E /* ucol_sit.cpp in Sources */,
				BBB16AD81E82762A0058BF1E /* ucnv_cnv.c in Sources */,
				BBB16ACE1E82762A0058BF1E /* uchriter.cpp in Sources */,
				BBB16B401E82762B0058BF1E /* ustr_wcs.cpp in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
		BBB165E01E8275120058BF1E /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = BBB16C1A1E8276A50058BF1E /* common-debug.xcconfig */;
			buildSettings = {
				CLANG_ENABLE_MODULES = NO;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"$(inherited)",
					"U_I18N_IMPLEMENTATION=1",
					"U_COMMON_IMPLEMENTATION=1",
					"U_STATIC_IMPLEMENTATION=1",
					"U_CHARSET_IS_UTF8=1",
					"U_DISABLE_RENAMING=1",
				);
				GCC_WARN_INHIBIT_ALL_WARNINGS = YES;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"$(OMIM_ROOT)",
					"$(BOOST_ROOT)",
					"$(OMIM_ROOT)/3party/icu/i18n",
					"$(OMIM_ROOT)/3party/icu/common",
				);
			};
			name = Debug;
		};
		BBB165E11E8275120058BF1E /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = BBB16C1B1E8276A50058BF1E /* common-release.xcconfig */;
			buildSettings = {
				CLANG_ENABLE_MODULES = NO;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"$(inherited)",
					"U_I18N_IMPLEMENTATION=1",
					"U_COMMON_IMPLEMENTATION=1",
					"U_STATIC_IMPLEMENTATION=1",
					"U_CHARSET_IS_UTF8=1",
					"U_DISABLE_RENAMING=1",
				);
				GCC_WARN_INHIBIT_ALL_WARNINGS = YES;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"$(OMIM_ROOT)",
					"$(BOOST_ROOT)",
					"$(OMIM_ROOT)/3party/icu/i18n",
					"$(OMIM_ROOT)/3party/icu/common",
				);
			};
			name = Release;
		};
		BBB165E31E8275120058BF1E /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				EXECUTABLE_PREFIX = lib;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		BBB165E41E8275120058BF1E /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				EXECUTABLE_PREFIX = lib;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		BBB165D21E8275120058BF1E /* Build configuration list for PBXProject "icu" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				BBB165E01E8275120058BF1E /* Debug */,
				BBB165E11E8275120058BF1E /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		BBB165E21E8275120058BF1E /* Build configuration list for PBXNativeTarget "icu" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				BBB165E31E8275120058BF1E /* Debug */,
				BBB165E41E8275120058BF1E /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = BBB165CF1E8275120058BF1E /* Project object */;
}