clips-sys 0.3.0

Bindgen generated wrapper for CLIPS (clipsrules.net)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		1E278EA31DC5A0F4000D88DD /* fileutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E278EA21DC5A0F4000D88DD /* fileutil.c */; };
		1E278EA61DC5A664000D88DD /* fileutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E278EA21DC5A0F4000D88DD /* fileutil.c */; };
		1E278EA71DC5A67E000D88DD /* fileutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E278EA41DC5A136000D88DD /* fileutil.h */; };
		1E8504BD1DC40D0A00FA75A7 /* envrnbld.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8504BC1DC40D0A00FA75A7 /* envrnbld.c */; };
		1E8504C01DC4120400FA75A7 /* envrnbld.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E8504BE1DC40D2900FA75A7 /* envrnbld.h */; };
		1E8504C11DC4122300FA75A7 /* envrnbld.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8504BC1DC40D0A00FA75A7 /* envrnbld.c */; };
		1E86D16A1C321BCD00FAB28F /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1E86D1681C321BA600FAB28F /* MainMenu.xib */; };
		1EB429371C34B3B500093F7A /* CLIPSAgendaBrowser.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1EB429351C34B3AE00093F7A /* CLIPSAgendaBrowser.xib */; };
		1EB4293C1C34C77200093F7A /* CLIPSFactBrowser.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1EB429381C34C5EE00093F7A /* CLIPSFactBrowser.xib */; };
		1EB4293D1C34C77700093F7A /* CLIPSInstanceBrowser.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1EB4293A1C34C5EE00093F7A /* CLIPSInstanceBrowser.xib */; };
		1EBA25191C34C9860013B169 /* CLIPSConstructInspector.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1EB4293E1C34C83400093F7A /* CLIPSConstructInspector.xib */; };
		1EBA251A1C34C98B0013B169 /* Preferences.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1EB429401C34C83400093F7A /* Preferences.xib */; };
		1EBA251F1C34CB130013B169 /* CLIPSTerminal.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1EBA251B1C34CB0B0013B169 /* CLIPSTerminal.xib */; };
		1EBA25201C34CB170013B169 /* CLIPSTextDocument.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1EBA251D1C34CB0B0013B169 /* CLIPSTextDocument.xib */; };
		1EFA0EFD1DC6984700AE8FAA /* entities.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFA0EFB1DC6975D00AE8FAA /* entities.h */; };
		8D15AC2C0486D014006FF6A4 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 2A37F4B9FDCFA73011CA2CEA /* Credits.rtf */; };
		8D15AC2F0486D014006FF6A4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165FFE840EACC02AAC07 /* InfoPlist.strings */; };
		B533575009D72E5900893C2F /* CLIPSConstructInspectorController.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B533574E09D72E5900893C2F /* CLIPSConstructInspectorController.h */; };
		B533575109D72E5900893C2F /* CLIPSConstructInspectorController.m in Sources */ = {isa = PBXBuildFile; fileRef = B533574F09D72E5900893C2F /* CLIPSConstructInspectorController.m */; };
		B53734AE09F946D60086408A /* userfunctions.c in Sources */ = {isa = PBXBuildFile; fileRef = B53734AC09F946D60086408A /* userfunctions.c */; };
		B53E50CD09B0FD8A00F72EB0 /* CLIPSTerminalView.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B53E50C909B0FD8A00F72EB0 /* CLIPSTerminalView.h */; };
		B53E50CE09B0FD8A00F72EB0 /* CLIPSTerminalView.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E50CA09B0FD8A00F72EB0 /* CLIPSTerminalView.m */; };
		B53E50CF09B0FD8A00F72EB0 /* PreferenceController.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B53E50CB09B0FD8A00F72EB0 /* PreferenceController.h */; };
		B53E50D009B0FD8A00F72EB0 /* PreferenceController.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E50CC09B0FD8A00F72EB0 /* PreferenceController.m */; };
		B53E50DA09B1046500F72EB0 /* CLIPSTerminalController.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B53E50D809B1046500F72EB0 /* CLIPSTerminalController.h */; };
		B53E50DB09B1046500F72EB0 /* CLIPSTerminalController.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E50D909B1046500F72EB0 /* CLIPSTerminalController.m */; };
		B5491E7A0BB18E2C00206EA5 /* ModuleArrayController.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5491E780BB18E2C00206EA5 /* ModuleArrayController.h */; };
		B5491E7B0BB18E2C00206EA5 /* ModuleArrayController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5491E790BB18E2C00206EA5 /* ModuleArrayController.m */; };
		B549629209BA9D6100697F33 /* CogDown.tiff in Resources */ = {isa = PBXBuildFile; fileRef = B549628F09BA9D6100697F33 /* CogDown.tiff */; };
		B549629309BA9D6100697F33 /* CogGreyed.tiff in Resources */ = {isa = PBXBuildFile; fileRef = B549629009BA9D6100697F33 /* CogGreyed.tiff */; };
		B549629409BA9D6100697F33 /* CogUp.tiff in Resources */ = {isa = PBXBuildFile; fileRef = B549629109BA9D6100697F33 /* CogUp.tiff */; };
		B54DCD591EE1D72400014CEC /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B54DCD581EE1D72400014CEC /* Images.xcassets */; };
		B571D71B09D5E026003FCD41 /* CLIPSTerminalGlue.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B571D71909D5E026003FCD41 /* CLIPSTerminalGlue.h */; };
		B571D72509D5E0D4003FCD41 /* CLIPSTerminalGlue.m in Sources */ = {isa = PBXBuildFile; fileRef = B571D72409D5E0D4003FCD41 /* CLIPSTerminalGlue.m */; };
		B57AFA0C0BA9F90F002491B9 /* CLIPSModule.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B57AFA0A0BA9F90F002491B9 /* CLIPSModule.h */; };
		B57AFA0D0BA9F90F002491B9 /* CLIPSModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B57AFA0B0BA9F90F002491B9 /* CLIPSModule.m */; };
		B59979A90D4D9B9E00C9B896 /* agenda.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF5B09AD245A000E597B /* agenda.c */; };
		B59979AA0D4D9B9E00C9B896 /* analysis.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF5D09AD245A000E597B /* analysis.c */; };
		B59979AB0D4D9B9E00C9B896 /* argacces.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF5F09AD245A000E597B /* argacces.c */; };
		B59979AC0D4D9B9E00C9B896 /* bload.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6109AD245A000E597B /* bload.c */; };
		B59979AD0D4D9B9E00C9B896 /* bmathfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6309AD245A000E597B /* bmathfun.c */; };
		B59979AE0D4D9B9E00C9B896 /* bsave.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6509AD245A000E597B /* bsave.c */; };
		B59979AF0D4D9B9E00C9B896 /* classcom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6709AD245A000E597B /* classcom.c */; };
		B59979B00D4D9B9E00C9B896 /* classexm.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6909AD245A000E597B /* classexm.c */; };
		B59979B10D4D9B9E00C9B896 /* classfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6B09AD245A000E597B /* classfun.c */; };
		B59979B20D4D9B9E00C9B896 /* classinf.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6D09AD245A000E597B /* classinf.c */; };
		B59979B30D4D9B9E00C9B896 /* classini.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6F09AD245A000E597B /* classini.c */; };
		B59979B40D4D9B9E00C9B896 /* classpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7109AD245A000E597B /* classpsr.c */; };
		B59979B50D4D9B9E00C9B896 /* clsltpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7409AD245A000E597B /* clsltpsr.c */; };
		B59979B60D4D9B9E00C9B896 /* commline.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7709AD245A000E597B /* commline.c */; };
		B59979B70D4D9B9E00C9B896 /* conscomp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7909AD245A000E597B /* conscomp.c */; };
		B59979B80D4D9B9E00C9B896 /* constrct.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7C09AD245A000E597B /* constrct.c */; };
		B59979B90D4D9B9E00C9B896 /* constrnt.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7E09AD245A000E597B /* constrnt.c */; };
		B59979BA0D4D9B9E00C9B896 /* crstrtgy.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8009AD245A000E597B /* crstrtgy.c */; };
		B59979BB0D4D9B9E00C9B896 /* cstrcbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8209AD245A000E597B /* cstrcbin.c */; };
		B59979BC0D4D9B9E00C9B896 /* cstrccom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8509AD245A000E597B /* cstrccom.c */; };
		B59979BD0D4D9B9E00C9B896 /* cstrcpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8709AD245A000E597B /* cstrcpsr.c */; };
		B59979BE0D4D9B9E00C9B896 /* cstrnbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8909AD245A000E597B /* cstrnbin.c */; };
		B59979BF0D4D9B9E00C9B896 /* cstrnchk.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8B09AD245A000E597B /* cstrnchk.c */; };
		B59979C00D4D9B9E00C9B896 /* cstrncmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8D09AD245A000E597B /* cstrncmp.c */; };
		B59979C10D4D9B9E00C9B896 /* cstrnops.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8F09AD245A000E597B /* cstrnops.c */; };
		B59979C20D4D9B9E00C9B896 /* cstrnpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9109AD245A000E597B /* cstrnpsr.c */; };
		B59979C30D4D9B9E00C9B896 /* cstrnutl.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9309AD245A000E597B /* cstrnutl.c */; };
		B59979C40D4D9B9E00C9B896 /* default.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9509AD245A000E597B /* default.c */; };
		B59979C50D4D9B9E00C9B896 /* defins.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9709AD245A000E597B /* defins.c */; };
		B59979C60D4D9B9E00C9B896 /* developr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9909AD245A000E597B /* developr.c */; };
		B59979C70D4D9B9E00C9B896 /* dffctbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9B09AD245A000E597B /* dffctbin.c */; };
		B59979C80D4D9B9E00C9B896 /* dffctbsc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9D09AD245A000E597B /* dffctbsc.c */; };
		B59979C90D4D9B9E00C9B896 /* dffctcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9F09AD245A000E597B /* dffctcmp.c */; };
		B59979CA0D4D9B9E00C9B896 /* dffctdef.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFA109AD245A000E597B /* dffctdef.c */; };
		B59979CB0D4D9B9E00C9B896 /* dffctpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFA309AD245A000E597B /* dffctpsr.c */; };
		B59979CC0D4D9B9E00C9B896 /* dffnxbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFA509AD245A000E597B /* dffnxbin.c */; };
		B59979CD0D4D9B9E00C9B896 /* dffnxcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFA709AD245A000E597B /* dffnxcmp.c */; };
		B59979CE0D4D9B9E00C9B896 /* dffnxexe.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFA909AD245A000E597B /* dffnxexe.c */; };
		B59979CF0D4D9B9E00C9B896 /* dffnxfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFAB09AD245A000E597B /* dffnxfun.c */; };
		B59979D00D4D9B9E00C9B896 /* dffnxpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFAD09AD245A000E597B /* dffnxpsr.c */; };
		B59979D10D4D9B9E00C9B896 /* dfinsbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFAF09AD245A000E597B /* dfinsbin.c */; };
		B59979D20D4D9B9E00C9B896 /* dfinscmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFB109AD245A000E597B /* dfinscmp.c */; };
		B59979D30D4D9B9E00C9B896 /* drive.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFB309AD245A000E597B /* drive.c */; };
		B59979D90D4D9B9E00C9B896 /* emathfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFBB09AD245A000E597B /* emathfun.c */; };
		B59979DA0D4D9B9E00C9B896 /* engine.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFBD09AD245A000E597B /* engine.c */; };
		B59979DB0D4D9B9E00C9B896 /* envrnmnt.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFBF09AD245A000E597B /* envrnmnt.c */; };
		B59979DC0D4D9B9E00C9B896 /* evaluatn.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFC109AD245A000E597B /* evaluatn.c */; };
		B59979DD0D4D9B9E00C9B896 /* expressn.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFC309AD245A000E597B /* expressn.c */; };
		B59979DE0D4D9B9E00C9B896 /* exprnbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFC509AD245A000E597B /* exprnbin.c */; };
		B59979DF0D4D9B9E00C9B896 /* exprnops.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFC709AD245A000E597B /* exprnops.c */; };
		B59979E00D4D9B9E00C9B896 /* exprnpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFC909AD245A000E597B /* exprnpsr.c */; };
		B59979E10D4D9B9E00C9B896 /* extnfunc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFCB09AD245A000E597B /* extnfunc.c */; };
		B59979E20D4D9B9E00C9B896 /* factbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFCD09AD245A000E597B /* factbin.c */; };
		B59979E30D4D9B9E00C9B896 /* factbld.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFCF09AD245A000E597B /* factbld.c */; };
		B59979E40D4D9B9E00C9B896 /* factcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFD109AD245A000E597B /* factcmp.c */; };
		B59979E50D4D9B9E00C9B896 /* factcom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFD309AD245A000E597B /* factcom.c */; };
		B59979E60D4D9B9E00C9B896 /* factfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFD509AD245A000E597B /* factfun.c */; };
		B59979E70D4D9B9E00C9B896 /* factgen.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFD709AD245A000E597B /* factgen.c */; };
		B59979E80D4D9B9E00C9B896 /* facthsh.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFD909AD245A000E597B /* facthsh.c */; };
		B59979E90D4D9B9E00C9B896 /* factlhs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFDB09AD245A000E597B /* factlhs.c */; };
		B59979EA0D4D9B9E00C9B896 /* factmch.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFDD09AD245A000E597B /* factmch.c */; };
		B59979EB0D4D9B9E00C9B896 /* factmngr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFDF09AD245A000E597B /* factmngr.c */; };
		B59979EC0D4D9B9E00C9B896 /* factprt.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFE109AD245A000E597B /* factprt.c */; };
		B59979ED0D4D9B9E00C9B896 /* factqpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFE309AD245A000E597B /* factqpsr.c */; };
		B59979EE0D4D9B9E00C9B896 /* factqury.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFE509AD245A000E597B /* factqury.c */; };
		B59979EF0D4D9B9E00C9B896 /* factrete.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFE709AD245A000E597B /* factrete.c */; };
		B59979F00D4D9B9E00C9B896 /* factrhs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFE909AD245A000E597B /* factrhs.c */; };
		B59979F10D4D9B9E00C9B896 /* filecom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFEB09AD245A000E597B /* filecom.c */; };
		B59979F20D4D9B9E00C9B896 /* filertr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFED09AD245A000E597B /* filertr.c */; };
		B59979F30D4D9B9E00C9B896 /* generate.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFEF09AD245A000E597B /* generate.c */; };
		B59979F40D4D9B9E00C9B896 /* genrcbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFF109AD245A000E597B /* genrcbin.c */; };
		B59979F50D4D9B9E00C9B896 /* genrccmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFF309AD245A000E597B /* genrccmp.c */; };
		B59979F60D4D9B9E00C9B896 /* genrccom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFF509AD245A000E597B /* genrccom.c */; };
		B59979F70D4D9B9E00C9B896 /* genrcexe.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFF709AD245A000E597B /* genrcexe.c */; };
		B59979F80D4D9B9E00C9B896 /* genrcfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFF909AD245A000E597B /* genrcfun.c */; };
		B59979F90D4D9B9E00C9B896 /* genrcpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFFB09AD245A000E597B /* genrcpsr.c */; };
		B59979FA0D4D9B9E00C9B896 /* globlbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFFD09AD245A000E597B /* globlbin.c */; };
		B59979FB0D4D9B9E00C9B896 /* globlbsc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFFF09AD245A000E597B /* globlbsc.c */; };
		B59979FC0D4D9B9E00C9B896 /* globlcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00109AD245A000E597B /* globlcmp.c */; };
		B59979FD0D4D9B9E00C9B896 /* globlcom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00309AD245A000E597B /* globlcom.c */; };
		B59979FE0D4D9B9E00C9B896 /* globldef.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00509AD245A000E597B /* globldef.c */; };
		B59979FF0D4D9B9E00C9B896 /* globlpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00709AD245A000E597B /* globlpsr.c */; };
		B5997A000D4D9B9E00C9B896 /* immthpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00909AD245A000E597B /* immthpsr.c */; };
		B5997A010D4D9B9E00C9B896 /* incrrset.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00B09AD245A000E597B /* incrrset.c */; };
		B5997A020D4D9B9E00C9B896 /* inherpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00D09AD245A000E597B /* inherpsr.c */; };
		B5997A030D4D9B9E00C9B896 /* inscom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00F09AD245A000E597B /* inscom.c */; };
		B5997A040D4D9B9E00C9B896 /* insfile.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01109AD245A000E597B /* insfile.c */; };
		B5997A050D4D9B9E00C9B896 /* insfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01309AD245A000E597B /* insfun.c */; };
		B5997A060D4D9B9E00C9B896 /* insmngr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01509AD245A000E597B /* insmngr.c */; };
		B5997A070D4D9B9E00C9B896 /* insmoddp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01709AD245A000E597B /* insmoddp.c */; };
		B5997A080D4D9B9E00C9B896 /* insmult.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01909AD245A000E597B /* insmult.c */; };
		B5997A090D4D9B9E00C9B896 /* inspsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01B09AD245A000E597B /* inspsr.c */; };
		B5997A0A0D4D9B9E00C9B896 /* insquery.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01D09AD245A000E597B /* insquery.c */; };
		B5997A0B0D4D9B9E00C9B896 /* insqypsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01F09AD245A000E597B /* insqypsr.c */; };
		B5997A0C0D4D9B9E00C9B896 /* iofun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02109AD245A000E597B /* iofun.c */; };
		B5997A0D0D4D9B9E00C9B896 /* lgcldpnd.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02309AD245A000E597B /* lgcldpnd.c */; };
		B5997A0E0D4D9B9E00C9B896 /* memalloc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02609AD245A000E597B /* memalloc.c */; };
		B5997A0F0D4D9B9E00C9B896 /* miscfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02809AD245A000E597B /* miscfun.c */; };
		B5997A100D4D9B9E00C9B896 /* modulbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02A09AD245A000E597B /* modulbin.c */; };
		B5997A110D4D9B9E00C9B896 /* modulbsc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02C09AD245A000E597B /* modulbsc.c */; };
		B5997A120D4D9B9E00C9B896 /* modulcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02E09AD245A000E597B /* modulcmp.c */; };
		B5997A130D4D9B9E00C9B896 /* moduldef.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03009AD245A000E597B /* moduldef.c */; };
		B5997A140D4D9B9E00C9B896 /* modulpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03209AD245A000E597B /* modulpsr.c */; };
		B5997A150D4D9B9E00C9B896 /* modulutl.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03409AD245A000E597B /* modulutl.c */; };
		B5997A160D4D9B9E00C9B896 /* msgcom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03609AD245A000E597B /* msgcom.c */; };
		B5997A170D4D9B9E00C9B896 /* msgfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03809AD245A000E597B /* msgfun.c */; };
		B5997A180D4D9B9E00C9B896 /* msgpass.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03A09AD245A000E597B /* msgpass.c */; };
		B5997A190D4D9B9E00C9B896 /* msgpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03C09AD245A000E597B /* msgpsr.c */; };
		B5997A1A0D4D9B9E00C9B896 /* multifld.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03E09AD245A000E597B /* multifld.c */; };
		B5997A1B0D4D9B9E00C9B896 /* multifun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04009AD245A000E597B /* multifun.c */; };
		B5997A1C0D4D9B9E00C9B896 /* objbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04309AD245A000E597B /* objbin.c */; };
		B5997A1D0D4D9B9E00C9B896 /* objcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04509AD245A000E597B /* objcmp.c */; };
		B5997A1E0D4D9B9E00C9B896 /* objrtbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04809AD245A000E597B /* objrtbin.c */; };
		B5997A1F0D4D9B9E00C9B896 /* objrtbld.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04A09AD245A000E597B /* objrtbld.c */; };
		B5997A200D4D9B9E00C9B896 /* objrtcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04C09AD245A000E597B /* objrtcmp.c */; };
		B5997A210D4D9B9E00C9B896 /* objrtfnx.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04E09AD245A000E597B /* objrtfnx.c */; };
		B5997A220D4D9B9E00C9B896 /* objrtgen.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05009AD245A000E597B /* objrtgen.c */; };
		B5997A230D4D9B9E00C9B896 /* objrtmch.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05209AD245A000E597B /* objrtmch.c */; };
		B5997A240D4D9B9E00C9B896 /* parsefun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05409AD245A000E597B /* parsefun.c */; };
		B5997A250D4D9B9E00C9B896 /* pattern.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05609AD245A000E597B /* pattern.c */; };
		B5997A260D4D9B9E00C9B896 /* pprint.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05809AD245A000E597B /* pprint.c */; };
		B5997A270D4D9B9E00C9B896 /* prccode.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05A09AD245A000E597B /* prccode.c */; };
		B5997A280D4D9B9E00C9B896 /* prcdrfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05C09AD245A000E597B /* prcdrfun.c */; };
		B5997A290D4D9B9E00C9B896 /* prcdrpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05E09AD245A000E597B /* prcdrpsr.c */; };
		B5997A2A0D4D9B9E00C9B896 /* prdctfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06009AD245A000E597B /* prdctfun.c */; };
		B5997A2B0D4D9B9E00C9B896 /* prntutil.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06209AD245A000E597B /* prntutil.c */; };
		B5997A2C0D4D9B9E00C9B896 /* proflfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06409AD245A000E597B /* proflfun.c */; };
		B5997A2D0D4D9B9E00C9B896 /* reorder.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06609AD245A000E597B /* reorder.c */; };
		B5997A2E0D4D9B9E00C9B896 /* reteutil.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06809AD245A000E597B /* reteutil.c */; };
		B5997A2F0D4D9B9E00C9B896 /* retract.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06A09AD245A000E597B /* retract.c */; };
		B5997A300D4D9B9E00C9B896 /* router.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06C09AD245A000E597B /* router.c */; };
		B5997A310D4D9B9E00C9B896 /* rulebin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06E09AD245A000E597B /* rulebin.c */; };
		B5997A320D4D9B9E00C9B896 /* rulebld.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07009AD245A000E597B /* rulebld.c */; };
		B5997A330D4D9B9E00C9B896 /* rulebsc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07209AD245A000E597B /* rulebsc.c */; };
		B5997A340D4D9B9E00C9B896 /* rulecmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07409AD245A000E597B /* rulecmp.c */; };
		B5997A350D4D9B9E00C9B896 /* rulecom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07609AD245A000E597B /* rulecom.c */; };
		B5997A360D4D9B9E00C9B896 /* rulecstr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07809AD245A000E597B /* rulecstr.c */; };
		B5997A370D4D9B9E00C9B896 /* ruledef.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07A09AD245A000E597B /* ruledef.c */; };
		B5997A380D4D9B9E00C9B896 /* ruledlt.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07C09AD245A000E597B /* ruledlt.c */; };
		B5997A390D4D9B9E00C9B896 /* rulelhs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07E09AD245A000E597B /* rulelhs.c */; };
		B5997A3A0D4D9B9E00C9B896 /* rulepsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08009AD245A000E597B /* rulepsr.c */; };
		B5997A3B0D4D9B9E00C9B896 /* scanner.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08209AD245A000E597B /* scanner.c */; };
		B5997A3C0D4D9B9E00C9B896 /* sortfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08609AD245A000E597B /* sortfun.c */; };
		B5997A3D0D4D9B9E00C9B896 /* strngfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08809AD245A000E597B /* strngfun.c */; };
		B5997A3E0D4D9B9E00C9B896 /* strngrtr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08A09AD245A000E597B /* strngrtr.c */; };
		B5997A3F0D4D9B9E00C9B896 /* symblbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08C09AD245A000E597B /* symblbin.c */; };
		B5997A400D4D9B9E00C9B896 /* symblcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08E09AD245A000E597B /* symblcmp.c */; };
		B5997A410D4D9B9E00C9B896 /* symbol.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09009AD245A000E597B /* symbol.c */; };
		B5997A420D4D9B9E00C9B896 /* sysdep.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09209AD245A000E597B /* sysdep.c */; };
		B5997A430D4D9B9E00C9B896 /* textpro.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09409AD245A000E597B /* textpro.c */; };
		B5997A440D4D9B9E00C9B896 /* tmpltbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09609AD245A000E597B /* tmpltbin.c */; };
		B5997A450D4D9B9E00C9B896 /* tmpltbsc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09809AD245B000E597B /* tmpltbsc.c */; };
		B5997A460D4D9B9E00C9B896 /* tmpltcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09A09AD245B000E597B /* tmpltcmp.c */; };
		B5997A470D4D9B9E00C9B896 /* tmpltdef.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09C09AD245B000E597B /* tmpltdef.c */; };
		B5997A480D4D9B9E00C9B896 /* tmpltfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09E09AD245B000E597B /* tmpltfun.c */; };
		B5997A490D4D9B9E00C9B896 /* tmpltlhs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0A009AD245B000E597B /* tmpltlhs.c */; };
		B5997A4A0D4D9B9E00C9B896 /* tmpltpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0A209AD245B000E597B /* tmpltpsr.c */; };
		B5997A4B0D4D9B9E00C9B896 /* tmpltrhs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0A409AD245B000E597B /* tmpltrhs.c */; };
		B5997A4C0D4D9B9E00C9B896 /* tmpltutl.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0A609AD245B000E597B /* tmpltutl.c */; };
		B5997A4D0D4D9B9E00C9B896 /* userdata.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0A809AD245B000E597B /* userdata.c */; };
		B5997A4E0D4D9B9E00C9B896 /* userfunctions.c in Sources */ = {isa = PBXBuildFile; fileRef = B53734AC09F946D60086408A /* userfunctions.c */; };
		B5997A4F0D4D9B9E00C9B896 /* utility.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0AB09AD245B000E597B /* utility.c */; };
		B5997A500D4D9B9E00C9B896 /* watch.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0AD09AD245B000E597B /* watch.c */; };
		B5997A510D4D9B9E00C9B896 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = B5134C1A0B9F9D5A007B3571 /* main.c */; };
		B59D1400179C5C1A00E1A6C7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B59D13FF179C5C1A00E1A6C7 /* Cocoa.framework */; };
		B59D1401179C5C9600E1A6C7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B59D13FF179C5C1A00E1A6C7 /* Cocoa.framework */; };
		B5AF77140BA89B360090AC5E /* CLIPSAgendaController.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5AF77130BA89B360090AC5E /* CLIPSAgendaController.h */; };
		B5AF77160BA89B760090AC5E /* CLIPSFactController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5AF77150BA89B750090AC5E /* CLIPSFactController.m */; };
		B5B1B53A09CDE36A00F76417 /* CLIPSActivation.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5B1B53609CDE36A00F76417 /* CLIPSActivation.h */; };
		B5B1B53B09CDE36A00F76417 /* CLIPSActivation.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B1B53709CDE36A00F76417 /* CLIPSActivation.m */; };
		B5B1B53C09CDE36A00F76417 /* CLIPSFactController.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5B1B53809CDE36A00F76417 /* CLIPSFactController.h */; };
		B5B1B53D09CDE36A00F76417 /* CLIPSAgendaController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B1B53909CDE36A00F76417 /* CLIPSAgendaController.m */; };
		B5B1B54609CDE38600F76417 /* CLIPSFocus.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5B1B54009CDE38600F76417 /* CLIPSFocus.h */; };
		B5B1B54709CDE38600F76417 /* CLIPSFocus.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B1B54109CDE38600F76417 /* CLIPSFocus.m */; };
		B5B1B54809CDE38600F76417 /* CLIPSTextView.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5B1B54209CDE38600F76417 /* CLIPSTextView.h */; };
		B5B1B54909CDE38600F76417 /* CLIPSTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B1B54309CDE38600F76417 /* CLIPSTextView.m */; };
		B5B1B57A09CDE69F00F76417 /* CLIPSFactInstance.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5B1B57809CDE69F00F76417 /* CLIPSFactInstance.h */; };
		B5B1B57B09CDE69F00F76417 /* CLIPSFactInstance.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B1B57909CDE69F00F76417 /* CLIPSFactInstance.m */; };
		B5BCF0AF09AD245B000E597B /* agenda.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF5B09AD245A000E597B /* agenda.c */; };
		B5BCF0B009AD245B000E597B /* agenda.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF5C09AD245A000E597B /* agenda.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0B109AD245B000E597B /* analysis.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF5D09AD245A000E597B /* analysis.c */; };
		B5BCF0B209AD245B000E597B /* analysis.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF5E09AD245A000E597B /* analysis.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0B309AD245B000E597B /* argacces.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF5F09AD245A000E597B /* argacces.c */; };
		B5BCF0B409AD245B000E597B /* argacces.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF6009AD245A000E597B /* argacces.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0B509AD245B000E597B /* bload.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6109AD245A000E597B /* bload.c */; };
		B5BCF0B609AD245B000E597B /* bload.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF6209AD245A000E597B /* bload.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0B709AD245B000E597B /* bmathfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6309AD245A000E597B /* bmathfun.c */; };
		B5BCF0B809AD245B000E597B /* bmathfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF6409AD245A000E597B /* bmathfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0B909AD245B000E597B /* bsave.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6509AD245A000E597B /* bsave.c */; };
		B5BCF0BA09AD245B000E597B /* bsave.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF6609AD245A000E597B /* bsave.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0BB09AD245B000E597B /* classcom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6709AD245A000E597B /* classcom.c */; };
		B5BCF0BC09AD245B000E597B /* classcom.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF6809AD245A000E597B /* classcom.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0BD09AD245B000E597B /* classexm.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6909AD245A000E597B /* classexm.c */; };
		B5BCF0BE09AD245B000E597B /* classexm.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF6A09AD245A000E597B /* classexm.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0BF09AD245B000E597B /* classfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6B09AD245A000E597B /* classfun.c */; };
		B5BCF0C009AD245B000E597B /* classfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF6C09AD245A000E597B /* classfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0C109AD245B000E597B /* classinf.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6D09AD245A000E597B /* classinf.c */; };
		B5BCF0C209AD245B000E597B /* classinf.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF6E09AD245A000E597B /* classinf.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0C309AD245B000E597B /* classini.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF6F09AD245A000E597B /* classini.c */; };
		B5BCF0C409AD245B000E597B /* classini.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF7009AD245A000E597B /* classini.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0C509AD245B000E597B /* classpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7109AD245A000E597B /* classpsr.c */; };
		B5BCF0C609AD245B000E597B /* classpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF7209AD245A000E597B /* classpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0C709AD245B000E597B /* clips.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF7309AD245A000E597B /* clips.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0C809AD245B000E597B /* clsltpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7409AD245A000E597B /* clsltpsr.c */; };
		B5BCF0C909AD245B000E597B /* clsltpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF7509AD245A000E597B /* clsltpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0CB09AD245B000E597B /* commline.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7709AD245A000E597B /* commline.c */; };
		B5BCF0CC09AD245B000E597B /* commline.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF7809AD245A000E597B /* commline.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0CD09AD245B000E597B /* conscomp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7909AD245A000E597B /* conscomp.c */; };
		B5BCF0CE09AD245B000E597B /* conscomp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF7A09AD245A000E597B /* conscomp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0CF09AD245B000E597B /* constant.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF7B09AD245A000E597B /* constant.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0D009AD245B000E597B /* constrct.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7C09AD245A000E597B /* constrct.c */; };
		B5BCF0D109AD245B000E597B /* constrct.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF7D09AD245A000E597B /* constrct.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0D209AD245B000E597B /* constrnt.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF7E09AD245A000E597B /* constrnt.c */; };
		B5BCF0D309AD245B000E597B /* constrnt.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF7F09AD245A000E597B /* constrnt.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0D409AD245B000E597B /* crstrtgy.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8009AD245A000E597B /* crstrtgy.c */; };
		B5BCF0D509AD245B000E597B /* crstrtgy.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF8109AD245A000E597B /* crstrtgy.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0D609AD245B000E597B /* cstrcbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8209AD245A000E597B /* cstrcbin.c */; };
		B5BCF0D709AD245B000E597B /* cstrcbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF8309AD245A000E597B /* cstrcbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0D809AD245B000E597B /* cstrccmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF8409AD245A000E597B /* cstrccmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0D909AD245B000E597B /* cstrccom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8509AD245A000E597B /* cstrccom.c */; };
		B5BCF0DA09AD245B000E597B /* cstrccom.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF8609AD245A000E597B /* cstrccom.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0DB09AD245B000E597B /* cstrcpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8709AD245A000E597B /* cstrcpsr.c */; };
		B5BCF0DC09AD245B000E597B /* cstrcpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF8809AD245A000E597B /* cstrcpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0DD09AD245B000E597B /* cstrnbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8909AD245A000E597B /* cstrnbin.c */; };
		B5BCF0DE09AD245B000E597B /* cstrnbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF8A09AD245A000E597B /* cstrnbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0DF09AD245B000E597B /* cstrnchk.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8B09AD245A000E597B /* cstrnchk.c */; };
		B5BCF0E009AD245B000E597B /* cstrnchk.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF8C09AD245A000E597B /* cstrnchk.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0E109AD245B000E597B /* cstrncmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8D09AD245A000E597B /* cstrncmp.c */; };
		B5BCF0E209AD245B000E597B /* cstrncmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF8E09AD245A000E597B /* cstrncmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0E309AD245B000E597B /* cstrnops.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF8F09AD245A000E597B /* cstrnops.c */; };
		B5BCF0E409AD245B000E597B /* cstrnops.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF9009AD245A000E597B /* cstrnops.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0E509AD245B000E597B /* cstrnpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9109AD245A000E597B /* cstrnpsr.c */; };
		B5BCF0E609AD245B000E597B /* cstrnpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF9209AD245A000E597B /* cstrnpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0E709AD245B000E597B /* cstrnutl.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9309AD245A000E597B /* cstrnutl.c */; };
		B5BCF0E809AD245B000E597B /* cstrnutl.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF9409AD245A000E597B /* cstrnutl.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0E909AD245B000E597B /* default.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9509AD245A000E597B /* default.c */; };
		B5BCF0EA09AD245B000E597B /* default.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF9609AD245A000E597B /* default.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0EB09AD245B000E597B /* defins.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9709AD245A000E597B /* defins.c */; };
		B5BCF0EC09AD245B000E597B /* defins.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF9809AD245A000E597B /* defins.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0ED09AD245B000E597B /* developr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9909AD245A000E597B /* developr.c */; };
		B5BCF0EE09AD245B000E597B /* developr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF9A09AD245A000E597B /* developr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0EF09AD245B000E597B /* dffctbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9B09AD245A000E597B /* dffctbin.c */; };
		B5BCF0F009AD245B000E597B /* dffctbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF9C09AD245A000E597B /* dffctbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0F109AD245B000E597B /* dffctbsc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9D09AD245A000E597B /* dffctbsc.c */; };
		B5BCF0F209AD245B000E597B /* dffctbsc.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEF9E09AD245A000E597B /* dffctbsc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0F309AD245B000E597B /* dffctcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEF9F09AD245A000E597B /* dffctcmp.c */; };
		B5BCF0F409AD245B000E597B /* dffctcmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFA009AD245A000E597B /* dffctcmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0F509AD245B000E597B /* dffctdef.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFA109AD245A000E597B /* dffctdef.c */; };
		B5BCF0F609AD245B000E597B /* dffctdef.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFA209AD245A000E597B /* dffctdef.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0F709AD245B000E597B /* dffctpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFA309AD245A000E597B /* dffctpsr.c */; };
		B5BCF0F809AD245B000E597B /* dffctpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFA409AD245A000E597B /* dffctpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0F909AD245B000E597B /* dffnxbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFA509AD245A000E597B /* dffnxbin.c */; };
		B5BCF0FA09AD245B000E597B /* dffnxbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFA609AD245A000E597B /* dffnxbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0FB09AD245B000E597B /* dffnxcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFA709AD245A000E597B /* dffnxcmp.c */; };
		B5BCF0FC09AD245B000E597B /* dffnxcmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFA809AD245A000E597B /* dffnxcmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0FD09AD245B000E597B /* dffnxexe.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFA909AD245A000E597B /* dffnxexe.c */; };
		B5BCF0FE09AD245B000E597B /* dffnxexe.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFAA09AD245A000E597B /* dffnxexe.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF0FF09AD245B000E597B /* dffnxfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFAB09AD245A000E597B /* dffnxfun.c */; };
		B5BCF10009AD245B000E597B /* dffnxfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFAC09AD245A000E597B /* dffnxfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF10109AD245B000E597B /* dffnxpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFAD09AD245A000E597B /* dffnxpsr.c */; };
		B5BCF10209AD245B000E597B /* dffnxpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFAE09AD245A000E597B /* dffnxpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF10309AD245B000E597B /* dfinsbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFAF09AD245A000E597B /* dfinsbin.c */; };
		B5BCF10409AD245B000E597B /* dfinsbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFB009AD245A000E597B /* dfinsbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF10509AD245B000E597B /* dfinscmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFB109AD245A000E597B /* dfinscmp.c */; };
		B5BCF10609AD245B000E597B /* dfinscmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFB209AD245A000E597B /* dfinscmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF10709AD245B000E597B /* drive.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFB309AD245A000E597B /* drive.c */; };
		B5BCF10809AD245B000E597B /* drive.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFB409AD245A000E597B /* drive.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF10F09AD245B000E597B /* emathfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFBB09AD245A000E597B /* emathfun.c */; };
		B5BCF11009AD245B000E597B /* emathfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFBC09AD245A000E597B /* emathfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF11109AD245B000E597B /* engine.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFBD09AD245A000E597B /* engine.c */; };
		B5BCF11209AD245B000E597B /* engine.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFBE09AD245A000E597B /* engine.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF11309AD245B000E597B /* envrnmnt.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFBF09AD245A000E597B /* envrnmnt.c */; };
		B5BCF11409AD245B000E597B /* envrnmnt.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFC009AD245A000E597B /* envrnmnt.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF11509AD245B000E597B /* evaluatn.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFC109AD245A000E597B /* evaluatn.c */; };
		B5BCF11609AD245B000E597B /* evaluatn.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFC209AD245A000E597B /* evaluatn.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF11709AD245B000E597B /* expressn.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFC309AD245A000E597B /* expressn.c */; };
		B5BCF11809AD245B000E597B /* expressn.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFC409AD245A000E597B /* expressn.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF11909AD245B000E597B /* exprnbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFC509AD245A000E597B /* exprnbin.c */; };
		B5BCF11A09AD245B000E597B /* exprnbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFC609AD245A000E597B /* exprnbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF11B09AD245B000E597B /* exprnops.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFC709AD245A000E597B /* exprnops.c */; };
		B5BCF11C09AD245B000E597B /* exprnops.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFC809AD245A000E597B /* exprnops.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF11D09AD245B000E597B /* exprnpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFC909AD245A000E597B /* exprnpsr.c */; };
		B5BCF11E09AD245B000E597B /* exprnpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFCA09AD245A000E597B /* exprnpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF11F09AD245B000E597B /* extnfunc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFCB09AD245A000E597B /* extnfunc.c */; };
		B5BCF12009AD245B000E597B /* extnfunc.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFCC09AD245A000E597B /* extnfunc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF12109AD245B000E597B /* factbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFCD09AD245A000E597B /* factbin.c */; };
		B5BCF12209AD245B000E597B /* factbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFCE09AD245A000E597B /* factbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF12309AD245B000E597B /* factbld.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFCF09AD245A000E597B /* factbld.c */; };
		B5BCF12409AD245B000E597B /* factbld.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFD009AD245A000E597B /* factbld.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF12509AD245B000E597B /* factcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFD109AD245A000E597B /* factcmp.c */; };
		B5BCF12609AD245B000E597B /* factcmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFD209AD245A000E597B /* factcmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF12709AD245B000E597B /* factcom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFD309AD245A000E597B /* factcom.c */; };
		B5BCF12809AD245B000E597B /* factcom.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFD409AD245A000E597B /* factcom.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF12909AD245B000E597B /* factfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFD509AD245A000E597B /* factfun.c */; };
		B5BCF12A09AD245B000E597B /* factfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFD609AD245A000E597B /* factfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF12B09AD245B000E597B /* factgen.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFD709AD245A000E597B /* factgen.c */; };
		B5BCF12C09AD245B000E597B /* factgen.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFD809AD245A000E597B /* factgen.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF12D09AD245B000E597B /* facthsh.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFD909AD245A000E597B /* facthsh.c */; };
		B5BCF12E09AD245B000E597B /* facthsh.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFDA09AD245A000E597B /* facthsh.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF12F09AD245B000E597B /* factlhs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFDB09AD245A000E597B /* factlhs.c */; };
		B5BCF13009AD245B000E597B /* factlhs.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFDC09AD245A000E597B /* factlhs.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF13109AD245B000E597B /* factmch.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFDD09AD245A000E597B /* factmch.c */; };
		B5BCF13209AD245B000E597B /* factmch.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFDE09AD245A000E597B /* factmch.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF13309AD245B000E597B /* factmngr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFDF09AD245A000E597B /* factmngr.c */; };
		B5BCF13409AD245B000E597B /* factmngr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFE009AD245A000E597B /* factmngr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF13509AD245B000E597B /* factprt.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFE109AD245A000E597B /* factprt.c */; };
		B5BCF13609AD245B000E597B /* factprt.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFE209AD245A000E597B /* factprt.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF13709AD245B000E597B /* factqpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFE309AD245A000E597B /* factqpsr.c */; };
		B5BCF13809AD245B000E597B /* factqpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFE409AD245A000E597B /* factqpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF13909AD245B000E597B /* factqury.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFE509AD245A000E597B /* factqury.c */; };
		B5BCF13A09AD245B000E597B /* factqury.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFE609AD245A000E597B /* factqury.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF13B09AD245B000E597B /* factrete.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFE709AD245A000E597B /* factrete.c */; };
		B5BCF13C09AD245B000E597B /* factrete.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFE809AD245A000E597B /* factrete.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF13D09AD245B000E597B /* factrhs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFE909AD245A000E597B /* factrhs.c */; };
		B5BCF13E09AD245B000E597B /* factrhs.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFEA09AD245A000E597B /* factrhs.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF13F09AD245B000E597B /* filecom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFEB09AD245A000E597B /* filecom.c */; };
		B5BCF14009AD245B000E597B /* filecom.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFEC09AD245A000E597B /* filecom.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF14109AD245B000E597B /* filertr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFED09AD245A000E597B /* filertr.c */; };
		B5BCF14209AD245B000E597B /* filertr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFEE09AD245A000E597B /* filertr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF14309AD245B000E597B /* generate.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFEF09AD245A000E597B /* generate.c */; };
		B5BCF14409AD245B000E597B /* generate.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFF009AD245A000E597B /* generate.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF14509AD245B000E597B /* genrcbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFF109AD245A000E597B /* genrcbin.c */; };
		B5BCF14609AD245B000E597B /* genrcbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFF209AD245A000E597B /* genrcbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF14709AD245B000E597B /* genrccmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFF309AD245A000E597B /* genrccmp.c */; };
		B5BCF14809AD245B000E597B /* genrccmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFF409AD245A000E597B /* genrccmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF14909AD245B000E597B /* genrccom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFF509AD245A000E597B /* genrccom.c */; };
		B5BCF14A09AD245B000E597B /* genrccom.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFF609AD245A000E597B /* genrccom.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF14B09AD245B000E597B /* genrcexe.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFF709AD245A000E597B /* genrcexe.c */; };
		B5BCF14C09AD245B000E597B /* genrcexe.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFF809AD245A000E597B /* genrcexe.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF14D09AD245B000E597B /* genrcfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFF909AD245A000E597B /* genrcfun.c */; };
		B5BCF14E09AD245B000E597B /* genrcfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFFA09AD245A000E597B /* genrcfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF14F09AD245B000E597B /* genrcpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFFB09AD245A000E597B /* genrcpsr.c */; };
		B5BCF15009AD245B000E597B /* genrcpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFFC09AD245A000E597B /* genrcpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF15109AD245B000E597B /* globlbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFFD09AD245A000E597B /* globlbin.c */; };
		B5BCF15209AD245B000E597B /* globlbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCEFFE09AD245A000E597B /* globlbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF15309AD245B000E597B /* globlbsc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCEFFF09AD245A000E597B /* globlbsc.c */; };
		B5BCF15409AD245B000E597B /* globlbsc.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF00009AD245A000E597B /* globlbsc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF15509AD245B000E597B /* globlcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00109AD245A000E597B /* globlcmp.c */; };
		B5BCF15609AD245B000E597B /* globlcmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF00209AD245A000E597B /* globlcmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF15709AD245B000E597B /* globlcom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00309AD245A000E597B /* globlcom.c */; };
		B5BCF15809AD245B000E597B /* globlcom.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF00409AD245A000E597B /* globlcom.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF15909AD245B000E597B /* globldef.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00509AD245A000E597B /* globldef.c */; };
		B5BCF15A09AD245B000E597B /* globldef.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF00609AD245A000E597B /* globldef.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF15B09AD245B000E597B /* globlpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00709AD245A000E597B /* globlpsr.c */; };
		B5BCF15C09AD245B000E597B /* globlpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF00809AD245A000E597B /* globlpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF15D09AD245B000E597B /* immthpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00909AD245A000E597B /* immthpsr.c */; };
		B5BCF15E09AD245B000E597B /* immthpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF00A09AD245A000E597B /* immthpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF15F09AD245B000E597B /* incrrset.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00B09AD245A000E597B /* incrrset.c */; };
		B5BCF16009AD245B000E597B /* incrrset.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF00C09AD245A000E597B /* incrrset.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF16109AD245B000E597B /* inherpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00D09AD245A000E597B /* inherpsr.c */; };
		B5BCF16209AD245B000E597B /* inherpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF00E09AD245A000E597B /* inherpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF16309AD245B000E597B /* inscom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF00F09AD245A000E597B /* inscom.c */; };
		B5BCF16409AD245B000E597B /* inscom.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF01009AD245A000E597B /* inscom.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF16509AD245B000E597B /* insfile.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01109AD245A000E597B /* insfile.c */; };
		B5BCF16609AD245B000E597B /* insfile.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF01209AD245A000E597B /* insfile.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF16709AD245B000E597B /* insfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01309AD245A000E597B /* insfun.c */; };
		B5BCF16809AD245B000E597B /* insfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF01409AD245A000E597B /* insfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF16909AD245B000E597B /* insmngr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01509AD245A000E597B /* insmngr.c */; };
		B5BCF16A09AD245B000E597B /* insmngr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF01609AD245A000E597B /* insmngr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF16B09AD245B000E597B /* insmoddp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01709AD245A000E597B /* insmoddp.c */; };
		B5BCF16C09AD245B000E597B /* insmoddp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF01809AD245A000E597B /* insmoddp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF16D09AD245B000E597B /* insmult.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01909AD245A000E597B /* insmult.c */; };
		B5BCF16E09AD245B000E597B /* insmult.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF01A09AD245A000E597B /* insmult.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF16F09AD245C000E597B /* inspsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01B09AD245A000E597B /* inspsr.c */; };
		B5BCF17009AD245C000E597B /* inspsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF01C09AD245A000E597B /* inspsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF17109AD245C000E597B /* insquery.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01D09AD245A000E597B /* insquery.c */; };
		B5BCF17209AD245C000E597B /* insquery.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF01E09AD245A000E597B /* insquery.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF17309AD245C000E597B /* insqypsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF01F09AD245A000E597B /* insqypsr.c */; };
		B5BCF17409AD245C000E597B /* insqypsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF02009AD245A000E597B /* insqypsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF17509AD245C000E597B /* iofun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02109AD245A000E597B /* iofun.c */; };
		B5BCF17609AD245C000E597B /* iofun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF02209AD245A000E597B /* iofun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF17709AD245C000E597B /* lgcldpnd.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02309AD245A000E597B /* lgcldpnd.c */; };
		B5BCF17809AD245C000E597B /* lgcldpnd.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF02409AD245A000E597B /* lgcldpnd.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF17909AD245C000E597B /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF02509AD245A000E597B /* match.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF17A09AD245C000E597B /* memalloc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02609AD245A000E597B /* memalloc.c */; };
		B5BCF17B09AD245C000E597B /* memalloc.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF02709AD245A000E597B /* memalloc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF17C09AD245C000E597B /* miscfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02809AD245A000E597B /* miscfun.c */; };
		B5BCF17D09AD245C000E597B /* miscfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF02909AD245A000E597B /* miscfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF17E09AD245C000E597B /* modulbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02A09AD245A000E597B /* modulbin.c */; };
		B5BCF17F09AD245C000E597B /* modulbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF02B09AD245A000E597B /* modulbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF18009AD245C000E597B /* modulbsc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02C09AD245A000E597B /* modulbsc.c */; };
		B5BCF18109AD245C000E597B /* modulbsc.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF02D09AD245A000E597B /* modulbsc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF18209AD245C000E597B /* modulcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF02E09AD245A000E597B /* modulcmp.c */; };
		B5BCF18309AD245C000E597B /* modulcmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF02F09AD245A000E597B /* modulcmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF18409AD245C000E597B /* moduldef.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03009AD245A000E597B /* moduldef.c */; };
		B5BCF18509AD245C000E597B /* moduldef.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF03109AD245A000E597B /* moduldef.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF18609AD245C000E597B /* modulpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03209AD245A000E597B /* modulpsr.c */; };
		B5BCF18709AD245C000E597B /* modulpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF03309AD245A000E597B /* modulpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF18809AD245C000E597B /* modulutl.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03409AD245A000E597B /* modulutl.c */; };
		B5BCF18909AD245C000E597B /* modulutl.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF03509AD245A000E597B /* modulutl.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF18A09AD245C000E597B /* msgcom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03609AD245A000E597B /* msgcom.c */; };
		B5BCF18B09AD245C000E597B /* msgcom.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF03709AD245A000E597B /* msgcom.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF18C09AD245C000E597B /* msgfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03809AD245A000E597B /* msgfun.c */; };
		B5BCF18D09AD245C000E597B /* msgfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF03909AD245A000E597B /* msgfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF18E09AD245C000E597B /* msgpass.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03A09AD245A000E597B /* msgpass.c */; };
		B5BCF18F09AD245C000E597B /* msgpass.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF03B09AD245A000E597B /* msgpass.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF19009AD245C000E597B /* msgpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03C09AD245A000E597B /* msgpsr.c */; };
		B5BCF19109AD245C000E597B /* msgpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF03D09AD245A000E597B /* msgpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF19209AD245C000E597B /* multifld.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF03E09AD245A000E597B /* multifld.c */; };
		B5BCF19309AD245C000E597B /* multifld.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF03F09AD245A000E597B /* multifld.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF19409AD245C000E597B /* multifun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04009AD245A000E597B /* multifun.c */; };
		B5BCF19509AD245C000E597B /* multifun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF04109AD245A000E597B /* multifun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF19609AD245C000E597B /* network.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF04209AD245A000E597B /* network.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF19709AD245C000E597B /* objbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04309AD245A000E597B /* objbin.c */; };
		B5BCF19809AD245C000E597B /* objbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF04409AD245A000E597B /* objbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF19909AD245C000E597B /* objcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04509AD245A000E597B /* objcmp.c */; };
		B5BCF19A09AD245C000E597B /* objcmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF04609AD245A000E597B /* objcmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF19B09AD245C000E597B /* object.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF04709AD245A000E597B /* object.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF19C09AD245C000E597B /* objrtbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04809AD245A000E597B /* objrtbin.c */; };
		B5BCF19D09AD245C000E597B /* objrtbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF04909AD245A000E597B /* objrtbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF19E09AD245C000E597B /* objrtbld.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04A09AD245A000E597B /* objrtbld.c */; };
		B5BCF19F09AD245C000E597B /* objrtbld.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF04B09AD245A000E597B /* objrtbld.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1A009AD245C000E597B /* objrtcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04C09AD245A000E597B /* objrtcmp.c */; };
		B5BCF1A109AD245C000E597B /* objrtcmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF04D09AD245A000E597B /* objrtcmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1A209AD245C000E597B /* objrtfnx.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF04E09AD245A000E597B /* objrtfnx.c */; };
		B5BCF1A309AD245C000E597B /* objrtfnx.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF04F09AD245A000E597B /* objrtfnx.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1A409AD245C000E597B /* objrtgen.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05009AD245A000E597B /* objrtgen.c */; };
		B5BCF1A509AD245C000E597B /* objrtgen.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF05109AD245A000E597B /* objrtgen.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1A609AD245C000E597B /* objrtmch.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05209AD245A000E597B /* objrtmch.c */; };
		B5BCF1A709AD245C000E597B /* objrtmch.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF05309AD245A000E597B /* objrtmch.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1A809AD245C000E597B /* parsefun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05409AD245A000E597B /* parsefun.c */; };
		B5BCF1A909AD245C000E597B /* parsefun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF05509AD245A000E597B /* parsefun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1AA09AD245C000E597B /* pattern.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05609AD245A000E597B /* pattern.c */; };
		B5BCF1AB09AD245C000E597B /* pattern.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF05709AD245A000E597B /* pattern.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1AC09AD245C000E597B /* pprint.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05809AD245A000E597B /* pprint.c */; };
		B5BCF1AD09AD245C000E597B /* pprint.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF05909AD245A000E597B /* pprint.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1AE09AD245C000E597B /* prccode.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05A09AD245A000E597B /* prccode.c */; };
		B5BCF1AF09AD245C000E597B /* prccode.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF05B09AD245A000E597B /* prccode.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1B009AD245C000E597B /* prcdrfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05C09AD245A000E597B /* prcdrfun.c */; };
		B5BCF1B109AD245C000E597B /* prcdrfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF05D09AD245A000E597B /* prcdrfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1B209AD245C000E597B /* prcdrpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF05E09AD245A000E597B /* prcdrpsr.c */; };
		B5BCF1B309AD245C000E597B /* prcdrpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF05F09AD245A000E597B /* prcdrpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1B409AD245C000E597B /* prdctfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06009AD245A000E597B /* prdctfun.c */; };
		B5BCF1B509AD245C000E597B /* prdctfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF06109AD245A000E597B /* prdctfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1B609AD245C000E597B /* prntutil.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06209AD245A000E597B /* prntutil.c */; };
		B5BCF1B709AD245C000E597B /* prntutil.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF06309AD245A000E597B /* prntutil.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1B809AD245C000E597B /* proflfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06409AD245A000E597B /* proflfun.c */; };
		B5BCF1B909AD245C000E597B /* proflfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF06509AD245A000E597B /* proflfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1BA09AD245C000E597B /* reorder.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06609AD245A000E597B /* reorder.c */; };
		B5BCF1BB09AD245C000E597B /* reorder.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF06709AD245A000E597B /* reorder.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1BC09AD245C000E597B /* reteutil.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06809AD245A000E597B /* reteutil.c */; };
		B5BCF1BD09AD245C000E597B /* reteutil.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF06909AD245A000E597B /* reteutil.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1BE09AD245C000E597B /* retract.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06A09AD245A000E597B /* retract.c */; };
		B5BCF1BF09AD245C000E597B /* retract.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF06B09AD245A000E597B /* retract.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1C009AD245C000E597B /* router.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06C09AD245A000E597B /* router.c */; };
		B5BCF1C109AD245C000E597B /* router.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF06D09AD245A000E597B /* router.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1C209AD245C000E597B /* rulebin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF06E09AD245A000E597B /* rulebin.c */; };
		B5BCF1C309AD245C000E597B /* rulebin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF06F09AD245A000E597B /* rulebin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1C409AD245C000E597B /* rulebld.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07009AD245A000E597B /* rulebld.c */; };
		B5BCF1C509AD245C000E597B /* rulebld.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF07109AD245A000E597B /* rulebld.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1C609AD245C000E597B /* rulebsc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07209AD245A000E597B /* rulebsc.c */; };
		B5BCF1C709AD245C000E597B /* rulebsc.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF07309AD245A000E597B /* rulebsc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1C809AD245C000E597B /* rulecmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07409AD245A000E597B /* rulecmp.c */; };
		B5BCF1C909AD245C000E597B /* rulecmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF07509AD245A000E597B /* rulecmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1CA09AD245C000E597B /* rulecom.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07609AD245A000E597B /* rulecom.c */; };
		B5BCF1CB09AD245C000E597B /* rulecom.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF07709AD245A000E597B /* rulecom.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1CC09AD245C000E597B /* rulecstr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07809AD245A000E597B /* rulecstr.c */; };
		B5BCF1CD09AD245C000E597B /* rulecstr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF07909AD245A000E597B /* rulecstr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1CE09AD245C000E597B /* ruledef.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07A09AD245A000E597B /* ruledef.c */; };
		B5BCF1CF09AD245C000E597B /* ruledef.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF07B09AD245A000E597B /* ruledef.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1D009AD245C000E597B /* ruledlt.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07C09AD245A000E597B /* ruledlt.c */; };
		B5BCF1D109AD245C000E597B /* ruledlt.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF07D09AD245A000E597B /* ruledlt.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1D209AD245C000E597B /* rulelhs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF07E09AD245A000E597B /* rulelhs.c */; };
		B5BCF1D309AD245C000E597B /* rulelhs.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF07F09AD245A000E597B /* rulelhs.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1D409AD245C000E597B /* rulepsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08009AD245A000E597B /* rulepsr.c */; };
		B5BCF1D509AD245C000E597B /* rulepsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF08109AD245A000E597B /* rulepsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1D609AD245C000E597B /* scanner.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08209AD245A000E597B /* scanner.c */; };
		B5BCF1D709AD245C000E597B /* scanner.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF08309AD245A000E597B /* scanner.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1D809AD245C000E597B /* setup.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF08409AD245A000E597B /* setup.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1DA09AD245C000E597B /* sortfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08609AD245A000E597B /* sortfun.c */; };
		B5BCF1DB09AD245C000E597B /* sortfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF08709AD245A000E597B /* sortfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1DC09AD245C000E597B /* strngfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08809AD245A000E597B /* strngfun.c */; };
		B5BCF1DD09AD245C000E597B /* strngfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF08909AD245A000E597B /* strngfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1DE09AD245C000E597B /* strngrtr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08A09AD245A000E597B /* strngrtr.c */; };
		B5BCF1DF09AD245C000E597B /* strngrtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF08B09AD245A000E597B /* strngrtr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1E009AD245C000E597B /* symblbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08C09AD245A000E597B /* symblbin.c */; };
		B5BCF1E109AD245C000E597B /* symblbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF08D09AD245A000E597B /* symblbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1E209AD245C000E597B /* symblcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF08E09AD245A000E597B /* symblcmp.c */; };
		B5BCF1E309AD245C000E597B /* symblcmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF08F09AD245A000E597B /* symblcmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1E409AD245C000E597B /* symbol.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09009AD245A000E597B /* symbol.c */; };
		B5BCF1E509AD245C000E597B /* symbol.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF09109AD245A000E597B /* symbol.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1E609AD245C000E597B /* sysdep.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09209AD245A000E597B /* sysdep.c */; };
		B5BCF1E709AD245C000E597B /* sysdep.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF09309AD245A000E597B /* sysdep.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1E809AD245C000E597B /* textpro.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09409AD245A000E597B /* textpro.c */; };
		B5BCF1E909AD245C000E597B /* textpro.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF09509AD245A000E597B /* textpro.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1EA09AD245C000E597B /* tmpltbin.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09609AD245A000E597B /* tmpltbin.c */; };
		B5BCF1EB09AD245C000E597B /* tmpltbin.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF09709AD245A000E597B /* tmpltbin.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1EC09AD245C000E597B /* tmpltbsc.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09809AD245B000E597B /* tmpltbsc.c */; };
		B5BCF1ED09AD245C000E597B /* tmpltbsc.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF09909AD245B000E597B /* tmpltbsc.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1EE09AD245C000E597B /* tmpltcmp.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09A09AD245B000E597B /* tmpltcmp.c */; };
		B5BCF1EF09AD245C000E597B /* tmpltcmp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF09B09AD245B000E597B /* tmpltcmp.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1F009AD245C000E597B /* tmpltdef.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09C09AD245B000E597B /* tmpltdef.c */; };
		B5BCF1F109AD245C000E597B /* tmpltdef.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF09D09AD245B000E597B /* tmpltdef.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1F209AD245C000E597B /* tmpltfun.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF09E09AD245B000E597B /* tmpltfun.c */; };
		B5BCF1F309AD245C000E597B /* tmpltfun.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF09F09AD245B000E597B /* tmpltfun.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1F409AD245C000E597B /* tmpltlhs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0A009AD245B000E597B /* tmpltlhs.c */; };
		B5BCF1F509AD245C000E597B /* tmpltlhs.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF0A109AD245B000E597B /* tmpltlhs.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1F609AD245C000E597B /* tmpltpsr.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0A209AD245B000E597B /* tmpltpsr.c */; };
		B5BCF1F709AD245C000E597B /* tmpltpsr.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF0A309AD245B000E597B /* tmpltpsr.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1F809AD245C000E597B /* tmpltrhs.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0A409AD245B000E597B /* tmpltrhs.c */; };
		B5BCF1F909AD245C000E597B /* tmpltrhs.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF0A509AD245B000E597B /* tmpltrhs.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1FA09AD245C000E597B /* tmpltutl.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0A609AD245B000E597B /* tmpltutl.c */; };
		B5BCF1FB09AD245C000E597B /* tmpltutl.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF0A709AD245B000E597B /* tmpltutl.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1FC09AD245C000E597B /* userdata.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0A809AD245B000E597B /* userdata.c */; };
		B5BCF1FD09AD245C000E597B /* userdata.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF0A909AD245B000E597B /* userdata.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1FE09AD245C000E597B /* usrsetup.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF0AA09AD245B000E597B /* usrsetup.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF1FF09AD245C000E597B /* utility.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0AB09AD245B000E597B /* utility.c */; };
		B5BCF20009AD245C000E597B /* utility.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF0AC09AD245B000E597B /* utility.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF20109AD245C000E597B /* watch.c in Sources */ = {isa = PBXBuildFile; fileRef = B5BCF0AD09AD245B000E597B /* watch.c */; };
		B5BCF20209AD245C000E597B /* watch.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BCF0AE09AD245B000E597B /* watch.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B5BCF3AE09AD30A1000E597B /* CLIPS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B5BCEF5509AD23BF000E597B /* CLIPS.framework */; };
		B5BCF45F09AD30F4000E597B /* CLIPS.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5BCEF5509AD23BF000E597B /* CLIPS.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
		B5CE5D870D7DB62B002166A8 /* CLIPSInstanceController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5CE5D860D7DB62B002166A8 /* CLIPSInstanceController.m */; };
		B5FB532109AD41E2001AE877 /* CLIPSEnvironment.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5FB531709AD41E2001AE877 /* CLIPSEnvironment.h */; };
		B5FB532209AD41E2001AE877 /* CLIPSEnvironment.m in Sources */ = {isa = PBXBuildFile; fileRef = B5FB531809AD41E2001AE877 /* CLIPSEnvironment.m */; };
		B5FB532509AD41E2001AE877 /* CLIPSTextDocument.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5FB531B09AD41E2001AE877 /* CLIPSTextDocument.h */; };
		B5FB532609AD41E2001AE877 /* CLIPSTextDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = B5FB531C09AD41E2001AE877 /* CLIPSTextDocument.m */; };
		B5FB532709AD41E2001AE877 /* AppController.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B5FB531D09AD41E2001AE877 /* AppController.h */; };
		B5FB532809AD41E2001AE877 /* AppController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5FB531E09AD41E2001AE877 /* AppController.m */; };
		B5FB532C09AD4203001AE877 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = B5FB532B09AD4203001AE877 /* main.m */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		B5BCF46009AD316B000E597B /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2A37F4A9FDCFA73011CA2CEA /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = B5BCEF5409AD23BF000E597B;
			remoteInfo = CLIPS;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		B5BCF45D09AD30CE000E597B /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				B5BCF45F09AD30F4000E597B /* CLIPS.framework in CopyFiles */,
				B5FB532109AD41E2001AE877 /* CLIPSEnvironment.h in CopyFiles */,
				B5FB532509AD41E2001AE877 /* CLIPSTextDocument.h in CopyFiles */,
				B5FB532709AD41E2001AE877 /* AppController.h in CopyFiles */,
				B53E50CD09B0FD8A00F72EB0 /* CLIPSTerminalView.h in CopyFiles */,
				B53E50CF09B0FD8A00F72EB0 /* PreferenceController.h in CopyFiles */,
				B53E50DA09B1046500F72EB0 /* CLIPSTerminalController.h in CopyFiles */,
				B5B1B53A09CDE36A00F76417 /* CLIPSActivation.h in CopyFiles */,
				B5B1B53C09CDE36A00F76417 /* CLIPSFactController.h in CopyFiles */,
				B5B1B54609CDE38600F76417 /* CLIPSFocus.h in CopyFiles */,
				B5B1B54809CDE38600F76417 /* CLIPSTextView.h in CopyFiles */,
				B5B1B57A09CDE69F00F76417 /* CLIPSFactInstance.h in CopyFiles */,
				B571D71B09D5E026003FCD41 /* CLIPSTerminalGlue.h in CopyFiles */,
				B533575009D72E5900893C2F /* CLIPSConstructInspectorController.h in CopyFiles */,
				B5AF77140BA89B360090AC5E /* CLIPSAgendaController.h in CopyFiles */,
				B57AFA0C0BA9F90F002491B9 /* CLIPSModule.h in CopyFiles */,
				B5491E7A0BB18E2C00206EA5 /* ModuleArrayController.h in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		089C1660FE840EACC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		1E278EA21DC5A0F4000D88DD /* fileutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = fileutil.c; path = CLIPS_Source/fileutil.c; sourceTree = "<group>"; };
		1E278EA41DC5A136000D88DD /* fileutil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fileutil.h; path = CLIPS_Source/fileutil.h; sourceTree = "<group>"; };
		1E8504BC1DC40D0A00FA75A7 /* envrnbld.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = envrnbld.c; path = CLIPS_Source/envrnbld.c; sourceTree = "<group>"; };
		1E8504BE1DC40D2900FA75A7 /* envrnbld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = envrnbld.h; path = CLIPS_Source/envrnbld.h; sourceTree = "<group>"; };
		1E86D1691C321BA600FAB28F /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = "<group>"; };
		1EB429361C34B3AE00093F7A /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/CLIPSAgendaBrowser.xib; sourceTree = "<group>"; };
		1EB429391C34C5EE00093F7A /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/CLIPSFactBrowser.xib; sourceTree = "<group>"; };
		1EB4293B1C34C5EE00093F7A /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/CLIPSInstanceBrowser.xib; sourceTree = "<group>"; };
		1EB4293F1C34C83400093F7A /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/CLIPSConstructInspector.xib; sourceTree = "<group>"; };
		1EB429411C34C83400093F7A /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/Preferences.xib; sourceTree = "<group>"; };
		1EBA251C1C34CB0B0013B169 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/CLIPSTerminal.xib; sourceTree = "<group>"; };
		1EBA251E1C34CB0B0013B169 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/CLIPSTextDocument.xib; sourceTree = "<group>"; };
		1EFA0EFB1DC6975D00AE8FAA /* entities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = entities.h; path = CLIPS_Source/entities.h; sourceTree = "<group>"; };
		2A37F4BAFDCFA73011CA2CEA /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
		B5134C1A0B9F9D5A007B3571 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = main.c; path = CLIPS_Source/main.c; sourceTree = "<group>"; };
		B533574E09D72E5900893C2F /* CLIPSConstructInspectorController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = CLIPSConstructInspectorController.h; path = Interface_Source/CLIPSConstructInspectorController.h; sourceTree = "<group>"; };
		B533574F09D72E5900893C2F /* CLIPSConstructInspectorController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSConstructInspectorController.m; path = Interface_Source/CLIPSConstructInspectorController.m; sourceTree = "<group>"; };
		B53734AC09F946D60086408A /* userfunctions.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = userfunctions.c; path = CLIPS_Source/userfunctions.c; sourceTree = "<group>"; };
		B53E50C909B0FD8A00F72EB0 /* CLIPSTerminalView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = CLIPSTerminalView.h; path = Interface_Source/CLIPSTerminalView.h; sourceTree = "<group>"; };
		B53E50CA09B0FD8A00F72EB0 /* CLIPSTerminalView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSTerminalView.m; path = Interface_Source/CLIPSTerminalView.m; sourceTree = "<group>"; };
		B53E50CB09B0FD8A00F72EB0 /* PreferenceController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PreferenceController.h; path = Interface_Source/PreferenceController.h; sourceTree = "<group>"; };
		B53E50CC09B0FD8A00F72EB0 /* PreferenceController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PreferenceController.m; path = Interface_Source/PreferenceController.m; sourceTree = "<group>"; };
		B53E50D809B1046500F72EB0 /* CLIPSTerminalController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CLIPSTerminalController.h; path = Interface_Source/CLIPSTerminalController.h; sourceTree = "<group>"; };
		B53E50D909B1046500F72EB0 /* CLIPSTerminalController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CLIPSTerminalController.m; path = Interface_Source/CLIPSTerminalController.m; sourceTree = "<group>"; };
		B5491E780BB18E2C00206EA5 /* ModuleArrayController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModuleArrayController.h; path = Interface_Source/ModuleArrayController.h; sourceTree = "<group>"; };
		B5491E790BB18E2C00206EA5 /* ModuleArrayController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModuleArrayController.m; path = Interface_Source/ModuleArrayController.m; sourceTree = "<group>"; };
		B549628F09BA9D6100697F33 /* CogDown.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; name = CogDown.tiff; path = Resources/CogDown.tiff; sourceTree = "<group>"; };
		B549629009BA9D6100697F33 /* CogGreyed.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; name = CogGreyed.tiff; path = Resources/CogGreyed.tiff; sourceTree = "<group>"; };
		B549629109BA9D6100697F33 /* CogUp.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; name = CogUp.tiff; path = Resources/CogUp.tiff; sourceTree = "<group>"; };
		B54DCD581EE1D72400014CEC /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Interface_Source/Images.xcassets; sourceTree = "<group>"; };
		B571D71909D5E026003FCD41 /* CLIPSTerminalGlue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CLIPSTerminalGlue.h; path = Interface_Source/CLIPSTerminalGlue.h; sourceTree = "<group>"; };
		B571D72409D5E0D4003FCD41 /* CLIPSTerminalGlue.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSTerminalGlue.m; path = Interface_Source/CLIPSTerminalGlue.m; sourceTree = "<group>"; };
		B57AFA0A0BA9F90F002491B9 /* CLIPSModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CLIPSModule.h; path = Interface_Source/CLIPSModule.h; sourceTree = "<group>"; };
		B57AFA0B0BA9F90F002491B9 /* CLIPSModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CLIPSModule.m; path = Interface_Source/CLIPSModule.m; sourceTree = "<group>"; };
		B5997A580D4D9B9E00C9B896 /* CLIPS Console */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "CLIPS Console"; sourceTree = BUILT_PRODUCTS_DIR; };
		B59D13FF179C5C1A00E1A6C7 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
		B5AF77130BA89B360090AC5E /* CLIPSAgendaController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = CLIPSAgendaController.h; path = Interface_Source/CLIPSAgendaController.h; sourceTree = "<group>"; };
		B5AF77150BA89B750090AC5E /* CLIPSFactController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSFactController.m; path = Interface_Source/CLIPSFactController.m; sourceTree = "<group>"; };
		B5B1B53609CDE36A00F76417 /* CLIPSActivation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = CLIPSActivation.h; path = Interface_Source/CLIPSActivation.h; sourceTree = "<group>"; };
		B5B1B53709CDE36A00F76417 /* CLIPSActivation.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSActivation.m; path = Interface_Source/CLIPSActivation.m; sourceTree = "<group>"; };
		B5B1B53809CDE36A00F76417 /* CLIPSFactController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = CLIPSFactController.h; path = Interface_Source/CLIPSFactController.h; sourceTree = "<group>"; };
		B5B1B53909CDE36A00F76417 /* CLIPSAgendaController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSAgendaController.m; path = Interface_Source/CLIPSAgendaController.m; sourceTree = "<group>"; };
		B5B1B54009CDE38600F76417 /* CLIPSFocus.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = CLIPSFocus.h; path = Interface_Source/CLIPSFocus.h; sourceTree = "<group>"; };
		B5B1B54109CDE38600F76417 /* CLIPSFocus.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSFocus.m; path = Interface_Source/CLIPSFocus.m; sourceTree = "<group>"; };
		B5B1B54209CDE38600F76417 /* CLIPSTextView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = CLIPSTextView.h; path = Interface_Source/CLIPSTextView.h; sourceTree = "<group>"; };
		B5B1B54309CDE38600F76417 /* CLIPSTextView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSTextView.m; path = Interface_Source/CLIPSTextView.m; sourceTree = "<group>"; };
		B5B1B57809CDE69F00F76417 /* CLIPSFactInstance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CLIPSFactInstance.h; path = Interface_Source/CLIPSFactInstance.h; sourceTree = "<group>"; };
		B5B1B57909CDE69F00F76417 /* CLIPSFactInstance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CLIPSFactInstance.m; path = Interface_Source/CLIPSFactInstance.m; sourceTree = "<group>"; };
		B5BCEF5509AD23BF000E597B /* CLIPS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CLIPS.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		B5BCEF5B09AD245A000E597B /* agenda.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = agenda.c; path = CLIPS_Source/agenda.c; sourceTree = "<group>"; };
		B5BCEF5C09AD245A000E597B /* agenda.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = agenda.h; path = CLIPS_Source/agenda.h; sourceTree = "<group>"; };
		B5BCEF5D09AD245A000E597B /* analysis.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = analysis.c; path = CLIPS_Source/analysis.c; sourceTree = "<group>"; };
		B5BCEF5E09AD245A000E597B /* analysis.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = analysis.h; path = CLIPS_Source/analysis.h; sourceTree = "<group>"; };
		B5BCEF5F09AD245A000E597B /* argacces.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = argacces.c; path = CLIPS_Source/argacces.c; sourceTree = "<group>"; };
		B5BCEF6009AD245A000E597B /* argacces.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = argacces.h; path = CLIPS_Source/argacces.h; sourceTree = "<group>"; };
		B5BCEF6109AD245A000E597B /* bload.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = bload.c; path = CLIPS_Source/bload.c; sourceTree = "<group>"; };
		B5BCEF6209AD245A000E597B /* bload.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = bload.h; path = CLIPS_Source/bload.h; sourceTree = "<group>"; };
		B5BCEF6309AD245A000E597B /* bmathfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = bmathfun.c; path = CLIPS_Source/bmathfun.c; sourceTree = "<group>"; };
		B5BCEF6409AD245A000E597B /* bmathfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = bmathfun.h; path = CLIPS_Source/bmathfun.h; sourceTree = "<group>"; };
		B5BCEF6509AD245A000E597B /* bsave.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = bsave.c; path = CLIPS_Source/bsave.c; sourceTree = "<group>"; };
		B5BCEF6609AD245A000E597B /* bsave.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = bsave.h; path = CLIPS_Source/bsave.h; sourceTree = "<group>"; };
		B5BCEF6709AD245A000E597B /* classcom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = classcom.c; path = CLIPS_Source/classcom.c; sourceTree = "<group>"; };
		B5BCEF6809AD245A000E597B /* classcom.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = classcom.h; path = CLIPS_Source/classcom.h; sourceTree = "<group>"; };
		B5BCEF6909AD245A000E597B /* classexm.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = classexm.c; path = CLIPS_Source/classexm.c; sourceTree = "<group>"; };
		B5BCEF6A09AD245A000E597B /* classexm.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = classexm.h; path = CLIPS_Source/classexm.h; sourceTree = "<group>"; };
		B5BCEF6B09AD245A000E597B /* classfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = classfun.c; path = CLIPS_Source/classfun.c; sourceTree = "<group>"; };
		B5BCEF6C09AD245A000E597B /* classfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = classfun.h; path = CLIPS_Source/classfun.h; sourceTree = "<group>"; };
		B5BCEF6D09AD245A000E597B /* classinf.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = classinf.c; path = CLIPS_Source/classinf.c; sourceTree = "<group>"; };
		B5BCEF6E09AD245A000E597B /* classinf.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = classinf.h; path = CLIPS_Source/classinf.h; sourceTree = "<group>"; };
		B5BCEF6F09AD245A000E597B /* classini.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = classini.c; path = CLIPS_Source/classini.c; sourceTree = "<group>"; };
		B5BCEF7009AD245A000E597B /* classini.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = classini.h; path = CLIPS_Source/classini.h; sourceTree = "<group>"; };
		B5BCEF7109AD245A000E597B /* classpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = classpsr.c; path = CLIPS_Source/classpsr.c; sourceTree = "<group>"; };
		B5BCEF7209AD245A000E597B /* classpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = classpsr.h; path = CLIPS_Source/classpsr.h; sourceTree = "<group>"; };
		B5BCEF7309AD245A000E597B /* clips.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = clips.h; path = CLIPS_Source/clips.h; sourceTree = "<group>"; };
		B5BCEF7409AD245A000E597B /* clsltpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = clsltpsr.c; path = CLIPS_Source/clsltpsr.c; sourceTree = "<group>"; };
		B5BCEF7509AD245A000E597B /* clsltpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = clsltpsr.h; path = CLIPS_Source/clsltpsr.h; sourceTree = "<group>"; };
		B5BCEF7709AD245A000E597B /* commline.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = commline.c; path = CLIPS_Source/commline.c; sourceTree = "<group>"; };
		B5BCEF7809AD245A000E597B /* commline.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = commline.h; path = CLIPS_Source/commline.h; sourceTree = "<group>"; };
		B5BCEF7909AD245A000E597B /* conscomp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = conscomp.c; path = CLIPS_Source/conscomp.c; sourceTree = "<group>"; };
		B5BCEF7A09AD245A000E597B /* conscomp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = conscomp.h; path = CLIPS_Source/conscomp.h; sourceTree = "<group>"; };
		B5BCEF7B09AD245A000E597B /* constant.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = constant.h; path = CLIPS_Source/constant.h; sourceTree = "<group>"; };
		B5BCEF7C09AD245A000E597B /* constrct.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = constrct.c; path = CLIPS_Source/constrct.c; sourceTree = "<group>"; };
		B5BCEF7D09AD245A000E597B /* constrct.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = constrct.h; path = CLIPS_Source/constrct.h; sourceTree = "<group>"; };
		B5BCEF7E09AD245A000E597B /* constrnt.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = constrnt.c; path = CLIPS_Source/constrnt.c; sourceTree = "<group>"; };
		B5BCEF7F09AD245A000E597B /* constrnt.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = constrnt.h; path = CLIPS_Source/constrnt.h; sourceTree = "<group>"; };
		B5BCEF8009AD245A000E597B /* crstrtgy.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = crstrtgy.c; path = CLIPS_Source/crstrtgy.c; sourceTree = "<group>"; };
		B5BCEF8109AD245A000E597B /* crstrtgy.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = crstrtgy.h; path = CLIPS_Source/crstrtgy.h; sourceTree = "<group>"; };
		B5BCEF8209AD245A000E597B /* cstrcbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cstrcbin.c; path = CLIPS_Source/cstrcbin.c; sourceTree = "<group>"; };
		B5BCEF8309AD245A000E597B /* cstrcbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cstrcbin.h; path = CLIPS_Source/cstrcbin.h; sourceTree = "<group>"; };
		B5BCEF8409AD245A000E597B /* cstrccmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cstrccmp.h; path = CLIPS_Source/cstrccmp.h; sourceTree = "<group>"; };
		B5BCEF8509AD245A000E597B /* cstrccom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cstrccom.c; path = CLIPS_Source/cstrccom.c; sourceTree = "<group>"; };
		B5BCEF8609AD245A000E597B /* cstrccom.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cstrccom.h; path = CLIPS_Source/cstrccom.h; sourceTree = "<group>"; };
		B5BCEF8709AD245A000E597B /* cstrcpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cstrcpsr.c; path = CLIPS_Source/cstrcpsr.c; sourceTree = "<group>"; };
		B5BCEF8809AD245A000E597B /* cstrcpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cstrcpsr.h; path = CLIPS_Source/cstrcpsr.h; sourceTree = "<group>"; };
		B5BCEF8909AD245A000E597B /* cstrnbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cstrnbin.c; path = CLIPS_Source/cstrnbin.c; sourceTree = "<group>"; };
		B5BCEF8A09AD245A000E597B /* cstrnbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cstrnbin.h; path = CLIPS_Source/cstrnbin.h; sourceTree = "<group>"; };
		B5BCEF8B09AD245A000E597B /* cstrnchk.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cstrnchk.c; path = CLIPS_Source/cstrnchk.c; sourceTree = "<group>"; };
		B5BCEF8C09AD245A000E597B /* cstrnchk.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cstrnchk.h; path = CLIPS_Source/cstrnchk.h; sourceTree = "<group>"; };
		B5BCEF8D09AD245A000E597B /* cstrncmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cstrncmp.c; path = CLIPS_Source/cstrncmp.c; sourceTree = "<group>"; };
		B5BCEF8E09AD245A000E597B /* cstrncmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cstrncmp.h; path = CLIPS_Source/cstrncmp.h; sourceTree = "<group>"; };
		B5BCEF8F09AD245A000E597B /* cstrnops.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cstrnops.c; path = CLIPS_Source/cstrnops.c; sourceTree = "<group>"; };
		B5BCEF9009AD245A000E597B /* cstrnops.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cstrnops.h; path = CLIPS_Source/cstrnops.h; sourceTree = "<group>"; };
		B5BCEF9109AD245A000E597B /* cstrnpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cstrnpsr.c; path = CLIPS_Source/cstrnpsr.c; sourceTree = "<group>"; };
		B5BCEF9209AD245A000E597B /* cstrnpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cstrnpsr.h; path = CLIPS_Source/cstrnpsr.h; sourceTree = "<group>"; };
		B5BCEF9309AD245A000E597B /* cstrnutl.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = cstrnutl.c; path = CLIPS_Source/cstrnutl.c; sourceTree = "<group>"; };
		B5BCEF9409AD245A000E597B /* cstrnutl.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = cstrnutl.h; path = CLIPS_Source/cstrnutl.h; sourceTree = "<group>"; };
		B5BCEF9509AD245A000E597B /* default.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = default.c; path = CLIPS_Source/default.c; sourceTree = "<group>"; };
		B5BCEF9609AD245A000E597B /* default.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = default.h; path = CLIPS_Source/default.h; sourceTree = "<group>"; };
		B5BCEF9709AD245A000E597B /* defins.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = defins.c; path = CLIPS_Source/defins.c; sourceTree = "<group>"; };
		B5BCEF9809AD245A000E597B /* defins.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = defins.h; path = CLIPS_Source/defins.h; sourceTree = "<group>"; };
		B5BCEF9909AD245A000E597B /* developr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = developr.c; path = CLIPS_Source/developr.c; sourceTree = "<group>"; };
		B5BCEF9A09AD245A000E597B /* developr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = developr.h; path = CLIPS_Source/developr.h; sourceTree = "<group>"; };
		B5BCEF9B09AD245A000E597B /* dffctbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dffctbin.c; path = CLIPS_Source/dffctbin.c; sourceTree = "<group>"; };
		B5BCEF9C09AD245A000E597B /* dffctbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dffctbin.h; path = CLIPS_Source/dffctbin.h; sourceTree = "<group>"; };
		B5BCEF9D09AD245A000E597B /* dffctbsc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dffctbsc.c; path = CLIPS_Source/dffctbsc.c; sourceTree = "<group>"; };
		B5BCEF9E09AD245A000E597B /* dffctbsc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dffctbsc.h; path = CLIPS_Source/dffctbsc.h; sourceTree = "<group>"; };
		B5BCEF9F09AD245A000E597B /* dffctcmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dffctcmp.c; path = CLIPS_Source/dffctcmp.c; sourceTree = "<group>"; };
		B5BCEFA009AD245A000E597B /* dffctcmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dffctcmp.h; path = CLIPS_Source/dffctcmp.h; sourceTree = "<group>"; };
		B5BCEFA109AD245A000E597B /* dffctdef.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dffctdef.c; path = CLIPS_Source/dffctdef.c; sourceTree = "<group>"; };
		B5BCEFA209AD245A000E597B /* dffctdef.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dffctdef.h; path = CLIPS_Source/dffctdef.h; sourceTree = "<group>"; };
		B5BCEFA309AD245A000E597B /* dffctpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dffctpsr.c; path = CLIPS_Source/dffctpsr.c; sourceTree = "<group>"; };
		B5BCEFA409AD245A000E597B /* dffctpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dffctpsr.h; path = CLIPS_Source/dffctpsr.h; sourceTree = "<group>"; };
		B5BCEFA509AD245A000E597B /* dffnxbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dffnxbin.c; path = CLIPS_Source/dffnxbin.c; sourceTree = "<group>"; };
		B5BCEFA609AD245A000E597B /* dffnxbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dffnxbin.h; path = CLIPS_Source/dffnxbin.h; sourceTree = "<group>"; };
		B5BCEFA709AD245A000E597B /* dffnxcmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dffnxcmp.c; path = CLIPS_Source/dffnxcmp.c; sourceTree = "<group>"; };
		B5BCEFA809AD245A000E597B /* dffnxcmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dffnxcmp.h; path = CLIPS_Source/dffnxcmp.h; sourceTree = "<group>"; };
		B5BCEFA909AD245A000E597B /* dffnxexe.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dffnxexe.c; path = CLIPS_Source/dffnxexe.c; sourceTree = "<group>"; };
		B5BCEFAA09AD245A000E597B /* dffnxexe.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dffnxexe.h; path = CLIPS_Source/dffnxexe.h; sourceTree = "<group>"; };
		B5BCEFAB09AD245A000E597B /* dffnxfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dffnxfun.c; path = CLIPS_Source/dffnxfun.c; sourceTree = "<group>"; };
		B5BCEFAC09AD245A000E597B /* dffnxfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dffnxfun.h; path = CLIPS_Source/dffnxfun.h; sourceTree = "<group>"; };
		B5BCEFAD09AD245A000E597B /* dffnxpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dffnxpsr.c; path = CLIPS_Source/dffnxpsr.c; sourceTree = "<group>"; };
		B5BCEFAE09AD245A000E597B /* dffnxpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dffnxpsr.h; path = CLIPS_Source/dffnxpsr.h; sourceTree = "<group>"; };
		B5BCEFAF09AD245A000E597B /* dfinsbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dfinsbin.c; path = CLIPS_Source/dfinsbin.c; sourceTree = "<group>"; };
		B5BCEFB009AD245A000E597B /* dfinsbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dfinsbin.h; path = CLIPS_Source/dfinsbin.h; sourceTree = "<group>"; };
		B5BCEFB109AD245A000E597B /* dfinscmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dfinscmp.c; path = CLIPS_Source/dfinscmp.c; sourceTree = "<group>"; };
		B5BCEFB209AD245A000E597B /* dfinscmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = dfinscmp.h; path = CLIPS_Source/dfinscmp.h; sourceTree = "<group>"; };
		B5BCEFB309AD245A000E597B /* drive.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = drive.c; path = CLIPS_Source/drive.c; sourceTree = "<group>"; };
		B5BCEFB409AD245A000E597B /* drive.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = drive.h; path = CLIPS_Source/drive.h; sourceTree = "<group>"; };
		B5BCEFBB09AD245A000E597B /* emathfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = emathfun.c; path = CLIPS_Source/emathfun.c; sourceTree = "<group>"; };
		B5BCEFBC09AD245A000E597B /* emathfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = emathfun.h; path = CLIPS_Source/emathfun.h; sourceTree = "<group>"; };
		B5BCEFBD09AD245A000E597B /* engine.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = engine.c; path = CLIPS_Source/engine.c; sourceTree = "<group>"; };
		B5BCEFBE09AD245A000E597B /* engine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = engine.h; path = CLIPS_Source/engine.h; sourceTree = "<group>"; };
		B5BCEFBF09AD245A000E597B /* envrnmnt.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = envrnmnt.c; path = CLIPS_Source/envrnmnt.c; sourceTree = "<group>"; };
		B5BCEFC009AD245A000E597B /* envrnmnt.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = envrnmnt.h; path = CLIPS_Source/envrnmnt.h; sourceTree = "<group>"; };
		B5BCEFC109AD245A000E597B /* evaluatn.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = evaluatn.c; path = CLIPS_Source/evaluatn.c; sourceTree = "<group>"; };
		B5BCEFC209AD245A000E597B /* evaluatn.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = evaluatn.h; path = CLIPS_Source/evaluatn.h; sourceTree = "<group>"; };
		B5BCEFC309AD245A000E597B /* expressn.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = expressn.c; path = CLIPS_Source/expressn.c; sourceTree = "<group>"; };
		B5BCEFC409AD245A000E597B /* expressn.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = expressn.h; path = CLIPS_Source/expressn.h; sourceTree = "<group>"; };
		B5BCEFC509AD245A000E597B /* exprnbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = exprnbin.c; path = CLIPS_Source/exprnbin.c; sourceTree = "<group>"; };
		B5BCEFC609AD245A000E597B /* exprnbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = exprnbin.h; path = CLIPS_Source/exprnbin.h; sourceTree = "<group>"; };
		B5BCEFC709AD245A000E597B /* exprnops.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = exprnops.c; path = CLIPS_Source/exprnops.c; sourceTree = "<group>"; };
		B5BCEFC809AD245A000E597B /* exprnops.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = exprnops.h; path = CLIPS_Source/exprnops.h; sourceTree = "<group>"; };
		B5BCEFC909AD245A000E597B /* exprnpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = exprnpsr.c; path = CLIPS_Source/exprnpsr.c; sourceTree = "<group>"; };
		B5BCEFCA09AD245A000E597B /* exprnpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = exprnpsr.h; path = CLIPS_Source/exprnpsr.h; sourceTree = "<group>"; };
		B5BCEFCB09AD245A000E597B /* extnfunc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = extnfunc.c; path = CLIPS_Source/extnfunc.c; sourceTree = "<group>"; };
		B5BCEFCC09AD245A000E597B /* extnfunc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = extnfunc.h; path = CLIPS_Source/extnfunc.h; sourceTree = "<group>"; };
		B5BCEFCD09AD245A000E597B /* factbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factbin.c; path = CLIPS_Source/factbin.c; sourceTree = "<group>"; };
		B5BCEFCE09AD245A000E597B /* factbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factbin.h; path = CLIPS_Source/factbin.h; sourceTree = "<group>"; };
		B5BCEFCF09AD245A000E597B /* factbld.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factbld.c; path = CLIPS_Source/factbld.c; sourceTree = "<group>"; };
		B5BCEFD009AD245A000E597B /* factbld.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factbld.h; path = CLIPS_Source/factbld.h; sourceTree = "<group>"; };
		B5BCEFD109AD245A000E597B /* factcmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factcmp.c; path = CLIPS_Source/factcmp.c; sourceTree = "<group>"; };
		B5BCEFD209AD245A000E597B /* factcmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factcmp.h; path = CLIPS_Source/factcmp.h; sourceTree = "<group>"; };
		B5BCEFD309AD245A000E597B /* factcom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factcom.c; path = CLIPS_Source/factcom.c; sourceTree = "<group>"; };
		B5BCEFD409AD245A000E597B /* factcom.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factcom.h; path = CLIPS_Source/factcom.h; sourceTree = "<group>"; };
		B5BCEFD509AD245A000E597B /* factfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factfun.c; path = CLIPS_Source/factfun.c; sourceTree = "<group>"; };
		B5BCEFD609AD245A000E597B /* factfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factfun.h; path = CLIPS_Source/factfun.h; sourceTree = "<group>"; };
		B5BCEFD709AD245A000E597B /* factgen.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factgen.c; path = CLIPS_Source/factgen.c; sourceTree = "<group>"; };
		B5BCEFD809AD245A000E597B /* factgen.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factgen.h; path = CLIPS_Source/factgen.h; sourceTree = "<group>"; };
		B5BCEFD909AD245A000E597B /* facthsh.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = facthsh.c; path = CLIPS_Source/facthsh.c; sourceTree = "<group>"; };
		B5BCEFDA09AD245A000E597B /* facthsh.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = facthsh.h; path = CLIPS_Source/facthsh.h; sourceTree = "<group>"; };
		B5BCEFDB09AD245A000E597B /* factlhs.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factlhs.c; path = CLIPS_Source/factlhs.c; sourceTree = "<group>"; };
		B5BCEFDC09AD245A000E597B /* factlhs.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factlhs.h; path = CLIPS_Source/factlhs.h; sourceTree = "<group>"; };
		B5BCEFDD09AD245A000E597B /* factmch.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factmch.c; path = CLIPS_Source/factmch.c; sourceTree = "<group>"; };
		B5BCEFDE09AD245A000E597B /* factmch.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factmch.h; path = CLIPS_Source/factmch.h; sourceTree = "<group>"; };
		B5BCEFDF09AD245A000E597B /* factmngr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factmngr.c; path = CLIPS_Source/factmngr.c; sourceTree = "<group>"; };
		B5BCEFE009AD245A000E597B /* factmngr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factmngr.h; path = CLIPS_Source/factmngr.h; sourceTree = "<group>"; };
		B5BCEFE109AD245A000E597B /* factprt.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factprt.c; path = CLIPS_Source/factprt.c; sourceTree = "<group>"; };
		B5BCEFE209AD245A000E597B /* factprt.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factprt.h; path = CLIPS_Source/factprt.h; sourceTree = "<group>"; };
		B5BCEFE309AD245A000E597B /* factqpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factqpsr.c; path = CLIPS_Source/factqpsr.c; sourceTree = "<group>"; };
		B5BCEFE409AD245A000E597B /* factqpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factqpsr.h; path = CLIPS_Source/factqpsr.h; sourceTree = "<group>"; };
		B5BCEFE509AD245A000E597B /* factqury.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factqury.c; path = CLIPS_Source/factqury.c; sourceTree = "<group>"; };
		B5BCEFE609AD245A000E597B /* factqury.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factqury.h; path = CLIPS_Source/factqury.h; sourceTree = "<group>"; };
		B5BCEFE709AD245A000E597B /* factrete.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factrete.c; path = CLIPS_Source/factrete.c; sourceTree = "<group>"; };
		B5BCEFE809AD245A000E597B /* factrete.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factrete.h; path = CLIPS_Source/factrete.h; sourceTree = "<group>"; };
		B5BCEFE909AD245A000E597B /* factrhs.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = factrhs.c; path = CLIPS_Source/factrhs.c; sourceTree = "<group>"; };
		B5BCEFEA09AD245A000E597B /* factrhs.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = factrhs.h; path = CLIPS_Source/factrhs.h; sourceTree = "<group>"; };
		B5BCEFEB09AD245A000E597B /* filecom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = filecom.c; path = CLIPS_Source/filecom.c; sourceTree = "<group>"; };
		B5BCEFEC09AD245A000E597B /* filecom.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = filecom.h; path = CLIPS_Source/filecom.h; sourceTree = "<group>"; };
		B5BCEFED09AD245A000E597B /* filertr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = filertr.c; path = CLIPS_Source/filertr.c; sourceTree = "<group>"; };
		B5BCEFEE09AD245A000E597B /* filertr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = filertr.h; path = CLIPS_Source/filertr.h; sourceTree = "<group>"; };
		B5BCEFEF09AD245A000E597B /* generate.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = generate.c; path = CLIPS_Source/generate.c; sourceTree = "<group>"; };
		B5BCEFF009AD245A000E597B /* generate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = generate.h; path = CLIPS_Source/generate.h; sourceTree = "<group>"; };
		B5BCEFF109AD245A000E597B /* genrcbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = genrcbin.c; path = CLIPS_Source/genrcbin.c; sourceTree = "<group>"; };
		B5BCEFF209AD245A000E597B /* genrcbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = genrcbin.h; path = CLIPS_Source/genrcbin.h; sourceTree = "<group>"; };
		B5BCEFF309AD245A000E597B /* genrccmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = genrccmp.c; path = CLIPS_Source/genrccmp.c; sourceTree = "<group>"; };
		B5BCEFF409AD245A000E597B /* genrccmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = genrccmp.h; path = CLIPS_Source/genrccmp.h; sourceTree = "<group>"; };
		B5BCEFF509AD245A000E597B /* genrccom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = genrccom.c; path = CLIPS_Source/genrccom.c; sourceTree = "<group>"; };
		B5BCEFF609AD245A000E597B /* genrccom.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = genrccom.h; path = CLIPS_Source/genrccom.h; sourceTree = "<group>"; };
		B5BCEFF709AD245A000E597B /* genrcexe.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = genrcexe.c; path = CLIPS_Source/genrcexe.c; sourceTree = "<group>"; };
		B5BCEFF809AD245A000E597B /* genrcexe.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = genrcexe.h; path = CLIPS_Source/genrcexe.h; sourceTree = "<group>"; };
		B5BCEFF909AD245A000E597B /* genrcfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = genrcfun.c; path = CLIPS_Source/genrcfun.c; sourceTree = "<group>"; };
		B5BCEFFA09AD245A000E597B /* genrcfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = genrcfun.h; path = CLIPS_Source/genrcfun.h; sourceTree = "<group>"; };
		B5BCEFFB09AD245A000E597B /* genrcpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = genrcpsr.c; path = CLIPS_Source/genrcpsr.c; sourceTree = "<group>"; };
		B5BCEFFC09AD245A000E597B /* genrcpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = genrcpsr.h; path = CLIPS_Source/genrcpsr.h; sourceTree = "<group>"; };
		B5BCEFFD09AD245A000E597B /* globlbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = globlbin.c; path = CLIPS_Source/globlbin.c; sourceTree = "<group>"; };
		B5BCEFFE09AD245A000E597B /* globlbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = globlbin.h; path = CLIPS_Source/globlbin.h; sourceTree = "<group>"; };
		B5BCEFFF09AD245A000E597B /* globlbsc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = globlbsc.c; path = CLIPS_Source/globlbsc.c; sourceTree = "<group>"; };
		B5BCF00009AD245A000E597B /* globlbsc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = globlbsc.h; path = CLIPS_Source/globlbsc.h; sourceTree = "<group>"; };
		B5BCF00109AD245A000E597B /* globlcmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = globlcmp.c; path = CLIPS_Source/globlcmp.c; sourceTree = "<group>"; };
		B5BCF00209AD245A000E597B /* globlcmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = globlcmp.h; path = CLIPS_Source/globlcmp.h; sourceTree = "<group>"; };
		B5BCF00309AD245A000E597B /* globlcom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = globlcom.c; path = CLIPS_Source/globlcom.c; sourceTree = "<group>"; };
		B5BCF00409AD245A000E597B /* globlcom.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = globlcom.h; path = CLIPS_Source/globlcom.h; sourceTree = "<group>"; };
		B5BCF00509AD245A000E597B /* globldef.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = globldef.c; path = CLIPS_Source/globldef.c; sourceTree = "<group>"; };
		B5BCF00609AD245A000E597B /* globldef.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = globldef.h; path = CLIPS_Source/globldef.h; sourceTree = "<group>"; };
		B5BCF00709AD245A000E597B /* globlpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = globlpsr.c; path = CLIPS_Source/globlpsr.c; sourceTree = "<group>"; };
		B5BCF00809AD245A000E597B /* globlpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = globlpsr.h; path = CLIPS_Source/globlpsr.h; sourceTree = "<group>"; };
		B5BCF00909AD245A000E597B /* immthpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = immthpsr.c; path = CLIPS_Source/immthpsr.c; sourceTree = "<group>"; };
		B5BCF00A09AD245A000E597B /* immthpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = immthpsr.h; path = CLIPS_Source/immthpsr.h; sourceTree = "<group>"; };
		B5BCF00B09AD245A000E597B /* incrrset.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = incrrset.c; path = CLIPS_Source/incrrset.c; sourceTree = "<group>"; };
		B5BCF00C09AD245A000E597B /* incrrset.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = incrrset.h; path = CLIPS_Source/incrrset.h; sourceTree = "<group>"; };
		B5BCF00D09AD245A000E597B /* inherpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = inherpsr.c; path = CLIPS_Source/inherpsr.c; sourceTree = "<group>"; };
		B5BCF00E09AD245A000E597B /* inherpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = inherpsr.h; path = CLIPS_Source/inherpsr.h; sourceTree = "<group>"; };
		B5BCF00F09AD245A000E597B /* inscom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = inscom.c; path = CLIPS_Source/inscom.c; sourceTree = "<group>"; };
		B5BCF01009AD245A000E597B /* inscom.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = inscom.h; path = CLIPS_Source/inscom.h; sourceTree = "<group>"; };
		B5BCF01109AD245A000E597B /* insfile.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = insfile.c; path = CLIPS_Source/insfile.c; sourceTree = "<group>"; };
		B5BCF01209AD245A000E597B /* insfile.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = insfile.h; path = CLIPS_Source/insfile.h; sourceTree = "<group>"; };
		B5BCF01309AD245A000E597B /* insfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = insfun.c; path = CLIPS_Source/insfun.c; sourceTree = "<group>"; };
		B5BCF01409AD245A000E597B /* insfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = insfun.h; path = CLIPS_Source/insfun.h; sourceTree = "<group>"; };
		B5BCF01509AD245A000E597B /* insmngr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = insmngr.c; path = CLIPS_Source/insmngr.c; sourceTree = "<group>"; };
		B5BCF01609AD245A000E597B /* insmngr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = insmngr.h; path = CLIPS_Source/insmngr.h; sourceTree = "<group>"; };
		B5BCF01709AD245A000E597B /* insmoddp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = insmoddp.c; path = CLIPS_Source/insmoddp.c; sourceTree = "<group>"; };
		B5BCF01809AD245A000E597B /* insmoddp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = insmoddp.h; path = CLIPS_Source/insmoddp.h; sourceTree = "<group>"; };
		B5BCF01909AD245A000E597B /* insmult.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = insmult.c; path = CLIPS_Source/insmult.c; sourceTree = "<group>"; };
		B5BCF01A09AD245A000E597B /* insmult.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = insmult.h; path = CLIPS_Source/insmult.h; sourceTree = "<group>"; };
		B5BCF01B09AD245A000E597B /* inspsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = inspsr.c; path = CLIPS_Source/inspsr.c; sourceTree = "<group>"; };
		B5BCF01C09AD245A000E597B /* inspsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = inspsr.h; path = CLIPS_Source/inspsr.h; sourceTree = "<group>"; };
		B5BCF01D09AD245A000E597B /* insquery.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = insquery.c; path = CLIPS_Source/insquery.c; sourceTree = "<group>"; };
		B5BCF01E09AD245A000E597B /* insquery.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = insquery.h; path = CLIPS_Source/insquery.h; sourceTree = "<group>"; };
		B5BCF01F09AD245A000E597B /* insqypsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = insqypsr.c; path = CLIPS_Source/insqypsr.c; sourceTree = "<group>"; };
		B5BCF02009AD245A000E597B /* insqypsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = insqypsr.h; path = CLIPS_Source/insqypsr.h; sourceTree = "<group>"; };
		B5BCF02109AD245A000E597B /* iofun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = iofun.c; path = CLIPS_Source/iofun.c; sourceTree = "<group>"; };
		B5BCF02209AD245A000E597B /* iofun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = iofun.h; path = CLIPS_Source/iofun.h; sourceTree = "<group>"; };
		B5BCF02309AD245A000E597B /* lgcldpnd.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = lgcldpnd.c; path = CLIPS_Source/lgcldpnd.c; sourceTree = "<group>"; };
		B5BCF02409AD245A000E597B /* lgcldpnd.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = lgcldpnd.h; path = CLIPS_Source/lgcldpnd.h; sourceTree = "<group>"; };
		B5BCF02509AD245A000E597B /* match.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = match.h; path = CLIPS_Source/match.h; sourceTree = "<group>"; };
		B5BCF02609AD245A000E597B /* memalloc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = memalloc.c; path = CLIPS_Source/memalloc.c; sourceTree = "<group>"; };
		B5BCF02709AD245A000E597B /* memalloc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = memalloc.h; path = CLIPS_Source/memalloc.h; sourceTree = "<group>"; };
		B5BCF02809AD245A000E597B /* miscfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = miscfun.c; path = CLIPS_Source/miscfun.c; sourceTree = "<group>"; };
		B5BCF02909AD245A000E597B /* miscfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = miscfun.h; path = CLIPS_Source/miscfun.h; sourceTree = "<group>"; };
		B5BCF02A09AD245A000E597B /* modulbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = modulbin.c; path = CLIPS_Source/modulbin.c; sourceTree = "<group>"; };
		B5BCF02B09AD245A000E597B /* modulbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = modulbin.h; path = CLIPS_Source/modulbin.h; sourceTree = "<group>"; };
		B5BCF02C09AD245A000E597B /* modulbsc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = modulbsc.c; path = CLIPS_Source/modulbsc.c; sourceTree = "<group>"; };
		B5BCF02D09AD245A000E597B /* modulbsc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = modulbsc.h; path = CLIPS_Source/modulbsc.h; sourceTree = "<group>"; };
		B5BCF02E09AD245A000E597B /* modulcmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = modulcmp.c; path = CLIPS_Source/modulcmp.c; sourceTree = "<group>"; };
		B5BCF02F09AD245A000E597B /* modulcmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = modulcmp.h; path = CLIPS_Source/modulcmp.h; sourceTree = "<group>"; };
		B5BCF03009AD245A000E597B /* moduldef.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = moduldef.c; path = CLIPS_Source/moduldef.c; sourceTree = "<group>"; };
		B5BCF03109AD245A000E597B /* moduldef.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = moduldef.h; path = CLIPS_Source/moduldef.h; sourceTree = "<group>"; };
		B5BCF03209AD245A000E597B /* modulpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = modulpsr.c; path = CLIPS_Source/modulpsr.c; sourceTree = "<group>"; };
		B5BCF03309AD245A000E597B /* modulpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = modulpsr.h; path = CLIPS_Source/modulpsr.h; sourceTree = "<group>"; };
		B5BCF03409AD245A000E597B /* modulutl.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = modulutl.c; path = CLIPS_Source/modulutl.c; sourceTree = "<group>"; };
		B5BCF03509AD245A000E597B /* modulutl.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = modulutl.h; path = CLIPS_Source/modulutl.h; sourceTree = "<group>"; };
		B5BCF03609AD245A000E597B /* msgcom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = msgcom.c; path = CLIPS_Source/msgcom.c; sourceTree = "<group>"; };
		B5BCF03709AD245A000E597B /* msgcom.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = msgcom.h; path = CLIPS_Source/msgcom.h; sourceTree = "<group>"; };
		B5BCF03809AD245A000E597B /* msgfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = msgfun.c; path = CLIPS_Source/msgfun.c; sourceTree = "<group>"; };
		B5BCF03909AD245A000E597B /* msgfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = msgfun.h; path = CLIPS_Source/msgfun.h; sourceTree = "<group>"; };
		B5BCF03A09AD245A000E597B /* msgpass.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = msgpass.c; path = CLIPS_Source/msgpass.c; sourceTree = "<group>"; };
		B5BCF03B09AD245A000E597B /* msgpass.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = msgpass.h; path = CLIPS_Source/msgpass.h; sourceTree = "<group>"; };
		B5BCF03C09AD245A000E597B /* msgpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = msgpsr.c; path = CLIPS_Source/msgpsr.c; sourceTree = "<group>"; };
		B5BCF03D09AD245A000E597B /* msgpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = msgpsr.h; path = CLIPS_Source/msgpsr.h; sourceTree = "<group>"; };
		B5BCF03E09AD245A000E597B /* multifld.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = multifld.c; path = CLIPS_Source/multifld.c; sourceTree = "<group>"; };
		B5BCF03F09AD245A000E597B /* multifld.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = multifld.h; path = CLIPS_Source/multifld.h; sourceTree = "<group>"; };
		B5BCF04009AD245A000E597B /* multifun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = multifun.c; path = CLIPS_Source/multifun.c; sourceTree = "<group>"; };
		B5BCF04109AD245A000E597B /* multifun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = multifun.h; path = CLIPS_Source/multifun.h; sourceTree = "<group>"; };
		B5BCF04209AD245A000E597B /* network.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = network.h; path = CLIPS_Source/network.h; sourceTree = "<group>"; };
		B5BCF04309AD245A000E597B /* objbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = objbin.c; path = CLIPS_Source/objbin.c; sourceTree = "<group>"; };
		B5BCF04409AD245A000E597B /* objbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = objbin.h; path = CLIPS_Source/objbin.h; sourceTree = "<group>"; };
		B5BCF04509AD245A000E597B /* objcmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = objcmp.c; path = CLIPS_Source/objcmp.c; sourceTree = "<group>"; };
		B5BCF04609AD245A000E597B /* objcmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = objcmp.h; path = CLIPS_Source/objcmp.h; sourceTree = "<group>"; };
		B5BCF04709AD245A000E597B /* object.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = object.h; path = CLIPS_Source/object.h; sourceTree = "<group>"; };
		B5BCF04809AD245A000E597B /* objrtbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = objrtbin.c; path = CLIPS_Source/objrtbin.c; sourceTree = "<group>"; };
		B5BCF04909AD245A000E597B /* objrtbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = objrtbin.h; path = CLIPS_Source/objrtbin.h; sourceTree = "<group>"; };
		B5BCF04A09AD245A000E597B /* objrtbld.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = objrtbld.c; path = CLIPS_Source/objrtbld.c; sourceTree = "<group>"; };
		B5BCF04B09AD245A000E597B /* objrtbld.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = objrtbld.h; path = CLIPS_Source/objrtbld.h; sourceTree = "<group>"; };
		B5BCF04C09AD245A000E597B /* objrtcmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = objrtcmp.c; path = CLIPS_Source/objrtcmp.c; sourceTree = "<group>"; };
		B5BCF04D09AD245A000E597B /* objrtcmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = objrtcmp.h; path = CLIPS_Source/objrtcmp.h; sourceTree = "<group>"; };
		B5BCF04E09AD245A000E597B /* objrtfnx.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = objrtfnx.c; path = CLIPS_Source/objrtfnx.c; sourceTree = "<group>"; };
		B5BCF04F09AD245A000E597B /* objrtfnx.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = objrtfnx.h; path = CLIPS_Source/objrtfnx.h; sourceTree = "<group>"; };
		B5BCF05009AD245A000E597B /* objrtgen.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = objrtgen.c; path = CLIPS_Source/objrtgen.c; sourceTree = "<group>"; };
		B5BCF05109AD245A000E597B /* objrtgen.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = objrtgen.h; path = CLIPS_Source/objrtgen.h; sourceTree = "<group>"; };
		B5BCF05209AD245A000E597B /* objrtmch.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = objrtmch.c; path = CLIPS_Source/objrtmch.c; sourceTree = "<group>"; };
		B5BCF05309AD245A000E597B /* objrtmch.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = objrtmch.h; path = CLIPS_Source/objrtmch.h; sourceTree = "<group>"; };
		B5BCF05409AD245A000E597B /* parsefun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = parsefun.c; path = CLIPS_Source/parsefun.c; sourceTree = "<group>"; };
		B5BCF05509AD245A000E597B /* parsefun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = parsefun.h; path = CLIPS_Source/parsefun.h; sourceTree = "<group>"; };
		B5BCF05609AD245A000E597B /* pattern.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = pattern.c; path = CLIPS_Source/pattern.c; sourceTree = "<group>"; };
		B5BCF05709AD245A000E597B /* pattern.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = pattern.h; path = CLIPS_Source/pattern.h; sourceTree = "<group>"; };
		B5BCF05809AD245A000E597B /* pprint.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = pprint.c; path = CLIPS_Source/pprint.c; sourceTree = "<group>"; };
		B5BCF05909AD245A000E597B /* pprint.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = pprint.h; path = CLIPS_Source/pprint.h; sourceTree = "<group>"; };
		B5BCF05A09AD245A000E597B /* prccode.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = prccode.c; path = CLIPS_Source/prccode.c; sourceTree = "<group>"; };
		B5BCF05B09AD245A000E597B /* prccode.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = prccode.h; path = CLIPS_Source/prccode.h; sourceTree = "<group>"; };
		B5BCF05C09AD245A000E597B /* prcdrfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = prcdrfun.c; path = CLIPS_Source/prcdrfun.c; sourceTree = "<group>"; };
		B5BCF05D09AD245A000E597B /* prcdrfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = prcdrfun.h; path = CLIPS_Source/prcdrfun.h; sourceTree = "<group>"; };
		B5BCF05E09AD245A000E597B /* prcdrpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = prcdrpsr.c; path = CLIPS_Source/prcdrpsr.c; sourceTree = "<group>"; };
		B5BCF05F09AD245A000E597B /* prcdrpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = prcdrpsr.h; path = CLIPS_Source/prcdrpsr.h; sourceTree = "<group>"; };
		B5BCF06009AD245A000E597B /* prdctfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = prdctfun.c; path = CLIPS_Source/prdctfun.c; sourceTree = "<group>"; };
		B5BCF06109AD245A000E597B /* prdctfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = prdctfun.h; path = CLIPS_Source/prdctfun.h; sourceTree = "<group>"; };
		B5BCF06209AD245A000E597B /* prntutil.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = prntutil.c; path = CLIPS_Source/prntutil.c; sourceTree = "<group>"; };
		B5BCF06309AD245A000E597B /* prntutil.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = prntutil.h; path = CLIPS_Source/prntutil.h; sourceTree = "<group>"; };
		B5BCF06409AD245A000E597B /* proflfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = proflfun.c; path = CLIPS_Source/proflfun.c; sourceTree = "<group>"; };
		B5BCF06509AD245A000E597B /* proflfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = proflfun.h; path = CLIPS_Source/proflfun.h; sourceTree = "<group>"; };
		B5BCF06609AD245A000E597B /* reorder.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = reorder.c; path = CLIPS_Source/reorder.c; sourceTree = "<group>"; };
		B5BCF06709AD245A000E597B /* reorder.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = reorder.h; path = CLIPS_Source/reorder.h; sourceTree = "<group>"; };
		B5BCF06809AD245A000E597B /* reteutil.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = reteutil.c; path = CLIPS_Source/reteutil.c; sourceTree = "<group>"; };
		B5BCF06909AD245A000E597B /* reteutil.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = reteutil.h; path = CLIPS_Source/reteutil.h; sourceTree = "<group>"; };
		B5BCF06A09AD245A000E597B /* retract.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = retract.c; path = CLIPS_Source/retract.c; sourceTree = "<group>"; };
		B5BCF06B09AD245A000E597B /* retract.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = retract.h; path = CLIPS_Source/retract.h; sourceTree = "<group>"; };
		B5BCF06C09AD245A000E597B /* router.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = router.c; path = CLIPS_Source/router.c; sourceTree = "<group>"; };
		B5BCF06D09AD245A000E597B /* router.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = router.h; path = CLIPS_Source/router.h; sourceTree = "<group>"; };
		B5BCF06E09AD245A000E597B /* rulebin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = rulebin.c; path = CLIPS_Source/rulebin.c; sourceTree = "<group>"; };
		B5BCF06F09AD245A000E597B /* rulebin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = rulebin.h; path = CLIPS_Source/rulebin.h; sourceTree = "<group>"; };
		B5BCF07009AD245A000E597B /* rulebld.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = rulebld.c; path = CLIPS_Source/rulebld.c; sourceTree = "<group>"; };
		B5BCF07109AD245A000E597B /* rulebld.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = rulebld.h; path = CLIPS_Source/rulebld.h; sourceTree = "<group>"; };
		B5BCF07209AD245A000E597B /* rulebsc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = rulebsc.c; path = CLIPS_Source/rulebsc.c; sourceTree = "<group>"; };
		B5BCF07309AD245A000E597B /* rulebsc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = rulebsc.h; path = CLIPS_Source/rulebsc.h; sourceTree = "<group>"; };
		B5BCF07409AD245A000E597B /* rulecmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = rulecmp.c; path = CLIPS_Source/rulecmp.c; sourceTree = "<group>"; };
		B5BCF07509AD245A000E597B /* rulecmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = rulecmp.h; path = CLIPS_Source/rulecmp.h; sourceTree = "<group>"; };
		B5BCF07609AD245A000E597B /* rulecom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = rulecom.c; path = CLIPS_Source/rulecom.c; sourceTree = "<group>"; };
		B5BCF07709AD245A000E597B /* rulecom.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = rulecom.h; path = CLIPS_Source/rulecom.h; sourceTree = "<group>"; };
		B5BCF07809AD245A000E597B /* rulecstr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = rulecstr.c; path = CLIPS_Source/rulecstr.c; sourceTree = "<group>"; };
		B5BCF07909AD245A000E597B /* rulecstr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = rulecstr.h; path = CLIPS_Source/rulecstr.h; sourceTree = "<group>"; };
		B5BCF07A09AD245A000E597B /* ruledef.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = ruledef.c; path = CLIPS_Source/ruledef.c; sourceTree = "<group>"; };
		B5BCF07B09AD245A000E597B /* ruledef.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ruledef.h; path = CLIPS_Source/ruledef.h; sourceTree = "<group>"; };
		B5BCF07C09AD245A000E597B /* ruledlt.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = ruledlt.c; path = CLIPS_Source/ruledlt.c; sourceTree = "<group>"; };
		B5BCF07D09AD245A000E597B /* ruledlt.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ruledlt.h; path = CLIPS_Source/ruledlt.h; sourceTree = "<group>"; };
		B5BCF07E09AD245A000E597B /* rulelhs.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = rulelhs.c; path = CLIPS_Source/rulelhs.c; sourceTree = "<group>"; };
		B5BCF07F09AD245A000E597B /* rulelhs.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = rulelhs.h; path = CLIPS_Source/rulelhs.h; sourceTree = "<group>"; };
		B5BCF08009AD245A000E597B /* rulepsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = rulepsr.c; path = CLIPS_Source/rulepsr.c; sourceTree = "<group>"; };
		B5BCF08109AD245A000E597B /* rulepsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = rulepsr.h; path = CLIPS_Source/rulepsr.h; sourceTree = "<group>"; };
		B5BCF08209AD245A000E597B /* scanner.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = scanner.c; path = CLIPS_Source/scanner.c; sourceTree = "<group>"; };
		B5BCF08309AD245A000E597B /* scanner.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = scanner.h; path = CLIPS_Source/scanner.h; sourceTree = "<group>"; };
		B5BCF08409AD245A000E597B /* setup.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = setup.h; path = CLIPS_Source/setup.h; sourceTree = "<group>"; };
		B5BCF08609AD245A000E597B /* sortfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = sortfun.c; path = CLIPS_Source/sortfun.c; sourceTree = "<group>"; };
		B5BCF08709AD245A000E597B /* sortfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = sortfun.h; path = CLIPS_Source/sortfun.h; sourceTree = "<group>"; };
		B5BCF08809AD245A000E597B /* strngfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = strngfun.c; path = CLIPS_Source/strngfun.c; sourceTree = "<group>"; };
		B5BCF08909AD245A000E597B /* strngfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = strngfun.h; path = CLIPS_Source/strngfun.h; sourceTree = "<group>"; };
		B5BCF08A09AD245A000E597B /* strngrtr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = strngrtr.c; path = CLIPS_Source/strngrtr.c; sourceTree = "<group>"; };
		B5BCF08B09AD245A000E597B /* strngrtr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = strngrtr.h; path = CLIPS_Source/strngrtr.h; sourceTree = "<group>"; };
		B5BCF08C09AD245A000E597B /* symblbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = symblbin.c; path = CLIPS_Source/symblbin.c; sourceTree = "<group>"; };
		B5BCF08D09AD245A000E597B /* symblbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = symblbin.h; path = CLIPS_Source/symblbin.h; sourceTree = "<group>"; };
		B5BCF08E09AD245A000E597B /* symblcmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = symblcmp.c; path = CLIPS_Source/symblcmp.c; sourceTree = "<group>"; };
		B5BCF08F09AD245A000E597B /* symblcmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = symblcmp.h; path = CLIPS_Source/symblcmp.h; sourceTree = "<group>"; };
		B5BCF09009AD245A000E597B /* symbol.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = symbol.c; path = CLIPS_Source/symbol.c; sourceTree = "<group>"; };
		B5BCF09109AD245A000E597B /* symbol.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = symbol.h; path = CLIPS_Source/symbol.h; sourceTree = "<group>"; };
		B5BCF09209AD245A000E597B /* sysdep.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = sysdep.c; path = CLIPS_Source/sysdep.c; sourceTree = "<group>"; };
		B5BCF09309AD245A000E597B /* sysdep.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = sysdep.h; path = CLIPS_Source/sysdep.h; sourceTree = "<group>"; };
		B5BCF09409AD245A000E597B /* textpro.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = textpro.c; path = CLIPS_Source/textpro.c; sourceTree = "<group>"; };
		B5BCF09509AD245A000E597B /* textpro.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = textpro.h; path = CLIPS_Source/textpro.h; sourceTree = "<group>"; };
		B5BCF09609AD245A000E597B /* tmpltbin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = tmpltbin.c; path = CLIPS_Source/tmpltbin.c; sourceTree = "<group>"; };
		B5BCF09709AD245A000E597B /* tmpltbin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tmpltbin.h; path = CLIPS_Source/tmpltbin.h; sourceTree = "<group>"; };
		B5BCF09809AD245B000E597B /* tmpltbsc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = tmpltbsc.c; path = CLIPS_Source/tmpltbsc.c; sourceTree = "<group>"; };
		B5BCF09909AD245B000E597B /* tmpltbsc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tmpltbsc.h; path = CLIPS_Source/tmpltbsc.h; sourceTree = "<group>"; };
		B5BCF09A09AD245B000E597B /* tmpltcmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = tmpltcmp.c; path = CLIPS_Source/tmpltcmp.c; sourceTree = "<group>"; };
		B5BCF09B09AD245B000E597B /* tmpltcmp.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tmpltcmp.h; path = CLIPS_Source/tmpltcmp.h; sourceTree = "<group>"; };
		B5BCF09C09AD245B000E597B /* tmpltdef.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = tmpltdef.c; path = CLIPS_Source/tmpltdef.c; sourceTree = "<group>"; };
		B5BCF09D09AD245B000E597B /* tmpltdef.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tmpltdef.h; path = CLIPS_Source/tmpltdef.h; sourceTree = "<group>"; };
		B5BCF09E09AD245B000E597B /* tmpltfun.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = tmpltfun.c; path = CLIPS_Source/tmpltfun.c; sourceTree = "<group>"; };
		B5BCF09F09AD245B000E597B /* tmpltfun.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tmpltfun.h; path = CLIPS_Source/tmpltfun.h; sourceTree = "<group>"; };
		B5BCF0A009AD245B000E597B /* tmpltlhs.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = tmpltlhs.c; path = CLIPS_Source/tmpltlhs.c; sourceTree = "<group>"; };
		B5BCF0A109AD245B000E597B /* tmpltlhs.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tmpltlhs.h; path = CLIPS_Source/tmpltlhs.h; sourceTree = "<group>"; };
		B5BCF0A209AD245B000E597B /* tmpltpsr.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = tmpltpsr.c; path = CLIPS_Source/tmpltpsr.c; sourceTree = "<group>"; };
		B5BCF0A309AD245B000E597B /* tmpltpsr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tmpltpsr.h; path = CLIPS_Source/tmpltpsr.h; sourceTree = "<group>"; };
		B5BCF0A409AD245B000E597B /* tmpltrhs.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = tmpltrhs.c; path = CLIPS_Source/tmpltrhs.c; sourceTree = "<group>"; };
		B5BCF0A509AD245B000E597B /* tmpltrhs.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tmpltrhs.h; path = CLIPS_Source/tmpltrhs.h; sourceTree = "<group>"; };
		B5BCF0A609AD245B000E597B /* tmpltutl.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = tmpltutl.c; path = CLIPS_Source/tmpltutl.c; sourceTree = "<group>"; };
		B5BCF0A709AD245B000E597B /* tmpltutl.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tmpltutl.h; path = CLIPS_Source/tmpltutl.h; sourceTree = "<group>"; };
		B5BCF0A809AD245B000E597B /* userdata.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = userdata.c; path = CLIPS_Source/userdata.c; sourceTree = "<group>"; };
		B5BCF0A909AD245B000E597B /* userdata.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = userdata.h; path = CLIPS_Source/userdata.h; sourceTree = "<group>"; };
		B5BCF0AA09AD245B000E597B /* usrsetup.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = usrsetup.h; path = CLIPS_Source/usrsetup.h; sourceTree = "<group>"; };
		B5BCF0AB09AD245B000E597B /* utility.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = utility.c; path = CLIPS_Source/utility.c; sourceTree = "<group>"; };
		B5BCF0AC09AD245B000E597B /* utility.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = utility.h; path = CLIPS_Source/utility.h; sourceTree = "<group>"; };
		B5BCF0AD09AD245B000E597B /* watch.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = watch.c; path = CLIPS_Source/watch.c; sourceTree = "<group>"; };
		B5BCF0AE09AD245B000E597B /* watch.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = watch.h; path = CLIPS_Source/watch.h; sourceTree = "<group>"; };
		B5CE5D850D7DB62B002166A8 /* CLIPSInstanceController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = CLIPSInstanceController.h; path = Interface_Source/CLIPSInstanceController.h; sourceTree = "<group>"; };
		B5CE5D860D7DB62B002166A8 /* CLIPSInstanceController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSInstanceController.m; path = Interface_Source/CLIPSInstanceController.m; sourceTree = "<group>"; };
		B5FB52F109AD3E90001AE877 /* CLIPS IDE.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "CLIPS IDE.app"; sourceTree = BUILT_PRODUCTS_DIR; };
		B5FB531709AD41E2001AE877 /* CLIPSEnvironment.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = CLIPSEnvironment.h; path = Interface_Source/CLIPSEnvironment.h; sourceTree = "<group>"; };
		B5FB531809AD41E2001AE877 /* CLIPSEnvironment.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSEnvironment.m; path = Interface_Source/CLIPSEnvironment.m; sourceTree = "<group>"; };
		B5FB531B09AD41E2001AE877 /* CLIPSTextDocument.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = CLIPSTextDocument.h; path = Interface_Source/CLIPSTextDocument.h; sourceTree = "<group>"; };
		B5FB531C09AD41E2001AE877 /* CLIPSTextDocument.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = CLIPSTextDocument.m; path = Interface_Source/CLIPSTextDocument.m; sourceTree = "<group>"; };
		B5FB531D09AD41E2001AE877 /* AppController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = AppController.h; path = Interface_Source/AppController.h; sourceTree = "<group>"; };
		B5FB531E09AD41E2001AE877 /* AppController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = AppController.m; path = Interface_Source/AppController.m; sourceTree = "<group>"; };
		B5FB532B09AD4203001AE877 /* main.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Interface_Source/main.m; sourceTree = "<group>"; };
		B5FB533B09AD42E6001AE877 /* CLIPS-Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; name = "CLIPS-Info.plist"; path = "Interface_Source/CLIPS-Info.plist"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		8D15AC330486D014006FF6A4 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B59D1400179C5C1A00E1A6C7 /* Cocoa.framework in Frameworks */,
				B5BCF3AE09AD30A1000E597B /* CLIPS.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5997A520D4D9B9E00C9B896 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5BCEF5309AD23BF000E597B /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B59D1401179C5C9600E1A6C7 /* Cocoa.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		1058C7A6FEA54F5311CA2CBB /* Linked Frameworks */ = {
			isa = PBXGroup;
			children = (
			);
			name = "Linked Frameworks";
			sourceTree = "<group>";
		};
		1058C7A8FEA54F5311CA2CBB /* Other Frameworks */ = {
			isa = PBXGroup;
			children = (
			);
			name = "Other Frameworks";
			sourceTree = "<group>";
		};
		19C28FB0FE9D524F11CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				B5BCEF5509AD23BF000E597B /* CLIPS.framework */,
				B5FB52F109AD3E90001AE877 /* CLIPS IDE.app */,
				B5997A580D4D9B9E00C9B896 /* CLIPS Console */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		2A37F4AAFDCFA73011CA2CEA /* CLIPSEditor */ = {
			isa = PBXGroup;
			children = (
				B59D13FF179C5C1A00E1A6C7 /* Cocoa.framework */,
				2A37F4ABFDCFA73011CA2CEA /* Classes */,
				B5BCF20509AD249F000E597B /* CLIPS Source */,
				B54DA5D109AE1D4C00D9DF3D /* CLIPS Source Headers */,
				2A37F4AFFDCFA73011CA2CEA /* Other Sources */,
				2A37F4B8FDCFA73011CA2CEA /* Resources */,
				2A37F4C3FDCFA73011CA2CEA /* Frameworks */,
				19C28FB0FE9D524F11CA2CBB /* Products */,
			);
			name = CLIPSEditor;
			sourceTree = "<group>";
		};
		2A37F4ABFDCFA73011CA2CEA /* Classes */ = {
			isa = PBXGroup;
			children = (
				B5FB531D09AD41E2001AE877 /* AppController.h */,
				B5FB531E09AD41E2001AE877 /* AppController.m */,
				B5B1B53609CDE36A00F76417 /* CLIPSActivation.h */,
				B5B1B53709CDE36A00F76417 /* CLIPSActivation.m */,
				B5AF77130BA89B360090AC5E /* CLIPSAgendaController.h */,
				B5B1B53909CDE36A00F76417 /* CLIPSAgendaController.m */,
				B533574E09D72E5900893C2F /* CLIPSConstructInspectorController.h */,
				B533574F09D72E5900893C2F /* CLIPSConstructInspectorController.m */,
				B5FB531709AD41E2001AE877 /* CLIPSEnvironment.h */,
				B5FB531809AD41E2001AE877 /* CLIPSEnvironment.m */,
				B5B1B53809CDE36A00F76417 /* CLIPSFactController.h */,
				B5AF77150BA89B750090AC5E /* CLIPSFactController.m */,
				B5B1B57809CDE69F00F76417 /* CLIPSFactInstance.h */,
				B5B1B57909CDE69F00F76417 /* CLIPSFactInstance.m */,
				B5B1B54009CDE38600F76417 /* CLIPSFocus.h */,
				B5B1B54109CDE38600F76417 /* CLIPSFocus.m */,
				B5CE5D850D7DB62B002166A8 /* CLIPSInstanceController.h */,
				B5CE5D860D7DB62B002166A8 /* CLIPSInstanceController.m */,
				B57AFA0A0BA9F90F002491B9 /* CLIPSModule.h */,
				B57AFA0B0BA9F90F002491B9 /* CLIPSModule.m */,
				B53E50D809B1046500F72EB0 /* CLIPSTerminalController.h */,
				B53E50D909B1046500F72EB0 /* CLIPSTerminalController.m */,
				B571D71909D5E026003FCD41 /* CLIPSTerminalGlue.h */,
				B571D72409D5E0D4003FCD41 /* CLIPSTerminalGlue.m */,
				B53E50C909B0FD8A00F72EB0 /* CLIPSTerminalView.h */,
				B53E50CA09B0FD8A00F72EB0 /* CLIPSTerminalView.m */,
				B5FB531B09AD41E2001AE877 /* CLIPSTextDocument.h */,
				B5FB531C09AD41E2001AE877 /* CLIPSTextDocument.m */,
				B5B1B54209CDE38600F76417 /* CLIPSTextView.h */,
				B5B1B54309CDE38600F76417 /* CLIPSTextView.m */,
				B5491E780BB18E2C00206EA5 /* ModuleArrayController.h */,
				B5491E790BB18E2C00206EA5 /* ModuleArrayController.m */,
				B53E50CB09B0FD8A00F72EB0 /* PreferenceController.h */,
				B53E50CC09B0FD8A00F72EB0 /* PreferenceController.m */,
			);
			name = Classes;
			sourceTree = "<group>";
		};
		2A37F4AFFDCFA73011CA2CEA /* Other Sources */ = {
			isa = PBXGroup;
			children = (
				B5FB532B09AD4203001AE877 /* main.m */,
			);
			name = "Other Sources";
			sourceTree = "<group>";
		};
		2A37F4B8FDCFA73011CA2CEA /* Resources */ = {
			isa = PBXGroup;
			children = (
				B54DCD581EE1D72400014CEC /* Images.xcassets */,
				1EB429351C34B3AE00093F7A /* CLIPSAgendaBrowser.xib */,
				1EB4293E1C34C83400093F7A /* CLIPSConstructInspector.xib */,
				1EB429381C34C5EE00093F7A /* CLIPSFactBrowser.xib */,
				1EB4293A1C34C5EE00093F7A /* CLIPSInstanceBrowser.xib */,
				1EBA251B1C34CB0B0013B169 /* CLIPSTerminal.xib */,
				1EBA251D1C34CB0B0013B169 /* CLIPSTextDocument.xib */,
				1E86D1681C321BA600FAB28F /* MainMenu.xib */,
				1EB429401C34C83400093F7A /* Preferences.xib */,
				B549628F09BA9D6100697F33 /* CogDown.tiff */,
				B549629009BA9D6100697F33 /* CogGreyed.tiff */,
				B549629109BA9D6100697F33 /* CogUp.tiff */,
				B5FB533B09AD42E6001AE877 /* CLIPS-Info.plist */,
				2A37F4B9FDCFA73011CA2CEA /* Credits.rtf */,
				089C165FFE840EACC02AAC07 /* InfoPlist.strings */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		2A37F4C3FDCFA73011CA2CEA /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				1058C7A6FEA54F5311CA2CBB /* Linked Frameworks */,
				1058C7A8FEA54F5311CA2CBB /* Other Frameworks */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		B54DA5D109AE1D4C00D9DF3D /* CLIPS Source Headers */ = {
			isa = PBXGroup;
			children = (
				B5BCEF5C09AD245A000E597B /* agenda.h */,
				B5BCEF5E09AD245A000E597B /* analysis.h */,
				B5BCEF6009AD245A000E597B /* argacces.h */,
				B5BCEF6209AD245A000E597B /* bload.h */,
				B5BCEF6409AD245A000E597B /* bmathfun.h */,
				B5BCEF6609AD245A000E597B /* bsave.h */,
				B5BCEF6809AD245A000E597B /* classcom.h */,
				B5BCEF6A09AD245A000E597B /* classexm.h */,
				B5BCEF6C09AD245A000E597B /* classfun.h */,
				B5BCEF6E09AD245A000E597B /* classinf.h */,
				B5BCEF7009AD245A000E597B /* classini.h */,
				B5BCEF7209AD245A000E597B /* classpsr.h */,
				B5BCEF7309AD245A000E597B /* clips.h */,
				B5BCEF7509AD245A000E597B /* clsltpsr.h */,
				B5BCEF7809AD245A000E597B /* commline.h */,
				B5BCEF7A09AD245A000E597B /* conscomp.h */,
				B5BCEF7B09AD245A000E597B /* constant.h */,
				B5BCEF7D09AD245A000E597B /* constrct.h */,
				B5BCEF7F09AD245A000E597B /* constrnt.h */,
				B5BCEF8109AD245A000E597B /* crstrtgy.h */,
				B5BCEF8309AD245A000E597B /* cstrcbin.h */,
				B5BCEF8409AD245A000E597B /* cstrccmp.h */,
				B5BCEF8609AD245A000E597B /* cstrccom.h */,
				B5BCEF8809AD245A000E597B /* cstrcpsr.h */,
				B5BCEF8A09AD245A000E597B /* cstrnbin.h */,
				B5BCEF8C09AD245A000E597B /* cstrnchk.h */,
				B5BCEF8E09AD245A000E597B /* cstrncmp.h */,
				B5BCEF9009AD245A000E597B /* cstrnops.h */,
				B5BCEF9209AD245A000E597B /* cstrnpsr.h */,
				B5BCEF9409AD245A000E597B /* cstrnutl.h */,
				B5BCEF9609AD245A000E597B /* default.h */,
				B5BCEF9809AD245A000E597B /* defins.h */,
				B5BCEF9A09AD245A000E597B /* developr.h */,
				B5BCEF9C09AD245A000E597B /* dffctbin.h */,
				B5BCEF9E09AD245A000E597B /* dffctbsc.h */,
				B5BCEFA009AD245A000E597B /* dffctcmp.h */,
				B5BCEFA209AD245A000E597B /* dffctdef.h */,
				B5BCEFA409AD245A000E597B /* dffctpsr.h */,
				B5BCEFA609AD245A000E597B /* dffnxbin.h */,
				B5BCEFA809AD245A000E597B /* dffnxcmp.h */,
				B5BCEFAA09AD245A000E597B /* dffnxexe.h */,
				B5BCEFAC09AD245A000E597B /* dffnxfun.h */,
				B5BCEFAE09AD245A000E597B /* dffnxpsr.h */,
				B5BCEFB009AD245A000E597B /* dfinsbin.h */,
				B5BCEFB209AD245A000E597B /* dfinscmp.h */,
				B5BCEFB409AD245A000E597B /* drive.h */,
				B5BCEFBC09AD245A000E597B /* emathfun.h */,
				B5BCEFBE09AD245A000E597B /* engine.h */,
				1EFA0EFB1DC6975D00AE8FAA /* entities.h */,
				1E8504BE1DC40D2900FA75A7 /* envrnbld.h */,
				B5BCEFC009AD245A000E597B /* envrnmnt.h */,
				B5BCEFC209AD245A000E597B /* evaluatn.h */,
				B5BCEFC409AD245A000E597B /* expressn.h */,
				B5BCEFC609AD245A000E597B /* exprnbin.h */,
				B5BCEFC809AD245A000E597B /* exprnops.h */,
				B5BCEFCA09AD245A000E597B /* exprnpsr.h */,
				B5BCEFCC09AD245A000E597B /* extnfunc.h */,
				B5BCEFCE09AD245A000E597B /* factbin.h */,
				B5BCEFD009AD245A000E597B /* factbld.h */,
				B5BCEFD209AD245A000E597B /* factcmp.h */,
				B5BCEFD409AD245A000E597B /* factcom.h */,
				B5BCEFD609AD245A000E597B /* factfun.h */,
				B5BCEFD809AD245A000E597B /* factgen.h */,
				B5BCEFDA09AD245A000E597B /* facthsh.h */,
				B5BCEFDC09AD245A000E597B /* factlhs.h */,
				B5BCEFDE09AD245A000E597B /* factmch.h */,
				B5BCEFE009AD245A000E597B /* factmngr.h */,
				B5BCEFE209AD245A000E597B /* factprt.h */,
				B5BCEFE409AD245A000E597B /* factqpsr.h */,
				B5BCEFE609AD245A000E597B /* factqury.h */,
				B5BCEFE809AD245A000E597B /* factrete.h */,
				B5BCEFEA09AD245A000E597B /* factrhs.h */,
				B5BCEFEC09AD245A000E597B /* filecom.h */,
				1E278EA41DC5A136000D88DD /* fileutil.h */,
				B5BCEFEE09AD245A000E597B /* filertr.h */,
				B5BCEFF009AD245A000E597B /* generate.h */,
				B5BCEFF209AD245A000E597B /* genrcbin.h */,
				B5BCEFF409AD245A000E597B /* genrccmp.h */,
				B5BCEFF609AD245A000E597B /* genrccom.h */,
				B5BCEFF809AD245A000E597B /* genrcexe.h */,
				B5BCEFFA09AD245A000E597B /* genrcfun.h */,
				B5BCEFFC09AD245A000E597B /* genrcpsr.h */,
				B5BCEFFE09AD245A000E597B /* globlbin.h */,
				B5BCF00009AD245A000E597B /* globlbsc.h */,
				B5BCF00209AD245A000E597B /* globlcmp.h */,
				B5BCF00409AD245A000E597B /* globlcom.h */,
				B5BCF00609AD245A000E597B /* globldef.h */,
				B5BCF00809AD245A000E597B /* globlpsr.h */,
				B5BCF00A09AD245A000E597B /* immthpsr.h */,
				B5BCF00C09AD245A000E597B /* incrrset.h */,
				B5BCF00E09AD245A000E597B /* inherpsr.h */,
				B5BCF01009AD245A000E597B /* inscom.h */,
				B5BCF01209AD245A000E597B /* insfile.h */,
				B5BCF01409AD245A000E597B /* insfun.h */,
				B5BCF01609AD245A000E597B /* insmngr.h */,
				B5BCF01809AD245A000E597B /* insmoddp.h */,
				B5BCF01A09AD245A000E597B /* insmult.h */,
				B5BCF01C09AD245A000E597B /* inspsr.h */,
				B5BCF01E09AD245A000E597B /* insquery.h */,
				B5BCF02009AD245A000E597B /* insqypsr.h */,
				B5BCF02209AD245A000E597B /* iofun.h */,
				B5BCF02409AD245A000E597B /* lgcldpnd.h */,
				B5BCF02509AD245A000E597B /* match.h */,
				B5BCF02709AD245A000E597B /* memalloc.h */,
				B5BCF02909AD245A000E597B /* miscfun.h */,
				B5BCF02B09AD245A000E597B /* modulbin.h */,
				B5BCF02D09AD245A000E597B /* modulbsc.h */,
				B5BCF02F09AD245A000E597B /* modulcmp.h */,
				B5BCF03109AD245A000E597B /* moduldef.h */,
				B5BCF03309AD245A000E597B /* modulpsr.h */,
				B5BCF03509AD245A000E597B /* modulutl.h */,
				B5BCF03709AD245A000E597B /* msgcom.h */,
				B5BCF03909AD245A000E597B /* msgfun.h */,
				B5BCF03B09AD245A000E597B /* msgpass.h */,
				B5BCF03D09AD245A000E597B /* msgpsr.h */,
				B5BCF03F09AD245A000E597B /* multifld.h */,
				B5BCF04109AD245A000E597B /* multifun.h */,
				B5BCF04209AD245A000E597B /* network.h */,
				B5BCF04409AD245A000E597B /* objbin.h */,
				B5BCF04609AD245A000E597B /* objcmp.h */,
				B5BCF04709AD245A000E597B /* object.h */,
				B5BCF04909AD245A000E597B /* objrtbin.h */,
				B5BCF04B09AD245A000E597B /* objrtbld.h */,
				B5BCF04D09AD245A000E597B /* objrtcmp.h */,
				B5BCF04F09AD245A000E597B /* objrtfnx.h */,
				B5BCF05109AD245A000E597B /* objrtgen.h */,
				B5BCF05309AD245A000E597B /* objrtmch.h */,
				B5BCF05509AD245A000E597B /* parsefun.h */,
				B5BCF05709AD245A000E597B /* pattern.h */,
				B5BCF05909AD245A000E597B /* pprint.h */,
				B5BCF05B09AD245A000E597B /* prccode.h */,
				B5BCF05D09AD245A000E597B /* prcdrfun.h */,
				B5BCF05F09AD245A000E597B /* prcdrpsr.h */,
				B5BCF06109AD245A000E597B /* prdctfun.h */,
				B5BCF06309AD245A000E597B /* prntutil.h */,
				B5BCF06509AD245A000E597B /* proflfun.h */,
				B5BCF06709AD245A000E597B /* reorder.h */,
				B5BCF06909AD245A000E597B /* reteutil.h */,
				B5BCF06B09AD245A000E597B /* retract.h */,
				B5BCF06D09AD245A000E597B /* router.h */,
				B5BCF06F09AD245A000E597B /* rulebin.h */,
				B5BCF07109AD245A000E597B /* rulebld.h */,
				B5BCF07309AD245A000E597B /* rulebsc.h */,
				B5BCF07509AD245A000E597B /* rulecmp.h */,
				B5BCF07709AD245A000E597B /* rulecom.h */,
				B5BCF07909AD245A000E597B /* rulecstr.h */,
				B5BCF07B09AD245A000E597B /* ruledef.h */,
				B5BCF07D09AD245A000E597B /* ruledlt.h */,
				B5BCF07F09AD245A000E597B /* rulelhs.h */,
				B5BCF08109AD245A000E597B /* rulepsr.h */,
				B5BCF08309AD245A000E597B /* scanner.h */,
				B5BCF08409AD245A000E597B /* setup.h */,
				B5BCF08709AD245A000E597B /* sortfun.h */,
				B5BCF08909AD245A000E597B /* strngfun.h */,
				B5BCF08B09AD245A000E597B /* strngrtr.h */,
				B5BCF08D09AD245A000E597B /* symblbin.h */,
				B5BCF08F09AD245A000E597B /* symblcmp.h */,
				B5BCF09109AD245A000E597B /* symbol.h */,
				B5BCF09309AD245A000E597B /* sysdep.h */,
				B5BCF09509AD245A000E597B /* textpro.h */,
				B5BCF09709AD245A000E597B /* tmpltbin.h */,
				B5BCF09909AD245B000E597B /* tmpltbsc.h */,
				B5BCF09B09AD245B000E597B /* tmpltcmp.h */,
				B5BCF09D09AD245B000E597B /* tmpltdef.h */,
				B5BCF09F09AD245B000E597B /* tmpltfun.h */,
				B5BCF0A109AD245B000E597B /* tmpltlhs.h */,
				B5BCF0A309AD245B000E597B /* tmpltpsr.h */,
				B5BCF0A509AD245B000E597B /* tmpltrhs.h */,
				B5BCF0A709AD245B000E597B /* tmpltutl.h */,
				B5BCF0A909AD245B000E597B /* userdata.h */,
				B5BCF0AA09AD245B000E597B /* usrsetup.h */,
				B5BCF0AC09AD245B000E597B /* utility.h */,
				B5BCF0AE09AD245B000E597B /* watch.h */,
			);
			name = "CLIPS Source Headers";
			sourceTree = "<group>";
		};
		B5BCF20509AD249F000E597B /* CLIPS Source */ = {
			isa = PBXGroup;
			children = (
				B5134C1A0B9F9D5A007B3571 /* main.c */,
				B53734AC09F946D60086408A /* userfunctions.c */,
				B5BCEF5B09AD245A000E597B /* agenda.c */,
				B5BCEF5D09AD245A000E597B /* analysis.c */,
				B5BCEF5F09AD245A000E597B /* argacces.c */,
				B5BCEF6109AD245A000E597B /* bload.c */,
				B5BCEF6309AD245A000E597B /* bmathfun.c */,
				B5BCEF6509AD245A000E597B /* bsave.c */,
				B5BCEF6709AD245A000E597B /* classcom.c */,
				B5BCEF6909AD245A000E597B /* classexm.c */,
				B5BCEF6B09AD245A000E597B /* classfun.c */,
				B5BCEF6D09AD245A000E597B /* classinf.c */,
				B5BCEF6F09AD245A000E597B /* classini.c */,
				B5BCEF7109AD245A000E597B /* classpsr.c */,
				B5BCEF7409AD245A000E597B /* clsltpsr.c */,
				B5BCEF7709AD245A000E597B /* commline.c */,
				B5BCEF7909AD245A000E597B /* conscomp.c */,
				B5BCEF7C09AD245A000E597B /* constrct.c */,
				B5BCEF7E09AD245A000E597B /* constrnt.c */,
				B5BCEF8009AD245A000E597B /* crstrtgy.c */,
				B5BCEF8209AD245A000E597B /* cstrcbin.c */,
				B5BCEF8509AD245A000E597B /* cstrccom.c */,
				B5BCEF8709AD245A000E597B /* cstrcpsr.c */,
				B5BCEF8909AD245A000E597B /* cstrnbin.c */,
				B5BCEF8B09AD245A000E597B /* cstrnchk.c */,
				B5BCEF8D09AD245A000E597B /* cstrncmp.c */,
				B5BCEF8F09AD245A000E597B /* cstrnops.c */,
				B5BCEF9109AD245A000E597B /* cstrnpsr.c */,
				B5BCEF9309AD245A000E597B /* cstrnutl.c */,
				B5BCEF9509AD245A000E597B /* default.c */,
				B5BCEF9709AD245A000E597B /* defins.c */,
				B5BCEF9909AD245A000E597B /* developr.c */,
				B5BCEF9B09AD245A000E597B /* dffctbin.c */,
				B5BCEF9D09AD245A000E597B /* dffctbsc.c */,
				B5BCEF9F09AD245A000E597B /* dffctcmp.c */,
				B5BCEFA109AD245A000E597B /* dffctdef.c */,
				B5BCEFA309AD245A000E597B /* dffctpsr.c */,
				B5BCEFA509AD245A000E597B /* dffnxbin.c */,
				B5BCEFA709AD245A000E597B /* dffnxcmp.c */,
				B5BCEFA909AD245A000E597B /* dffnxexe.c */,
				B5BCEFAB09AD245A000E597B /* dffnxfun.c */,
				B5BCEFAD09AD245A000E597B /* dffnxpsr.c */,
				B5BCEFAF09AD245A000E597B /* dfinsbin.c */,
				B5BCEFB109AD245A000E597B /* dfinscmp.c */,
				B5BCEFB309AD245A000E597B /* drive.c */,
				B5BCEFBB09AD245A000E597B /* emathfun.c */,
				B5BCEFBD09AD245A000E597B /* engine.c */,
				1E8504BC1DC40D0A00FA75A7 /* envrnbld.c */,
				B5BCEFBF09AD245A000E597B /* envrnmnt.c */,
				B5BCEFC109AD245A000E597B /* evaluatn.c */,
				B5BCEFC309AD245A000E597B /* expressn.c */,
				B5BCEFC509AD245A000E597B /* exprnbin.c */,
				B5BCEFC709AD245A000E597B /* exprnops.c */,
				B5BCEFC909AD245A000E597B /* exprnpsr.c */,
				B5BCEFCB09AD245A000E597B /* extnfunc.c */,
				B5BCEFCD09AD245A000E597B /* factbin.c */,
				B5BCEFCF09AD245A000E597B /* factbld.c */,
				B5BCEFD109AD245A000E597B /* factcmp.c */,
				B5BCEFD309AD245A000E597B /* factcom.c */,
				B5BCEFD509AD245A000E597B /* factfun.c */,
				B5BCEFD709AD245A000E597B /* factgen.c */,
				B5BCEFD909AD245A000E597B /* facthsh.c */,
				B5BCEFDB09AD245A000E597B /* factlhs.c */,
				B5BCEFDD09AD245A000E597B /* factmch.c */,
				B5BCEFDF09AD245A000E597B /* factmngr.c */,
				B5BCEFE109AD245A000E597B /* factprt.c */,
				B5BCEFE309AD245A000E597B /* factqpsr.c */,
				B5BCEFE509AD245A000E597B /* factqury.c */,
				B5BCEFE709AD245A000E597B /* factrete.c */,
				B5BCEFE909AD245A000E597B /* factrhs.c */,
				B5BCEFEB09AD245A000E597B /* filecom.c */,
				1E278EA21DC5A0F4000D88DD /* fileutil.c */,
				B5BCEFED09AD245A000E597B /* filertr.c */,
				B5BCEFEF09AD245A000E597B /* generate.c */,
				B5BCEFF109AD245A000E597B /* genrcbin.c */,
				B5BCEFF309AD245A000E597B /* genrccmp.c */,
				B5BCEFF509AD245A000E597B /* genrccom.c */,
				B5BCEFF709AD245A000E597B /* genrcexe.c */,
				B5BCEFF909AD245A000E597B /* genrcfun.c */,
				B5BCEFFB09AD245A000E597B /* genrcpsr.c */,
				B5BCEFFD09AD245A000E597B /* globlbin.c */,
				B5BCEFFF09AD245A000E597B /* globlbsc.c */,
				B5BCF00109AD245A000E597B /* globlcmp.c */,
				B5BCF00309AD245A000E597B /* globlcom.c */,
				B5BCF00509AD245A000E597B /* globldef.c */,
				B5BCF00709AD245A000E597B /* globlpsr.c */,
				B5BCF00909AD245A000E597B /* immthpsr.c */,
				B5BCF00B09AD245A000E597B /* incrrset.c */,
				B5BCF00D09AD245A000E597B /* inherpsr.c */,
				B5BCF00F09AD245A000E597B /* inscom.c */,
				B5BCF01109AD245A000E597B /* insfile.c */,
				B5BCF01309AD245A000E597B /* insfun.c */,
				B5BCF01509AD245A000E597B /* insmngr.c */,
				B5BCF01709AD245A000E597B /* insmoddp.c */,
				B5BCF01909AD245A000E597B /* insmult.c */,
				B5BCF01B09AD245A000E597B /* inspsr.c */,
				B5BCF01D09AD245A000E597B /* insquery.c */,
				B5BCF01F09AD245A000E597B /* insqypsr.c */,
				B5BCF02109AD245A000E597B /* iofun.c */,
				B5BCF02309AD245A000E597B /* lgcldpnd.c */,
				B5BCF02609AD245A000E597B /* memalloc.c */,
				B5BCF02809AD245A000E597B /* miscfun.c */,
				B5BCF02A09AD245A000E597B /* modulbin.c */,
				B5BCF02C09AD245A000E597B /* modulbsc.c */,
				B5BCF02E09AD245A000E597B /* modulcmp.c */,
				B5BCF03009AD245A000E597B /* moduldef.c */,
				B5BCF03209AD245A000E597B /* modulpsr.c */,
				B5BCF03409AD245A000E597B /* modulutl.c */,
				B5BCF03609AD245A000E597B /* msgcom.c */,
				B5BCF03809AD245A000E597B /* msgfun.c */,
				B5BCF03A09AD245A000E597B /* msgpass.c */,
				B5BCF03C09AD245A000E597B /* msgpsr.c */,
				B5BCF03E09AD245A000E597B /* multifld.c */,
				B5BCF04009AD245A000E597B /* multifun.c */,
				B5BCF04309AD245A000E597B /* objbin.c */,
				B5BCF04509AD245A000E597B /* objcmp.c */,
				B5BCF04809AD245A000E597B /* objrtbin.c */,
				B5BCF04A09AD245A000E597B /* objrtbld.c */,
				B5BCF04C09AD245A000E597B /* objrtcmp.c */,
				B5BCF04E09AD245A000E597B /* objrtfnx.c */,
				B5BCF05009AD245A000E597B /* objrtgen.c */,
				B5BCF05209AD245A000E597B /* objrtmch.c */,
				B5BCF05409AD245A000E597B /* parsefun.c */,
				B5BCF05609AD245A000E597B /* pattern.c */,
				B5BCF05809AD245A000E597B /* pprint.c */,
				B5BCF05A09AD245A000E597B /* prccode.c */,
				B5BCF05C09AD245A000E597B /* prcdrfun.c */,
				B5BCF05E09AD245A000E597B /* prcdrpsr.c */,
				B5BCF06009AD245A000E597B /* prdctfun.c */,
				B5BCF06209AD245A000E597B /* prntutil.c */,
				B5BCF06409AD245A000E597B /* proflfun.c */,
				B5BCF06609AD245A000E597B /* reorder.c */,
				B5BCF06809AD245A000E597B /* reteutil.c */,
				B5BCF06A09AD245A000E597B /* retract.c */,
				B5BCF06C09AD245A000E597B /* router.c */,
				B5BCF06E09AD245A000E597B /* rulebin.c */,
				B5BCF07009AD245A000E597B /* rulebld.c */,
				B5BCF07209AD245A000E597B /* rulebsc.c */,
				B5BCF07409AD245A000E597B /* rulecmp.c */,
				B5BCF07609AD245A000E597B /* rulecom.c */,
				B5BCF07809AD245A000E597B /* rulecstr.c */,
				B5BCF07A09AD245A000E597B /* ruledef.c */,
				B5BCF07C09AD245A000E597B /* ruledlt.c */,
				B5BCF07E09AD245A000E597B /* rulelhs.c */,
				B5BCF08009AD245A000E597B /* rulepsr.c */,
				B5BCF08209AD245A000E597B /* scanner.c */,
				B5BCF08609AD245A000E597B /* sortfun.c */,
				B5BCF08809AD245A000E597B /* strngfun.c */,
				B5BCF08A09AD245A000E597B /* strngrtr.c */,
				B5BCF08C09AD245A000E597B /* symblbin.c */,
				B5BCF08E09AD245A000E597B /* symblcmp.c */,
				B5BCF09009AD245A000E597B /* symbol.c */,
				B5BCF09209AD245A000E597B /* sysdep.c */,
				B5BCF09409AD245A000E597B /* textpro.c */,
				B5BCF09809AD245B000E597B /* tmpltbsc.c */,
				B5BCF09609AD245A000E597B /* tmpltbin.c */,
				B5BCF09A09AD245B000E597B /* tmpltcmp.c */,
				B5BCF09C09AD245B000E597B /* tmpltdef.c */,
				B5BCF09E09AD245B000E597B /* tmpltfun.c */,
				B5BCF0A009AD245B000E597B /* tmpltlhs.c */,
				B5BCF0A209AD245B000E597B /* tmpltpsr.c */,
				B5BCF0A409AD245B000E597B /* tmpltrhs.c */,
				B5BCF0A609AD245B000E597B /* tmpltutl.c */,
				B5BCF0A809AD245B000E597B /* userdata.c */,
				B5BCF0AB09AD245B000E597B /* utility.c */,
				B5BCF0AD09AD245B000E597B /* watch.c */,
			);
			name = "CLIPS Source";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		B59979A70D4D9B9E00C9B896 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5BCEF5009AD23BF000E597B /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B5BCF0B009AD245B000E597B /* agenda.h in Headers */,
				B5BCF0B209AD245B000E597B /* analysis.h in Headers */,
				B5BCF0B409AD245B000E597B /* argacces.h in Headers */,
				B5BCF0B609AD245B000E597B /* bload.h in Headers */,
				B5BCF0B809AD245B000E597B /* bmathfun.h in Headers */,
				B5BCF0BA09AD245B000E597B /* bsave.h in Headers */,
				B5BCF0BC09AD245B000E597B /* classcom.h in Headers */,
				B5BCF0BE09AD245B000E597B /* classexm.h in Headers */,
				B5BCF0C009AD245B000E597B /* classfun.h in Headers */,
				B5BCF0C209AD245B000E597B /* classinf.h in Headers */,
				B5BCF0C409AD245B000E597B /* classini.h in Headers */,
				B5BCF0C609AD245B000E597B /* classpsr.h in Headers */,
				B5BCF0C709AD245B000E597B /* clips.h in Headers */,
				B5BCF0C909AD245B000E597B /* clsltpsr.h in Headers */,
				B5BCF0CC09AD245B000E597B /* commline.h in Headers */,
				B5BCF0CE09AD245B000E597B /* conscomp.h in Headers */,
				B5BCF0CF09AD245B000E597B /* constant.h in Headers */,
				B5BCF0D109AD245B000E597B /* constrct.h in Headers */,
				B5BCF0D309AD245B000E597B /* constrnt.h in Headers */,
				B5BCF0D509AD245B000E597B /* crstrtgy.h in Headers */,
				B5BCF0D709AD245B000E597B /* cstrcbin.h in Headers */,
				B5BCF0D809AD245B000E597B /* cstrccmp.h in Headers */,
				B5BCF0DA09AD245B000E597B /* cstrccom.h in Headers */,
				B5BCF0DC09AD245B000E597B /* cstrcpsr.h in Headers */,
				B5BCF0DE09AD245B000E597B /* cstrnbin.h in Headers */,
				B5BCF0E009AD245B000E597B /* cstrnchk.h in Headers */,
				B5BCF0E209AD245B000E597B /* cstrncmp.h in Headers */,
				B5BCF0E409AD245B000E597B /* cstrnops.h in Headers */,
				B5BCF0E609AD245B000E597B /* cstrnpsr.h in Headers */,
				B5BCF0E809AD245B000E597B /* cstrnutl.h in Headers */,
				B5BCF0EA09AD245B000E597B /* default.h in Headers */,
				B5BCF0EC09AD245B000E597B /* defins.h in Headers */,
				B5BCF0EE09AD245B000E597B /* developr.h in Headers */,
				B5BCF0F009AD245B000E597B /* dffctbin.h in Headers */,
				B5BCF0F209AD245B000E597B /* dffctbsc.h in Headers */,
				B5BCF0F409AD245B000E597B /* dffctcmp.h in Headers */,
				B5BCF0F609AD245B000E597B /* dffctdef.h in Headers */,
				B5BCF0F809AD245B000E597B /* dffctpsr.h in Headers */,
				B5BCF0FA09AD245B000E597B /* dffnxbin.h in Headers */,
				B5BCF0FC09AD245B000E597B /* dffnxcmp.h in Headers */,
				B5BCF0FE09AD245B000E597B /* dffnxexe.h in Headers */,
				B5BCF10009AD245B000E597B /* dffnxfun.h in Headers */,
				B5BCF10209AD245B000E597B /* dffnxpsr.h in Headers */,
				B5BCF10409AD245B000E597B /* dfinsbin.h in Headers */,
				B5BCF10609AD245B000E597B /* dfinscmp.h in Headers */,
				B5BCF10809AD245B000E597B /* drive.h in Headers */,
				B5BCF11009AD245B000E597B /* emathfun.h in Headers */,
				B5BCF11209AD245B000E597B /* engine.h in Headers */,
				B5BCF11409AD245B000E597B /* envrnmnt.h in Headers */,
				B5BCF11609AD245B000E597B /* evaluatn.h in Headers */,
				1E278EA71DC5A67E000D88DD /* fileutil.h in Headers */,
				B5BCF11809AD245B000E597B /* expressn.h in Headers */,
				B5BCF11A09AD245B000E597B /* exprnbin.h in Headers */,
				B5BCF11C09AD245B000E597B /* exprnops.h in Headers */,
				B5BCF11E09AD245B000E597B /* exprnpsr.h in Headers */,
				B5BCF12009AD245B000E597B /* extnfunc.h in Headers */,
				B5BCF12209AD245B000E597B /* factbin.h in Headers */,
				B5BCF12409AD245B000E597B /* factbld.h in Headers */,
				B5BCF12609AD245B000E597B /* factcmp.h in Headers */,
				B5BCF12809AD245B000E597B /* factcom.h in Headers */,
				B5BCF12A09AD245B000E597B /* factfun.h in Headers */,
				B5BCF12C09AD245B000E597B /* factgen.h in Headers */,
				B5BCF12E09AD245B000E597B /* facthsh.h in Headers */,
				B5BCF13009AD245B000E597B /* factlhs.h in Headers */,
				B5BCF13209AD245B000E597B /* factmch.h in Headers */,
				B5BCF13409AD245B000E597B /* factmngr.h in Headers */,
				B5BCF13609AD245B000E597B /* factprt.h in Headers */,
				B5BCF13809AD245B000E597B /* factqpsr.h in Headers */,
				B5BCF13A09AD245B000E597B /* factqury.h in Headers */,
				B5BCF13C09AD245B000E597B /* factrete.h in Headers */,
				B5BCF13E09AD245B000E597B /* factrhs.h in Headers */,
				B5BCF14009AD245B000E597B /* filecom.h in Headers */,
				B5BCF14209AD245B000E597B /* filertr.h in Headers */,
				B5BCF14409AD245B000E597B /* generate.h in Headers */,
				B5BCF14609AD245B000E597B /* genrcbin.h in Headers */,
				B5BCF14809AD245B000E597B /* genrccmp.h in Headers */,
				B5BCF14A09AD245B000E597B /* genrccom.h in Headers */,
				B5BCF14C09AD245B000E597B /* genrcexe.h in Headers */,
				B5BCF14E09AD245B000E597B /* genrcfun.h in Headers */,
				B5BCF15009AD245B000E597B /* genrcpsr.h in Headers */,
				B5BCF15209AD245B000E597B /* globlbin.h in Headers */,
				B5BCF15409AD245B000E597B /* globlbsc.h in Headers */,
				B5BCF15609AD245B000E597B /* globlcmp.h in Headers */,
				B5BCF15809AD245B000E597B /* globlcom.h in Headers */,
				B5BCF15A09AD245B000E597B /* globldef.h in Headers */,
				B5BCF15C09AD245B000E597B /* globlpsr.h in Headers */,
				B5BCF15E09AD245B000E597B /* immthpsr.h in Headers */,
				B5BCF16009AD245B000E597B /* incrrset.h in Headers */,
				B5BCF16209AD245B000E597B /* inherpsr.h in Headers */,
				B5BCF16409AD245B000E597B /* inscom.h in Headers */,
				B5BCF16609AD245B000E597B /* insfile.h in Headers */,
				B5BCF16809AD245B000E597B /* insfun.h in Headers */,
				B5BCF16A09AD245B000E597B /* insmngr.h in Headers */,
				B5BCF16C09AD245B000E597B /* insmoddp.h in Headers */,
				B5BCF16E09AD245B000E597B /* insmult.h in Headers */,
				B5BCF17009AD245C000E597B /* inspsr.h in Headers */,
				B5BCF17209AD245C000E597B /* insquery.h in Headers */,
				B5BCF17409AD245C000E597B /* insqypsr.h in Headers */,
				B5BCF17609AD245C000E597B /* iofun.h in Headers */,
				B5BCF17809AD245C000E597B /* lgcldpnd.h in Headers */,
				B5BCF17909AD245C000E597B /* match.h in Headers */,
				B5BCF17B09AD245C000E597B /* memalloc.h in Headers */,
				B5BCF17D09AD245C000E597B /* miscfun.h in Headers */,
				B5BCF17F09AD245C000E597B /* modulbin.h in Headers */,
				B5BCF18109AD245C000E597B /* modulbsc.h in Headers */,
				B5BCF18309AD245C000E597B /* modulcmp.h in Headers */,
				B5BCF18509AD245C000E597B /* moduldef.h in Headers */,
				B5BCF18709AD245C000E597B /* modulpsr.h in Headers */,
				B5BCF18909AD245C000E597B /* modulutl.h in Headers */,
				B5BCF18B09AD245C000E597B /* msgcom.h in Headers */,
				B5BCF18D09AD245C000E597B /* msgfun.h in Headers */,
				B5BCF18F09AD245C000E597B /* msgpass.h in Headers */,
				B5BCF19109AD245C000E597B /* msgpsr.h in Headers */,
				B5BCF19309AD245C000E597B /* multifld.h in Headers */,
				B5BCF19509AD245C000E597B /* multifun.h in Headers */,
				B5BCF19609AD245C000E597B /* network.h in Headers */,
				B5BCF19809AD245C000E597B /* objbin.h in Headers */,
				B5BCF19A09AD245C000E597B /* objcmp.h in Headers */,
				B5BCF19B09AD245C000E597B /* object.h in Headers */,
				B5BCF19D09AD245C000E597B /* objrtbin.h in Headers */,
				1EFA0EFD1DC6984700AE8FAA /* entities.h in Headers */,
				B5BCF19F09AD245C000E597B /* objrtbld.h in Headers */,
				B5BCF1A109AD245C000E597B /* objrtcmp.h in Headers */,
				B5BCF1A309AD245C000E597B /* objrtfnx.h in Headers */,
				B5BCF1A509AD245C000E597B /* objrtgen.h in Headers */,
				B5BCF1A709AD245C000E597B /* objrtmch.h in Headers */,
				B5BCF1A909AD245C000E597B /* parsefun.h in Headers */,
				B5BCF1AB09AD245C000E597B /* pattern.h in Headers */,
				B5BCF1AD09AD245C000E597B /* pprint.h in Headers */,
				B5BCF1AF09AD245C000E597B /* prccode.h in Headers */,
				B5BCF1B109AD245C000E597B /* prcdrfun.h in Headers */,
				B5BCF1B309AD245C000E597B /* prcdrpsr.h in Headers */,
				B5BCF1B509AD245C000E597B /* prdctfun.h in Headers */,
				B5BCF1B709AD245C000E597B /* prntutil.h in Headers */,
				B5BCF1B909AD245C000E597B /* proflfun.h in Headers */,
				B5BCF1BB09AD245C000E597B /* reorder.h in Headers */,
				B5BCF1BD09AD245C000E597B /* reteutil.h in Headers */,
				B5BCF1BF09AD245C000E597B /* retract.h in Headers */,
				B5BCF1C109AD245C000E597B /* router.h in Headers */,
				B5BCF1C309AD245C000E597B /* rulebin.h in Headers */,
				B5BCF1C509AD245C000E597B /* rulebld.h in Headers */,
				B5BCF1C709AD245C000E597B /* rulebsc.h in Headers */,
				B5BCF1C909AD245C000E597B /* rulecmp.h in Headers */,
				B5BCF1CB09AD245C000E597B /* rulecom.h in Headers */,
				B5BCF1CD09AD245C000E597B /* rulecstr.h in Headers */,
				B5BCF1CF09AD245C000E597B /* ruledef.h in Headers */,
				1E8504C01DC4120400FA75A7 /* envrnbld.h in Headers */,
				B5BCF1D109AD245C000E597B /* ruledlt.h in Headers */,
				B5BCF1D309AD245C000E597B /* rulelhs.h in Headers */,
				B5BCF1D509AD245C000E597B /* rulepsr.h in Headers */,
				B5BCF1D709AD245C000E597B /* scanner.h in Headers */,
				B5BCF1D809AD245C000E597B /* setup.h in Headers */,
				B5BCF1DB09AD245C000E597B /* sortfun.h in Headers */,
				B5BCF1DD09AD245C000E597B /* strngfun.h in Headers */,
				B5BCF1DF09AD245C000E597B /* strngrtr.h in Headers */,
				B5BCF1E109AD245C000E597B /* symblbin.h in Headers */,
				B5BCF1E309AD245C000E597B /* symblcmp.h in Headers */,
				B5BCF1E509AD245C000E597B /* symbol.h in Headers */,
				B5BCF1E709AD245C000E597B /* sysdep.h in Headers */,
				B5BCF1E909AD245C000E597B /* textpro.h in Headers */,
				B5BCF1EB09AD245C000E597B /* tmpltbin.h in Headers */,
				B5BCF1ED09AD245C000E597B /* tmpltbsc.h in Headers */,
				B5BCF1EF09AD245C000E597B /* tmpltcmp.h in Headers */,
				B5BCF1F109AD245C000E597B /* tmpltdef.h in Headers */,
				B5BCF1F309AD245C000E597B /* tmpltfun.h in Headers */,
				B5BCF1F509AD245C000E597B /* tmpltlhs.h in Headers */,
				B5BCF1F709AD245C000E597B /* tmpltpsr.h in Headers */,
				B5BCF1F909AD245C000E597B /* tmpltrhs.h in Headers */,
				B5BCF1FB09AD245C000E597B /* tmpltutl.h in Headers */,
				B5BCF1FD09AD245C000E597B /* userdata.h in Headers */,
				B5BCF1FE09AD245C000E597B /* usrsetup.h in Headers */,
				B5BCF20009AD245C000E597B /* utility.h in Headers */,
				B5BCF20209AD245C000E597B /* watch.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		8D15AC270486D014006FF6A4 /* CLIPS IDE */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = C05733C708A9546B00998B17 /* Build configuration list for PBXNativeTarget "CLIPS IDE" */;
			buildPhases = (
				8D15AC2B0486D014006FF6A4 /* Resources */,
				8D15AC300486D014006FF6A4 /* Sources */,
				8D15AC330486D014006FF6A4 /* Frameworks */,
				B5BCF45D09AD30CE000E597B /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				B5BCF46109AD316B000E597B /* PBXTargetDependency */,
			);
			name = "CLIPS IDE";
			productInstallPath = "$(HOME)/Applications";
			productName = CLIPSEditor;
			productReference = B5FB52F109AD3E90001AE877 /* CLIPS IDE.app */;
			productType = "com.apple.product-type.application";
		};
		B59979A60D4D9B9E00C9B896 /* CLIPS Console */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = B5997A550D4D9B9E00C9B896 /* Build configuration list for PBXNativeTarget "CLIPS Console" */;
			buildPhases = (
				B59979A70D4D9B9E00C9B896 /* Headers */,
				B59979A80D4D9B9E00C9B896 /* Sources */,
				B5997A520D4D9B9E00C9B896 /* Frameworks */,
				B5997A540D4D9B9E00C9B896 /* Rez */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "CLIPS Console";
			productInstallPath = /usr/local/bin;
			productName = Untitled;
			productReference = B5997A580D4D9B9E00C9B896 /* CLIPS Console */;
			productType = "com.apple.product-type.tool";
		};
		B5BCEF5409AD23BF000E597B /* CLIPS */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = B5BCEF5709AD23C0000E597B /* Build configuration list for PBXNativeTarget "CLIPS" */;
			buildPhases = (
				B5BCEF5009AD23BF000E597B /* Headers */,
				B5BCEF5109AD23BF000E597B /* Resources */,
				B5BCEF5209AD23BF000E597B /* Sources */,
				B5BCEF5309AD23BF000E597B /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = CLIPS;
			productName = CLIPS;
			productReference = B5BCEF5509AD23BF000E597B /* CLIPS.framework */;
			productType = "com.apple.product-type.framework";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		2A37F4A9FDCFA73011CA2CEA /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0940;
			};
			buildConfigurationList = C05733CB08A9546B00998B17 /* Build configuration list for PBXProject "CLIPS" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 1;
			knownRegions = (
				English,
				Japanese,
				French,
				German,
			);
			mainGroup = 2A37F4AAFDCFA73011CA2CEA /* CLIPSEditor */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				B59979A60D4D9B9E00C9B896 /* CLIPS Console */,
				8D15AC270486D014006FF6A4 /* CLIPS IDE */,
				B5BCEF5409AD23BF000E597B /* CLIPS */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		8D15AC2B0486D014006FF6A4 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1EBA251A1C34C98B0013B169 /* Preferences.xib in Resources */,
				1EB429371C34B3B500093F7A /* CLIPSAgendaBrowser.xib in Resources */,
				8D15AC2C0486D014006FF6A4 /* Credits.rtf in Resources */,
				1EB4293C1C34C77200093F7A /* CLIPSFactBrowser.xib in Resources */,
				8D15AC2F0486D014006FF6A4 /* InfoPlist.strings in Resources */,
				1E86D16A1C321BCD00FAB28F /* MainMenu.xib in Resources */,
				B54DCD591EE1D72400014CEC /* Images.xcassets in Resources */,
				1EB4293D1C34C77700093F7A /* CLIPSInstanceBrowser.xib in Resources */,
				B549629209BA9D6100697F33 /* CogDown.tiff in Resources */,
				1EBA25201C34CB170013B169 /* CLIPSTextDocument.xib in Resources */,
				B549629309BA9D6100697F33 /* CogGreyed.tiff in Resources */,
				B549629409BA9D6100697F33 /* CogUp.tiff in Resources */,
				1EBA25191C34C9860013B169 /* CLIPSConstructInspector.xib in Resources */,
				1EBA251F1C34CB130013B169 /* CLIPSTerminal.xib in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5BCEF5109AD23BF000E597B /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXRezBuildPhase section */
		B5997A540D4D9B9E00C9B896 /* Rez */ = {
			isa = PBXRezBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXRezBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		8D15AC300486D014006FF6A4 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B5FB532209AD41E2001AE877 /* CLIPSEnvironment.m in Sources */,
				B5FB532609AD41E2001AE877 /* CLIPSTextDocument.m in Sources */,
				B5FB532809AD41E2001AE877 /* AppController.m in Sources */,
				B5FB532C09AD4203001AE877 /* main.m in Sources */,
				B53E50CE09B0FD8A00F72EB0 /* CLIPSTerminalView.m in Sources */,
				B53E50D009B0FD8A00F72EB0 /* PreferenceController.m in Sources */,
				B53E50DB09B1046500F72EB0 /* CLIPSTerminalController.m in Sources */,
				B5B1B53B09CDE36A00F76417 /* CLIPSActivation.m in Sources */,
				B5B1B53D09CDE36A00F76417 /* CLIPSAgendaController.m in Sources */,
				B5B1B54709CDE38600F76417 /* CLIPSFocus.m in Sources */,
				B5B1B54909CDE38600F76417 /* CLIPSTextView.m in Sources */,
				B5B1B57B09CDE69F00F76417 /* CLIPSFactInstance.m in Sources */,
				B571D72509D5E0D4003FCD41 /* CLIPSTerminalGlue.m in Sources */,
				B533575109D72E5900893C2F /* CLIPSConstructInspectorController.m in Sources */,
				B5AF77160BA89B760090AC5E /* CLIPSFactController.m in Sources */,
				B57AFA0D0BA9F90F002491B9 /* CLIPSModule.m in Sources */,
				B5491E7B0BB18E2C00206EA5 /* ModuleArrayController.m in Sources */,
				B5CE5D870D7DB62B002166A8 /* CLIPSInstanceController.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B59979A80D4D9B9E00C9B896 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B59979A90D4D9B9E00C9B896 /* agenda.c in Sources */,
				B59979AA0D4D9B9E00C9B896 /* analysis.c in Sources */,
				B59979AB0D4D9B9E00C9B896 /* argacces.c in Sources */,
				B59979AC0D4D9B9E00C9B896 /* bload.c in Sources */,
				B59979AD0D4D9B9E00C9B896 /* bmathfun.c in Sources */,
				B59979AE0D4D9B9E00C9B896 /* bsave.c in Sources */,
				B59979AF0D4D9B9E00C9B896 /* classcom.c in Sources */,
				B59979B00D4D9B9E00C9B896 /* classexm.c in Sources */,
				B59979B10D4D9B9E00C9B896 /* classfun.c in Sources */,
				B59979B20D4D9B9E00C9B896 /* classinf.c in Sources */,
				B59979B30D4D9B9E00C9B896 /* classini.c in Sources */,
				B59979B40D4D9B9E00C9B896 /* classpsr.c in Sources */,
				B59979B50D4D9B9E00C9B896 /* clsltpsr.c in Sources */,
				B59979B60D4D9B9E00C9B896 /* commline.c in Sources */,
				B59979B70D4D9B9E00C9B896 /* conscomp.c in Sources */,
				B59979B80D4D9B9E00C9B896 /* constrct.c in Sources */,
				B59979B90D4D9B9E00C9B896 /* constrnt.c in Sources */,
				B59979BA0D4D9B9E00C9B896 /* crstrtgy.c in Sources */,
				B59979BB0D4D9B9E00C9B896 /* cstrcbin.c in Sources */,
				B59979BC0D4D9B9E00C9B896 /* cstrccom.c in Sources */,
				B59979BD0D4D9B9E00C9B896 /* cstrcpsr.c in Sources */,
				B59979BE0D4D9B9E00C9B896 /* cstrnbin.c in Sources */,
				B59979BF0D4D9B9E00C9B896 /* cstrnchk.c in Sources */,
				B59979C00D4D9B9E00C9B896 /* cstrncmp.c in Sources */,
				B59979C10D4D9B9E00C9B896 /* cstrnops.c in Sources */,
				B59979C20D4D9B9E00C9B896 /* cstrnpsr.c in Sources */,
				B59979C30D4D9B9E00C9B896 /* cstrnutl.c in Sources */,
				B59979C40D4D9B9E00C9B896 /* default.c in Sources */,
				B59979C50D4D9B9E00C9B896 /* defins.c in Sources */,
				B59979C60D4D9B9E00C9B896 /* developr.c in Sources */,
				B59979C70D4D9B9E00C9B896 /* dffctbin.c in Sources */,
				B59979C80D4D9B9E00C9B896 /* dffctbsc.c in Sources */,
				B59979C90D4D9B9E00C9B896 /* dffctcmp.c in Sources */,
				B59979CA0D4D9B9E00C9B896 /* dffctdef.c in Sources */,
				B59979CB0D4D9B9E00C9B896 /* dffctpsr.c in Sources */,
				B59979CC0D4D9B9E00C9B896 /* dffnxbin.c in Sources */,
				B59979CD0D4D9B9E00C9B896 /* dffnxcmp.c in Sources */,
				B59979CE0D4D9B9E00C9B896 /* dffnxexe.c in Sources */,
				B59979CF0D4D9B9E00C9B896 /* dffnxfun.c in Sources */,
				B59979D00D4D9B9E00C9B896 /* dffnxpsr.c in Sources */,
				B59979D10D4D9B9E00C9B896 /* dfinsbin.c in Sources */,
				B59979D20D4D9B9E00C9B896 /* dfinscmp.c in Sources */,
				B59979D30D4D9B9E00C9B896 /* drive.c in Sources */,
				B59979D90D4D9B9E00C9B896 /* emathfun.c in Sources */,
				B59979DA0D4D9B9E00C9B896 /* engine.c in Sources */,
				B59979DB0D4D9B9E00C9B896 /* envrnmnt.c in Sources */,
				B59979DC0D4D9B9E00C9B896 /* evaluatn.c in Sources */,
				B59979DD0D4D9B9E00C9B896 /* expressn.c in Sources */,
				B59979DE0D4D9B9E00C9B896 /* exprnbin.c in Sources */,
				B59979DF0D4D9B9E00C9B896 /* exprnops.c in Sources */,
				B59979E00D4D9B9E00C9B896 /* exprnpsr.c in Sources */,
				B59979E10D4D9B9E00C9B896 /* extnfunc.c in Sources */,
				1E278EA31DC5A0F4000D88DD /* fileutil.c in Sources */,
				B59979E20D4D9B9E00C9B896 /* factbin.c in Sources */,
				B59979E30D4D9B9E00C9B896 /* factbld.c in Sources */,
				B59979E40D4D9B9E00C9B896 /* factcmp.c in Sources */,
				B59979E50D4D9B9E00C9B896 /* factcom.c in Sources */,
				B59979E60D4D9B9E00C9B896 /* factfun.c in Sources */,
				B59979E70D4D9B9E00C9B896 /* factgen.c in Sources */,
				B59979E80D4D9B9E00C9B896 /* facthsh.c in Sources */,
				B59979E90D4D9B9E00C9B896 /* factlhs.c in Sources */,
				B59979EA0D4D9B9E00C9B896 /* factmch.c in Sources */,
				B59979EB0D4D9B9E00C9B896 /* factmngr.c in Sources */,
				B59979EC0D4D9B9E00C9B896 /* factprt.c in Sources */,
				B59979ED0D4D9B9E00C9B896 /* factqpsr.c in Sources */,
				B59979EE0D4D9B9E00C9B896 /* factqury.c in Sources */,
				B59979EF0D4D9B9E00C9B896 /* factrete.c in Sources */,
				B59979F00D4D9B9E00C9B896 /* factrhs.c in Sources */,
				B59979F10D4D9B9E00C9B896 /* filecom.c in Sources */,
				B59979F20D4D9B9E00C9B896 /* filertr.c in Sources */,
				B59979F30D4D9B9E00C9B896 /* generate.c in Sources */,
				B59979F40D4D9B9E00C9B896 /* genrcbin.c in Sources */,
				B59979F50D4D9B9E00C9B896 /* genrccmp.c in Sources */,
				B59979F60D4D9B9E00C9B896 /* genrccom.c in Sources */,
				B59979F70D4D9B9E00C9B896 /* genrcexe.c in Sources */,
				B59979F80D4D9B9E00C9B896 /* genrcfun.c in Sources */,
				B59979F90D4D9B9E00C9B896 /* genrcpsr.c in Sources */,
				B59979FA0D4D9B9E00C9B896 /* globlbin.c in Sources */,
				B59979FB0D4D9B9E00C9B896 /* globlbsc.c in Sources */,
				B59979FC0D4D9B9E00C9B896 /* globlcmp.c in Sources */,
				B59979FD0D4D9B9E00C9B896 /* globlcom.c in Sources */,
				B59979FE0D4D9B9E00C9B896 /* globldef.c in Sources */,
				B59979FF0D4D9B9E00C9B896 /* globlpsr.c in Sources */,
				B5997A000D4D9B9E00C9B896 /* immthpsr.c in Sources */,
				B5997A010D4D9B9E00C9B896 /* incrrset.c in Sources */,
				B5997A020D4D9B9E00C9B896 /* inherpsr.c in Sources */,
				B5997A030D4D9B9E00C9B896 /* inscom.c in Sources */,
				B5997A040D4D9B9E00C9B896 /* insfile.c in Sources */,
				B5997A050D4D9B9E00C9B896 /* insfun.c in Sources */,
				B5997A060D4D9B9E00C9B896 /* insmngr.c in Sources */,
				B5997A070D4D9B9E00C9B896 /* insmoddp.c in Sources */,
				B5997A080D4D9B9E00C9B896 /* insmult.c in Sources */,
				B5997A090D4D9B9E00C9B896 /* inspsr.c in Sources */,
				B5997A0A0D4D9B9E00C9B896 /* insquery.c in Sources */,
				B5997A0B0D4D9B9E00C9B896 /* insqypsr.c in Sources */,
				B5997A0C0D4D9B9E00C9B896 /* iofun.c in Sources */,
				B5997A0D0D4D9B9E00C9B896 /* lgcldpnd.c in Sources */,
				B5997A0E0D4D9B9E00C9B896 /* memalloc.c in Sources */,
				B5997A0F0D4D9B9E00C9B896 /* miscfun.c in Sources */,
				B5997A100D4D9B9E00C9B896 /* modulbin.c in Sources */,
				B5997A110D4D9B9E00C9B896 /* modulbsc.c in Sources */,
				B5997A120D4D9B9E00C9B896 /* modulcmp.c in Sources */,
				B5997A130D4D9B9E00C9B896 /* moduldef.c in Sources */,
				B5997A140D4D9B9E00C9B896 /* modulpsr.c in Sources */,
				B5997A150D4D9B9E00C9B896 /* modulutl.c in Sources */,
				B5997A160D4D9B9E00C9B896 /* msgcom.c in Sources */,
				B5997A170D4D9B9E00C9B896 /* msgfun.c in Sources */,
				B5997A180D4D9B9E00C9B896 /* msgpass.c in Sources */,
				B5997A190D4D9B9E00C9B896 /* msgpsr.c in Sources */,
				B5997A1A0D4D9B9E00C9B896 /* multifld.c in Sources */,
				B5997A1B0D4D9B9E00C9B896 /* multifun.c in Sources */,
				B5997A1C0D4D9B9E00C9B896 /* objbin.c in Sources */,
				B5997A1D0D4D9B9E00C9B896 /* objcmp.c in Sources */,
				B5997A1E0D4D9B9E00C9B896 /* objrtbin.c in Sources */,
				B5997A1F0D4D9B9E00C9B896 /* objrtbld.c in Sources */,
				B5997A200D4D9B9E00C9B896 /* objrtcmp.c in Sources */,
				B5997A210D4D9B9E00C9B896 /* objrtfnx.c in Sources */,
				B5997A220D4D9B9E00C9B896 /* objrtgen.c in Sources */,
				B5997A230D4D9B9E00C9B896 /* objrtmch.c in Sources */,
				B5997A240D4D9B9E00C9B896 /* parsefun.c in Sources */,
				B5997A250D4D9B9E00C9B896 /* pattern.c in Sources */,
				B5997A260D4D9B9E00C9B896 /* pprint.c in Sources */,
				B5997A270D4D9B9E00C9B896 /* prccode.c in Sources */,
				B5997A280D4D9B9E00C9B896 /* prcdrfun.c in Sources */,
				B5997A290D4D9B9E00C9B896 /* prcdrpsr.c in Sources */,
				B5997A2A0D4D9B9E00C9B896 /* prdctfun.c in Sources */,
				B5997A2B0D4D9B9E00C9B896 /* prntutil.c in Sources */,
				B5997A2C0D4D9B9E00C9B896 /* proflfun.c in Sources */,
				B5997A2D0D4D9B9E00C9B896 /* reorder.c in Sources */,
				B5997A2E0D4D9B9E00C9B896 /* reteutil.c in Sources */,
				B5997A2F0D4D9B9E00C9B896 /* retract.c in Sources */,
				B5997A300D4D9B9E00C9B896 /* router.c in Sources */,
				B5997A310D4D9B9E00C9B896 /* rulebin.c in Sources */,
				B5997A320D4D9B9E00C9B896 /* rulebld.c in Sources */,
				B5997A330D4D9B9E00C9B896 /* rulebsc.c in Sources */,
				B5997A340D4D9B9E00C9B896 /* rulecmp.c in Sources */,
				B5997A350D4D9B9E00C9B896 /* rulecom.c in Sources */,
				B5997A360D4D9B9E00C9B896 /* rulecstr.c in Sources */,
				B5997A370D4D9B9E00C9B896 /* ruledef.c in Sources */,
				B5997A380D4D9B9E00C9B896 /* ruledlt.c in Sources */,
				B5997A390D4D9B9E00C9B896 /* rulelhs.c in Sources */,
				B5997A3A0D4D9B9E00C9B896 /* rulepsr.c in Sources */,
				B5997A3B0D4D9B9E00C9B896 /* scanner.c in Sources */,
				B5997A3C0D4D9B9E00C9B896 /* sortfun.c in Sources */,
				B5997A3D0D4D9B9E00C9B896 /* strngfun.c in Sources */,
				B5997A3E0D4D9B9E00C9B896 /* strngrtr.c in Sources */,
				B5997A3F0D4D9B9E00C9B896 /* symblbin.c in Sources */,
				B5997A400D4D9B9E00C9B896 /* symblcmp.c in Sources */,
				B5997A410D4D9B9E00C9B896 /* symbol.c in Sources */,
				B5997A420D4D9B9E00C9B896 /* sysdep.c in Sources */,
				B5997A430D4D9B9E00C9B896 /* textpro.c in Sources */,
				B5997A440D4D9B9E00C9B896 /* tmpltbin.c in Sources */,
				B5997A450D4D9B9E00C9B896 /* tmpltbsc.c in Sources */,
				B5997A460D4D9B9E00C9B896 /* tmpltcmp.c in Sources */,
				B5997A470D4D9B9E00C9B896 /* tmpltdef.c in Sources */,
				B5997A480D4D9B9E00C9B896 /* tmpltfun.c in Sources */,
				1E8504BD1DC40D0A00FA75A7 /* envrnbld.c in Sources */,
				B5997A490D4D9B9E00C9B896 /* tmpltlhs.c in Sources */,
				B5997A4A0D4D9B9E00C9B896 /* tmpltpsr.c in Sources */,
				B5997A4B0D4D9B9E00C9B896 /* tmpltrhs.c in Sources */,
				B5997A4C0D4D9B9E00C9B896 /* tmpltutl.c in Sources */,
				B5997A4D0D4D9B9E00C9B896 /* userdata.c in Sources */,
				B5997A4E0D4D9B9E00C9B896 /* userfunctions.c in Sources */,
				B5997A4F0D4D9B9E00C9B896 /* utility.c in Sources */,
				B5997A500D4D9B9E00C9B896 /* watch.c in Sources */,
				B5997A510D4D9B9E00C9B896 /* main.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5BCEF5209AD23BF000E597B /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B5BCF0AF09AD245B000E597B /* agenda.c in Sources */,
				B5BCF0B109AD245B000E597B /* analysis.c in Sources */,
				B5BCF0B309AD245B000E597B /* argacces.c in Sources */,
				B5BCF0B509AD245B000E597B /* bload.c in Sources */,
				B5BCF0B709AD245B000E597B /* bmathfun.c in Sources */,
				B5BCF0B909AD245B000E597B /* bsave.c in Sources */,
				B5BCF0BB09AD245B000E597B /* classcom.c in Sources */,
				B5BCF0BD09AD245B000E597B /* classexm.c in Sources */,
				B5BCF0BF09AD245B000E597B /* classfun.c in Sources */,
				B5BCF0C109AD245B000E597B /* classinf.c in Sources */,
				B5BCF0C309AD245B000E597B /* classini.c in Sources */,
				B5BCF0C509AD245B000E597B /* classpsr.c in Sources */,
				B5BCF0C809AD245B000E597B /* clsltpsr.c in Sources */,
				B5BCF0CB09AD245B000E597B /* commline.c in Sources */,
				B5BCF0CD09AD245B000E597B /* conscomp.c in Sources */,
				B5BCF0D009AD245B000E597B /* constrct.c in Sources */,
				B5BCF0D209AD245B000E597B /* constrnt.c in Sources */,
				B5BCF0D409AD245B000E597B /* crstrtgy.c in Sources */,
				B5BCF0D609AD245B000E597B /* cstrcbin.c in Sources */,
				B5BCF0D909AD245B000E597B /* cstrccom.c in Sources */,
				B5BCF0DB09AD245B000E597B /* cstrcpsr.c in Sources */,
				B5BCF0DD09AD245B000E597B /* cstrnbin.c in Sources */,
				B5BCF0DF09AD245B000E597B /* cstrnchk.c in Sources */,
				B5BCF0E109AD245B000E597B /* cstrncmp.c in Sources */,
				B5BCF0E309AD245B000E597B /* cstrnops.c in Sources */,
				B5BCF0E509AD245B000E597B /* cstrnpsr.c in Sources */,
				B5BCF0E709AD245B000E597B /* cstrnutl.c in Sources */,
				B5BCF0E909AD245B000E597B /* default.c in Sources */,
				B5BCF0EB09AD245B000E597B /* defins.c in Sources */,
				B5BCF0ED09AD245B000E597B /* developr.c in Sources */,
				B5BCF0EF09AD245B000E597B /* dffctbin.c in Sources */,
				B5BCF0F109AD245B000E597B /* dffctbsc.c in Sources */,
				B5BCF0F309AD245B000E597B /* dffctcmp.c in Sources */,
				B5BCF0F509AD245B000E597B /* dffctdef.c in Sources */,
				B5BCF0F709AD245B000E597B /* dffctpsr.c in Sources */,
				B5BCF0F909AD245B000E597B /* dffnxbin.c in Sources */,
				B5BCF0FB09AD245B000E597B /* dffnxcmp.c in Sources */,
				B5BCF0FD09AD245B000E597B /* dffnxexe.c in Sources */,
				B5BCF0FF09AD245B000E597B /* dffnxfun.c in Sources */,
				B5BCF10109AD245B000E597B /* dffnxpsr.c in Sources */,
				B5BCF10309AD245B000E597B /* dfinsbin.c in Sources */,
				B5BCF10509AD245B000E597B /* dfinscmp.c in Sources */,
				B5BCF10709AD245B000E597B /* drive.c in Sources */,
				B5BCF10F09AD245B000E597B /* emathfun.c in Sources */,
				B5BCF11109AD245B000E597B /* engine.c in Sources */,
				B5BCF11309AD245B000E597B /* envrnmnt.c in Sources */,
				B5BCF11509AD245B000E597B /* evaluatn.c in Sources */,
				B5BCF11709AD245B000E597B /* expressn.c in Sources */,
				B5BCF11909AD245B000E597B /* exprnbin.c in Sources */,
				B5BCF11B09AD245B000E597B /* exprnops.c in Sources */,
				B5BCF11D09AD245B000E597B /* exprnpsr.c in Sources */,
				B5BCF11F09AD245B000E597B /* extnfunc.c in Sources */,
				B5BCF12109AD245B000E597B /* factbin.c in Sources */,
				B5BCF12309AD245B000E597B /* factbld.c in Sources */,
				B5BCF12509AD245B000E597B /* factcmp.c in Sources */,
				B5BCF12709AD245B000E597B /* factcom.c in Sources */,
				B5BCF12909AD245B000E597B /* factfun.c in Sources */,
				B5BCF12B09AD245B000E597B /* factgen.c in Sources */,
				B5BCF12D09AD245B000E597B /* facthsh.c in Sources */,
				B5BCF12F09AD245B000E597B /* factlhs.c in Sources */,
				B5BCF13109AD245B000E597B /* factmch.c in Sources */,
				B5BCF13309AD245B000E597B /* factmngr.c in Sources */,
				B5BCF13509AD245B000E597B /* factprt.c in Sources */,
				B5BCF13709AD245B000E597B /* factqpsr.c in Sources */,
				B5BCF13909AD245B000E597B /* factqury.c in Sources */,
				B5BCF13B09AD245B000E597B /* factrete.c in Sources */,
				B5BCF13D09AD245B000E597B /* factrhs.c in Sources */,
				1E278EA61DC5A664000D88DD /* fileutil.c in Sources */,
				B5BCF13F09AD245B000E597B /* filecom.c in Sources */,
				B5BCF14109AD245B000E597B /* filertr.c in Sources */,
				B5BCF14309AD245B000E597B /* generate.c in Sources */,
				B5BCF14509AD245B000E597B /* genrcbin.c in Sources */,
				B5BCF14709AD245B000E597B /* genrccmp.c in Sources */,
				B5BCF14909AD245B000E597B /* genrccom.c in Sources */,
				B5BCF14B09AD245B000E597B /* genrcexe.c in Sources */,
				B5BCF14D09AD245B000E597B /* genrcfun.c in Sources */,
				B5BCF14F09AD245B000E597B /* genrcpsr.c in Sources */,
				B5BCF15109AD245B000E597B /* globlbin.c in Sources */,
				B5BCF15309AD245B000E597B /* globlbsc.c in Sources */,
				B5BCF15509AD245B000E597B /* globlcmp.c in Sources */,
				B5BCF15709AD245B000E597B /* globlcom.c in Sources */,
				B5BCF15909AD245B000E597B /* globldef.c in Sources */,
				B5BCF15B09AD245B000E597B /* globlpsr.c in Sources */,
				B5BCF15D09AD245B000E597B /* immthpsr.c in Sources */,
				B5BCF15F09AD245B000E597B /* incrrset.c in Sources */,
				B5BCF16109AD245B000E597B /* inherpsr.c in Sources */,
				B5BCF16309AD245B000E597B /* inscom.c in Sources */,
				B5BCF16509AD245B000E597B /* insfile.c in Sources */,
				B5BCF16709AD245B000E597B /* insfun.c in Sources */,
				B5BCF16909AD245B000E597B /* insmngr.c in Sources */,
				B5BCF16B09AD245B000E597B /* insmoddp.c in Sources */,
				B5BCF16D09AD245B000E597B /* insmult.c in Sources */,
				B5BCF16F09AD245C000E597B /* inspsr.c in Sources */,
				B5BCF17109AD245C000E597B /* insquery.c in Sources */,
				B5BCF17309AD245C000E597B /* insqypsr.c in Sources */,
				B5BCF17509AD245C000E597B /* iofun.c in Sources */,
				B5BCF17709AD245C000E597B /* lgcldpnd.c in Sources */,
				B5BCF17A09AD245C000E597B /* memalloc.c in Sources */,
				B5BCF17C09AD245C000E597B /* miscfun.c in Sources */,
				B5BCF17E09AD245C000E597B /* modulbin.c in Sources */,
				B5BCF18009AD245C000E597B /* modulbsc.c in Sources */,
				B5BCF18209AD245C000E597B /* modulcmp.c in Sources */,
				B5BCF18409AD245C000E597B /* moduldef.c in Sources */,
				B5BCF18609AD245C000E597B /* modulpsr.c in Sources */,
				B5BCF18809AD245C000E597B /* modulutl.c in Sources */,
				B5BCF18A09AD245C000E597B /* msgcom.c in Sources */,
				B5BCF18C09AD245C000E597B /* msgfun.c in Sources */,
				B5BCF18E09AD245C000E597B /* msgpass.c in Sources */,
				B5BCF19009AD245C000E597B /* msgpsr.c in Sources */,
				B5BCF19209AD245C000E597B /* multifld.c in Sources */,
				B5BCF19409AD245C000E597B /* multifun.c in Sources */,
				B5BCF19709AD245C000E597B /* objbin.c in Sources */,
				B5BCF19909AD245C000E597B /* objcmp.c in Sources */,
				B5BCF19C09AD245C000E597B /* objrtbin.c in Sources */,
				B5BCF19E09AD245C000E597B /* objrtbld.c in Sources */,
				B5BCF1A009AD245C000E597B /* objrtcmp.c in Sources */,
				B5BCF1A209AD245C000E597B /* objrtfnx.c in Sources */,
				B5BCF1A409AD245C000E597B /* objrtgen.c in Sources */,
				B5BCF1A609AD245C000E597B /* objrtmch.c in Sources */,
				1E8504C11DC4122300FA75A7 /* envrnbld.c in Sources */,
				B5BCF1A809AD245C000E597B /* parsefun.c in Sources */,
				B5BCF1AA09AD245C000E597B /* pattern.c in Sources */,
				B5BCF1AC09AD245C000E597B /* pprint.c in Sources */,
				B5BCF1AE09AD245C000E597B /* prccode.c in Sources */,
				B5BCF1B009AD245C000E597B /* prcdrfun.c in Sources */,
				B5BCF1B209AD245C000E597B /* prcdrpsr.c in Sources */,
				B5BCF1B409AD245C000E597B /* prdctfun.c in Sources */,
				B5BCF1B609AD245C000E597B /* prntutil.c in Sources */,
				B5BCF1B809AD245C000E597B /* proflfun.c in Sources */,
				B5BCF1BA09AD245C000E597B /* reorder.c in Sources */,
				B5BCF1BC09AD245C000E597B /* reteutil.c in Sources */,
				B5BCF1BE09AD245C000E597B /* retract.c in Sources */,
				B5BCF1C009AD245C000E597B /* router.c in Sources */,
				B5BCF1C209AD245C000E597B /* rulebin.c in Sources */,
				B5BCF1C409AD245C000E597B /* rulebld.c in Sources */,
				B5BCF1C609AD245C000E597B /* rulebsc.c in Sources */,
				B5BCF1C809AD245C000E597B /* rulecmp.c in Sources */,
				B5BCF1CA09AD245C000E597B /* rulecom.c in Sources */,
				B5BCF1CC09AD245C000E597B /* rulecstr.c in Sources */,
				B5BCF1CE09AD245C000E597B /* ruledef.c in Sources */,
				B5BCF1D009AD245C000E597B /* ruledlt.c in Sources */,
				B5BCF1D209AD245C000E597B /* rulelhs.c in Sources */,
				B5BCF1D409AD245C000E597B /* rulepsr.c in Sources */,
				B5BCF1D609AD245C000E597B /* scanner.c in Sources */,
				B5BCF1DA09AD245C000E597B /* sortfun.c in Sources */,
				B5BCF1DC09AD245C000E597B /* strngfun.c in Sources */,
				B5BCF1DE09AD245C000E597B /* strngrtr.c in Sources */,
				B5BCF1E009AD245C000E597B /* symblbin.c in Sources */,
				B5BCF1E209AD245C000E597B /* symblcmp.c in Sources */,
				B5BCF1E409AD245C000E597B /* symbol.c in Sources */,
				B5BCF1E609AD245C000E597B /* sysdep.c in Sources */,
				B5BCF1E809AD245C000E597B /* textpro.c in Sources */,
				B5BCF1EA09AD245C000E597B /* tmpltbin.c in Sources */,
				B5BCF1EC09AD245C000E597B /* tmpltbsc.c in Sources */,
				B5BCF1EE09AD245C000E597B /* tmpltcmp.c in Sources */,
				B5BCF1F009AD245C000E597B /* tmpltdef.c in Sources */,
				B5BCF1F209AD245C000E597B /* tmpltfun.c in Sources */,
				B5BCF1F409AD245C000E597B /* tmpltlhs.c in Sources */,
				B5BCF1F609AD245C000E597B /* tmpltpsr.c in Sources */,
				B5BCF1F809AD245C000E597B /* tmpltrhs.c in Sources */,
				B5BCF1FA09AD245C000E597B /* tmpltutl.c in Sources */,
				B5BCF1FC09AD245C000E597B /* userdata.c in Sources */,
				B5BCF1FF09AD245C000E597B /* utility.c in Sources */,
				B5BCF20109AD245C000E597B /* watch.c in Sources */,
				B53734AE09F946D60086408A /* userfunctions.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		B5BCF46109AD316B000E597B /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = B5BCEF5409AD23BF000E597B /* CLIPS */;
			targetProxy = B5BCF46009AD316B000E597B /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		089C165FFE840EACC02AAC07 /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				089C1660FE840EACC02AAC07 /* English */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
		1E86D1681C321BA600FAB28F /* MainMenu.xib */ = {
			isa = PBXVariantGroup;
			children = (
				1E86D1691C321BA600FAB28F /* English */,
			);
			name = MainMenu.xib;
			sourceTree = "<group>";
		};
		1EB429351C34B3AE00093F7A /* CLIPSAgendaBrowser.xib */ = {
			isa = PBXVariantGroup;
			children = (
				1EB429361C34B3AE00093F7A /* English */,
			);
			name = CLIPSAgendaBrowser.xib;
			sourceTree = "<group>";
		};
		1EB429381C34C5EE00093F7A /* CLIPSFactBrowser.xib */ = {
			isa = PBXVariantGroup;
			children = (
				1EB429391C34C5EE00093F7A /* English */,
			);
			name = CLIPSFactBrowser.xib;
			sourceTree = "<group>";
		};
		1EB4293A1C34C5EE00093F7A /* CLIPSInstanceBrowser.xib */ = {
			isa = PBXVariantGroup;
			children = (
				1EB4293B1C34C5EE00093F7A /* English */,
			);
			name = CLIPSInstanceBrowser.xib;
			sourceTree = "<group>";
		};
		1EB4293E1C34C83400093F7A /* CLIPSConstructInspector.xib */ = {
			isa = PBXVariantGroup;
			children = (
				1EB4293F1C34C83400093F7A /* English */,
			);
			name = CLIPSConstructInspector.xib;
			sourceTree = "<group>";
		};
		1EB429401C34C83400093F7A /* Preferences.xib */ = {
			isa = PBXVariantGroup;
			children = (
				1EB429411C34C83400093F7A /* English */,
			);
			name = Preferences.xib;
			sourceTree = "<group>";
		};
		1EBA251B1C34CB0B0013B169 /* CLIPSTerminal.xib */ = {
			isa = PBXVariantGroup;
			children = (
				1EBA251C1C34CB0B0013B169 /* English */,
			);
			name = CLIPSTerminal.xib;
			sourceTree = "<group>";
		};
		1EBA251D1C34CB0B0013B169 /* CLIPSTextDocument.xib */ = {
			isa = PBXVariantGroup;
			children = (
				1EBA251E1C34CB0B0013B169 /* English */,
			);
			name = CLIPSTextDocument.xib;
			sourceTree = "<group>";
		};
		2A37F4B9FDCFA73011CA2CEA /* Credits.rtf */ = {
			isa = PBXVariantGroup;
			children = (
				2A37F4BAFDCFA73011CA2CEA /* English */,
			);
			name = Credits.rtf;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		1E6F78CD0D502A6500B9DCFB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_MODEL_PPC64 = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 3;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"WINDOW_INTERFACE=1",
					"MAC_XCD=1",
				);
				GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = NO;
				GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_PARAMETER = NO;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.9;
				SDKROOT = macosx;
				VALID_ARCHS = "ppc64 ppc7400 ppc970 i386 x86_64 ppc";
			};
			name = Release;
		};
		1E6F78CE0D502A6500B9DCFB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_IMPLICIT_SIGN_CONVERSION = YES;
				CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
				COPY_PHASE_STRIP = NO;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"WINDOW_INTERFACE=0",
					"DARWIN=1",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_SIGN_COMPARE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.6;
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "CLIPS Console";
				REZ_EXECUTABLE = YES;
				SDKROOT = macosx;
				SECTORDER_FLAGS = "";
				VALID_ARCHS = "i386 x86_64";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Release;
		};
		1E6F78CF0D502A6500B9DCFB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_ASSIGN_ENUM = NO;
				CLANG_WARN_IMPLICIT_SIGN_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NULLABLE_TO_NONNULL_CONVERSION = NO;
				CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
				COMBINE_HIDPI_IMAGES = YES;
				COPY_PHASE_STRIP = NO;
				FRAMEWORK_SEARCH_PATHS = "$(inherited)";
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_MODEL_TUNING = G5;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_SIGN_COMPARE = YES;
				INFOPLIST_FILE = Interface_Source/Info.plist;
				INSTALL_PATH = "$(HOME)/Applications";
				MACOSX_DEPLOYMENT_TARGET = 10.9;
				PRODUCT_BUNDLE_IDENTIFIER = com.SSoP.CLIPSIDE;
				PRODUCT_NAME = "CLIPS IDE";
				SDKROOT = macosx;
				VALID_ARCHS = "i386 x86_64";
				WRAPPER_EXTENSION = app;
				ZERO_LINK = YES;
			};
			name = Release;
		};
		1E6F78D00D502A6500B9DCFB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				COMBINE_HIDPI_IMAGES = YES;
				COPY_PHASE_STRIP = NO;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				FRAMEWORK_SEARCH_PATHS = "$(inherited)";
				FRAMEWORK_VERSION = A;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_MODEL_TUNING = G5;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "";
				INFOPLIST_FILE = "Interface_Source/CLIPS-Info.plist";
				INSTALL_PATH = "@executable_path/../Frameworks";
				MACOSX_DEPLOYMENT_TARGET = 10.9;
				OTHER_LDFLAGS = "";
				PRODUCT_BUNDLE_IDENTIFIER = com.SSoP;
				PRODUCT_NAME = CLIPS;
				SDKROOT = macosx;
				SKIP_INSTALL = YES;
				VALID_ARCHS = "i386 x86_64";
				ZERO_LINK = YES;
			};
			name = Release;
		};
		B5997A560D4D9B9E00C9B896 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_IMPLICIT_SIGN_CONVERSION = YES;
				CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
				COPY_PHASE_STRIP = NO;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"WINDOW_INTERFACE=0",
					"DARWIN=1",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_SIGN_COMPARE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.6;
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "CLIPS Console";
				REZ_EXECUTABLE = YES;
				SDKROOT = macosx;
				SECTORDER_FLAGS = "";
				VALID_ARCHS = "i386 x86_64";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Debug;
		};
		B5BCEF5809AD23C0000E597B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				COMBINE_HIDPI_IMAGES = YES;
				COPY_PHASE_STRIP = NO;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				FRAMEWORK_SEARCH_PATHS = "$(inherited)";
				FRAMEWORK_VERSION = A;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_MODEL_TUNING = G5;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "";
				INFOPLIST_FILE = "Interface_Source/CLIPS-Info.plist";
				INSTALL_PATH = "@executable_path/../Frameworks";
				MACOSX_DEPLOYMENT_TARGET = 10.9;
				OTHER_LDFLAGS = "";
				PRODUCT_BUNDLE_IDENTIFIER = com.SSoP;
				PRODUCT_NAME = CLIPS;
				SDKROOT = macosx;
				SKIP_INSTALL = YES;
				VALID_ARCHS = "i386 x86_64";
				ZERO_LINK = YES;
			};
			name = Debug;
		};
		C05733C808A9546B00998B17 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_ASSIGN_ENUM = NO;
				CLANG_WARN_IMPLICIT_SIGN_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NULLABLE_TO_NONNULL_CONVERSION = NO;
				CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
				COMBINE_HIDPI_IMAGES = YES;
				COPY_PHASE_STRIP = NO;
				FRAMEWORK_SEARCH_PATHS = "$(inherited)";
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_MODEL_TUNING = G5;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_SIGN_COMPARE = YES;
				INFOPLIST_FILE = Interface_Source/Info.plist;
				INSTALL_PATH = "$(HOME)/Applications";
				MACOSX_DEPLOYMENT_TARGET = 10.9;
				PRODUCT_BUNDLE_IDENTIFIER = com.SSoP.CLIPSIDE;
				PRODUCT_NAME = "CLIPS IDE";
				SDKROOT = macosx;
				VALID_ARCHS = "i386 x86_64";
				WRAPPER_EXTENSION = app;
				ZERO_LINK = YES;
			};
			name = Debug;
		};
		C05733CC08A9546B00998B17 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"WINDOW_INTERFACE=1",
					"MAC_XCD=1",
				);
				GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = NO;
				GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_PARAMETER = NO;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.9;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = macosx;
				VALID_ARCHS = "ppc64 ppc7400 ppc970 i386 x86_64 ppc";
			};
			name = Debug;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		B5997A550D4D9B9E00C9B896 /* Build configuration list for PBXNativeTarget "CLIPS Console" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				B5997A560D4D9B9E00C9B896 /* Debug */,
				1E6F78CE0D502A6500B9DCFB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Debug;
		};
		B5BCEF5709AD23C0000E597B /* Build configuration list for PBXNativeTarget "CLIPS" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				B5BCEF5809AD23C0000E597B /* Debug */,
				1E6F78D00D502A6500B9DCFB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Debug;
		};
		C05733C708A9546B00998B17 /* Build configuration list for PBXNativeTarget "CLIPS IDE" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C05733C808A9546B00998B17 /* Debug */,
				1E6F78CF0D502A6500B9DCFB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Debug;
		};
		C05733CB08A9546B00998B17 /* Build configuration list for PBXProject "CLIPS" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C05733CC08A9546B00998B17 /* Debug */,
				1E6F78CD0D502A6500B9DCFB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Debug;
		};
/* End XCConfigurationList section */
	};
	rootObject = 2A37F4A9FDCFA73011CA2CEA /* Project object */;
}