]> git.saurik.com Git - wxWidgets.git/blob - src/wxWindows.pbproj/project.pbxproj
merged 2.4 branch into the trunk
[wxWidgets.git] / src / wxWindows.pbproj / project.pbxproj
1 // !$*UTF8*$!
2 {
3 archiveVersion = 1;
4 classes = {
5 };
6 objectVersion = 38;
7 objects = {
8 034768DDFF38A45A11DB9C8B = {
9 children = (
10 F5C6AC47020C2B0F01000133,
11 F5F5A6BB02CDD62501000133,
12 );
13 isa = PBXGroup;
14 name = Products;
15 refType = 4;
16 };
17 //030
18 //031
19 //032
20 //033
21 //034
22 //080
23 //081
24 //082
25 //083
26 //084
27 0867D690FE84028FC02AAC07 = {
28 buildStyles = (
29 4F0BB7EC011F40E904CA0E50,
30 4F0BB7ED011F40E904CA0E50,
31 );
32 isa = PBXProject;
33 mainGroup = 0867D691FE84028FC02AAC07;
34 productRefGroup = 034768DDFF38A45A11DB9C8B;
35 projectDirPath = "";
36 targets = (
37 F5C6AC48020C2B1001000133,
38 F5F5A6BA02CDD62501000133,
39 );
40 };
41 0867D691FE84028FC02AAC07 = {
42 children = (
43 F5A85C1A01FA022A0175ACA7,
44 F5A85FA901FA022B0175ACA7,
45 F509A9FB01FB054D01000133,
46 0867D69AFE84028FC02AAC07,
47 034768DDFF38A45A11DB9C8B,
48 );
49 isa = PBXGroup;
50 name = wxWindows;
51 refType = 4;
52 };
53 0867D69AFE84028FC02AAC07 = {
54 children = (
55 08FB77AAFE841565C02AAC07,
56 F5C5D3DF01FA2D0A01D0F0BA,
57 F55E08F801FDF9CC01000133,
58 F5D00F2901FDFB8401000133,
59 );
60 isa = PBXGroup;
61 name = "External Frameworks and Libraries";
62 refType = 4;
63 };
64 08FB77AAFE841565C02AAC07 = {
65 isa = PBXFrameworkReference;
66 name = Carbon.framework;
67 path = /System/Library/Frameworks/Carbon.framework;
68 refType = 0;
69 };
70 //080
71 //081
72 //082
73 //083
74 //084
75 //4F0
76 //4F1
77 //4F2
78 //4F3
79 //4F4
80 4F0BB7EC011F40E904CA0E50 = {
81 buildRules = (
82 );
83 buildSettings = {
84 COPY_PHASE_STRIP = NO;
85 OPTIMIZATION_CFLAGS = "-O0";
86 };
87 isa = PBXBuildStyle;
88 name = Development;
89 };
90 4F0BB7ED011F40E904CA0E50 = {
91 buildRules = (
92 );
93 buildSettings = {
94 COPY_PHASE_STRIP = YES;
95 };
96 isa = PBXBuildStyle;
97 name = Deployment;
98 };
99 //4F0
100 //4F1
101 //4F2
102 //4F3
103 //4F4
104 //F50
105 //F51
106 //F52
107 //F53
108 //F54
109 F509A9FB01FB054D01000133 = {
110 children = (
111 F5D0E30702CCEA1D01000133,
112 F5D0E30802CCEA1D01000133,
113 );
114 isa = PBXGroup;
115 name = DerivedSources;
116 refType = 4;
117 };
118 F55E08F801FDF9CC01000133 = {
119 isa = PBXFileReference;
120 name = libz.dylib;
121 path = /usr/lib/libz.dylib;
122 refType = 0;
123 };
124 F58E04FD02F11FA701A8020C = {
125 isa = PBXFileReference;
126 path = msgout.cpp;
127 refType = 4;
128 };
129 F58E04FE02F11FA701A8020C = {
130 fileRef = F58E04FD02F11FA701A8020C;
131 isa = PBXBuildFile;
132 settings = {
133 };
134 };
135 F58E04FF02F11FA701A8020C = {
136 fileRef = F58E04FD02F11FA701A8020C;
137 isa = PBXBuildFile;
138 settings = {
139 };
140 };
141 F5955E9802CBA86701000133 = {
142 buildActionMask = 2147483647;
143 files = (
144 );
145 generatedFileNames = (
146 );
147 isa = PBXShellScriptBuildPhase;
148 neededFileNames = (
149 );
150 runOnlyForDeploymentPostprocessing = 0;
151 shellPath = /bin/sh;
152 shellScript = "# Create wx include directory if necessary\nif [ ! -d \"$SYMROOT/include/wx\" ]; then\n mkdir -p \"$SYMROOT/include/wx\" || exit 1\nfi\n# Copy setup0.h to setup.h\nif [ ! -f \"$SYMROOT/include/wx/setup.h\" ]; then\n cp \"$SRCROOT/../include/wx/mac/setup0.h\" \"$SYMROOT/include/wx/setup.h\" || exit 1\nfi\n# Generate lexer\nif [ ! -f \"$SYMROOT/lexer.c\" -o \"$SYMROOT/lexer.c\" -ot \"$SRCROOT/common/lexer.l\" ]; then\n flex \"$SRCROOT/common/lexer.l\" || exit 1\n sed -e \"s;$SRCROOT/common/lex.yy.c;lexer.l;g\" < lex.yy.c | \\\n sed -e \"s/yy/PROIO_yy/g\" | \\\n sed -e \"s/input/PROIO_input/g\" | \\\n sed -e \"s/unput/PROIO_unput/g\" > \"$SYMROOT/lexer.c\" || exit 1\n rm -f lex.yy.c\nfi\n# Generate parser\nif [ ! -f \"$SYMROOT/parser.c\" -o \"$SYMROOT/parser.c\" -ot \"$SRCROOT/common/parser.y\" ]; then\n bison -y \"$SRCROOT/common/parser.y\" || exit 1\n sed -e \"s;$SRCROOT/common/y.tab.c;parser.y;g\" < y.tab.c | \\\n sed -e \"s/BUFSIZ/5000/g\" | \\\n sed -e \"s/YYLMAX 200/YYLMAX 5000/g\" | \\\n sed -e \"s/yy/PROIO_yy/g\" | \\\n sed -e \"s/input/PROIO_input/g\" | \\\n sed -e \"s/unput/PROIO_unput/g\" > \"$SYMROOT/parser.c\" || exit 1\n rm -f y.tab.c\nfi";
153 };
154 F5955E9D02CBA8B501000133 = {
155 fileRef = F5A8619E01FA022C0175ACA7;
156 isa = PBXBuildFile;
157 settings = {
158 };
159 };
160 F5955E9E02CBA8B701000133 = {
161 fileRef = F5A861A301FA022C0175ACA7;
162 isa = PBXBuildFile;
163 settings = {
164 };
165 };
166 F5955E9F02CBA8B901000133 = {
167 fileRef = F5A861AC01FA022C0175ACA7;
168 isa = PBXBuildFile;
169 settings = {
170 };
171 };
172 F5955EA502CBAA7301000133 = {
173 fileRef = F5A8600801FA022B0175ACA7;
174 isa = PBXBuildFile;
175 settings = {
176 };
177 };
178 F5955EA602CBAA8C01000133 = {
179 fileRef = F5A85FDF01FA022B0175ACA7;
180 isa = PBXBuildFile;
181 settings = {
182 };
183 };
184 F5955EA702CBAA8D01000133 = {
185 fileRef = F5A85FE101FA022B0175ACA7;
186 isa = PBXBuildFile;
187 settings = {
188 };
189 };
190 F5955EA802CBAA8E01000133 = {
191 fileRef = F5A85FE201FA022B0175ACA7;
192 isa = PBXBuildFile;
193 settings = {
194 };
195 };
196 F5955EA902CBAA8F01000133 = {
197 fileRef = F5A85FE301FA022B0175ACA7;
198 isa = PBXBuildFile;
199 settings = {
200 };
201 };
202 F5955EAA02CBAA9001000133 = {
203 fileRef = F5A85FE401FA022B0175ACA7;
204 isa = PBXBuildFile;
205 settings = {
206 };
207 };
208 F5955EAB02CBAA9101000133 = {
209 fileRef = F5A85FE501FA022B0175ACA7;
210 isa = PBXBuildFile;
211 settings = {
212 };
213 };
214 F5955EAC02CBAA9201000133 = {
215 fileRef = F5A85FE601FA022B0175ACA7;
216 isa = PBXBuildFile;
217 settings = {
218 };
219 };
220 F5955EAD02CBAAB201000133 = {
221 fileRef = F5A85FE801FA022B0175ACA7;
222 isa = PBXBuildFile;
223 settings = {
224 };
225 };
226 F5955EAE02CBAAB201000133 = {
227 fileRef = F5A85FE901FA022B0175ACA7;
228 isa = PBXBuildFile;
229 settings = {
230 };
231 };
232 F5955EAF02CBAAB301000133 = {
233 fileRef = F5A85FE701FA022B0175ACA7;
234 isa = PBXBuildFile;
235 settings = {
236 };
237 };
238 F5955EB102CBAAB501000133 = {
239 fileRef = F5A85FFE01FA022B0175ACA7;
240 isa = PBXBuildFile;
241 settings = {
242 };
243 };
244 F5955EB202CBAAB501000133 = {
245 fileRef = F5A85FFB01FA022B0175ACA7;
246 isa = PBXBuildFile;
247 settings = {
248 };
249 };
250 F5955EB302CBAAB601000133 = {
251 fileRef = F5A85FFA01FA022B0175ACA7;
252 isa = PBXBuildFile;
253 settings = {
254 };
255 };
256 F5955EB402CBAAB601000133 = {
257 fileRef = F5A85FF901FA022B0175ACA7;
258 isa = PBXBuildFile;
259 settings = {
260 };
261 };
262 F5955EB502CBAAB601000133 = {
263 fileRef = F5A85FF801FA022B0175ACA7;
264 isa = PBXBuildFile;
265 settings = {
266 };
267 };
268 F5955EB602CBAAB701000133 = {
269 fileRef = F5A85FF701FA022B0175ACA7;
270 isa = PBXBuildFile;
271 settings = {
272 };
273 };
274 F5955EB702CBAAB701000133 = {
275 fileRef = F5A85FF601FA022B0175ACA7;
276 isa = PBXBuildFile;
277 settings = {
278 };
279 };
280 F5955EB802CBAAB801000133 = {
281 fileRef = F5A85FF401FA022B0175ACA7;
282 isa = PBXBuildFile;
283 settings = {
284 };
285 };
286 F5955EB902CBAAB801000133 = {
287 fileRef = F5A85FF301FA022B0175ACA7;
288 isa = PBXBuildFile;
289 settings = {
290 };
291 };
292 F5955EBA02CBAAB901000133 = {
293 fileRef = F5A85FF101FA022B0175ACA7;
294 isa = PBXBuildFile;
295 settings = {
296 };
297 };
298 F5955EBB02CBAAB901000133 = {
299 fileRef = F5A85FF001FA022B0175ACA7;
300 isa = PBXBuildFile;
301 settings = {
302 };
303 };
304 F5955EBC02CBAAB901000133 = {
305 fileRef = F5A85FEF01FA022B0175ACA7;
306 isa = PBXBuildFile;
307 settings = {
308 };
309 };
310 F5955EBD02CBAABA01000133 = {
311 fileRef = F5A85FEC01FA022B0175ACA7;
312 isa = PBXBuildFile;
313 settings = {
314 };
315 };
316 F5955EBE02CBAABA01000133 = {
317 fileRef = F5A85FEB01FA022B0175ACA7;
318 isa = PBXBuildFile;
319 settings = {
320 };
321 };
322 F5955EBF02CBAABB01000133 = {
323 fileRef = F5A85FEA01FA022B0175ACA7;
324 isa = PBXBuildFile;
325 settings = {
326 };
327 };
328 F5955EC002CBAABC01000133 = {
329 fileRef = F5A8600101FA022B0175ACA7;
330 isa = PBXBuildFile;
331 settings = {
332 };
333 };
334 F5955EC102CBAABD01000133 = {
335 fileRef = F5A8600001FA022B0175ACA7;
336 isa = PBXBuildFile;
337 settings = {
338 };
339 };
340 F5955EC202CBAABD01000133 = {
341 fileRef = F5A85FFF01FA022B0175ACA7;
342 isa = PBXBuildFile;
343 settings = {
344 };
345 };
346 F5955EC302CBAAC001000133 = {
347 fileRef = F5A8600701FA022B0175ACA7;
348 isa = PBXBuildFile;
349 settings = {
350 };
351 };
352 F5955EC402CBAAC101000133 = {
353 fileRef = F5A8600601FA022B0175ACA7;
354 isa = PBXBuildFile;
355 settings = {
356 };
357 };
358 F5955EC502CBAAC101000133 = {
359 fileRef = F5A8600501FA022B0175ACA7;
360 isa = PBXBuildFile;
361 settings = {
362 };
363 };
364 F5955EC602CBAAC201000133 = {
365 fileRef = F5A8600401FA022B0175ACA7;
366 isa = PBXBuildFile;
367 settings = {
368 };
369 };
370 F5955EC702CBAAC201000133 = {
371 fileRef = F5A8600301FA022B0175ACA7;
372 isa = PBXBuildFile;
373 settings = {
374 };
375 };
376 F5955EC802CBAAC301000133 = {
377 fileRef = F5A8600201FA022B0175ACA7;
378 isa = PBXBuildFile;
379 settings = {
380 };
381 };
382 F5955EC902CBAAC401000133 = {
383 fileRef = F5A8602101FA022B0175ACA7;
384 isa = PBXBuildFile;
385 settings = {
386 };
387 };
388 F5955ECA02CBAAC401000133 = {
389 fileRef = F5A8602001FA022B0175ACA7;
390 isa = PBXBuildFile;
391 settings = {
392 };
393 };
394 F5955ECB02CBAAC501000133 = {
395 fileRef = F5A8601F01FA022B0175ACA7;
396 isa = PBXBuildFile;
397 settings = {
398 };
399 };
400 F5955ECC02CBAAC501000133 = {
401 fileRef = F5A8601E01FA022B0175ACA7;
402 isa = PBXBuildFile;
403 settings = {
404 };
405 };
406 F5955ECD02CBAAC501000133 = {
407 fileRef = F5A8601D01FA022B0175ACA7;
408 isa = PBXBuildFile;
409 settings = {
410 };
411 };
412 F5955ECE02CBAAC601000133 = {
413 fileRef = F5A8601C01FA022B0175ACA7;
414 isa = PBXBuildFile;
415 settings = {
416 };
417 };
418 F5955ECF02CBAAC601000133 = {
419 fileRef = F5A8601B01FA022B0175ACA7;
420 isa = PBXBuildFile;
421 settings = {
422 };
423 };
424 F5955ED002CBAAC701000133 = {
425 fileRef = F5A8601A01FA022B0175ACA7;
426 isa = PBXBuildFile;
427 settings = {
428 };
429 };
430 F5955ED102CBAAC701000133 = {
431 fileRef = F5A8601901FA022B0175ACA7;
432 isa = PBXBuildFile;
433 settings = {
434 };
435 };
436 F5955ED202CBAAC801000133 = {
437 fileRef = F5A8601701FA022B0175ACA7;
438 isa = PBXBuildFile;
439 settings = {
440 };
441 };
442 F5955ED302CBAAC801000133 = {
443 fileRef = F5A8601601FA022B0175ACA7;
444 isa = PBXBuildFile;
445 settings = {
446 };
447 };
448 F5955ED402CBAAC901000133 = {
449 fileRef = F5A8601501FA022B0175ACA7;
450 isa = PBXBuildFile;
451 settings = {
452 };
453 };
454 F5955ED502CBAACA01000133 = {
455 fileRef = F5A8601401FA022B0175ACA7;
456 isa = PBXBuildFile;
457 settings = {
458 };
459 };
460 F5955ED602CBAACA01000133 = {
461 fileRef = F5A8601301FA022B0175ACA7;
462 isa = PBXBuildFile;
463 settings = {
464 };
465 };
466 F5955ED702CBAACB01000133 = {
467 fileRef = F5A8601201FA022B0175ACA7;
468 isa = PBXBuildFile;
469 settings = {
470 };
471 };
472 F5955ED802CBAACB01000133 = {
473 fileRef = F5A8601101FA022B0175ACA7;
474 isa = PBXBuildFile;
475 settings = {
476 };
477 };
478 F5955ED902CBAACC01000133 = {
479 fileRef = F5A8601001FA022B0175ACA7;
480 isa = PBXBuildFile;
481 settings = {
482 };
483 };
484 F5955EDA02CBAACC01000133 = {
485 fileRef = F5A8600F01FA022B0175ACA7;
486 isa = PBXBuildFile;
487 settings = {
488 };
489 };
490 F5955EDB02CBAACD01000133 = {
491 fileRef = F5A8600E01FA022B0175ACA7;
492 isa = PBXBuildFile;
493 settings = {
494 };
495 };
496 F5955EDC02CBAACD01000133 = {
497 fileRef = F5A8600D01FA022B0175ACA7;
498 isa = PBXBuildFile;
499 settings = {
500 };
501 };
502 F5955EDD02CBAACD01000133 = {
503 fileRef = F5A8600C01FA022B0175ACA7;
504 isa = PBXBuildFile;
505 settings = {
506 };
507 };
508 F5955EDE02CBAACE01000133 = {
509 fileRef = F5A8600B01FA022B0175ACA7;
510 isa = PBXBuildFile;
511 settings = {
512 };
513 };
514 F5955EDF02CBAACE01000133 = {
515 fileRef = F5A8600A01FA022B0175ACA7;
516 isa = PBXBuildFile;
517 settings = {
518 };
519 };
520 F5955EE002CBAACF01000133 = {
521 fileRef = F5A8600901FA022B0175ACA7;
522 isa = PBXBuildFile;
523 settings = {
524 };
525 };
526 F5955EE102CBAAD501000133 = {
527 fileRef = F5A8602201FA022B0175ACA7;
528 isa = PBXBuildFile;
529 settings = {
530 };
531 };
532 F5955EE202CBAAD601000133 = {
533 fileRef = F5A8602301FA022B0175ACA7;
534 isa = PBXBuildFile;
535 settings = {
536 };
537 };
538 F5955EE302CBAAD601000133 = {
539 fileRef = F5A8602401FA022B0175ACA7;
540 isa = PBXBuildFile;
541 settings = {
542 };
543 };
544 F5955EE402CBAAD601000133 = {
545 fileRef = F5A8602501FA022B0175ACA7;
546 isa = PBXBuildFile;
547 settings = {
548 };
549 };
550 F5955EE502CBAAD701000133 = {
551 fileRef = F5A8602601FA022B0175ACA7;
552 isa = PBXBuildFile;
553 settings = {
554 };
555 };
556 F5955EE602CBAAD701000133 = {
557 fileRef = F5A8602801FA022B0175ACA7;
558 isa = PBXBuildFile;
559 settings = {
560 };
561 };
562 F5955EE702CBAAD801000133 = {
563 fileRef = F5A8602901FA022B0175ACA7;
564 isa = PBXBuildFile;
565 settings = {
566 };
567 };
568 F5955EE802CBAAD801000133 = {
569 fileRef = F5A8602A01FA022B0175ACA7;
570 isa = PBXBuildFile;
571 settings = {
572 };
573 };
574 F5955EE902CBAAD901000133 = {
575 fileRef = F5A8602B01FA022B0175ACA7;
576 isa = PBXBuildFile;
577 settings = {
578 };
579 };
580 F5955EEA02CBAAD901000133 = {
581 fileRef = F5A8602E01FA022B0175ACA7;
582 isa = PBXBuildFile;
583 settings = {
584 };
585 };
586 F5955EEB02CBAADA01000133 = {
587 fileRef = F5A8602F01FA022B0175ACA7;
588 isa = PBXBuildFile;
589 settings = {
590 };
591 };
592 F5955EEC02CBAADA01000133 = {
593 fileRef = F5A8603001FA022B0175ACA7;
594 isa = PBXBuildFile;
595 settings = {
596 };
597 };
598 F5955EED02CBAADA01000133 = {
599 fileRef = F5A8603101FA022B0175ACA7;
600 isa = PBXBuildFile;
601 settings = {
602 };
603 };
604 F5955EEE02CBAADB01000133 = {
605 fileRef = F5A8603201FA022B0175ACA7;
606 isa = PBXBuildFile;
607 settings = {
608 };
609 };
610 F5955EEF02CBAADB01000133 = {
611 fileRef = F5A8603301FA022B0175ACA7;
612 isa = PBXBuildFile;
613 settings = {
614 };
615 };
616 F5955EF002CBAADC01000133 = {
617 fileRef = F5A8603401FA022B0175ACA7;
618 isa = PBXBuildFile;
619 settings = {
620 };
621 };
622 F5955EF202CBAADD01000133 = {
623 fileRef = F5A8603701FA022B0175ACA7;
624 isa = PBXBuildFile;
625 settings = {
626 };
627 };
628 F5955EF402CBAADE01000133 = {
629 fileRef = F5A8603501FA022B0175ACA7;
630 isa = PBXBuildFile;
631 settings = {
632 };
633 };
634 F5955EF502CBAADE01000133 = {
635 fileRef = F5A8603601FA022B0175ACA7;
636 isa = PBXBuildFile;
637 settings = {
638 };
639 };
640 F5955EF602CBAAE001000133 = {
641 fileRef = F5A8603901FA022B0175ACA7;
642 isa = PBXBuildFile;
643 settings = {
644 };
645 };
646 F5955EF702CBAAE001000133 = {
647 fileRef = F5A8603801FA022B0175ACA7;
648 isa = PBXBuildFile;
649 settings = {
650 };
651 };
652 F5955EF802CBAAE101000133 = {
653 fileRef = F5A8603D01FA022C0175ACA7;
654 isa = PBXBuildFile;
655 settings = {
656 };
657 };
658 F5955EF902CBAAE101000133 = {
659 fileRef = F5A8603E01FA022C0175ACA7;
660 isa = PBXBuildFile;
661 settings = {
662 };
663 };
664 F5955EFA02CBAAE201000133 = {
665 fileRef = F5A8603A01FA022B0175ACA7;
666 isa = PBXBuildFile;
667 settings = {
668 };
669 };
670 F5955EFB02CBAAE301000133 = {
671 fileRef = F5A8604601FA022C0175ACA7;
672 isa = PBXBuildFile;
673 settings = {
674 };
675 };
676 F5955EFC02CBAAE301000133 = {
677 fileRef = F5A8604501FA022C0175ACA7;
678 isa = PBXBuildFile;
679 settings = {
680 };
681 };
682 F5955EFD02CBAAE401000133 = {
683 fileRef = F5A8604301FA022C0175ACA7;
684 isa = PBXBuildFile;
685 settings = {
686 };
687 };
688 F5955EFE02CBAAE401000133 = {
689 fileRef = F5A8604101FA022C0175ACA7;
690 isa = PBXBuildFile;
691 settings = {
692 };
693 };
694 F5955EFF02CBAAE501000133 = {
695 fileRef = F5A8604001FA022C0175ACA7;
696 isa = PBXBuildFile;
697 settings = {
698 };
699 };
700 F5955F0002CBAAE501000133 = {
701 fileRef = F5A8603F01FA022C0175ACA7;
702 isa = PBXBuildFile;
703 settings = {
704 };
705 };
706 F5955F0102CBAAE601000133 = {
707 fileRef = F5A8604701FA022C0175ACA7;
708 isa = PBXBuildFile;
709 settings = {
710 };
711 };
712 F5955F0202CBAAE801000133 = {
713 fileRef = F5A8604801FA022C0175ACA7;
714 isa = PBXBuildFile;
715 settings = {
716 };
717 };
718 F5955F0302CBAAE901000133 = {
719 fileRef = F5A8604901FA022C0175ACA7;
720 isa = PBXBuildFile;
721 settings = {
722 };
723 };
724 F5955F0402CBAAE901000133 = {
725 fileRef = F5A8604A01FA022C0175ACA7;
726 isa = PBXBuildFile;
727 settings = {
728 };
729 };
730 F5955F0502CBAAE901000133 = {
731 fileRef = F5A8604B01FA022C0175ACA7;
732 isa = PBXBuildFile;
733 settings = {
734 };
735 };
736 F5955F0602CBAAEA01000133 = {
737 fileRef = F5A8604C01FA022C0175ACA7;
738 isa = PBXBuildFile;
739 settings = {
740 };
741 };
742 F5955F0702CBAAEB01000133 = {
743 fileRef = F5A8604D01FA022C0175ACA7;
744 isa = PBXBuildFile;
745 settings = {
746 };
747 };
748 F5955F0802CBAAEB01000133 = {
749 fileRef = F5A8604E01FA022C0175ACA7;
750 isa = PBXBuildFile;
751 settings = {
752 };
753 };
754 F5955F0902CBAAEB01000133 = {
755 fileRef = F5A8604F01FA022C0175ACA7;
756 isa = PBXBuildFile;
757 settings = {
758 };
759 };
760 F5955F0A02CBAAEC01000133 = {
761 fileRef = F5A8605001FA022C0175ACA7;
762 isa = PBXBuildFile;
763 settings = {
764 };
765 };
766 F5955F0B02CBAAEC01000133 = {
767 fileRef = F5A8605101FA022C0175ACA7;
768 isa = PBXBuildFile;
769 settings = {
770 };
771 };
772 F5955F0C02CBAAED01000133 = {
773 fileRef = F5A8605201FA022C0175ACA7;
774 isa = PBXBuildFile;
775 settings = {
776 };
777 };
778 F5955F0D02CBAAED01000133 = {
779 fileRef = F5A8605301FA022C0175ACA7;
780 isa = PBXBuildFile;
781 settings = {
782 };
783 };
784 F5955F0E02CBAAEE01000133 = {
785 fileRef = F5A8605401FA022C0175ACA7;
786 isa = PBXBuildFile;
787 settings = {
788 };
789 };
790 F5955F0F02CBAAEE01000133 = {
791 fileRef = F5A8605501FA022C0175ACA7;
792 isa = PBXBuildFile;
793 settings = {
794 };
795 };
796 F5955F1002CBAAEE01000133 = {
797 fileRef = F5A8605601FA022C0175ACA7;
798 isa = PBXBuildFile;
799 settings = {
800 };
801 };
802 F5955F1102CBAAEF01000133 = {
803 fileRef = F5A8605701FA022C0175ACA7;
804 isa = PBXBuildFile;
805 settings = {
806 };
807 };
808 F5955F1302CBAAF101000133 = {
809 fileRef = F5A8605801FA022C0175ACA7;
810 isa = PBXBuildFile;
811 settings = {
812 };
813 };
814 F5955F1402CBAAF101000133 = {
815 fileRef = F5A8605901FA022C0175ACA7;
816 isa = PBXBuildFile;
817 settings = {
818 };
819 };
820 F5955F1502CBAAF101000133 = {
821 fileRef = F5A8605B01FA022C0175ACA7;
822 isa = PBXBuildFile;
823 settings = {
824 };
825 };
826 F5955F1602CBAAF301000133 = {
827 fileRef = F5A8606601FA022C0175ACA7;
828 isa = PBXBuildFile;
829 settings = {
830 };
831 };
832 F5955F1702CBAAF501000133 = {
833 fileRef = F5A8605E01FA022C0175ACA7;
834 isa = PBXBuildFile;
835 settings = {
836 };
837 };
838 F5955F1802CBAAF601000133 = {
839 fileRef = F5A8605D01FA022C0175ACA7;
840 isa = PBXBuildFile;
841 settings = {
842 };
843 };
844 F5955F1902CBAAF601000133 = {
845 fileRef = F5A8605F01FA022C0175ACA7;
846 isa = PBXBuildFile;
847 settings = {
848 };
849 };
850 F5955F1A02CBAAF701000133 = {
851 fileRef = F5A8606001FA022C0175ACA7;
852 isa = PBXBuildFile;
853 settings = {
854 };
855 };
856 F5955F1B02CBAAF701000133 = {
857 fileRef = F5A8606101FA022C0175ACA7;
858 isa = PBXBuildFile;
859 settings = {
860 };
861 };
862 F5955F1C02CBAAF701000133 = {
863 fileRef = F5A8606201FA022C0175ACA7;
864 isa = PBXBuildFile;
865 settings = {
866 };
867 };
868 F5955F1D02CBAAF801000133 = {
869 fileRef = F5A8606301FA022C0175ACA7;
870 isa = PBXBuildFile;
871 settings = {
872 };
873 };
874 F5955F1E02CBAAF801000133 = {
875 fileRef = F5A8606501FA022C0175ACA7;
876 isa = PBXBuildFile;
877 settings = {
878 };
879 };
880 F5955F1F02CBAAF901000133 = {
881 fileRef = F5A8606701FA022C0175ACA7;
882 isa = PBXBuildFile;
883 settings = {
884 };
885 };
886 F5955F2002CBAAF901000133 = {
887 fileRef = F5A8606801FA022C0175ACA7;
888 isa = PBXBuildFile;
889 settings = {
890 };
891 };
892 F5955F2102CBAAFA01000133 = {
893 fileRef = F5A8606401FA022C0175ACA7;
894 isa = PBXBuildFile;
895 settings = {
896 };
897 };
898 F5955F2202CBAAFB01000133 = {
899 fileRef = F5A8606901FA022C0175ACA7;
900 isa = PBXBuildFile;
901 settings = {
902 };
903 };
904 F5955F2302CBAB0601000133 = {
905 fileRef = F5A8607001FA022C0175ACA7;
906 isa = PBXBuildFile;
907 settings = {
908 };
909 };
910 F5955F2402CBAB0701000133 = {
911 fileRef = F5A8607101FA022C0175ACA7;
912 isa = PBXBuildFile;
913 settings = {
914 };
915 };
916 F5955F2502CBAB0701000133 = {
917 fileRef = F5A8607201FA022C0175ACA7;
918 isa = PBXBuildFile;
919 settings = {
920 };
921 };
922 F5955F2602CBAB0701000133 = {
923 fileRef = F5A8607301FA022C0175ACA7;
924 isa = PBXBuildFile;
925 settings = {
926 };
927 };
928 F5955F2702CBAB0801000133 = {
929 fileRef = F5A8607D01FA022C0175ACA7;
930 isa = PBXBuildFile;
931 settings = {
932 };
933 };
934 F5955F2802CBAB0901000133 = {
935 fileRef = F5A8607C01FA022C0175ACA7;
936 isa = PBXBuildFile;
937 settings = {
938 };
939 };
940 F5955F2902CBAB0901000133 = {
941 fileRef = F5A8607A01FA022C0175ACA7;
942 isa = PBXBuildFile;
943 settings = {
944 };
945 };
946 F5955F2A02CBAB0901000133 = {
947 fileRef = F5A8607901FA022C0175ACA7;
948 isa = PBXBuildFile;
949 settings = {
950 };
951 };
952 F5955F2B02CBAB0A01000133 = {
953 fileRef = F5A8607801FA022C0175ACA7;
954 isa = PBXBuildFile;
955 settings = {
956 };
957 };
958 F5955F2C02CBAB0A01000133 = {
959 fileRef = F5A8607701FA022C0175ACA7;
960 isa = PBXBuildFile;
961 settings = {
962 };
963 };
964 F5955F2D02CBAB0A01000133 = {
965 fileRef = F5A8607501FA022C0175ACA7;
966 isa = PBXBuildFile;
967 settings = {
968 };
969 };
970 F5955F2E02CBAB0B01000133 = {
971 fileRef = F5A8607401FA022C0175ACA7;
972 isa = PBXBuildFile;
973 settings = {
974 };
975 };
976 F5955F2F02CBAB0C01000133 = {
977 fileRef = F5A8608E01FA022C0175ACA7;
978 isa = PBXBuildFile;
979 settings = {
980 };
981 };
982 F5955F3002CBAB0C01000133 = {
983 fileRef = F5A8608D01FA022C0175ACA7;
984 isa = PBXBuildFile;
985 settings = {
986 };
987 };
988 F5955F3102CBAB0C01000133 = {
989 fileRef = F5A8608B01FA022C0175ACA7;
990 isa = PBXBuildFile;
991 settings = {
992 };
993 };
994 F5955F3202CBAB0D01000133 = {
995 fileRef = F5A8608901FA022C0175ACA7;
996 isa = PBXBuildFile;
997 settings = {
998 };
999 };
1000 F5955F3302CBAB0D01000133 = {
1001 fileRef = F5A8608801FA022C0175ACA7;
1002 isa = PBXBuildFile;
1003 settings = {
1004 };
1005 };
1006 F5955F3402CBAB0E01000133 = {
1007 fileRef = F5A8608701FA022C0175ACA7;
1008 isa = PBXBuildFile;
1009 settings = {
1010 };
1011 };
1012 F5955F3502CBAB0E01000133 = {
1013 fileRef = F5A8608601FA022C0175ACA7;
1014 isa = PBXBuildFile;
1015 settings = {
1016 };
1017 };
1018 F5955F3602CBAB0F01000133 = {
1019 fileRef = F5A8608501FA022C0175ACA7;
1020 isa = PBXBuildFile;
1021 settings = {
1022 };
1023 };
1024 F5955F3702CBAB0F01000133 = {
1025 fileRef = F5A8608201FA022C0175ACA7;
1026 isa = PBXBuildFile;
1027 settings = {
1028 };
1029 };
1030 F5955F3802CBAB0F01000133 = {
1031 fileRef = F5A8608101FA022C0175ACA7;
1032 isa = PBXBuildFile;
1033 settings = {
1034 };
1035 };
1036 F5955F3902CBAB1001000133 = {
1037 fileRef = F5A8608001FA022C0175ACA7;
1038 isa = PBXBuildFile;
1039 settings = {
1040 };
1041 };
1042 F5955F3A02CBAB1001000133 = {
1043 fileRef = F5A8607E01FA022C0175ACA7;
1044 isa = PBXBuildFile;
1045 settings = {
1046 };
1047 };
1048 F5955F3B02CBAB1101000133 = {
1049 fileRef = F5A8608F01FA022C0175ACA7;
1050 isa = PBXBuildFile;
1051 settings = {
1052 };
1053 };
1054 F5955F3C02CBAB1401000133 = {
1055 fileRef = F5A860A201FA022C0175ACA7;
1056 isa = PBXBuildFile;
1057 settings = {
1058 };
1059 };
1060 F5955F3D02CBAB1401000133 = {
1061 fileRef = F5A860A101FA022C0175ACA7;
1062 isa = PBXBuildFile;
1063 settings = {
1064 };
1065 };
1066 F5955F3E02CBAB1501000133 = {
1067 fileRef = F5A860A001FA022C0175ACA7;
1068 isa = PBXBuildFile;
1069 settings = {
1070 };
1071 };
1072 F5955F3F02CBAB1501000133 = {
1073 fileRef = F5A8609F01FA022C0175ACA7;
1074 isa = PBXBuildFile;
1075 settings = {
1076 };
1077 };
1078 F5955F4002CBAB1601000133 = {
1079 fileRef = F5A8609E01FA022C0175ACA7;
1080 isa = PBXBuildFile;
1081 settings = {
1082 };
1083 };
1084 F5955F4102CBAB1601000133 = {
1085 fileRef = F5A8609D01FA022C0175ACA7;
1086 isa = PBXBuildFile;
1087 settings = {
1088 };
1089 };
1090 F5955F4202CBAB1601000133 = {
1091 fileRef = F5A8609C01FA022C0175ACA7;
1092 isa = PBXBuildFile;
1093 settings = {
1094 };
1095 };
1096 F5955F4302CBAB1701000133 = {
1097 fileRef = F5A8609B01FA022C0175ACA7;
1098 isa = PBXBuildFile;
1099 settings = {
1100 };
1101 };
1102 F5955F4402CBAB1701000133 = {
1103 fileRef = F5A8609A01FA022C0175ACA7;
1104 isa = PBXBuildFile;
1105 settings = {
1106 };
1107 };
1108 F5955F4502CBAB1801000133 = {
1109 fileRef = F5A8609801FA022C0175ACA7;
1110 isa = PBXBuildFile;
1111 settings = {
1112 };
1113 };
1114 F5955F4602CBAB1801000133 = {
1115 fileRef = F5A8609701FA022C0175ACA7;
1116 isa = PBXBuildFile;
1117 settings = {
1118 };
1119 };
1120 F5955F4702CBAB1901000133 = {
1121 fileRef = F5A8609601FA022C0175ACA7;
1122 isa = PBXBuildFile;
1123 settings = {
1124 };
1125 };
1126 F5955F4802CBAB1901000133 = {
1127 fileRef = F5A8609501FA022C0175ACA7;
1128 isa = PBXBuildFile;
1129 settings = {
1130 };
1131 };
1132 F5955F4902CBAB1A01000133 = {
1133 fileRef = F5A8609401FA022C0175ACA7;
1134 isa = PBXBuildFile;
1135 settings = {
1136 };
1137 };
1138 F5955F4A02CBAB1A01000133 = {
1139 fileRef = F5A8609301FA022C0175ACA7;
1140 isa = PBXBuildFile;
1141 settings = {
1142 };
1143 };
1144 F5955F4B02CBAB1A01000133 = {
1145 fileRef = F5A8609201FA022C0175ACA7;
1146 isa = PBXBuildFile;
1147 settings = {
1148 };
1149 };
1150 F5955F4C02CBAB1B01000133 = {
1151 fileRef = F5A8609101FA022C0175ACA7;
1152 isa = PBXBuildFile;
1153 settings = {
1154 };
1155 };
1156 F5955F4D02CBAB1B01000133 = {
1157 fileRef = F5A8609001FA022C0175ACA7;
1158 isa = PBXBuildFile;
1159 settings = {
1160 };
1161 };
1162 F5955F4E02CBAB1E01000133 = {
1163 fileRef = F5A8610401FA022C0175ACA7;
1164 isa = PBXBuildFile;
1165 settings = {
1166 };
1167 };
1168 F5955F4F02CBAB1E01000133 = {
1169 fileRef = F5A8610501FA022C0175ACA7;
1170 isa = PBXBuildFile;
1171 settings = {
1172 };
1173 };
1174 F5955F5002CBAB1F01000133 = {
1175 fileRef = F5A8610601FA022C0175ACA7;
1176 isa = PBXBuildFile;
1177 settings = {
1178 };
1179 };
1180 F5955F5102CBAB1F01000133 = {
1181 fileRef = F5A8610701FA022C0175ACA7;
1182 isa = PBXBuildFile;
1183 settings = {
1184 };
1185 };
1186 F5955F5202CBAB2001000133 = {
1187 fileRef = F5A8610E01FA022C0175ACA7;
1188 isa = PBXBuildFile;
1189 settings = {
1190 };
1191 };
1192 F5955F5302CBAB2101000133 = {
1193 fileRef = F5A8610D01FA022C0175ACA7;
1194 isa = PBXBuildFile;
1195 settings = {
1196 };
1197 };
1198 F5955F5402CBAB2101000133 = {
1199 fileRef = F5A8610C01FA022C0175ACA7;
1200 isa = PBXBuildFile;
1201 settings = {
1202 };
1203 };
1204 F5955F5502CBAB2101000133 = {
1205 fileRef = F5A8610B01FA022C0175ACA7;
1206 isa = PBXBuildFile;
1207 settings = {
1208 };
1209 };
1210 F5955F5602CBAB2201000133 = {
1211 fileRef = F5A8610A01FA022C0175ACA7;
1212 isa = PBXBuildFile;
1213 settings = {
1214 };
1215 };
1216 F5955F5702CBAB2201000133 = {
1217 fileRef = F5A8610901FA022C0175ACA7;
1218 isa = PBXBuildFile;
1219 settings = {
1220 };
1221 };
1222 F5955F5802CBAB2201000133 = {
1223 fileRef = F5A8610801FA022C0175ACA7;
1224 isa = PBXBuildFile;
1225 settings = {
1226 };
1227 };
1228 F5955F5902CBAB2301000133 = {
1229 fileRef = F5A8610F01FA022C0175ACA7;
1230 isa = PBXBuildFile;
1231 settings = {
1232 };
1233 };
1234 F5955F5A02CBAB2501000133 = {
1235 fileRef = F5A8611701FA022C0175ACA7;
1236 isa = PBXBuildFile;
1237 settings = {
1238 };
1239 };
1240 F5955F5B02CBAB2601000133 = {
1241 fileRef = F5A8611601FA022C0175ACA7;
1242 isa = PBXBuildFile;
1243 settings = {
1244 };
1245 };
1246 F5955F5C02CBAB2601000133 = {
1247 fileRef = F5A8611501FA022C0175ACA7;
1248 isa = PBXBuildFile;
1249 settings = {
1250 };
1251 };
1252 F5955F5E02CBAB2701000133 = {
1253 fileRef = F5A8611301FA022C0175ACA7;
1254 isa = PBXBuildFile;
1255 settings = {
1256 };
1257 };
1258 F5955F5F02CBAB2801000133 = {
1259 fileRef = F5A8611201FA022C0175ACA7;
1260 isa = PBXBuildFile;
1261 settings = {
1262 };
1263 };
1264 F5955F6002CBAB2801000133 = {
1265 fileRef = F5A8611101FA022C0175ACA7;
1266 isa = PBXBuildFile;
1267 settings = {
1268 };
1269 };
1270 F5955F6102CBAB2801000133 = {
1271 fileRef = F5A8611001FA022C0175ACA7;
1272 isa = PBXBuildFile;
1273 settings = {
1274 };
1275 };
1276 F5955F6202CBAB2F01000133 = {
1277 fileRef = F5A8615B01FA022C0175ACA7;
1278 isa = PBXBuildFile;
1279 settings = {
1280 };
1281 };
1282 F5955F6302CBAB2F01000133 = {
1283 fileRef = F5A8615901FA022C0175ACA7;
1284 isa = PBXBuildFile;
1285 settings = {
1286 };
1287 };
1288 F5955F6402CBAB3001000133 = {
1289 fileRef = F5A8615A01FA022C0175ACA7;
1290 isa = PBXBuildFile;
1291 settings = {
1292 };
1293 };
1294 F5955F6502CBAB3001000133 = {
1295 fileRef = F5A8615801FA022C0175ACA7;
1296 isa = PBXBuildFile;
1297 settings = {
1298 };
1299 };
1300 F5955F6602CBAB3101000133 = {
1301 fileRef = F5A8615701FA022C0175ACA7;
1302 isa = PBXBuildFile;
1303 settings = {
1304 };
1305 };
1306 F5955F6702CBAB3101000133 = {
1307 fileRef = F5A8615601FA022C0175ACA7;
1308 isa = PBXBuildFile;
1309 settings = {
1310 };
1311 };
1312 F5955F6802CBAB3201000133 = {
1313 fileRef = F5A8615501FA022C0175ACA7;
1314 isa = PBXBuildFile;
1315 settings = {
1316 };
1317 };
1318 F5955F6902CBAB3201000133 = {
1319 fileRef = F5A8615401FA022C0175ACA7;
1320 isa = PBXBuildFile;
1321 settings = {
1322 };
1323 };
1324 F5955F6A02CBAB3301000133 = {
1325 fileRef = F5A8615301FA022C0175ACA7;
1326 isa = PBXBuildFile;
1327 settings = {
1328 };
1329 };
1330 F5955F6B02CBAB3301000133 = {
1331 fileRef = F5A8615201FA022C0175ACA7;
1332 isa = PBXBuildFile;
1333 settings = {
1334 };
1335 };
1336 F5955F6C02CBAB3301000133 = {
1337 fileRef = F5A8615101FA022C0175ACA7;
1338 isa = PBXBuildFile;
1339 settings = {
1340 };
1341 };
1342 F5955F6D02CBAB3301000133 = {
1343 fileRef = F5A8614E01FA022C0175ACA7;
1344 isa = PBXBuildFile;
1345 settings = {
1346 };
1347 };
1348 F5955F6E02CBAB3401000133 = {
1349 fileRef = F5A8614D01FA022C0175ACA7;
1350 isa = PBXBuildFile;
1351 settings = {
1352 };
1353 };
1354 F5955F6F02CBAB3401000133 = {
1355 fileRef = F5A8614C01FA022C0175ACA7;
1356 isa = PBXBuildFile;
1357 settings = {
1358 };
1359 };
1360 F5955F7002CBAB3501000133 = {
1361 fileRef = F5A8614B01FA022C0175ACA7;
1362 isa = PBXBuildFile;
1363 settings = {
1364 };
1365 };
1366 F5955F7102CBAB3501000133 = {
1367 fileRef = F5A8614A01FA022C0175ACA7;
1368 isa = PBXBuildFile;
1369 settings = {
1370 };
1371 };
1372 F5955F7202CBAB3501000133 = {
1373 fileRef = F5A8614801FA022C0175ACA7;
1374 isa = PBXBuildFile;
1375 settings = {
1376 };
1377 };
1378 F5955F7302CBAB3601000133 = {
1379 fileRef = F5A8614701FA022C0175ACA7;
1380 isa = PBXBuildFile;
1381 settings = {
1382 };
1383 };
1384 F5955F7402CBAB3601000133 = {
1385 fileRef = F5A8614601FA022C0175ACA7;
1386 isa = PBXBuildFile;
1387 settings = {
1388 };
1389 };
1390 F5955F7502CBAB3701000133 = {
1391 fileRef = F5A8614501FA022C0175ACA7;
1392 isa = PBXBuildFile;
1393 settings = {
1394 };
1395 };
1396 F5955F7602CBAB3701000133 = {
1397 fileRef = F5A8614401FA022C0175ACA7;
1398 isa = PBXBuildFile;
1399 settings = {
1400 };
1401 };
1402 F5955F7702CBAB3701000133 = {
1403 fileRef = F5A8614301FA022C0175ACA7;
1404 isa = PBXBuildFile;
1405 settings = {
1406 };
1407 };
1408 F5955F7802CBAB3801000133 = {
1409 fileRef = F5A8615D01FA022C0175ACA7;
1410 isa = PBXBuildFile;
1411 settings = {
1412 };
1413 };
1414 F5955F7902CBAB3B01000133 = {
1415 fileRef = F5A8618F01FA022C0175ACA7;
1416 isa = PBXBuildFile;
1417 settings = {
1418 };
1419 };
1420 F5955F7A02CBAB3B01000133 = {
1421 fileRef = F5A8618E01FA022C0175ACA7;
1422 isa = PBXBuildFile;
1423 settings = {
1424 };
1425 };
1426 F5955F7B02CBAB3B01000133 = {
1427 fileRef = F5A8618D01FA022C0175ACA7;
1428 isa = PBXBuildFile;
1429 settings = {
1430 };
1431 };
1432 F5955F7C02CBAB3C01000133 = {
1433 fileRef = F5A8617901FA022C0175ACA7;
1434 isa = PBXBuildFile;
1435 settings = {
1436 };
1437 };
1438 F5955F7D02CBAB3C01000133 = {
1439 fileRef = F5A8617701FA022C0175ACA7;
1440 isa = PBXBuildFile;
1441 settings = {
1442 };
1443 };
1444 F5955F7E02CBAB3D01000133 = {
1445 fileRef = F5A8617101FA022C0175ACA7;
1446 isa = PBXBuildFile;
1447 settings = {
1448 };
1449 };
1450 F5955F7F02CBAB3D01000133 = {
1451 fileRef = F5A8617001FA022C0175ACA7;
1452 isa = PBXBuildFile;
1453 settings = {
1454 };
1455 };
1456 F5955F8002CBAB3D01000133 = {
1457 fileRef = F5A8616F01FA022C0175ACA7;
1458 isa = PBXBuildFile;
1459 settings = {
1460 };
1461 };
1462 F5955F8102CBAB3E01000133 = {
1463 fileRef = F5A8616E01FA022C0175ACA7;
1464 isa = PBXBuildFile;
1465 settings = {
1466 };
1467 };
1468 F5955F8202CBAB3E01000133 = {
1469 fileRef = F5A8616D01FA022C0175ACA7;
1470 isa = PBXBuildFile;
1471 settings = {
1472 };
1473 };
1474 F5955F8302CBAB3E01000133 = {
1475 fileRef = F5A8616C01FA022C0175ACA7;
1476 isa = PBXBuildFile;
1477 settings = {
1478 };
1479 };
1480 F5955F8402CBAB4001000133 = {
1481 fileRef = F5A8615E01FA022C0175ACA7;
1482 isa = PBXBuildFile;
1483 settings = {
1484 };
1485 };
1486 F5955F8502CBAB4101000133 = {
1487 fileRef = F5A8616001FA022C0175ACA7;
1488 isa = PBXBuildFile;
1489 settings = {
1490 };
1491 };
1492 F5955F8602CBAB4101000133 = {
1493 fileRef = F5A8616101FA022C0175ACA7;
1494 isa = PBXBuildFile;
1495 settings = {
1496 };
1497 };
1498 F5955F8702CBAB4201000133 = {
1499 fileRef = F5A8616201FA022C0175ACA7;
1500 isa = PBXBuildFile;
1501 settings = {
1502 };
1503 };
1504 F5955F8802CBAB4201000133 = {
1505 fileRef = F5A8616301FA022C0175ACA7;
1506 isa = PBXBuildFile;
1507 settings = {
1508 };
1509 };
1510 F5955F8902CBAB4201000133 = {
1511 fileRef = F5A8616401FA022C0175ACA7;
1512 isa = PBXBuildFile;
1513 settings = {
1514 };
1515 };
1516 F5955F8A02CBAB4301000133 = {
1517 fileRef = F5A8616501FA022C0175ACA7;
1518 isa = PBXBuildFile;
1519 settings = {
1520 };
1521 };
1522 F5955F8B02CBAB4301000133 = {
1523 fileRef = F5A8616601FA022C0175ACA7;
1524 isa = PBXBuildFile;
1525 settings = {
1526 };
1527 };
1528 F5955F8C02CBAB4301000133 = {
1529 fileRef = F5A8616701FA022C0175ACA7;
1530 isa = PBXBuildFile;
1531 settings = {
1532 };
1533 };
1534 F5955F8D02CBAB4401000133 = {
1535 fileRef = F5A8616801FA022C0175ACA7;
1536 isa = PBXBuildFile;
1537 settings = {
1538 };
1539 };
1540 F5955F8E02CBAB4401000133 = {
1541 fileRef = F5A8616901FA022C0175ACA7;
1542 isa = PBXBuildFile;
1543 settings = {
1544 };
1545 };
1546 F5955F8F02CBAB4401000133 = {
1547 fileRef = F5A8616B01FA022C0175ACA7;
1548 isa = PBXBuildFile;
1549 settings = {
1550 };
1551 };
1552 F5955F9002CBAB4601000133 = {
1553 fileRef = F5A8619A01FA022C0175ACA7;
1554 isa = PBXBuildFile;
1555 settings = {
1556 };
1557 };
1558 F5955F9102CBAB4601000133 = {
1559 fileRef = F5A8619B01FA022C0175ACA7;
1560 isa = PBXBuildFile;
1561 settings = {
1562 };
1563 };
1564 F5955F9202CBAB4601000133 = {
1565 fileRef = F5A8619C01FA022C0175ACA7;
1566 isa = PBXBuildFile;
1567 settings = {
1568 };
1569 };
1570 F5955F9302CBAB4A01000133 = {
1571 fileRef = F5A8619F01FA022C0175ACA7;
1572 isa = PBXBuildFile;
1573 settings = {
1574 };
1575 };
1576 F5955F9402CBAB4A01000133 = {
1577 fileRef = F5A861A001FA022C0175ACA7;
1578 isa = PBXBuildFile;
1579 settings = {
1580 };
1581 };
1582 F5955F9502CBAB4B01000133 = {
1583 fileRef = F5A861A101FA022C0175ACA7;
1584 isa = PBXBuildFile;
1585 settings = {
1586 };
1587 };
1588 F5955F9602CBAB4B01000133 = {
1589 fileRef = F5A861A201FA022C0175ACA7;
1590 isa = PBXBuildFile;
1591 settings = {
1592 };
1593 };
1594 F5955F9702CBAB4C01000133 = {
1595 fileRef = F5A861A401FA022C0175ACA7;
1596 isa = PBXBuildFile;
1597 settings = {
1598 };
1599 };
1600 F5955F9802CBAB4C01000133 = {
1601 fileRef = F5A861A501FA022C0175ACA7;
1602 isa = PBXBuildFile;
1603 settings = {
1604 };
1605 };
1606 F5955F9902CBAB4D01000133 = {
1607 fileRef = F5A861A701FA022C0175ACA7;
1608 isa = PBXBuildFile;
1609 settings = {
1610 };
1611 };
1612 F5955F9A02CBAB4D01000133 = {
1613 fileRef = F5A861A801FA022C0175ACA7;
1614 isa = PBXBuildFile;
1615 settings = {
1616 };
1617 };
1618 F5955F9B02CBAB4E01000133 = {
1619 fileRef = F5A861A901FA022C0175ACA7;
1620 isa = PBXBuildFile;
1621 settings = {
1622 };
1623 };
1624 F5955F9C02CBAB4E01000133 = {
1625 fileRef = F5A861AA01FA022C0175ACA7;
1626 isa = PBXBuildFile;
1627 settings = {
1628 };
1629 };
1630 F5955F9D02CBAB4E01000133 = {
1631 fileRef = F5A861AB01FA022C0175ACA7;
1632 isa = PBXBuildFile;
1633 settings = {
1634 };
1635 };
1636 F5955F9E02CBAB4F01000133 = {
1637 fileRef = F5A861A601FA022C0175ACA7;
1638 isa = PBXBuildFile;
1639 settings = {
1640 };
1641 };
1642 F5955F9F02CBAB5001000133 = {
1643 fileRef = F5A861AD01FA022C0175ACA7;
1644 isa = PBXBuildFile;
1645 settings = {
1646 };
1647 };
1648 F5955FA002CBAB5001000133 = {
1649 fileRef = F5A861AE01FA022C0175ACA7;
1650 isa = PBXBuildFile;
1651 settings = {
1652 };
1653 };
1654 F5955FA102CBAB5101000133 = {
1655 fileRef = F5A861AF01FA022C0175ACA7;
1656 isa = PBXBuildFile;
1657 settings = {
1658 };
1659 };
1660 F5955FA202CBAB5101000133 = {
1661 fileRef = F5A861B001FA022C0175ACA7;
1662 isa = PBXBuildFile;
1663 settings = {
1664 };
1665 };
1666 F5955FA302CBAB5301000133 = {
1667 fileRef = F5A861D101FA022C0175ACA7;
1668 isa = PBXBuildFile;
1669 settings = {
1670 };
1671 };
1672 F5955FA402CBAB5401000133 = {
1673 fileRef = F5A861D001FA022C0175ACA7;
1674 isa = PBXBuildFile;
1675 settings = {
1676 };
1677 };
1678 F5955FA502CBAB5401000133 = {
1679 fileRef = F5A861CF01FA022C0175ACA7;
1680 isa = PBXBuildFile;
1681 settings = {
1682 };
1683 };
1684 F5955FA602CBAB5701000133 = {
1685 fileRef = F5A861E501FA022C0175ACA7;
1686 isa = PBXBuildFile;
1687 settings = {
1688 };
1689 };
1690 F5955FA702CBAB5801000133 = {
1691 fileRef = F5A861E101FA022C0175ACA7;
1692 isa = PBXBuildFile;
1693 settings = {
1694 };
1695 };
1696 F5955FA802CBAB5801000133 = {
1697 fileRef = F5A861DF01FA022C0175ACA7;
1698 isa = PBXBuildFile;
1699 settings = {
1700 };
1701 };
1702 F5955FA902CBAB5901000133 = {
1703 fileRef = F5A861DD01FA022C0175ACA7;
1704 isa = PBXBuildFile;
1705 settings = {
1706 };
1707 };
1708 F5955FAA02CBAB5901000133 = {
1709 fileRef = F5A861DB01FA022C0175ACA7;
1710 isa = PBXBuildFile;
1711 settings = {
1712 };
1713 };
1714 F5955FAB02CBAB5901000133 = {
1715 fileRef = F5A861E701FA022C0175ACA7;
1716 isa = PBXBuildFile;
1717 settings = {
1718 };
1719 };
1720 F5955FAC02CBAB5A01000133 = {
1721 fileRef = F5A861E801FA022C0175ACA7;
1722 isa = PBXBuildFile;
1723 settings = {
1724 };
1725 };
1726 F5955FAD02CBAB5A01000133 = {
1727 fileRef = F5A861E901FA022C0175ACA7;
1728 isa = PBXBuildFile;
1729 settings = {
1730 };
1731 };
1732 F5955FAE02CBAB5A01000133 = {
1733 fileRef = F5A861EA01FA022C0175ACA7;
1734 isa = PBXBuildFile;
1735 settings = {
1736 };
1737 };
1738 F5955FAF02CBAB5B01000133 = {
1739 fileRef = F5A861EB01FA022C0175ACA7;
1740 isa = PBXBuildFile;
1741 settings = {
1742 };
1743 };
1744 F5955FB002CBAB5B01000133 = {
1745 fileRef = F5A861EC01FA022C0175ACA7;
1746 isa = PBXBuildFile;
1747 settings = {
1748 };
1749 };
1750 F5955FB102CBAB5C01000133 = {
1751 fileRef = F5A861EE01FA022C0175ACA7;
1752 isa = PBXBuildFile;
1753 settings = {
1754 };
1755 };
1756 F5955FB202CBAB5C01000133 = {
1757 fileRef = F5A861EF01FA022C0175ACA7;
1758 isa = PBXBuildFile;
1759 settings = {
1760 };
1761 };
1762 F5955FB302CBAB5D01000133 = {
1763 fileRef = F5A861ED01FA022C0175ACA7;
1764 isa = PBXBuildFile;
1765 settings = {
1766 };
1767 };
1768 F5955FB402CBAB5D01000133 = {
1769 fileRef = F5A861F001FA022C0175ACA7;
1770 isa = PBXBuildFile;
1771 settings = {
1772 };
1773 };
1774 F5955FB502CBAB5E01000133 = {
1775 fileRef = F5A861F101FA022C0175ACA7;
1776 isa = PBXBuildFile;
1777 settings = {
1778 };
1779 };
1780 F5955FB602CBAB5E01000133 = {
1781 fileRef = F5A861F201FA022C0175ACA7;
1782 isa = PBXBuildFile;
1783 settings = {
1784 };
1785 };
1786 F5955FB702CBAB5E01000133 = {
1787 fileRef = F5A861F301FA022C0175ACA7;
1788 isa = PBXBuildFile;
1789 settings = {
1790 };
1791 };
1792 F5955FB802CBAB5F01000133 = {
1793 fileRef = F5A861F401FA022C0175ACA7;
1794 isa = PBXBuildFile;
1795 settings = {
1796 };
1797 };
1798 F5955FB902CBAB5F01000133 = {
1799 fileRef = F5A861F501FA022C0175ACA7;
1800 isa = PBXBuildFile;
1801 settings = {
1802 };
1803 };
1804 F5955FBA02CBAB5F01000133 = {
1805 fileRef = F5A861F701FA022C0175ACA7;
1806 isa = PBXBuildFile;
1807 settings = {
1808 };
1809 };
1810 F5955FBB02CBAB6001000133 = {
1811 fileRef = F5A861F901FA022C0175ACA7;
1812 isa = PBXBuildFile;
1813 settings = {
1814 };
1815 };
1816 F5955FBC02CBAB6101000133 = {
1817 fileRef = F5A861FB01FA022C0175ACA7;
1818 isa = PBXBuildFile;
1819 settings = {
1820 };
1821 };
1822 F5955FBD02CBAB6101000133 = {
1823 fileRef = F5A861FC01FA022C0175ACA7;
1824 isa = PBXBuildFile;
1825 settings = {
1826 };
1827 };
1828 F5955FBE02CBAB6101000133 = {
1829 fileRef = F5A861FD01FA022C0175ACA7;
1830 isa = PBXBuildFile;
1831 settings = {
1832 };
1833 };
1834 F5955FBF02CBAB6201000133 = {
1835 fileRef = F5A861F801FA022C0175ACA7;
1836 isa = PBXBuildFile;
1837 settings = {
1838 };
1839 };
1840 F5955FC002CBAB6301000133 = {
1841 fileRef = F5A8620201FA022C0175ACA7;
1842 isa = PBXBuildFile;
1843 settings = {
1844 };
1845 };
1846 F5955FC102CBAB6401000133 = {
1847 fileRef = F5A8620001FA022C0175ACA7;
1848 isa = PBXBuildFile;
1849 settings = {
1850 };
1851 };
1852 F5955FC202CBAB6401000133 = {
1853 fileRef = F5A861FF01FA022C0175ACA7;
1854 isa = PBXBuildFile;
1855 settings = {
1856 };
1857 };
1858 F5955FC302CBAB6401000133 = {
1859 fileRef = F5A861FE01FA022C0175ACA7;
1860 isa = PBXBuildFile;
1861 settings = {
1862 };
1863 };
1864 F5955FC402CBAB6501000133 = {
1865 fileRef = F5A8620101FA022C0175ACA7;
1866 isa = PBXBuildFile;
1867 settings = {
1868 };
1869 };
1870 F5955FC502CBAB6601000133 = {
1871 fileRef = F5A8620301FA022C0175ACA7;
1872 isa = PBXBuildFile;
1873 settings = {
1874 };
1875 };
1876 F5955FC602CBAB6801000133 = {
1877 fileRef = F5A8620A01FA022C0175ACA7;
1878 isa = PBXBuildFile;
1879 settings = {
1880 };
1881 };
1882 F5955FC702CBAB6801000133 = {
1883 fileRef = F5A8620901FA022C0175ACA7;
1884 isa = PBXBuildFile;
1885 settings = {
1886 };
1887 };
1888 F5955FC802CBAB6901000133 = {
1889 fileRef = F5A8620801FA022C0175ACA7;
1890 isa = PBXBuildFile;
1891 settings = {
1892 };
1893 };
1894 F5955FC902CBAB6901000133 = {
1895 fileRef = F5A8620701FA022C0175ACA7;
1896 isa = PBXBuildFile;
1897 settings = {
1898 };
1899 };
1900 F5955FCA02CBAB6A01000133 = {
1901 fileRef = F5A8620601FA022C0175ACA7;
1902 isa = PBXBuildFile;
1903 settings = {
1904 };
1905 };
1906 F5955FCB02CBAB6A01000133 = {
1907 fileRef = F5A8620401FA022C0175ACA7;
1908 isa = PBXBuildFile;
1909 settings = {
1910 };
1911 };
1912 F5955FCC02CBAB6C01000133 = {
1913 fileRef = F5A863DD01FA022D0175ACA7;
1914 isa = PBXBuildFile;
1915 settings = {
1916 };
1917 };
1918 F5955FCD02CBAB6C01000133 = {
1919 fileRef = F5A863DC01FA022D0175ACA7;
1920 isa = PBXBuildFile;
1921 settings = {
1922 };
1923 };
1924 F5955FCE02CBAB6C01000133 = {
1925 fileRef = F5A863DB01FA022D0175ACA7;
1926 isa = PBXBuildFile;
1927 settings = {
1928 };
1929 };
1930 F5955FCF02CBAB6D01000133 = {
1931 fileRef = F5A863DA01FA022D0175ACA7;
1932 isa = PBXBuildFile;
1933 settings = {
1934 };
1935 };
1936 F5955FD002CBAB6D01000133 = {
1937 fileRef = F5A863D901FA022D0175ACA7;
1938 isa = PBXBuildFile;
1939 settings = {
1940 };
1941 };
1942 F5955FD102CBAB6D01000133 = {
1943 fileRef = F5A863D801FA022D0175ACA7;
1944 isa = PBXBuildFile;
1945 settings = {
1946 };
1947 };
1948 F5955FD202CBAB6E01000133 = {
1949 fileRef = F5A863D701FA022D0175ACA7;
1950 isa = PBXBuildFile;
1951 settings = {
1952 };
1953 };
1954 F5955FD302CBAB6E01000133 = {
1955 fileRef = F5A863D601FA022D0175ACA7;
1956 isa = PBXBuildFile;
1957 settings = {
1958 };
1959 };
1960 F5955FD402CBAB6F01000133 = {
1961 fileRef = F5A863D501FA022D0175ACA7;
1962 isa = PBXBuildFile;
1963 settings = {
1964 };
1965 };
1966 F5955FD502CBAB6F01000133 = {
1967 fileRef = F5A863D401FA022D0175ACA7;
1968 isa = PBXBuildFile;
1969 settings = {
1970 };
1971 };
1972 F5955FD602CBAB7001000133 = {
1973 fileRef = F5A863D301FA022D0175ACA7;
1974 isa = PBXBuildFile;
1975 settings = {
1976 };
1977 };
1978 F5955FD702CBAB7001000133 = {
1979 fileRef = F5A863D201FA022D0175ACA7;
1980 isa = PBXBuildFile;
1981 settings = {
1982 };
1983 };
1984 F5955FD802CBAB7001000133 = {
1985 fileRef = F5A863D101FA022D0175ACA7;
1986 isa = PBXBuildFile;
1987 settings = {
1988 };
1989 };
1990 F5955FD902CBAB7101000133 = {
1991 fileRef = F5A863C501FA022D0175ACA7;
1992 isa = PBXBuildFile;
1993 settings = {
1994 };
1995 };
1996 F5955FDA02CBAB7101000133 = {
1997 fileRef = F5A863C401FA022D0175ACA7;
1998 isa = PBXBuildFile;
1999 settings = {
2000 };
2001 };
2002 F5955FDB02CBAB7101000133 = {
2003 fileRef = F5A863BF01FA022D0175ACA7;
2004 isa = PBXBuildFile;
2005 settings = {
2006 };
2007 };
2008 F5955FDC02CBAB7701000133 = {
2009 fileRef = F5A861D901FA022C0175ACA7;
2010 isa = PBXBuildFile;
2011 settings = {
2012 };
2013 };
2014 F5955FDD02CBAB7701000133 = {
2015 fileRef = F5A861D701FA022C0175ACA7;
2016 isa = PBXBuildFile;
2017 settings = {
2018 };
2019 };
2020 F5955FDE02CBAB7801000133 = {
2021 fileRef = F5A861D501FA022C0175ACA7;
2022 isa = PBXBuildFile;
2023 settings = {
2024 };
2025 };
2026 F5955FDF02CBAB7801000133 = {
2027 fileRef = F5A861D301FA022C0175ACA7;
2028 isa = PBXBuildFile;
2029 settings = {
2030 };
2031 };
2032 F5955FE002CBAB7B01000133 = {
2033 fileRef = F5A861CE01FA022C0175ACA7;
2034 isa = PBXBuildFile;
2035 settings = {
2036 };
2037 };
2038 F5955FE102CBAB7C01000133 = {
2039 fileRef = F5A861CD01FA022C0175ACA7;
2040 isa = PBXBuildFile;
2041 settings = {
2042 };
2043 };
2044 F5955FE202CBAB7C01000133 = {
2045 fileRef = F5A861CC01FA022C0175ACA7;
2046 isa = PBXBuildFile;
2047 settings = {
2048 };
2049 };
2050 F5955FE302CBAB7C01000133 = {
2051 fileRef = F5A861C801FA022C0175ACA7;
2052 isa = PBXBuildFile;
2053 settings = {
2054 };
2055 };
2056 F5955FE402CBAB7D01000133 = {
2057 fileRef = F5A861C701FA022C0175ACA7;
2058 isa = PBXBuildFile;
2059 settings = {
2060 };
2061 };
2062 F5955FE502CBAB7D01000133 = {
2063 fileRef = F5A861C601FA022C0175ACA7;
2064 isa = PBXBuildFile;
2065 settings = {
2066 };
2067 };
2068 F5955FE602CBAB7D01000133 = {
2069 fileRef = F5A861C501FA022C0175ACA7;
2070 isa = PBXBuildFile;
2071 settings = {
2072 };
2073 };
2074 F5955FE702CBAB7E01000133 = {
2075 fileRef = F5A861C301FA022C0175ACA7;
2076 isa = PBXBuildFile;
2077 settings = {
2078 };
2079 };
2080 F5955FE802CBAB7E01000133 = {
2081 fileRef = F5A861C101FA022C0175ACA7;
2082 isa = PBXBuildFile;
2083 settings = {
2084 };
2085 };
2086 F5955FE902CBAB7E01000133 = {
2087 fileRef = F5A861C001FA022C0175ACA7;
2088 isa = PBXBuildFile;
2089 settings = {
2090 };
2091 };
2092 F5955FEA02CBAB7F01000133 = {
2093 fileRef = F5A861BF01FA022C0175ACA7;
2094 isa = PBXBuildFile;
2095 settings = {
2096 };
2097 };
2098 F5955FEB02CBAB7F01000133 = {
2099 fileRef = F5A861BE01FA022C0175ACA7;
2100 isa = PBXBuildFile;
2101 settings = {
2102 };
2103 };
2104 F5955FEC02CBAB7F01000133 = {
2105 fileRef = F5A861BD01FA022C0175ACA7;
2106 isa = PBXBuildFile;
2107 settings = {
2108 };
2109 };
2110 F5955FED02CBAB8001000133 = {
2111 fileRef = F5A861BC01FA022C0175ACA7;
2112 isa = PBXBuildFile;
2113 settings = {
2114 };
2115 };
2116 F5955FEE02CBAB8101000133 = {
2117 fileRef = F5A861BB01FA022C0175ACA7;
2118 isa = PBXBuildFile;
2119 settings = {
2120 };
2121 };
2122 F5955FEF02CBAB8101000133 = {
2123 fileRef = F5A861B901FA022C0175ACA7;
2124 isa = PBXBuildFile;
2125 settings = {
2126 };
2127 };
2128 F5955FF002CBAB8101000133 = {
2129 fileRef = F5A861B801FA022C0175ACA7;
2130 isa = PBXBuildFile;
2131 settings = {
2132 };
2133 };
2134 F5955FF102CBAB8201000133 = {
2135 fileRef = F5A861B701FA022C0175ACA7;
2136 isa = PBXBuildFile;
2137 settings = {
2138 };
2139 };
2140 F5955FF202CBAB8201000133 = {
2141 fileRef = F5A861B601FA022C0175ACA7;
2142 isa = PBXBuildFile;
2143 settings = {
2144 };
2145 };
2146 F5955FF302CBAB8201000133 = {
2147 fileRef = F5A861B501FA022C0175ACA7;
2148 isa = PBXBuildFile;
2149 settings = {
2150 };
2151 };
2152 F5955FF402CBAB8301000133 = {
2153 fileRef = F5A861B401FA022C0175ACA7;
2154 isa = PBXBuildFile;
2155 settings = {
2156 };
2157 };
2158 F5955FF502CBAB8501000133 = {
2159 fileRef = F5A861B301FA022C0175ACA7;
2160 isa = PBXBuildFile;
2161 settings = {
2162 };
2163 };
2164 F5955FF602CBAB8501000133 = {
2165 fileRef = F5A861B201FA022C0175ACA7;
2166 isa = PBXBuildFile;
2167 settings = {
2168 };
2169 };
2170 F5955FF702CBAB8601000133 = {
2171 fileRef = F5A861B101FA022C0175ACA7;
2172 isa = PBXBuildFile;
2173 settings = {
2174 };
2175 };
2176 F5955FF802CBAB8901000133 = {
2177 fileRef = F5A8644101FA022D0175ACA7;
2178 isa = PBXBuildFile;
2179 settings = {
2180 };
2181 };
2182 F5955FF902CBAB8901000133 = {
2183 fileRef = F5A8643F01FA022D0175ACA7;
2184 isa = PBXBuildFile;
2185 settings = {
2186 };
2187 };
2188 F5955FFA02CBAB8901000133 = {
2189 fileRef = F5A8643E01FA022D0175ACA7;
2190 isa = PBXBuildFile;
2191 settings = {
2192 };
2193 };
2194 F5955FFB02CBAB8A01000133 = {
2195 fileRef = F5A8643D01FA022D0175ACA7;
2196 isa = PBXBuildFile;
2197 settings = {
2198 };
2199 };
2200 F5955FFC02CBAB8A01000133 = {
2201 fileRef = F5A8643B01FA022D0175ACA7;
2202 isa = PBXBuildFile;
2203 settings = {
2204 };
2205 };
2206 F5955FFD02CBAB8A01000133 = {
2207 fileRef = F5A8643A01FA022D0175ACA7;
2208 isa = PBXBuildFile;
2209 settings = {
2210 };
2211 };
2212 F5955FFE02CBAB8B01000133 = {
2213 fileRef = F5A8643801FA022D0175ACA7;
2214 isa = PBXBuildFile;
2215 settings = {
2216 };
2217 };
2218 F5955FFF02CBAB8B01000133 = {
2219 fileRef = F5A8643701FA022D0175ACA7;
2220 isa = PBXBuildFile;
2221 settings = {
2222 };
2223 };
2224 F595600002CBAB8C01000133 = {
2225 fileRef = F5A8643601FA022D0175ACA7;
2226 isa = PBXBuildFile;
2227 settings = {
2228 };
2229 };
2230 F595600102CBAB8C01000133 = {
2231 fileRef = F5A8643501FA022D0175ACA7;
2232 isa = PBXBuildFile;
2233 settings = {
2234 };
2235 };
2236 F595600202CBAB8C01000133 = {
2237 fileRef = F5A8643401FA022D0175ACA7;
2238 isa = PBXBuildFile;
2239 settings = {
2240 };
2241 };
2242 F595600302CBAB8D01000133 = {
2243 fileRef = F5A8643301FA022D0175ACA7;
2244 isa = PBXBuildFile;
2245 settings = {
2246 };
2247 };
2248 F595600402CBAB8D01000133 = {
2249 fileRef = F5A8643101FA022D0175ACA7;
2250 isa = PBXBuildFile;
2251 settings = {
2252 };
2253 };
2254 F595600502CBAB8D01000133 = {
2255 fileRef = F5A8643001FA022D0175ACA7;
2256 isa = PBXBuildFile;
2257 settings = {
2258 };
2259 };
2260 F595600602CBAB8E01000133 = {
2261 fileRef = F5A8642F01FA022D0175ACA7;
2262 isa = PBXBuildFile;
2263 settings = {
2264 };
2265 };
2266 F595600702CBAB8E01000133 = {
2267 fileRef = F5A8642E01FA022D0175ACA7;
2268 isa = PBXBuildFile;
2269 settings = {
2270 };
2271 };
2272 F595600802CBAB8F01000133 = {
2273 fileRef = F5A8642D01FA022D0175ACA7;
2274 isa = PBXBuildFile;
2275 settings = {
2276 };
2277 };
2278 F595600902CBAB8F01000133 = {
2279 fileRef = F5A8642C01FA022D0175ACA7;
2280 isa = PBXBuildFile;
2281 settings = {
2282 };
2283 };
2284 F595600A02CBAB8F01000133 = {
2285 fileRef = F5A8642A01FA022D0175ACA7;
2286 isa = PBXBuildFile;
2287 settings = {
2288 };
2289 };
2290 F595600B02CBAB9001000133 = {
2291 fileRef = F5A8642901FA022D0175ACA7;
2292 isa = PBXBuildFile;
2293 settings = {
2294 };
2295 };
2296 F595600C02CBAB9001000133 = {
2297 fileRef = F5A8642801FA022D0175ACA7;
2298 isa = PBXBuildFile;
2299 settings = {
2300 };
2301 };
2302 F595600D02CBAB9001000133 = {
2303 fileRef = F5A8642701FA022D0175ACA7;
2304 isa = PBXBuildFile;
2305 settings = {
2306 };
2307 };
2308 F595600E02CBAB9101000133 = {
2309 fileRef = F5A8642601FA022D0175ACA7;
2310 isa = PBXBuildFile;
2311 settings = {
2312 };
2313 };
2314 F595600F02CBAB9601000133 = {
2315 fileRef = F5A8644E01FA022D0175ACA7;
2316 isa = PBXBuildFile;
2317 settings = {
2318 };
2319 };
2320 F595601002CBAB9601000133 = {
2321 fileRef = F5A8644D01FA022D0175ACA7;
2322 isa = PBXBuildFile;
2323 settings = {
2324 };
2325 };
2326 F595601102CBAB9601000133 = {
2327 fileRef = F5A8644A01FA022D0175ACA7;
2328 isa = PBXBuildFile;
2329 settings = {
2330 };
2331 };
2332 F595601202CBAB9701000133 = {
2333 fileRef = F5A8644801FA022D0175ACA7;
2334 isa = PBXBuildFile;
2335 settings = {
2336 };
2337 };
2338 F595601302CBAB9701000133 = {
2339 fileRef = F5A8644701FA022D0175ACA7;
2340 isa = PBXBuildFile;
2341 settings = {
2342 };
2343 };
2344 F595601402CBAB9701000133 = {
2345 fileRef = F5A8644601FA022D0175ACA7;
2346 isa = PBXBuildFile;
2347 settings = {
2348 };
2349 };
2350 F595601502CBAB9801000133 = {
2351 fileRef = F5A8644501FA022D0175ACA7;
2352 isa = PBXBuildFile;
2353 settings = {
2354 };
2355 };
2356 F595601602CBAB9801000133 = {
2357 fileRef = F5A8644401FA022D0175ACA7;
2358 isa = PBXBuildFile;
2359 settings = {
2360 };
2361 };
2362 F595601702CBAB9801000133 = {
2363 fileRef = F5A8644301FA022D0175ACA7;
2364 isa = PBXBuildFile;
2365 settings = {
2366 };
2367 };
2368 F595601802CBAB9901000133 = {
2369 fileRef = F5A8644201FA022D0175ACA7;
2370 isa = PBXBuildFile;
2371 settings = {
2372 };
2373 };
2374 F5A0C52502CF702801000133 = {
2375 fileRef = F5D0E30802CCEA1D01000133;
2376 isa = PBXBuildFile;
2377 settings = {
2378 };
2379 };
2380 F5A0C52602CF702D01000133 = {
2381 fileRef = F5A8649401FA022D0175ACA7;
2382 isa = PBXBuildFile;
2383 settings = {
2384 };
2385 };
2386 F5A0C52702CF702D01000133 = {
2387 fileRef = F5A8649201FA022D0175ACA7;
2388 isa = PBXBuildFile;
2389 settings = {
2390 };
2391 };
2392 F5A0C52802CF703401000133 = {
2393 fileRef = F5A85FDF01FA022B0175ACA7;
2394 isa = PBXBuildFile;
2395 settings = {
2396 };
2397 };
2398 F5A0C52902CF703401000133 = {
2399 fileRef = F5F5A6A102CDB6CA01000133;
2400 isa = PBXBuildFile;
2401 settings = {
2402 };
2403 };
2404 F5A0C52A02CF703501000133 = {
2405 fileRef = F5F5A6A202CDB6CA01000133;
2406 isa = PBXBuildFile;
2407 settings = {
2408 };
2409 };
2410 F5A0C52B02CF703501000133 = {
2411 fileRef = F5A85FE101FA022B0175ACA7;
2412 isa = PBXBuildFile;
2413 settings = {
2414 };
2415 };
2416 F5A0C52C02CF703601000133 = {
2417 fileRef = F5A85FE201FA022B0175ACA7;
2418 isa = PBXBuildFile;
2419 settings = {
2420 };
2421 };
2422 F5A0C52D02CF703601000133 = {
2423 fileRef = F5A85FE301FA022B0175ACA7;
2424 isa = PBXBuildFile;
2425 settings = {
2426 };
2427 };
2428 F5A0C52E02CF703701000133 = {
2429 fileRef = F5A85FE401FA022B0175ACA7;
2430 isa = PBXBuildFile;
2431 settings = {
2432 };
2433 };
2434 F5A0C52F02CF703701000133 = {
2435 fileRef = F5A85FE501FA022B0175ACA7;
2436 isa = PBXBuildFile;
2437 settings = {
2438 };
2439 };
2440 F5A0C53002CF703801000133 = {
2441 fileRef = F5A85FE601FA022B0175ACA7;
2442 isa = PBXBuildFile;
2443 settings = {
2444 };
2445 };
2446 F5A0C53102CF703801000133 = {
2447 fileRef = F5A85FE701FA022B0175ACA7;
2448 isa = PBXBuildFile;
2449 settings = {
2450 };
2451 };
2452 F5A0C53202CF703901000133 = {
2453 fileRef = F5A85FE801FA022B0175ACA7;
2454 isa = PBXBuildFile;
2455 settings = {
2456 };
2457 };
2458 F5A0C53302CF703A01000133 = {
2459 fileRef = F5A85FEA01FA022B0175ACA7;
2460 isa = PBXBuildFile;
2461 settings = {
2462 };
2463 };
2464 F5A0C53402CF703A01000133 = {
2465 fileRef = F5A85FEB01FA022B0175ACA7;
2466 isa = PBXBuildFile;
2467 settings = {
2468 };
2469 };
2470 F5A0C53502CF703B01000133 = {
2471 fileRef = F5A85FE901FA022B0175ACA7;
2472 isa = PBXBuildFile;
2473 settings = {
2474 };
2475 };
2476 F5A0C53602CF705401000133 = {
2477 fileRef = F5A85FEC01FA022B0175ACA7;
2478 isa = PBXBuildFile;
2479 settings = {
2480 };
2481 };
2482 F5A0C53702CF705501000133 = {
2483 fileRef = F5A85FEF01FA022B0175ACA7;
2484 isa = PBXBuildFile;
2485 settings = {
2486 };
2487 };
2488 F5A0C53802CF705501000133 = {
2489 fileRef = F5A85FF001FA022B0175ACA7;
2490 isa = PBXBuildFile;
2491 settings = {
2492 };
2493 };
2494 F5A0C53902CF705601000133 = {
2495 fileRef = F5A85FF101FA022B0175ACA7;
2496 isa = PBXBuildFile;
2497 settings = {
2498 };
2499 };
2500 F5A0C53A02CF705701000133 = {
2501 fileRef = F5A8600701FA022B0175ACA7;
2502 isa = PBXBuildFile;
2503 settings = {
2504 };
2505 };
2506 F5A0C53B02CF705701000133 = {
2507 fileRef = F5A8600601FA022B0175ACA7;
2508 isa = PBXBuildFile;
2509 settings = {
2510 };
2511 };
2512 F5A0C53C02CF705801000133 = {
2513 fileRef = F5A8600501FA022B0175ACA7;
2514 isa = PBXBuildFile;
2515 settings = {
2516 };
2517 };
2518 F5A0C53D02CF705801000133 = {
2519 fileRef = F5A8600401FA022B0175ACA7;
2520 isa = PBXBuildFile;
2521 settings = {
2522 };
2523 };
2524 F5A0C53E02CF705901000133 = {
2525 fileRef = F5A8600301FA022B0175ACA7;
2526 isa = PBXBuildFile;
2527 settings = {
2528 };
2529 };
2530 F5A0C53F02CF705901000133 = {
2531 fileRef = F5A8600201FA022B0175ACA7;
2532 isa = PBXBuildFile;
2533 settings = {
2534 };
2535 };
2536 F5A0C54002CF705A01000133 = {
2537 fileRef = F5A8600101FA022B0175ACA7;
2538 isa = PBXBuildFile;
2539 settings = {
2540 };
2541 };
2542 F5A0C54102CF705A01000133 = {
2543 fileRef = F5A8600001FA022B0175ACA7;
2544 isa = PBXBuildFile;
2545 settings = {
2546 };
2547 };
2548 F5A0C54202CF705A01000133 = {
2549 fileRef = F5A85FFF01FA022B0175ACA7;
2550 isa = PBXBuildFile;
2551 settings = {
2552 };
2553 };
2554 F5A0C54302CF705B01000133 = {
2555 fileRef = F5A85FFE01FA022B0175ACA7;
2556 isa = PBXBuildFile;
2557 settings = {
2558 };
2559 };
2560 F5A0C54402CF705C01000133 = {
2561 fileRef = F5A85FFB01FA022B0175ACA7;
2562 isa = PBXBuildFile;
2563 settings = {
2564 };
2565 };
2566 F5A0C54502CF705C01000133 = {
2567 fileRef = F5A85FFA01FA022B0175ACA7;
2568 isa = PBXBuildFile;
2569 settings = {
2570 };
2571 };
2572 F5A0C54602CF705C01000133 = {
2573 fileRef = F5A85FF901FA022B0175ACA7;
2574 isa = PBXBuildFile;
2575 settings = {
2576 };
2577 };
2578 F5A0C54702CF705D01000133 = {
2579 fileRef = F5A85FF801FA022B0175ACA7;
2580 isa = PBXBuildFile;
2581 settings = {
2582 };
2583 };
2584 F5A0C54802CF705D01000133 = {
2585 fileRef = F5A85FF701FA022B0175ACA7;
2586 isa = PBXBuildFile;
2587 settings = {
2588 };
2589 };
2590 F5A0C54902CF705E01000133 = {
2591 fileRef = F5A85FF601FA022B0175ACA7;
2592 isa = PBXBuildFile;
2593 settings = {
2594 };
2595 };
2596 F5A0C54A02CF705E01000133 = {
2597 fileRef = F5A85FF401FA022B0175ACA7;
2598 isa = PBXBuildFile;
2599 settings = {
2600 };
2601 };
2602 F5A0C54B02CF705E01000133 = {
2603 fileRef = F5A85FF301FA022B0175ACA7;
2604 isa = PBXBuildFile;
2605 settings = {
2606 };
2607 };
2608 F5A0C54C02CF706101000133 = {
2609 fileRef = F5A8602401FA022B0175ACA7;
2610 isa = PBXBuildFile;
2611 settings = {
2612 };
2613 };
2614 F5A0C54D02CF706101000133 = {
2615 fileRef = F5A8602301FA022B0175ACA7;
2616 isa = PBXBuildFile;
2617 settings = {
2618 };
2619 };
2620 F5A0C54E02CF706201000133 = {
2621 fileRef = F5A8602201FA022B0175ACA7;
2622 isa = PBXBuildFile;
2623 settings = {
2624 };
2625 };
2626 F5A0C54F02CF706201000133 = {
2627 fileRef = F5A8602101FA022B0175ACA7;
2628 isa = PBXBuildFile;
2629 settings = {
2630 };
2631 };
2632 F5A0C55002CF706401000133 = {
2633 fileRef = F5A8600801FA022B0175ACA7;
2634 isa = PBXBuildFile;
2635 settings = {
2636 };
2637 };
2638 F5A0C55102CF706501000133 = {
2639 fileRef = F5A8600901FA022B0175ACA7;
2640 isa = PBXBuildFile;
2641 settings = {
2642 };
2643 };
2644 F5A0C55202CF706501000133 = {
2645 fileRef = F5A8600A01FA022B0175ACA7;
2646 isa = PBXBuildFile;
2647 settings = {
2648 };
2649 };
2650 F5A0C55302CF706601000133 = {
2651 fileRef = F5A8600B01FA022B0175ACA7;
2652 isa = PBXBuildFile;
2653 settings = {
2654 };
2655 };
2656 F5A0C55402CF706601000133 = {
2657 fileRef = F5A8600C01FA022B0175ACA7;
2658 isa = PBXBuildFile;
2659 settings = {
2660 };
2661 };
2662 F5A0C55502CF706701000133 = {
2663 fileRef = F5A8600D01FA022B0175ACA7;
2664 isa = PBXBuildFile;
2665 settings = {
2666 };
2667 };
2668 F5A0C55602CF706701000133 = {
2669 fileRef = F5A8600E01FA022B0175ACA7;
2670 isa = PBXBuildFile;
2671 settings = {
2672 };
2673 };
2674 F5A0C55702CF706701000133 = {
2675 fileRef = F5A8601201FA022B0175ACA7;
2676 isa = PBXBuildFile;
2677 settings = {
2678 };
2679 };
2680 F5A0C55802CF706801000133 = {
2681 fileRef = F5A8601701FA022B0175ACA7;
2682 isa = PBXBuildFile;
2683 settings = {
2684 };
2685 };
2686 F5A0C55902CF706901000133 = {
2687 fileRef = F5A8602001FA022B0175ACA7;
2688 isa = PBXBuildFile;
2689 settings = {
2690 };
2691 };
2692 F5A0C55A02CF706901000133 = {
2693 fileRef = F5A8601E01FA022B0175ACA7;
2694 isa = PBXBuildFile;
2695 settings = {
2696 };
2697 };
2698 F5A0C55B02CF706A01000133 = {
2699 fileRef = F5A8601B01FA022B0175ACA7;
2700 isa = PBXBuildFile;
2701 settings = {
2702 };
2703 };
2704 F5A0C55C02CF706A01000133 = {
2705 fileRef = F5A8601901FA022B0175ACA7;
2706 isa = PBXBuildFile;
2707 settings = {
2708 };
2709 };
2710 F5A0C55D02CF706B01000133 = {
2711 fileRef = F5A8601601FA022B0175ACA7;
2712 isa = PBXBuildFile;
2713 settings = {
2714 };
2715 };
2716 F5A0C55E02CF706B01000133 = {
2717 fileRef = F5A8601501FA022B0175ACA7;
2718 isa = PBXBuildFile;
2719 settings = {
2720 };
2721 };
2722 F5A0C55F02CF706B01000133 = {
2723 fileRef = F5A8601401FA022B0175ACA7;
2724 isa = PBXBuildFile;
2725 settings = {
2726 };
2727 };
2728 F5A0C56002CF706C01000133 = {
2729 fileRef = F5A8601301FA022B0175ACA7;
2730 isa = PBXBuildFile;
2731 settings = {
2732 };
2733 };
2734 F5A0C56102CF706C01000133 = {
2735 fileRef = F5A8601101FA022B0175ACA7;
2736 isa = PBXBuildFile;
2737 settings = {
2738 };
2739 };
2740 F5A0C56202CF706D01000133 = {
2741 fileRef = F5A8601001FA022B0175ACA7;
2742 isa = PBXBuildFile;
2743 settings = {
2744 };
2745 };
2746 F5A0C56302CF706D01000133 = {
2747 fileRef = F5A8600F01FA022B0175ACA7;
2748 isa = PBXBuildFile;
2749 settings = {
2750 };
2751 };
2752 F5A0C56402CF706E01000133 = {
2753 fileRef = F5A8601F01FA022B0175ACA7;
2754 isa = PBXBuildFile;
2755 settings = {
2756 };
2757 };
2758 F5A0C56502CF706E01000133 = {
2759 fileRef = F5F5A6A402CDB6CA01000133;
2760 isa = PBXBuildFile;
2761 settings = {
2762 };
2763 };
2764 F5A0C56602CF706E01000133 = {
2765 fileRef = F5A8601D01FA022B0175ACA7;
2766 isa = PBXBuildFile;
2767 settings = {
2768 };
2769 };
2770 F5A0C56702CF706F01000133 = {
2771 fileRef = F5A8601C01FA022B0175ACA7;
2772 isa = PBXBuildFile;
2773 settings = {
2774 };
2775 };
2776 F5A0C56802CF706F01000133 = {
2777 fileRef = F5F5A6A302CDB6CA01000133;
2778 isa = PBXBuildFile;
2779 settings = {
2780 };
2781 };
2782 F5A0C56902CF707001000133 = {
2783 fileRef = F5F5A69F02CDB27401000133;
2784 isa = PBXBuildFile;
2785 settings = {
2786 };
2787 };
2788 F5A0C56A02CF707001000133 = {
2789 fileRef = F5A8601A01FA022B0175ACA7;
2790 isa = PBXBuildFile;
2791 settings = {
2792 };
2793 };
2794 F5A0C56B02CF707301000133 = {
2795 fileRef = F5A8604901FA022C0175ACA7;
2796 isa = PBXBuildFile;
2797 settings = {
2798 };
2799 };
2800 F5A0C56C02CF707301000133 = {
2801 fileRef = F5A8604001FA022C0175ACA7;
2802 isa = PBXBuildFile;
2803 settings = {
2804 };
2805 };
2806 F5A0C56D02CF707401000133 = {
2807 fileRef = F5A8603301FA022B0175ACA7;
2808 isa = PBXBuildFile;
2809 settings = {
2810 };
2811 };
2812 F5A0C56E02CF707401000133 = {
2813 fileRef = F5A8602A01FA022B0175ACA7;
2814 isa = PBXBuildFile;
2815 settings = {
2816 };
2817 };
2818 F5A0C56F02CF707501000133 = {
2819 fileRef = F5A8602601FA022B0175ACA7;
2820 isa = PBXBuildFile;
2821 settings = {
2822 };
2823 };
2824 F5A0C57002CF707501000133 = {
2825 fileRef = F5A8602501FA022B0175ACA7;
2826 isa = PBXBuildFile;
2827 settings = {
2828 };
2829 };
2830 F5A0C57102CF707601000133 = {
2831 fileRef = F5A8602801FA022B0175ACA7;
2832 isa = PBXBuildFile;
2833 settings = {
2834 };
2835 };
2836 F5A0C57202CF707601000133 = {
2837 fileRef = F5A8602901FA022B0175ACA7;
2838 isa = PBXBuildFile;
2839 settings = {
2840 };
2841 };
2842 F5A0C57302CF707701000133 = {
2843 fileRef = F5A8602B01FA022B0175ACA7;
2844 isa = PBXBuildFile;
2845 settings = {
2846 };
2847 };
2848 F5A0C57402CF707701000133 = {
2849 fileRef = F5A8602E01FA022B0175ACA7;
2850 isa = PBXBuildFile;
2851 settings = {
2852 };
2853 };
2854 F5A0C57502CF707701000133 = {
2855 fileRef = F5A8603001FA022B0175ACA7;
2856 isa = PBXBuildFile;
2857 settings = {
2858 };
2859 };
2860 F5A0C57602CF707C01000133 = {
2861 fileRef = F5A8604A01FA022C0175ACA7;
2862 isa = PBXBuildFile;
2863 settings = {
2864 };
2865 };
2866 F5A0C57802CF707E01000133 = {
2867 fileRef = F5A8604701FA022C0175ACA7;
2868 isa = PBXBuildFile;
2869 settings = {
2870 };
2871 };
2872 F5A0C57902CF707E01000133 = {
2873 fileRef = F5A8604601FA022C0175ACA7;
2874 isa = PBXBuildFile;
2875 settings = {
2876 };
2877 };
2878 F5A0C57A02CF707E01000133 = {
2879 fileRef = F5A8604301FA022C0175ACA7;
2880 isa = PBXBuildFile;
2881 settings = {
2882 };
2883 };
2884 F5A0C57B02CF707F01000133 = {
2885 fileRef = F5A8604101FA022C0175ACA7;
2886 isa = PBXBuildFile;
2887 settings = {
2888 };
2889 };
2890 F5A0C57C02CF707F01000133 = {
2891 fileRef = F5A8604801FA022C0175ACA7;
2892 isa = PBXBuildFile;
2893 settings = {
2894 };
2895 };
2896 F5A0C57D02CF708001000133 = {
2897 fileRef = F5A8604501FA022C0175ACA7;
2898 isa = PBXBuildFile;
2899 settings = {
2900 };
2901 };
2902 F5A0C57E02CF708101000133 = {
2903 fileRef = F5A8602F01FA022B0175ACA7;
2904 isa = PBXBuildFile;
2905 settings = {
2906 };
2907 };
2908 F5A0C57F02CF708201000133 = {
2909 fileRef = F5A8603101FA022B0175ACA7;
2910 isa = PBXBuildFile;
2911 settings = {
2912 };
2913 };
2914 F5A0C58002CF708201000133 = {
2915 fileRef = F5A8603201FA022B0175ACA7;
2916 isa = PBXBuildFile;
2917 settings = {
2918 };
2919 };
2920 F5A0C58102CF708301000133 = {
2921 fileRef = F5A8603F01FA022C0175ACA7;
2922 isa = PBXBuildFile;
2923 settings = {
2924 };
2925 };
2926 F5A0C58202CF708301000133 = {
2927 fileRef = F5A8603E01FA022C0175ACA7;
2928 isa = PBXBuildFile;
2929 settings = {
2930 };
2931 };
2932 F5A0C58302CF708401000133 = {
2933 fileRef = F5A8603D01FA022C0175ACA7;
2934 isa = PBXBuildFile;
2935 settings = {
2936 };
2937 };
2938 F5A0C58402CF708401000133 = {
2939 fileRef = F5A8603A01FA022B0175ACA7;
2940 isa = PBXBuildFile;
2941 settings = {
2942 };
2943 };
2944 F5A0C58502CF708401000133 = {
2945 fileRef = F5A8603901FA022B0175ACA7;
2946 isa = PBXBuildFile;
2947 settings = {
2948 };
2949 };
2950 F5A0C58602CF708501000133 = {
2951 fileRef = F5A8603801FA022B0175ACA7;
2952 isa = PBXBuildFile;
2953 settings = {
2954 };
2955 };
2956 F5A0C58702CF708501000133 = {
2957 fileRef = F5A8603701FA022B0175ACA7;
2958 isa = PBXBuildFile;
2959 settings = {
2960 };
2961 };
2962 F5A0C58802CF708501000133 = {
2963 fileRef = F5A8603601FA022B0175ACA7;
2964 isa = PBXBuildFile;
2965 settings = {
2966 };
2967 };
2968 F5A0C58902CF708601000133 = {
2969 fileRef = F5A8603501FA022B0175ACA7;
2970 isa = PBXBuildFile;
2971 settings = {
2972 };
2973 };
2974 F5A0C58A02CF708601000133 = {
2975 fileRef = F5A8603401FA022B0175ACA7;
2976 isa = PBXBuildFile;
2977 settings = {
2978 };
2979 };
2980 F5A0C58B02CF708901000133 = {
2981 fileRef = F5A8606901FA022C0175ACA7;
2982 isa = PBXBuildFile;
2983 settings = {
2984 };
2985 };
2986 F5A0C58C02CF708A01000133 = {
2987 fileRef = F5A8606801FA022C0175ACA7;
2988 isa = PBXBuildFile;
2989 settings = {
2990 };
2991 };
2992 F5A0C58D02CF708A01000133 = {
2993 fileRef = F5A8606701FA022C0175ACA7;
2994 isa = PBXBuildFile;
2995 settings = {
2996 };
2997 };
2998 F5A0C58E02CF708B01000133 = {
2999 fileRef = F5A8606501FA022C0175ACA7;
3000 isa = PBXBuildFile;
3001 settings = {
3002 };
3003 };
3004 F5A0C58F02CF708B01000133 = {
3005 fileRef = F5A8606401FA022C0175ACA7;
3006 isa = PBXBuildFile;
3007 settings = {
3008 };
3009 };
3010 F5A0C59002CF708B01000133 = {
3011 fileRef = F5A8606301FA022C0175ACA7;
3012 isa = PBXBuildFile;
3013 settings = {
3014 };
3015 };
3016 F5A0C59102CF708C01000133 = {
3017 fileRef = F5A8606601FA022C0175ACA7;
3018 isa = PBXBuildFile;
3019 settings = {
3020 };
3021 };
3022 F5A0C59202CF708D01000133 = {
3023 fileRef = F5A8605701FA022C0175ACA7;
3024 isa = PBXBuildFile;
3025 settings = {
3026 };
3027 };
3028 F5A0C59302CF708E01000133 = {
3029 fileRef = F5A8604B01FA022C0175ACA7;
3030 isa = PBXBuildFile;
3031 settings = {
3032 };
3033 };
3034 F5A0C59402CF709001000133 = {
3035 fileRef = F5A8604C01FA022C0175ACA7;
3036 isa = PBXBuildFile;
3037 settings = {
3038 };
3039 };
3040 F5A0C59502CF709101000133 = {
3041 fileRef = F5A8604E01FA022C0175ACA7;
3042 isa = PBXBuildFile;
3043 settings = {
3044 };
3045 };
3046 F5A0C59602CF709201000133 = {
3047 fileRef = F5A8604F01FA022C0175ACA7;
3048 isa = PBXBuildFile;
3049 settings = {
3050 };
3051 };
3052 F5A0C59702CF709201000133 = {
3053 fileRef = F5A8605001FA022C0175ACA7;
3054 isa = PBXBuildFile;
3055 settings = {
3056 };
3057 };
3058 F5A0C59802CF709201000133 = {
3059 fileRef = F5A8604D01FA022C0175ACA7;
3060 isa = PBXBuildFile;
3061 settings = {
3062 };
3063 };
3064 F5A0C59902CF709301000133 = {
3065 fileRef = F5A8605101FA022C0175ACA7;
3066 isa = PBXBuildFile;
3067 settings = {
3068 };
3069 };
3070 F5A0C59B02CF709501000133 = {
3071 fileRef = F5A8605401FA022C0175ACA7;
3072 isa = PBXBuildFile;
3073 settings = {
3074 };
3075 };
3076 F5A0C59C02CF709501000133 = {
3077 fileRef = F5A8605301FA022C0175ACA7;
3078 isa = PBXBuildFile;
3079 settings = {
3080 };
3081 };
3082 F5A0C59D02CF709601000133 = {
3083 fileRef = F5A8605201FA022C0175ACA7;
3084 isa = PBXBuildFile;
3085 settings = {
3086 };
3087 };
3088 F5A0C59E02CF709701000133 = {
3089 fileRef = F5A8605501FA022C0175ACA7;
3090 isa = PBXBuildFile;
3091 settings = {
3092 };
3093 };
3094 F5A0C59F02CF709701000133 = {
3095 fileRef = F5A8605601FA022C0175ACA7;
3096 isa = PBXBuildFile;
3097 settings = {
3098 };
3099 };
3100 F5A0C5A002CF709801000133 = {
3101 fileRef = F5A8605801FA022C0175ACA7;
3102 isa = PBXBuildFile;
3103 settings = {
3104 };
3105 };
3106 F5A0C5A102CF709901000133 = {
3107 fileRef = F5A8605901FA022C0175ACA7;
3108 isa = PBXBuildFile;
3109 settings = {
3110 };
3111 };
3112 F5A0C5A202CF709901000133 = {
3113 fileRef = F5A8605B01FA022C0175ACA7;
3114 isa = PBXBuildFile;
3115 settings = {
3116 };
3117 };
3118 F5A0C5A302CF709A01000133 = {
3119 fileRef = F5A8606201FA022C0175ACA7;
3120 isa = PBXBuildFile;
3121 settings = {
3122 };
3123 };
3124 F5A0C5A402CF709A01000133 = {
3125 fileRef = F5A8606101FA022C0175ACA7;
3126 isa = PBXBuildFile;
3127 settings = {
3128 };
3129 };
3130 F5A0C5A502CF709B01000133 = {
3131 fileRef = F5A8606001FA022C0175ACA7;
3132 isa = PBXBuildFile;
3133 settings = {
3134 };
3135 };
3136 F5A0C5A602CF709B01000133 = {
3137 fileRef = F5A8605F01FA022C0175ACA7;
3138 isa = PBXBuildFile;
3139 settings = {
3140 };
3141 };
3142 F5A0C5A702CF709B01000133 = {
3143 fileRef = F5A8605E01FA022C0175ACA7;
3144 isa = PBXBuildFile;
3145 settings = {
3146 };
3147 };
3148 F5A0C5A802CF709C01000133 = {
3149 fileRef = F5A8605D01FA022C0175ACA7;
3150 isa = PBXBuildFile;
3151 settings = {
3152 };
3153 };
3154 F5A0C5A902CF70A501000133 = {
3155 fileRef = F5A8614301FA022C0175ACA7;
3156 isa = PBXBuildFile;
3157 settings = {
3158 };
3159 };
3160 F5A0C5AA02CF70A601000133 = {
3161 fileRef = F5A8614401FA022C0175ACA7;
3162 isa = PBXBuildFile;
3163 settings = {
3164 };
3165 };
3166 F5A0C5AB02CF70A601000133 = {
3167 fileRef = F5A8614501FA022C0175ACA7;
3168 isa = PBXBuildFile;
3169 settings = {
3170 };
3171 };
3172 F5A0C5AC02CF70A601000133 = {
3173 fileRef = F5A8614601FA022C0175ACA7;
3174 isa = PBXBuildFile;
3175 settings = {
3176 };
3177 };
3178 F5A0C5AD02CF70A801000133 = {
3179 fileRef = F5A8616001FA022C0175ACA7;
3180 isa = PBXBuildFile;
3181 settings = {
3182 };
3183 };
3184 F5A0C5AE02CF70A801000133 = {
3185 fileRef = F5A8615E01FA022C0175ACA7;
3186 isa = PBXBuildFile;
3187 settings = {
3188 };
3189 };
3190 F5A0C5AF02CF70A801000133 = {
3191 fileRef = F5A8615D01FA022C0175ACA7;
3192 isa = PBXBuildFile;
3193 settings = {
3194 };
3195 };
3196 F5A0C5B002CF70A901000133 = {
3197 fileRef = F5A8615B01FA022C0175ACA7;
3198 isa = PBXBuildFile;
3199 settings = {
3200 };
3201 };
3202 F5A0C5B102CF70AA01000133 = {
3203 fileRef = F5A8615901FA022C0175ACA7;
3204 isa = PBXBuildFile;
3205 settings = {
3206 };
3207 };
3208 F5A0C5B202CF70AA01000133 = {
3209 fileRef = F5A8615801FA022C0175ACA7;
3210 isa = PBXBuildFile;
3211 settings = {
3212 };
3213 };
3214 F5A0C5B302CF70AA01000133 = {
3215 fileRef = F5A8615701FA022C0175ACA7;
3216 isa = PBXBuildFile;
3217 settings = {
3218 };
3219 };
3220 F5A0C5B402CF70AB01000133 = {
3221 fileRef = F5A8615601FA022C0175ACA7;
3222 isa = PBXBuildFile;
3223 settings = {
3224 };
3225 };
3226 F5A0C5B502CF70AB01000133 = {
3227 fileRef = F5A8615501FA022C0175ACA7;
3228 isa = PBXBuildFile;
3229 settings = {
3230 };
3231 };
3232 F5A0C5B602CF70AC01000133 = {
3233 fileRef = F5A8615A01FA022C0175ACA7;
3234 isa = PBXBuildFile;
3235 settings = {
3236 };
3237 };
3238 F5A0C5B702CF70AD01000133 = {
3239 fileRef = F5A8615401FA022C0175ACA7;
3240 isa = PBXBuildFile;
3241 settings = {
3242 };
3243 };
3244 F5A0C5B802CF70AD01000133 = {
3245 fileRef = F5A8615301FA022C0175ACA7;
3246 isa = PBXBuildFile;
3247 settings = {
3248 };
3249 };
3250 F5A0C5B902CF70AD01000133 = {
3251 fileRef = F5A8615201FA022C0175ACA7;
3252 isa = PBXBuildFile;
3253 settings = {
3254 };
3255 };
3256 F5A0C5BA02CF70AE01000133 = {
3257 fileRef = F5A8615101FA022C0175ACA7;
3258 isa = PBXBuildFile;
3259 settings = {
3260 };
3261 };
3262 F5A0C5BB02CF70AE01000133 = {
3263 fileRef = F5A8614E01FA022C0175ACA7;
3264 isa = PBXBuildFile;
3265 settings = {
3266 };
3267 };
3268 F5A0C5BC02CF70AF01000133 = {
3269 fileRef = F5A8614D01FA022C0175ACA7;
3270 isa = PBXBuildFile;
3271 settings = {
3272 };
3273 };
3274 F5A0C5BD02CF70AF01000133 = {
3275 fileRef = F5A8614C01FA022C0175ACA7;
3276 isa = PBXBuildFile;
3277 settings = {
3278 };
3279 };
3280 F5A0C5BE02CF70AF01000133 = {
3281 fileRef = F5A8614B01FA022C0175ACA7;
3282 isa = PBXBuildFile;
3283 settings = {
3284 };
3285 };
3286 F5A0C5BF02CF70B001000133 = {
3287 fileRef = F5A8614A01FA022C0175ACA7;
3288 isa = PBXBuildFile;
3289 settings = {
3290 };
3291 };
3292 F5A0C5C002CF70B101000133 = {
3293 fileRef = F5A8614801FA022C0175ACA7;
3294 isa = PBXBuildFile;
3295 settings = {
3296 };
3297 };
3298 F5A0C5C102CF70B101000133 = {
3299 fileRef = F5A8614701FA022C0175ACA7;
3300 isa = PBXBuildFile;
3301 settings = {
3302 };
3303 };
3304 F5A0C5C202CF70B201000133 = {
3305 fileRef = F5A8616101FA022C0175ACA7;
3306 isa = PBXBuildFile;
3307 settings = {
3308 };
3309 };
3310 F5A0C5C302CF70B501000133 = {
3311 fileRef = F5A8618F01FA022C0175ACA7;
3312 isa = PBXBuildFile;
3313 settings = {
3314 };
3315 };
3316 F5A0C5C402CF70B501000133 = {
3317 fileRef = F5A8618E01FA022C0175ACA7;
3318 isa = PBXBuildFile;
3319 settings = {
3320 };
3321 };
3322 F5A0C5C502CF70B601000133 = {
3323 fileRef = F5A8618D01FA022C0175ACA7;
3324 isa = PBXBuildFile;
3325 settings = {
3326 };
3327 };
3328 F5A0C5C602CF70B601000133 = {
3329 fileRef = F5A8617901FA022C0175ACA7;
3330 isa = PBXBuildFile;
3331 settings = {
3332 };
3333 };
3334 F5A0C5C702CF70B601000133 = {
3335 fileRef = F5A8617701FA022C0175ACA7;
3336 isa = PBXBuildFile;
3337 settings = {
3338 };
3339 };
3340 F5A0C5C802CF70B701000133 = {
3341 fileRef = F5A8617101FA022C0175ACA7;
3342 isa = PBXBuildFile;
3343 settings = {
3344 };
3345 };
3346 F5A0C5C902CF70B701000133 = {
3347 fileRef = F5A8617001FA022C0175ACA7;
3348 isa = PBXBuildFile;
3349 settings = {
3350 };
3351 };
3352 F5A0C5CA02CF70B701000133 = {
3353 fileRef = F5A8616F01FA022C0175ACA7;
3354 isa = PBXBuildFile;
3355 settings = {
3356 };
3357 };
3358 F5A0C5CB02CF70B801000133 = {
3359 fileRef = F5A8616E01FA022C0175ACA7;
3360 isa = PBXBuildFile;
3361 settings = {
3362 };
3363 };
3364 F5A0C5CC02CF70B901000133 = {
3365 fileRef = F5A8616D01FA022C0175ACA7;
3366 isa = PBXBuildFile;
3367 settings = {
3368 };
3369 };
3370 F5A0C5CD02CF70B901000133 = {
3371 fileRef = F5A8616C01FA022C0175ACA7;
3372 isa = PBXBuildFile;
3373 settings = {
3374 };
3375 };
3376 F5A0C5CE02CF70B901000133 = {
3377 fileRef = F5A8616B01FA022C0175ACA7;
3378 isa = PBXBuildFile;
3379 settings = {
3380 };
3381 };
3382 F5A0C5CF02CF70BA01000133 = {
3383 fileRef = F5A8616901FA022C0175ACA7;
3384 isa = PBXBuildFile;
3385 settings = {
3386 };
3387 };
3388 F5A0C5D002CF70BA01000133 = {
3389 fileRef = F5A8616801FA022C0175ACA7;
3390 isa = PBXBuildFile;
3391 settings = {
3392 };
3393 };
3394 F5A0C5D102CF70BA01000133 = {
3395 fileRef = F5A8616701FA022C0175ACA7;
3396 isa = PBXBuildFile;
3397 settings = {
3398 };
3399 };
3400 F5A0C5D202CF70BB01000133 = {
3401 fileRef = F5A8616601FA022C0175ACA7;
3402 isa = PBXBuildFile;
3403 settings = {
3404 };
3405 };
3406 F5A0C5D302CF70BC01000133 = {
3407 fileRef = F5A8616501FA022C0175ACA7;
3408 isa = PBXBuildFile;
3409 settings = {
3410 };
3411 };
3412 F5A0C5D402CF70BC01000133 = {
3413 fileRef = F5A8616401FA022C0175ACA7;
3414 isa = PBXBuildFile;
3415 settings = {
3416 };
3417 };
3418 F5A0C5D502CF70BC01000133 = {
3419 fileRef = F5A8616301FA022C0175ACA7;
3420 isa = PBXBuildFile;
3421 settings = {
3422 };
3423 };
3424 F5A0C5D602CF70BD01000133 = {
3425 fileRef = F5A8616201FA022C0175ACA7;
3426 isa = PBXBuildFile;
3427 settings = {
3428 };
3429 };
3430 F5A0C5D702CF70C201000133 = {
3431 fileRef = F5A861D301FA022C0175ACA7;
3432 isa = PBXBuildFile;
3433 settings = {
3434 };
3435 };
3436 F5A0C5D802CF70C301000133 = {
3437 fileRef = F5A861D501FA022C0175ACA7;
3438 isa = PBXBuildFile;
3439 settings = {
3440 };
3441 };
3442 F5A0C5D902CF70C301000133 = {
3443 fileRef = F5A861D701FA022C0175ACA7;
3444 isa = PBXBuildFile;
3445 settings = {
3446 };
3447 };
3448 F5A0C5DA02CF70C301000133 = {
3449 fileRef = F5A861D901FA022C0175ACA7;
3450 isa = PBXBuildFile;
3451 settings = {
3452 };
3453 };
3454 F5A0C5DB02CF70C401000133 = {
3455 fileRef = F5A861DD01FA022C0175ACA7;
3456 isa = PBXBuildFile;
3457 settings = {
3458 };
3459 };
3460 F5A0C5DC02CF70C501000133 = {
3461 fileRef = F5A861DF01FA022C0175ACA7;
3462 isa = PBXBuildFile;
3463 settings = {
3464 };
3465 };
3466 F5A0C5DD02CF70C501000133 = {
3467 fileRef = F5A861DB01FA022C0175ACA7;
3468 isa = PBXBuildFile;
3469 settings = {
3470 };
3471 };
3472 F5A0C5DE02CF70C801000133 = {
3473 fileRef = F5A861E501FA022C0175ACA7;
3474 isa = PBXBuildFile;
3475 settings = {
3476 };
3477 };
3478 F5A0C5DF02CF70C801000133 = {
3479 fileRef = F5A861E101FA022C0175ACA7;
3480 isa = PBXBuildFile;
3481 settings = {
3482 };
3483 };
3484 F5A0C5E002CF70D201000133 = {
3485 fileRef = F5A8610401FA022C0175ACA7;
3486 isa = PBXBuildFile;
3487 settings = {
3488 };
3489 };
3490 F5A0C5E102CF70D201000133 = {
3491 fileRef = F5A8610501FA022C0175ACA7;
3492 isa = PBXBuildFile;
3493 settings = {
3494 };
3495 };
3496 F5A0C5E202CF70D201000133 = {
3497 fileRef = F5A8610601FA022C0175ACA7;
3498 isa = PBXBuildFile;
3499 settings = {
3500 };
3501 };
3502 F5A0C5E302CF70D301000133 = {
3503 fileRef = F5A8610701FA022C0175ACA7;
3504 isa = PBXBuildFile;
3505 settings = {
3506 };
3507 };
3508 F5A0C5E402CF70D301000133 = {
3509 fileRef = F5A8610801FA022C0175ACA7;
3510 isa = PBXBuildFile;
3511 settings = {
3512 };
3513 };
3514 F5A0C5E502CF70D501000133 = {
3515 fileRef = F5A8611701FA022C0175ACA7;
3516 isa = PBXBuildFile;
3517 settings = {
3518 };
3519 };
3520 F5A0C5E602CF70D601000133 = {
3521 fileRef = F5A8611601FA022C0175ACA7;
3522 isa = PBXBuildFile;
3523 settings = {
3524 };
3525 };
3526 F5A0C5E702CF70D601000133 = {
3527 fileRef = F5A8611501FA022C0175ACA7;
3528 isa = PBXBuildFile;
3529 settings = {
3530 };
3531 };
3532 F5A0C5E902CF70D701000133 = {
3533 fileRef = F5A8611301FA022C0175ACA7;
3534 isa = PBXBuildFile;
3535 settings = {
3536 };
3537 };
3538 F5A0C5EA02CF70D701000133 = {
3539 fileRef = F5A8611201FA022C0175ACA7;
3540 isa = PBXBuildFile;
3541 settings = {
3542 };
3543 };
3544 F5A0C5EB02CF70D801000133 = {
3545 fileRef = F5A8611101FA022C0175ACA7;
3546 isa = PBXBuildFile;
3547 settings = {
3548 };
3549 };
3550 F5A0C5EC02CF70D801000133 = {
3551 fileRef = F5A8611001FA022C0175ACA7;
3552 isa = PBXBuildFile;
3553 settings = {
3554 };
3555 };
3556 F5A0C5ED02CF70D801000133 = {
3557 fileRef = F5A8610F01FA022C0175ACA7;
3558 isa = PBXBuildFile;
3559 settings = {
3560 };
3561 };
3562 F5A0C5EE02CF70D901000133 = {
3563 fileRef = F5A8610E01FA022C0175ACA7;
3564 isa = PBXBuildFile;
3565 settings = {
3566 };
3567 };
3568 F5A0C5EF02CF70D901000133 = {
3569 fileRef = F5A8610D01FA022C0175ACA7;
3570 isa = PBXBuildFile;
3571 settings = {
3572 };
3573 };
3574 F5A0C5F002CF70DA01000133 = {
3575 fileRef = F5A8610C01FA022C0175ACA7;
3576 isa = PBXBuildFile;
3577 settings = {
3578 };
3579 };
3580 F5A0C5F102CF70DA01000133 = {
3581 fileRef = F5A8610B01FA022C0175ACA7;
3582 isa = PBXBuildFile;
3583 settings = {
3584 };
3585 };
3586 F5A0C5F202CF70DA01000133 = {
3587 fileRef = F5A8610A01FA022C0175ACA7;
3588 isa = PBXBuildFile;
3589 settings = {
3590 };
3591 };
3592 F5A0C5F302CF70DB01000133 = {
3593 fileRef = F5A8610901FA022C0175ACA7;
3594 isa = PBXBuildFile;
3595 settings = {
3596 };
3597 };
3598 F5A0C5F402CF70EA01000133 = {
3599 fileRef = F5A8607001FA022C0175ACA7;
3600 isa = PBXBuildFile;
3601 settings = {
3602 };
3603 };
3604 F5A0C5F502CF70EB01000133 = {
3605 fileRef = F5A8607101FA022C0175ACA7;
3606 isa = PBXBuildFile;
3607 settings = {
3608 };
3609 };
3610 F5A0C5F602CF70EB01000133 = {
3611 fileRef = F5A8607201FA022C0175ACA7;
3612 isa = PBXBuildFile;
3613 settings = {
3614 };
3615 };
3616 F5A0C5F702CF70EC01000133 = {
3617 fileRef = F5A8607301FA022C0175ACA7;
3618 isa = PBXBuildFile;
3619 settings = {
3620 };
3621 };
3622 F5A0C5F802CF70EC01000133 = {
3623 fileRef = F5A8607401FA022C0175ACA7;
3624 isa = PBXBuildFile;
3625 settings = {
3626 };
3627 };
3628 F5A0C5F902CF70EC01000133 = {
3629 fileRef = F5A8607501FA022C0175ACA7;
3630 isa = PBXBuildFile;
3631 settings = {
3632 };
3633 };
3634 F5A0C5FA02CF70ED01000133 = {
3635 fileRef = F5A8607701FA022C0175ACA7;
3636 isa = PBXBuildFile;
3637 settings = {
3638 };
3639 };
3640 F5A0C5FB02CF70ED01000133 = {
3641 fileRef = F5A8607801FA022C0175ACA7;
3642 isa = PBXBuildFile;
3643 settings = {
3644 };
3645 };
3646 F5A0C5FC02CF70EE01000133 = {
3647 fileRef = F5A8607901FA022C0175ACA7;
3648 isa = PBXBuildFile;
3649 settings = {
3650 };
3651 };
3652 F5A0C5FD02CF70EE01000133 = {
3653 fileRef = F5A8607A01FA022C0175ACA7;
3654 isa = PBXBuildFile;
3655 settings = {
3656 };
3657 };
3658 F5A0C5FE02CF70EE01000133 = {
3659 fileRef = F5A8607C01FA022C0175ACA7;
3660 isa = PBXBuildFile;
3661 settings = {
3662 };
3663 };
3664 F5A0C5FF02CF70EF01000133 = {
3665 fileRef = F5A8607D01FA022C0175ACA7;
3666 isa = PBXBuildFile;
3667 settings = {
3668 };
3669 };
3670 F5A0C60102CF70F001000133 = {
3671 fileRef = F5A8608001FA022C0175ACA7;
3672 isa = PBXBuildFile;
3673 settings = {
3674 };
3675 };
3676 F5A0C60202CF70F101000133 = {
3677 fileRef = F5A8607E01FA022C0175ACA7;
3678 isa = PBXBuildFile;
3679 settings = {
3680 };
3681 };
3682 F5A0C60302CF70F101000133 = {
3683 fileRef = F5A8608101FA022C0175ACA7;
3684 isa = PBXBuildFile;
3685 settings = {
3686 };
3687 };
3688 F5A0C60402CF70F201000133 = {
3689 fileRef = F5A8608501FA022C0175ACA7;
3690 isa = PBXBuildFile;
3691 settings = {
3692 };
3693 };
3694 F5A0C60502CF70F201000133 = {
3695 fileRef = F5A8608601FA022C0175ACA7;
3696 isa = PBXBuildFile;
3697 settings = {
3698 };
3699 };
3700 F5A0C60602CF70F201000133 = {
3701 fileRef = F5A8608701FA022C0175ACA7;
3702 isa = PBXBuildFile;
3703 settings = {
3704 };
3705 };
3706 F5A0C60702CF70F301000133 = {
3707 fileRef = F5A8608801FA022C0175ACA7;
3708 isa = PBXBuildFile;
3709 settings = {
3710 };
3711 };
3712 F5A0C60802CF70F401000133 = {
3713 fileRef = F5A8608201FA022C0175ACA7;
3714 isa = PBXBuildFile;
3715 settings = {
3716 };
3717 };
3718 F5A0C60902CF70F501000133 = {
3719 fileRef = F5A8608901FA022C0175ACA7;
3720 isa = PBXBuildFile;
3721 settings = {
3722 };
3723 };
3724 F5A0C60A02CF70F501000133 = {
3725 fileRef = F5A8608B01FA022C0175ACA7;
3726 isa = PBXBuildFile;
3727 settings = {
3728 };
3729 };
3730 F5A0C60B02CF70F601000133 = {
3731 fileRef = F5A8608D01FA022C0175ACA7;
3732 isa = PBXBuildFile;
3733 settings = {
3734 };
3735 };
3736 F5A0C60C02CF70F601000133 = {
3737 fileRef = F5A8608E01FA022C0175ACA7;
3738 isa = PBXBuildFile;
3739 settings = {
3740 };
3741 };
3742 F5A0C60D02CF70F601000133 = {
3743 fileRef = F5A8608F01FA022C0175ACA7;
3744 isa = PBXBuildFile;
3745 settings = {
3746 };
3747 };
3748 F5A0C60E02CF70F701000133 = {
3749 fileRef = F5A8609001FA022C0175ACA7;
3750 isa = PBXBuildFile;
3751 settings = {
3752 };
3753 };
3754 F5A0C60F02CF70F701000133 = {
3755 fileRef = F5A8609101FA022C0175ACA7;
3756 isa = PBXBuildFile;
3757 settings = {
3758 };
3759 };
3760 F5A0C61002CF70F701000133 = {
3761 fileRef = F5A8609201FA022C0175ACA7;
3762 isa = PBXBuildFile;
3763 settings = {
3764 };
3765 };
3766 F5A0C61102CF70F801000133 = {
3767 fileRef = F5A8609301FA022C0175ACA7;
3768 isa = PBXBuildFile;
3769 settings = {
3770 };
3771 };
3772 F5A0C61202CF70FA01000133 = {
3773 fileRef = F5A860A201FA022C0175ACA7;
3774 isa = PBXBuildFile;
3775 settings = {
3776 };
3777 };
3778 F5A0C61302CF70FA01000133 = {
3779 fileRef = F5A860A101FA022C0175ACA7;
3780 isa = PBXBuildFile;
3781 settings = {
3782 };
3783 };
3784 F5A0C61402CF70FB01000133 = {
3785 fileRef = F5A860A001FA022C0175ACA7;
3786 isa = PBXBuildFile;
3787 settings = {
3788 };
3789 };
3790 F5A0C61502CF70FB01000133 = {
3791 fileRef = F5A8609F01FA022C0175ACA7;
3792 isa = PBXBuildFile;
3793 settings = {
3794 };
3795 };
3796 F5A0C61602CF70FC01000133 = {
3797 fileRef = F5A8609E01FA022C0175ACA7;
3798 isa = PBXBuildFile;
3799 settings = {
3800 };
3801 };
3802 F5A0C61702CF70FC01000133 = {
3803 fileRef = F5A8609D01FA022C0175ACA7;
3804 isa = PBXBuildFile;
3805 settings = {
3806 };
3807 };
3808 F5A0C61802CF70FC01000133 = {
3809 fileRef = F5A8609C01FA022C0175ACA7;
3810 isa = PBXBuildFile;
3811 settings = {
3812 };
3813 };
3814 F5A0C61902CF70FD01000133 = {
3815 fileRef = F5A8609B01FA022C0175ACA7;
3816 isa = PBXBuildFile;
3817 settings = {
3818 };
3819 };
3820 F5A0C61A02CF70FD01000133 = {
3821 fileRef = F5A8609A01FA022C0175ACA7;
3822 isa = PBXBuildFile;
3823 settings = {
3824 };
3825 };
3826 F5A0C61B02CF70FD01000133 = {
3827 fileRef = F5A8609801FA022C0175ACA7;
3828 isa = PBXBuildFile;
3829 settings = {
3830 };
3831 };
3832 F5A0C61C02CF70FE01000133 = {
3833 fileRef = F5A8609701FA022C0175ACA7;
3834 isa = PBXBuildFile;
3835 settings = {
3836 };
3837 };
3838 F5A0C61D02CF70FE01000133 = {
3839 fileRef = F5A8609601FA022C0175ACA7;
3840 isa = PBXBuildFile;
3841 settings = {
3842 };
3843 };
3844 F5A0C61E02CF70FF01000133 = {
3845 fileRef = F5A8609501FA022C0175ACA7;
3846 isa = PBXBuildFile;
3847 settings = {
3848 };
3849 };
3850 F5A0C61F02CF70FF01000133 = {
3851 fileRef = F5A8609401FA022C0175ACA7;
3852 isa = PBXBuildFile;
3853 settings = {
3854 };
3855 };
3856 F5A0C62002CF710701000133 = {
3857 fileRef = F5A863DD01FA022D0175ACA7;
3858 isa = PBXBuildFile;
3859 settings = {
3860 };
3861 };
3862 F5A0C62102CF710701000133 = {
3863 fileRef = F5A863DC01FA022D0175ACA7;
3864 isa = PBXBuildFile;
3865 settings = {
3866 };
3867 };
3868 F5A0C62202CF710701000133 = {
3869 fileRef = F5A863DB01FA022D0175ACA7;
3870 isa = PBXBuildFile;
3871 settings = {
3872 };
3873 };
3874 F5A0C62302CF710801000133 = {
3875 fileRef = F5A863DA01FA022D0175ACA7;
3876 isa = PBXBuildFile;
3877 settings = {
3878 };
3879 };
3880 F5A0C62402CF710801000133 = {
3881 fileRef = F5A863D901FA022D0175ACA7;
3882 isa = PBXBuildFile;
3883 settings = {
3884 };
3885 };
3886 F5A0C62502CF710801000133 = {
3887 fileRef = F5A863D801FA022D0175ACA7;
3888 isa = PBXBuildFile;
3889 settings = {
3890 };
3891 };
3892 F5A0C62602CF710901000133 = {
3893 fileRef = F5A863D701FA022D0175ACA7;
3894 isa = PBXBuildFile;
3895 settings = {
3896 };
3897 };
3898 F5A0C62702CF710901000133 = {
3899 fileRef = F5A863D601FA022D0175ACA7;
3900 isa = PBXBuildFile;
3901 settings = {
3902 };
3903 };
3904 F5A0C62802CF710A01000133 = {
3905 fileRef = F5A863D501FA022D0175ACA7;
3906 isa = PBXBuildFile;
3907 settings = {
3908 };
3909 };
3910 F5A0C62902CF710A01000133 = {
3911 fileRef = F5A863D401FA022D0175ACA7;
3912 isa = PBXBuildFile;
3913 settings = {
3914 };
3915 };
3916 F5A0C62A02CF710A01000133 = {
3917 fileRef = F5A863D301FA022D0175ACA7;
3918 isa = PBXBuildFile;
3919 settings = {
3920 };
3921 };
3922 F5A0C62B02CF710B01000133 = {
3923 fileRef = F5A863D201FA022D0175ACA7;
3924 isa = PBXBuildFile;
3925 settings = {
3926 };
3927 };
3928 F5A0C62C02CF710B01000133 = {
3929 fileRef = F5A863D101FA022D0175ACA7;
3930 isa = PBXBuildFile;
3931 settings = {
3932 };
3933 };
3934 F5A0C62D02CF710C01000133 = {
3935 fileRef = F5A863C501FA022D0175ACA7;
3936 isa = PBXBuildFile;
3937 settings = {
3938 };
3939 };
3940 F5A0C62E02CF710C01000133 = {
3941 fileRef = F5A863C401FA022D0175ACA7;
3942 isa = PBXBuildFile;
3943 settings = {
3944 };
3945 };
3946 F5A0C62F02CF710D01000133 = {
3947 fileRef = F5A863BF01FA022D0175ACA7;
3948 isa = PBXBuildFile;
3949 settings = {
3950 };
3951 };
3952 F5A0C63002CF711001000133 = {
3953 fileRef = F5A8643D01FA022D0175ACA7;
3954 isa = PBXBuildFile;
3955 settings = {
3956 };
3957 };
3958 F5A0C63102CF711001000133 = {
3959 fileRef = F5A8643B01FA022D0175ACA7;
3960 isa = PBXBuildFile;
3961 settings = {
3962 };
3963 };
3964 F5A0C63202CF711101000133 = {
3965 fileRef = F5A8643A01FA022D0175ACA7;
3966 isa = PBXBuildFile;
3967 settings = {
3968 };
3969 };
3970 F5A0C63302CF711101000133 = {
3971 fileRef = F5A8643801FA022D0175ACA7;
3972 isa = PBXBuildFile;
3973 settings = {
3974 };
3975 };
3976 F5A0C63402CF711101000133 = {
3977 fileRef = F5A8643701FA022D0175ACA7;
3978 isa = PBXBuildFile;
3979 settings = {
3980 };
3981 };
3982 F5A0C63502CF711201000133 = {
3983 fileRef = F5A8643601FA022D0175ACA7;
3984 isa = PBXBuildFile;
3985 settings = {
3986 };
3987 };
3988 F5A0C63602CF711201000133 = {
3989 fileRef = F5A8643501FA022D0175ACA7;
3990 isa = PBXBuildFile;
3991 settings = {
3992 };
3993 };
3994 F5A0C63702CF711301000133 = {
3995 fileRef = F5A8643401FA022D0175ACA7;
3996 isa = PBXBuildFile;
3997 settings = {
3998 };
3999 };
4000 F5A0C63802CF711301000133 = {
4001 fileRef = F5A8643301FA022D0175ACA7;
4002 isa = PBXBuildFile;
4003 settings = {
4004 };
4005 };
4006 F5A0C63902CF711301000133 = {
4007 fileRef = F5A8643101FA022D0175ACA7;
4008 isa = PBXBuildFile;
4009 settings = {
4010 };
4011 };
4012 F5A0C63A02CF711401000133 = {
4013 fileRef = F5A8643001FA022D0175ACA7;
4014 isa = PBXBuildFile;
4015 settings = {
4016 };
4017 };
4018 F5A0C63B02CF711401000133 = {
4019 fileRef = F5A8642F01FA022D0175ACA7;
4020 isa = PBXBuildFile;
4021 settings = {
4022 };
4023 };
4024 F5A0C63C02CF711401000133 = {
4025 fileRef = F5A8642E01FA022D0175ACA7;
4026 isa = PBXBuildFile;
4027 settings = {
4028 };
4029 };
4030 F5A0C63D02CF711501000133 = {
4031 fileRef = F5A8642D01FA022D0175ACA7;
4032 isa = PBXBuildFile;
4033 settings = {
4034 };
4035 };
4036 F5A0C63E02CF711501000133 = {
4037 fileRef = F5A8642C01FA022D0175ACA7;
4038 isa = PBXBuildFile;
4039 settings = {
4040 };
4041 };
4042 F5A0C63F02CF711601000133 = {
4043 fileRef = F5A8642A01FA022D0175ACA7;
4044 isa = PBXBuildFile;
4045 settings = {
4046 };
4047 };
4048 F5A0C64002CF711601000133 = {
4049 fileRef = F5A8642901FA022D0175ACA7;
4050 isa = PBXBuildFile;
4051 settings = {
4052 };
4053 };
4054 F5A0C64102CF711601000133 = {
4055 fileRef = F5A8642801FA022D0175ACA7;
4056 isa = PBXBuildFile;
4057 settings = {
4058 };
4059 };
4060 F5A0C64202CF711701000133 = {
4061 fileRef = F5A8642701FA022D0175ACA7;
4062 isa = PBXBuildFile;
4063 settings = {
4064 };
4065 };
4066 F5A0C64302CF711701000133 = {
4067 fileRef = F5A8642601FA022D0175ACA7;
4068 isa = PBXBuildFile;
4069 settings = {
4070 };
4071 };
4072 F5A0C64402CF711801000133 = {
4073 fileRef = F5A8643E01FA022D0175ACA7;
4074 isa = PBXBuildFile;
4075 settings = {
4076 };
4077 };
4078 F5A0C64502CF711B01000133 = {
4079 fileRef = F5A8644E01FA022D0175ACA7;
4080 isa = PBXBuildFile;
4081 settings = {
4082 };
4083 };
4084 F5A0C64602CF711B01000133 = {
4085 fileRef = F5A8644D01FA022D0175ACA7;
4086 isa = PBXBuildFile;
4087 settings = {
4088 };
4089 };
4090 F5A0C64702CF711B01000133 = {
4091 fileRef = F5A8644A01FA022D0175ACA7;
4092 isa = PBXBuildFile;
4093 settings = {
4094 };
4095 };
4096 F5A0C64802CF711C01000133 = {
4097 fileRef = F5A8644801FA022D0175ACA7;
4098 isa = PBXBuildFile;
4099 settings = {
4100 };
4101 };
4102 F5A0C64902CF711C01000133 = {
4103 fileRef = F5A8644701FA022D0175ACA7;
4104 isa = PBXBuildFile;
4105 settings = {
4106 };
4107 };
4108 F5A0C64A02CF711D01000133 = {
4109 fileRef = F5A8644601FA022D0175ACA7;
4110 isa = PBXBuildFile;
4111 settings = {
4112 };
4113 };
4114 F5A0C64B02CF711D01000133 = {
4115 fileRef = F5A8644501FA022D0175ACA7;
4116 isa = PBXBuildFile;
4117 settings = {
4118 };
4119 };
4120 F5A0C64C02CF711D01000133 = {
4121 fileRef = F5A8644401FA022D0175ACA7;
4122 isa = PBXBuildFile;
4123 settings = {
4124 };
4125 };
4126 F5A0C64D02CF711E01000133 = {
4127 fileRef = F5A8644301FA022D0175ACA7;
4128 isa = PBXBuildFile;
4129 settings = {
4130 };
4131 };
4132 F5A0C64E02CF711E01000133 = {
4133 fileRef = F5A8644201FA022D0175ACA7;
4134 isa = PBXBuildFile;
4135 settings = {
4136 };
4137 };
4138 F5A0C64F02CF711E01000133 = {
4139 fileRef = F5A8644101FA022D0175ACA7;
4140 isa = PBXBuildFile;
4141 settings = {
4142 };
4143 };
4144 F5A0C65002CF711F01000133 = {
4145 fileRef = F5A8643F01FA022D0175ACA7;
4146 isa = PBXBuildFile;
4147 settings = {
4148 };
4149 };
4150 F5A0C65102CF712301000133 = {
4151 fileRef = F5A8620A01FA022C0175ACA7;
4152 isa = PBXBuildFile;
4153 settings = {
4154 };
4155 };
4156 F5A0C65202CF712301000133 = {
4157 fileRef = F5A8620901FA022C0175ACA7;
4158 isa = PBXBuildFile;
4159 settings = {
4160 };
4161 };
4162 F5A0C65302CF712401000133 = {
4163 fileRef = F5A8620801FA022C0175ACA7;
4164 isa = PBXBuildFile;
4165 settings = {
4166 };
4167 };
4168 F5A0C65402CF712401000133 = {
4169 fileRef = F5A8620701FA022C0175ACA7;
4170 isa = PBXBuildFile;
4171 settings = {
4172 };
4173 };
4174 F5A0C65502CF712401000133 = {
4175 fileRef = F5A8620601FA022C0175ACA7;
4176 isa = PBXBuildFile;
4177 settings = {
4178 };
4179 };
4180 F5A0C65602CF712501000133 = {
4181 fileRef = F5A8620401FA022C0175ACA7;
4182 isa = PBXBuildFile;
4183 settings = {
4184 };
4185 };
4186 F5A0C65702CF712501000133 = {
4187 fileRef = F5A8620301FA022C0175ACA7;
4188 isa = PBXBuildFile;
4189 settings = {
4190 };
4191 };
4192 F5A0C65802CF712601000133 = {
4193 fileRef = F5A8620201FA022C0175ACA7;
4194 isa = PBXBuildFile;
4195 settings = {
4196 };
4197 };
4198 F5A0C65902CF712601000133 = {
4199 fileRef = F5A8620101FA022C0175ACA7;
4200 isa = PBXBuildFile;
4201 settings = {
4202 };
4203 };
4204 F5A0C65A02CF712701000133 = {
4205 fileRef = F5A8620001FA022C0175ACA7;
4206 isa = PBXBuildFile;
4207 settings = {
4208 };
4209 };
4210 F5A0C65B02CF712701000133 = {
4211 fileRef = F5A861FF01FA022C0175ACA7;
4212 isa = PBXBuildFile;
4213 settings = {
4214 };
4215 };
4216 F5A0C65C02CF712701000133 = {
4217 fileRef = F5A861FE01FA022C0175ACA7;
4218 isa = PBXBuildFile;
4219 settings = {
4220 };
4221 };
4222 F5A0C65D02CF712801000133 = {
4223 fileRef = F5A861FD01FA022C0175ACA7;
4224 isa = PBXBuildFile;
4225 settings = {
4226 };
4227 };
4228 F5A0C65E02CF712801000133 = {
4229 fileRef = F5A861FC01FA022C0175ACA7;
4230 isa = PBXBuildFile;
4231 settings = {
4232 };
4233 };
4234 F5A0C65F02CF712901000133 = {
4235 fileRef = F5A861FB01FA022C0175ACA7;
4236 isa = PBXBuildFile;
4237 settings = {
4238 };
4239 };
4240 F5A0C66002CF712901000133 = {
4241 fileRef = F5A861F901FA022C0175ACA7;
4242 isa = PBXBuildFile;
4243 settings = {
4244 };
4245 };
4246 F5A0C66102CF712A01000133 = {
4247 fileRef = F5A861F801FA022C0175ACA7;
4248 isa = PBXBuildFile;
4249 settings = {
4250 };
4251 };
4252 F5A0C66202CF712A01000133 = {
4253 fileRef = F5A861F701FA022C0175ACA7;
4254 isa = PBXBuildFile;
4255 settings = {
4256 };
4257 };
4258 F5A0C66302CF712A01000133 = {
4259 fileRef = F5A861F501FA022C0175ACA7;
4260 isa = PBXBuildFile;
4261 settings = {
4262 };
4263 };
4264 F5A0C66402CF712B01000133 = {
4265 fileRef = F5A861F401FA022C0175ACA7;
4266 isa = PBXBuildFile;
4267 settings = {
4268 };
4269 };
4270 F5A0C66502CF712B01000133 = {
4271 fileRef = F5A861F301FA022C0175ACA7;
4272 isa = PBXBuildFile;
4273 settings = {
4274 };
4275 };
4276 F5A0C66602CF712C01000133 = {
4277 fileRef = F5A861F201FA022C0175ACA7;
4278 isa = PBXBuildFile;
4279 settings = {
4280 };
4281 };
4282 F5A0C66702CF712C01000133 = {
4283 fileRef = F5A861F101FA022C0175ACA7;
4284 isa = PBXBuildFile;
4285 settings = {
4286 };
4287 };
4288 F5A0C66802CF712C01000133 = {
4289 fileRef = F5A861F001FA022C0175ACA7;
4290 isa = PBXBuildFile;
4291 settings = {
4292 };
4293 };
4294 F5A0C66902CF712D01000133 = {
4295 fileRef = F5A861EF01FA022C0175ACA7;
4296 isa = PBXBuildFile;
4297 settings = {
4298 };
4299 };
4300 F5A0C66A02CF712D01000133 = {
4301 fileRef = F5A861EE01FA022C0175ACA7;
4302 isa = PBXBuildFile;
4303 settings = {
4304 };
4305 };
4306 F5A0C66B02CF712F01000133 = {
4307 fileRef = F5A861ED01FA022C0175ACA7;
4308 isa = PBXBuildFile;
4309 settings = {
4310 };
4311 };
4312 F5A0C66C02CF713001000133 = {
4313 fileRef = F5A861EC01FA022C0175ACA7;
4314 isa = PBXBuildFile;
4315 settings = {
4316 };
4317 };
4318 F5A0C66D02CF713001000133 = {
4319 fileRef = F5A861EB01FA022C0175ACA7;
4320 isa = PBXBuildFile;
4321 settings = {
4322 };
4323 };
4324 F5A0C66E02CF713001000133 = {
4325 fileRef = F5A861EA01FA022C0175ACA7;
4326 isa = PBXBuildFile;
4327 settings = {
4328 };
4329 };
4330 F5A0C66F02CF713101000133 = {
4331 fileRef = F5A861E901FA022C0175ACA7;
4332 isa = PBXBuildFile;
4333 settings = {
4334 };
4335 };
4336 F5A0C67002CF713101000133 = {
4337 fileRef = F5A861E801FA022C0175ACA7;
4338 isa = PBXBuildFile;
4339 settings = {
4340 };
4341 };
4342 F5A0C67102CF713101000133 = {
4343 fileRef = F5A861E701FA022C0175ACA7;
4344 isa = PBXBuildFile;
4345 settings = {
4346 };
4347 };
4348 F5A0C67202CF713201000133 = {
4349 fileRef = F5A861D101FA022C0175ACA7;
4350 isa = PBXBuildFile;
4351 settings = {
4352 };
4353 };
4354 F5A0C67302CF713201000133 = {
4355 fileRef = F5A861D001FA022C0175ACA7;
4356 isa = PBXBuildFile;
4357 settings = {
4358 };
4359 };
4360 F5A0C67402CF713301000133 = {
4361 fileRef = F5A861CE01FA022C0175ACA7;
4362 isa = PBXBuildFile;
4363 settings = {
4364 };
4365 };
4366 F5A0C67502CF713401000133 = {
4367 fileRef = F5A861CF01FA022C0175ACA7;
4368 isa = PBXBuildFile;
4369 settings = {
4370 };
4371 };
4372 F5A0C67602CF713501000133 = {
4373 fileRef = F5A861CD01FA022C0175ACA7;
4374 isa = PBXBuildFile;
4375 settings = {
4376 };
4377 };
4378 F5A0C67702CF713501000133 = {
4379 fileRef = F5A861CC01FA022C0175ACA7;
4380 isa = PBXBuildFile;
4381 settings = {
4382 };
4383 };
4384 F5A0C67802CF713601000133 = {
4385 fileRef = F5A861C801FA022C0175ACA7;
4386 isa = PBXBuildFile;
4387 settings = {
4388 };
4389 };
4390 F5A0C67902CF713601000133 = {
4391 fileRef = F5A861C701FA022C0175ACA7;
4392 isa = PBXBuildFile;
4393 settings = {
4394 };
4395 };
4396 F5A0C67A02CF713601000133 = {
4397 fileRef = F5A861C601FA022C0175ACA7;
4398 isa = PBXBuildFile;
4399 settings = {
4400 };
4401 };
4402 F5A0C67B02CF713701000133 = {
4403 fileRef = F5A861C501FA022C0175ACA7;
4404 isa = PBXBuildFile;
4405 settings = {
4406 };
4407 };
4408 F5A0C67C02CF713701000133 = {
4409 fileRef = F5A861C301FA022C0175ACA7;
4410 isa = PBXBuildFile;
4411 settings = {
4412 };
4413 };
4414 F5A0C67D02CF713801000133 = {
4415 fileRef = F5A861C101FA022C0175ACA7;
4416 isa = PBXBuildFile;
4417 settings = {
4418 };
4419 };
4420 F5A0C67E02CF713801000133 = {
4421 fileRef = F5A861C001FA022C0175ACA7;
4422 isa = PBXBuildFile;
4423 settings = {
4424 };
4425 };
4426 F5A0C67F02CF713901000133 = {
4427 fileRef = F5A861BF01FA022C0175ACA7;
4428 isa = PBXBuildFile;
4429 settings = {
4430 };
4431 };
4432 F5A0C68002CF713901000133 = {
4433 fileRef = F5A861BE01FA022C0175ACA7;
4434 isa = PBXBuildFile;
4435 settings = {
4436 };
4437 };
4438 F5A0C68102CF713901000133 = {
4439 fileRef = F5A861BD01FA022C0175ACA7;
4440 isa = PBXBuildFile;
4441 settings = {
4442 };
4443 };
4444 F5A0C68202CF713A01000133 = {
4445 fileRef = F5A861BC01FA022C0175ACA7;
4446 isa = PBXBuildFile;
4447 settings = {
4448 };
4449 };
4450 F5A0C68302CF713A01000133 = {
4451 fileRef = F5A861BB01FA022C0175ACA7;
4452 isa = PBXBuildFile;
4453 settings = {
4454 };
4455 };
4456 F5A0C68402CF713B01000133 = {
4457 fileRef = F5A861B901FA022C0175ACA7;
4458 isa = PBXBuildFile;
4459 settings = {
4460 };
4461 };
4462 F5A0C68502CF713B01000133 = {
4463 fileRef = F5A861B801FA022C0175ACA7;
4464 isa = PBXBuildFile;
4465 settings = {
4466 };
4467 };
4468 F5A0C68602CF713B01000133 = {
4469 fileRef = F5A861B701FA022C0175ACA7;
4470 isa = PBXBuildFile;
4471 settings = {
4472 };
4473 };
4474 F5A0C68702CF713C01000133 = {
4475 fileRef = F5A861B601FA022C0175ACA7;
4476 isa = PBXBuildFile;
4477 settings = {
4478 };
4479 };
4480 F5A0C68802CF713C01000133 = {
4481 fileRef = F5A861B501FA022C0175ACA7;
4482 isa = PBXBuildFile;
4483 settings = {
4484 };
4485 };
4486 F5A0C68902CF713C01000133 = {
4487 fileRef = F5A861B401FA022C0175ACA7;
4488 isa = PBXBuildFile;
4489 settings = {
4490 };
4491 };
4492 F5A0C68A02CF713F01000133 = {
4493 fileRef = F5A861B301FA022C0175ACA7;
4494 isa = PBXBuildFile;
4495 settings = {
4496 };
4497 };
4498 F5A0C68B02CF713F01000133 = {
4499 fileRef = F5A861B201FA022C0175ACA7;
4500 isa = PBXBuildFile;
4501 settings = {
4502 };
4503 };
4504 F5A0C68C02CF714001000133 = {
4505 fileRef = F5A861B101FA022C0175ACA7;
4506 isa = PBXBuildFile;
4507 settings = {
4508 };
4509 };
4510 F5A0C68D02CF714001000133 = {
4511 fileRef = F5A861B001FA022C0175ACA7;
4512 isa = PBXBuildFile;
4513 settings = {
4514 };
4515 };
4516 F5A0C68E02CF714001000133 = {
4517 fileRef = F5A861AF01FA022C0175ACA7;
4518 isa = PBXBuildFile;
4519 settings = {
4520 };
4521 };
4522 F5A0C68F02CF714101000133 = {
4523 fileRef = F5A861AE01FA022C0175ACA7;
4524 isa = PBXBuildFile;
4525 settings = {
4526 };
4527 };
4528 F5A0C69002CF714101000133 = {
4529 fileRef = F5A861AD01FA022C0175ACA7;
4530 isa = PBXBuildFile;
4531 settings = {
4532 };
4533 };
4534 F5A0C69102CF714101000133 = {
4535 fileRef = F5A861AC01FA022C0175ACA7;
4536 isa = PBXBuildFile;
4537 settings = {
4538 };
4539 };
4540 F5A0C69202CF714201000133 = {
4541 fileRef = F5A861AB01FA022C0175ACA7;
4542 isa = PBXBuildFile;
4543 settings = {
4544 };
4545 };
4546 F5A0C69302CF714201000133 = {
4547 fileRef = F5A861AA01FA022C0175ACA7;
4548 isa = PBXBuildFile;
4549 settings = {
4550 };
4551 };
4552 F5A0C69402CF714201000133 = {
4553 fileRef = F5A861A901FA022C0175ACA7;
4554 isa = PBXBuildFile;
4555 settings = {
4556 };
4557 };
4558 F5A0C69502CF714301000133 = {
4559 fileRef = F5A861A801FA022C0175ACA7;
4560 isa = PBXBuildFile;
4561 settings = {
4562 };
4563 };
4564 F5A0C69602CF714301000133 = {
4565 fileRef = F5A861A701FA022C0175ACA7;
4566 isa = PBXBuildFile;
4567 settings = {
4568 };
4569 };
4570 F5A0C69702CF714401000133 = {
4571 fileRef = F5A861A601FA022C0175ACA7;
4572 isa = PBXBuildFile;
4573 settings = {
4574 };
4575 };
4576 F5A0C69802CF714401000133 = {
4577 fileRef = F5A861A501FA022C0175ACA7;
4578 isa = PBXBuildFile;
4579 settings = {
4580 };
4581 };
4582 F5A0C69902CF714501000133 = {
4583 fileRef = F5A861A401FA022C0175ACA7;
4584 isa = PBXBuildFile;
4585 settings = {
4586 };
4587 };
4588 F5A0C69A02CF714501000133 = {
4589 fileRef = F5A861A301FA022C0175ACA7;
4590 isa = PBXBuildFile;
4591 settings = {
4592 };
4593 };
4594 F5A0C69B02CF714601000133 = {
4595 fileRef = F5A861A201FA022C0175ACA7;
4596 isa = PBXBuildFile;
4597 settings = {
4598 };
4599 };
4600 F5A0C69C02CF714601000133 = {
4601 fileRef = F5A861A101FA022C0175ACA7;
4602 isa = PBXBuildFile;
4603 settings = {
4604 };
4605 };
4606 F5A0C69D02CF714601000133 = {
4607 fileRef = F5A861A001FA022C0175ACA7;
4608 isa = PBXBuildFile;
4609 settings = {
4610 };
4611 };
4612 F5A0C69E02CF714701000133 = {
4613 fileRef = F5A8619F01FA022C0175ACA7;
4614 isa = PBXBuildFile;
4615 settings = {
4616 };
4617 };
4618 F5A0C69F02CF714701000133 = {
4619 fileRef = F5A8619E01FA022C0175ACA7;
4620 isa = PBXBuildFile;
4621 settings = {
4622 };
4623 };
4624 F5A0C6A002CF714801000133 = {
4625 fileRef = F5A8619C01FA022C0175ACA7;
4626 isa = PBXBuildFile;
4627 settings = {
4628 };
4629 };
4630 F5A0C6A102CF714801000133 = {
4631 fileRef = F5A8619B01FA022C0175ACA7;
4632 isa = PBXBuildFile;
4633 settings = {
4634 };
4635 };
4636 F5A0C6A202CF714801000133 = {
4637 fileRef = F5A8619A01FA022C0175ACA7;
4638 isa = PBXBuildFile;
4639 settings = {
4640 };
4641 };
4642 F5A85C1A01FA022A0175ACA7 = {
4643 children = (
4644 F5A85C1C01FA022A0175ACA7,
4645 F5FD821D02CCEB8C01000133,
4646 F5FD822102CCECE601000133,
4647 );
4648 isa = PBXGroup;
4649 name = include;
4650 path = ../include;
4651 refType = 2;
4652 };
4653 F5A85C1C01FA022A0175ACA7 = {
4654 children = (
4655 F5A85C1E01FA022A0175ACA7,
4656 F5A85C1F01FA022A0175ACA7,
4657 F5A85C2001FA022A0175ACA7,
4658 F5CC83D90379C17C01000133,
4659 F5A85C2101FA022A0175ACA7,
4660 F5A85C2201FA022A0175ACA7,
4661 F5A85C2301FA022A0175ACA7,
4662 F5A85C2401FA022A0175ACA7,
4663 F5CC83DA0379C17C01000133,
4664 F5A85C2501FA022A0175ACA7,
4665 F5A85C2601FA022A0175ACA7,
4666 F5A85C2701FA022A0175ACA7,
4667 F5A85C2801FA022A0175ACA7,
4668 F5A85C2901FA022A0175ACA7,
4669 F5A85C2A01FA022A0175ACA7,
4670 F5A85C2B01FA022A0175ACA7,
4671 F5A85C2C01FA022A0175ACA7,
4672 F5A85C2D01FA022A0175ACA7,
4673 F5A85C2E01FA022A0175ACA7,
4674 F5A85C2F01FA022A0175ACA7,
4675 F5A85C3001FA022A0175ACA7,
4676 F5A85C3101FA022A0175ACA7,
4677 F5A85C3201FA022A0175ACA7,
4678 F5A85C3301FA022A0175ACA7,
4679 F5A85C3401FA022A0175ACA7,
4680 F5A85C3501FA022A0175ACA7,
4681 F5A85C3601FA022A0175ACA7,
4682 F5A85C3701FA022A0175ACA7,
4683 F5A85C3801FA022A0175ACA7,
4684 F5A85C3901FA022A0175ACA7,
4685 F5A85C3A01FA022A0175ACA7,
4686 F5A85C3B01FA022A0175ACA7,
4687 F5A85C3C01FA022A0175ACA7,
4688 F5A85C3D01FA022A0175ACA7,
4689 F5A85C3E01FA022A0175ACA7,
4690 F5A85C3F01FA022A0175ACA7,
4691 F5A85C4101FA022A0175ACA7,
4692 F5A85C4201FA022A0175ACA7,
4693 F5A85C4301FA022A0175ACA7,
4694 F5A85C4401FA022A0175ACA7,
4695 F5A85C4501FA022A0175ACA7,
4696 F5A85C4601FA022A0175ACA7,
4697 F5CC83DF0379C20901000133,
4698 F5A85C4701FA022A0175ACA7,
4699 F5A85C4801FA022A0175ACA7,
4700 F5A85C4901FA022A0175ACA7,
4701 F5A85C4A01FA022A0175ACA7,
4702 F5A85C4B01FA022A0175ACA7,
4703 F5A85C4C01FA022A0175ACA7,
4704 F5A85C4D01FA022A0175ACA7,
4705 F5A85C4E01FA022A0175ACA7,
4706 F5A85C4F01FA022A0175ACA7,
4707 F5A85C5001FA022A0175ACA7,
4708 F5A85C5101FA022A0175ACA7,
4709 F5A85C5201FA022A0175ACA7,
4710 F5A85C5301FA022A0175ACA7,
4711 F5CC83E00379C20901000133,
4712 F5A85C5401FA022A0175ACA7,
4713 F5A85C5501FA022A0175ACA7,
4714 F5A85C5601FA022A0175ACA7,
4715 F5A85C5701FA022A0175ACA7,
4716 F5A85C5801FA022A0175ACA7,
4717 F5A85C5901FA022A0175ACA7,
4718 F5A85C5A01FA022A0175ACA7,
4719 F5A85C5B01FA022A0175ACA7,
4720 F5A85C5C01FA022A0175ACA7,
4721 F5A85C5D01FA022A0175ACA7,
4722 F5A85C5E01FA022A0175ACA7,
4723 F5A85C5F01FA022A0175ACA7,
4724 F5A85C6001FA022A0175ACA7,
4725 F5CC83E10379C20901000133,
4726 F5A85C6101FA022A0175ACA7,
4727 F5A85C6201FA022A0175ACA7,
4728 F5A85C6301FA022A0175ACA7,
4729 F5A85C6401FA022A0175ACA7,
4730 F5A85C6501FA022A0175ACA7,
4731 F5A85C6601FA022A0175ACA7,
4732 F5A85C6701FA022A0175ACA7,
4733 F5A85C6801FA022A0175ACA7,
4734 F5A85C6901FA022A0175ACA7,
4735 F5A85C6A01FA022A0175ACA7,
4736 F5A85C6B01FA022A0175ACA7,
4737 F5A85C6C01FA022A0175ACA7,
4738 F5A85C6D01FA022A0175ACA7,
4739 F5A85C6E01FA022A0175ACA7,
4740 F5A85C6F01FA022A0175ACA7,
4741 F5A85C7001FA022A0175ACA7,
4742 F5A85C7101FA022A0175ACA7,
4743 F5A85C7201FA022A0175ACA7,
4744 F5A85C7301FA022A0175ACA7,
4745 F5A85C7401FA022A0175ACA7,
4746 F5A85C7501FA022A0175ACA7,
4747 F5A85CB001FA022A0175ACA7,
4748 F5A85CB101FA022A0175ACA7,
4749 F5A85CB201FA022A0175ACA7,
4750 F5A85CB301FA022A0175ACA7,
4751 F5A85CB401FA022A0175ACA7,
4752 F5A85CF901FA022B0175ACA7,
4753 F5CC83E20379C20901000133,
4754 F5A85CFA01FA022B0175ACA7,
4755 F5A85CFB01FA022B0175ACA7,
4756 F5A85CFC01FA022B0175ACA7,
4757 F5A85CFD01FA022B0175ACA7,
4758 F5A85CFF01FA022B0175ACA7,
4759 F5A85D2101FA022B0175ACA7,
4760 F5CC83E30379C20901000133,
4761 F5A85D2201FA022B0175ACA7,
4762 F5A85D2301FA022B0175ACA7,
4763 F5A85D2401FA022B0175ACA7,
4764 F5A85D2501FA022B0175ACA7,
4765 F5A85D2601FA022B0175ACA7,
4766 F5A85D2701FA022B0175ACA7,
4767 F5A85D2801FA022B0175ACA7,
4768 F5A85D2901FA022B0175ACA7,
4769 F5A85D2A01FA022B0175ACA7,
4770 F5A85D2B01FA022B0175ACA7,
4771 F5A85D2C01FA022B0175ACA7,
4772 F5A85D2D01FA022B0175ACA7,
4773 F5A85D2E01FA022B0175ACA7,
4774 F5CC83E40379C20901000133,
4775 F5A85D2F01FA022B0175ACA7,
4776 F5A85D3001FA022B0175ACA7,
4777 F5A85D3101FA022B0175ACA7,
4778 F5A85D3201FA022B0175ACA7,
4779 F5A85D3301FA022B0175ACA7,
4780 F5A85D3401FA022B0175ACA7,
4781 F5A85D3501FA022B0175ACA7,
4782 F5CC83E50379C20901000133,
4783 F5A85D3601FA022B0175ACA7,
4784 F5A85D3701FA022B0175ACA7,
4785 F5A8703A01FA0B7F0175ACA7,
4786 F5A85D3901FA022B0175ACA7,
4787 F5A85D3A01FA022B0175ACA7,
4788 F5A85D3B01FA022B0175ACA7,
4789 F5A85D8E01FA022B0175ACA7,
4790 F5A85D8F01FA022B0175ACA7,
4791 F5A85D9001FA022B0175ACA7,
4792 F5A85D9101FA022B0175ACA7,
4793 F5A85D9201FA022B0175ACA7,
4794 F5A85D9301FA022B0175ACA7,
4795 F5A85D9401FA022B0175ACA7,
4796 F5A85D9501FA022B0175ACA7,
4797 F5A85DAD01FA022B0175ACA7,
4798 F5A85DAE01FA022B0175ACA7,
4799 F5A85DAF01FA022B0175ACA7,
4800 F5A85DF101FA022B0175ACA7,
4801 F5CC83E60379C20901000133,
4802 F5A85DF201FA022B0175ACA7,
4803 F5A85E9701FA022B0175ACA7,
4804 F5A85E9801FA022B0175ACA7,
4805 F5A85E9901FA022B0175ACA7,
4806 F5A85EFF01FA022B0175ACA7,
4807 F5A85F0001FA022B0175ACA7,
4808 F5A85F0101FA022B0175ACA7,
4809 F5A85F0201FA022B0175ACA7,
4810 F5A85F0301FA022B0175ACA7,
4811 F5A85F0401FA022B0175ACA7,
4812 F5A85F0501FA022B0175ACA7,
4813 F5A85F0601FA022B0175ACA7,
4814 F5A85F0701FA022B0175ACA7,
4815 F5A85F0801FA022B0175ACA7,
4816 F5A85F0901FA022B0175ACA7,
4817 F5A85F0A01FA022B0175ACA7,
4818 F5A85F0B01FA022B0175ACA7,
4819 F5A85F0C01FA022B0175ACA7,
4820 F5A85F0D01FA022B0175ACA7,
4821 F5A85F0E01FA022B0175ACA7,
4822 F5CC83E70379C20901000133,
4823 F5A85F1401FA022B0175ACA7,
4824 F5A85F1501FA022B0175ACA7,
4825 F5A85F1601FA022B0175ACA7,
4826 F5A85F1701FA022B0175ACA7,
4827 F5A85F1801FA022B0175ACA7,
4828 F5A85F1901FA022B0175ACA7,
4829 F5A85F1A01FA022B0175ACA7,
4830 F5A85F1B01FA022B0175ACA7,
4831 F5A85F1C01FA022B0175ACA7,
4832 F5A85F1D01FA022B0175ACA7,
4833 F5A85F1E01FA022B0175ACA7,
4834 F5A85F1F01FA022B0175ACA7,
4835 F5A85F2001FA022B0175ACA7,
4836 F5A85F2201FA022B0175ACA7,
4837 F5A85F2301FA022B0175ACA7,
4838 F5A85F2401FA022B0175ACA7,
4839 F5A85F2501FA022B0175ACA7,
4840 F5A85F2601FA022B0175ACA7,
4841 F5A85F2701FA022B0175ACA7,
4842 F5A85F2801FA022B0175ACA7,
4843 F5A85F2901FA022B0175ACA7,
4844 F5A85F2A01FA022B0175ACA7,
4845 F5A85F2B01FA022B0175ACA7,
4846 F5A85F2C01FA022B0175ACA7,
4847 F5A85F2D01FA022B0175ACA7,
4848 F5A85F2E01FA022B0175ACA7,
4849 F5A85F2F01FA022B0175ACA7,
4850 F5A85F3001FA022B0175ACA7,
4851 F5A85F3101FA022B0175ACA7,
4852 F5A85F3201FA022B0175ACA7,
4853 F5A85F3301FA022B0175ACA7,
4854 F5A85F3401FA022B0175ACA7,
4855 F5A85F3501FA022B0175ACA7,
4856 F5A85F3601FA022B0175ACA7,
4857 F5A85F3701FA022B0175ACA7,
4858 F5A85F3801FA022B0175ACA7,
4859 F5A85F3901FA022B0175ACA7,
4860 F5A85F3A01FA022B0175ACA7,
4861 F5A85F3B01FA022B0175ACA7,
4862 F5A85F3C01FA022B0175ACA7,
4863 F5A85F3D01FA022B0175ACA7,
4864 F5A85F3E01FA022B0175ACA7,
4865 F5A85F3F01FA022B0175ACA7,
4866 F5CC83E80379C20901000133,
4867 F5A85F4001FA022B0175ACA7,
4868 F5A85F4101FA022B0175ACA7,
4869 F5A85F4201FA022B0175ACA7,
4870 F5A85F4301FA022B0175ACA7,
4871 F5A85F4401FA022B0175ACA7,
4872 F5A85F4501FA022B0175ACA7,
4873 F5A85F4601FA022B0175ACA7,
4874 F5A85F4701FA022B0175ACA7,
4875 F5A85F4801FA022B0175ACA7,
4876 F5A85F4901FA022B0175ACA7,
4877 F5A85F4A01FA022B0175ACA7,
4878 F5A85F4B01FA022B0175ACA7,
4879 F5A85F4C01FA022B0175ACA7,
4880 F5A85F7301FA022B0175ACA7,
4881 F5A85F7901FA022B0175ACA7,
4882 F5A85F7A01FA022B0175ACA7,
4883 F5A85F7B01FA022B0175ACA7,
4884 F5A85F7C01FA022B0175ACA7,
4885 F5A85F7D01FA022B0175ACA7,
4886 F5A85F7E01FA022B0175ACA7,
4887 F5A85F7F01FA022B0175ACA7,
4888 F5A85F8001FA022B0175ACA7,
4889 F5CC83E90379C20901000133,
4890 F5A85F8201FA022B0175ACA7,
4891 F5A85F8301FA022B0175ACA7,
4892 F5A85F8401FA022B0175ACA7,
4893 F5A85F8501FA022B0175ACA7,
4894 F5A85F8601FA022B0175ACA7,
4895 F5A85F8D01FA022B0175ACA7,
4896 F5A85F8E01FA022B0175ACA7,
4897 F5A85F8F01FA022B0175ACA7,
4898 F5A85F9001FA022B0175ACA7,
4899 F5A85F9101FA022B0175ACA7,
4900 F5A85F9201FA022B0175ACA7,
4901 F5A85F9301FA022B0175ACA7,
4902 F5A85F9401FA022B0175ACA7,
4903 );
4904 isa = PBXGroup;
4905 path = wx;
4906 refType = 4;
4907 };
4908 F5A85C1E01FA022A0175ACA7 = {
4909 isa = PBXFileReference;
4910 path = accel.h;
4911 refType = 4;
4912 };
4913 F5A85C1F01FA022A0175ACA7 = {
4914 isa = PBXFileReference;
4915 path = app.h;
4916 refType = 4;
4917 };
4918 F5A85C2001FA022A0175ACA7 = {
4919 isa = PBXFileReference;
4920 path = arrimpl.cpp;
4921 refType = 4;
4922 };
4923 F5A85C2101FA022A0175ACA7 = {
4924 isa = PBXFileReference;
4925 path = bitmap.h;
4926 refType = 4;
4927 };
4928 F5A85C2201FA022A0175ACA7 = {
4929 isa = PBXFileReference;
4930 path = bmpbuttn.h;
4931 refType = 4;
4932 };
4933 F5A85C2301FA022A0175ACA7 = {
4934 isa = PBXFileReference;
4935 path = brush.h;
4936 refType = 4;
4937 };
4938 F5A85C2401FA022A0175ACA7 = {
4939 isa = PBXFileReference;
4940 path = buffer.h;
4941 refType = 4;
4942 };
4943 F5A85C2501FA022A0175ACA7 = {
4944 isa = PBXFileReference;
4945 path = busyinfo.h;
4946 refType = 4;
4947 };
4948 F5A85C2601FA022A0175ACA7 = {
4949 isa = PBXFileReference;
4950 path = button.h;
4951 refType = 4;
4952 };
4953 F5A85C2701FA022A0175ACA7 = {
4954 isa = PBXFileReference;
4955 path = calctrl.h;
4956 refType = 4;
4957 };
4958 F5A85C2801FA022A0175ACA7 = {
4959 isa = PBXFileReference;
4960 path = caret.h;
4961 refType = 4;
4962 };
4963 F5A85C2901FA022A0175ACA7 = {
4964 isa = PBXFileReference;
4965 path = checkbox.h;
4966 refType = 4;
4967 };
4968 F5A85C2A01FA022A0175ACA7 = {
4969 isa = PBXFileReference;
4970 path = checklst.h;
4971 refType = 4;
4972 };
4973 F5A85C2B01FA022A0175ACA7 = {
4974 isa = PBXFileReference;
4975 path = chkconf.h;
4976 refType = 4;
4977 };
4978 F5A85C2C01FA022A0175ACA7 = {
4979 isa = PBXFileReference;
4980 path = choicdlg.h;
4981 refType = 4;
4982 };
4983 F5A85C2D01FA022A0175ACA7 = {
4984 isa = PBXFileReference;
4985 path = choice.h;
4986 refType = 4;
4987 };
4988 F5A85C2E01FA022A0175ACA7 = {
4989 isa = PBXFileReference;
4990 path = clipbrd.h;
4991 refType = 4;
4992 };
4993 F5A85C2F01FA022A0175ACA7 = {
4994 isa = PBXFileReference;
4995 path = clntdata.h;
4996 refType = 4;
4997 };
4998 F5A85C3001FA022A0175ACA7 = {
4999 isa = PBXFileReference;
5000 path = cmdline.h;
5001 refType = 4;
5002 };
5003 F5A85C3101FA022A0175ACA7 = {
5004 isa = PBXFileReference;
5005 path = cmdproc.h;
5006 refType = 4;
5007 };
5008 F5A85C3201FA022A0175ACA7 = {
5009 isa = PBXFileReference;
5010 path = cmndata.h;
5011 refType = 4;
5012 };
5013 F5A85C3301FA022A0175ACA7 = {
5014 isa = PBXFileReference;
5015 path = colordlg.h;
5016 refType = 4;
5017 };
5018 F5A85C3401FA022A0175ACA7 = {
5019 isa = PBXFileReference;
5020 path = colour.h;
5021 refType = 4;
5022 };
5023 F5A85C3501FA022A0175ACA7 = {
5024 isa = PBXFileReference;
5025 path = combobox.h;
5026 refType = 4;
5027 };
5028 F5A85C3601FA022A0175ACA7 = {
5029 isa = PBXFileReference;
5030 path = confbase.h;
5031 refType = 4;
5032 };
5033 F5A85C3701FA022A0175ACA7 = {
5034 isa = PBXFileReference;
5035 path = config.h;
5036 refType = 4;
5037 };
5038 F5A85C3801FA022A0175ACA7 = {
5039 isa = PBXFileReference;
5040 path = containr.h;
5041 refType = 4;
5042 };
5043 F5A85C3901FA022A0175ACA7 = {
5044 isa = PBXFileReference;
5045 path = control.h;
5046 refType = 4;
5047 };
5048 F5A85C3A01FA022A0175ACA7 = {
5049 isa = PBXFileReference;
5050 path = cshelp.h;
5051 refType = 4;
5052 };
5053 F5A85C3B01FA022A0175ACA7 = {
5054 isa = PBXFileReference;
5055 path = ctrlsub.h;
5056 refType = 4;
5057 };
5058 F5A85C3C01FA022A0175ACA7 = {
5059 isa = PBXFileReference;
5060 path = cursor.h;
5061 refType = 4;
5062 };
5063 F5A85C3D01FA022A0175ACA7 = {
5064 isa = PBXFileReference;
5065 path = dataobj.h;
5066 refType = 4;
5067 };
5068 F5A85C3E01FA022A0175ACA7 = {
5069 isa = PBXFileReference;
5070 path = date.h;
5071 refType = 4;
5072 };
5073 F5A85C3F01FA022A0175ACA7 = {
5074 isa = PBXFileReference;
5075 path = datetime.h;
5076 refType = 4;
5077 };
5078 F5A85C4101FA022A0175ACA7 = {
5079 isa = PBXFileReference;
5080 path = datstrm.h;
5081 refType = 4;
5082 };
5083 F5A85C4201FA022A0175ACA7 = {
5084 isa = PBXFileReference;
5085 path = db.h;
5086 refType = 4;
5087 };
5088 F5A85C4301FA022A0175ACA7 = {
5089 isa = PBXFileReference;
5090 path = dbgrid.h;
5091 refType = 4;
5092 };
5093 F5A85C4401FA022A0175ACA7 = {
5094 isa = PBXFileReference;
5095 path = dbkeyg.h;
5096 refType = 4;
5097 };
5098 F5A85C4501FA022A0175ACA7 = {
5099 isa = PBXFileReference;
5100 path = dbtable.h;
5101 refType = 4;
5102 };
5103 F5A85C4601FA022A0175ACA7 = {
5104 isa = PBXFileReference;
5105 path = dc.h;
5106 refType = 4;
5107 };
5108 F5A85C4701FA022A0175ACA7 = {
5109 isa = PBXFileReference;
5110 path = dcclient.h;
5111 refType = 4;
5112 };
5113 F5A85C4801FA022A0175ACA7 = {
5114 isa = PBXFileReference;
5115 path = dcmemory.h;
5116 refType = 4;
5117 };
5118 F5A85C4901FA022A0175ACA7 = {
5119 isa = PBXFileReference;
5120 path = dcprint.h;
5121 refType = 4;
5122 };
5123 F5A85C4A01FA022A0175ACA7 = {
5124 isa = PBXFileReference;
5125 path = dcps.h;
5126 refType = 4;
5127 };
5128 F5A85C4B01FA022A0175ACA7 = {
5129 isa = PBXFileReference;
5130 path = dcscreen.h;
5131 refType = 4;
5132 };
5133 F5A85C4C01FA022A0175ACA7 = {
5134 isa = PBXFileReference;
5135 path = dde.h;
5136 refType = 4;
5137 };
5138 F5A85C4D01FA022A0175ACA7 = {
5139 isa = PBXFileReference;
5140 path = debug.h;
5141 refType = 4;
5142 };
5143 F5A85C4E01FA022A0175ACA7 = {
5144 isa = PBXFileReference;
5145 path = defs.h;
5146 refType = 4;
5147 };
5148 F5A85C4F01FA022A0175ACA7 = {
5149 isa = PBXFileReference;
5150 path = dialog.h;
5151 refType = 4;
5152 };
5153 F5A85C5001FA022A0175ACA7 = {
5154 isa = PBXFileReference;
5155 path = dialup.h;
5156 refType = 4;
5157 };
5158 F5A85C5101FA022A0175ACA7 = {
5159 isa = PBXFileReference;
5160 path = dir.h;
5161 refType = 4;
5162 };
5163 F5A85C5201FA022A0175ACA7 = {
5164 isa = PBXFileReference;
5165 path = dirctrl.h;
5166 refType = 4;
5167 };
5168 F5A85C5301FA022A0175ACA7 = {
5169 isa = PBXFileReference;
5170 path = dirdlg.h;
5171 refType = 4;
5172 };
5173 F5A85C5401FA022A0175ACA7 = {
5174 isa = PBXFileReference;
5175 path = dnd.h;
5176 refType = 4;
5177 };
5178 F5A85C5501FA022A0175ACA7 = {
5179 isa = PBXFileReference;
5180 path = docmdi.h;
5181 refType = 4;
5182 };
5183 F5A85C5601FA022A0175ACA7 = {
5184 isa = PBXFileReference;
5185 path = docview.h;
5186 refType = 4;
5187 };
5188 F5A85C5701FA022A0175ACA7 = {
5189 isa = PBXFileReference;
5190 path = dragimag.h;
5191 refType = 4;
5192 };
5193 F5A85C5801FA022A0175ACA7 = {
5194 isa = PBXFileReference;
5195 path = dynarray.h;
5196 refType = 4;
5197 };
5198 F5A85C5901FA022A0175ACA7 = {
5199 isa = PBXFileReference;
5200 path = dynlib.h;
5201 refType = 4;
5202 };
5203 F5A85C5A01FA022A0175ACA7 = {
5204 isa = PBXFileReference;
5205 path = dynload.h;
5206 refType = 4;
5207 };
5208 F5A85C5B01FA022A0175ACA7 = {
5209 isa = PBXFileReference;
5210 path = effects.h;
5211 refType = 4;
5212 };
5213 F5A85C5C01FA022A0175ACA7 = {
5214 isa = PBXFileReference;
5215 path = encconv.h;
5216 refType = 4;
5217 };
5218 F5A85C5D01FA022A0175ACA7 = {
5219 isa = PBXFileReference;
5220 path = event.h;
5221 refType = 4;
5222 };
5223 F5A85C5E01FA022A0175ACA7 = {
5224 isa = PBXFileReference;
5225 path = evtloop.h;
5226 refType = 4;
5227 };
5228 F5A85C5F01FA022A0175ACA7 = {
5229 isa = PBXFileReference;
5230 path = expr.h;
5231 refType = 4;
5232 };
5233 F5A85C6001FA022A0175ACA7 = {
5234 isa = PBXFileReference;
5235 path = fdrepdlg.h;
5236 refType = 4;
5237 };
5238 F5A85C6101FA022A0175ACA7 = {
5239 isa = PBXFileReference;
5240 path = ffile.h;
5241 refType = 4;
5242 };
5243 F5A85C6201FA022A0175ACA7 = {
5244 isa = PBXFileReference;
5245 path = file.h;
5246 refType = 4;
5247 };
5248 F5A85C6301FA022A0175ACA7 = {
5249 isa = PBXFileReference;
5250 path = fileconf.h;
5251 refType = 4;
5252 };
5253 F5A85C6401FA022A0175ACA7 = {
5254 isa = PBXFileReference;
5255 path = filedlg.h;
5256 refType = 4;
5257 };
5258 F5A85C6501FA022A0175ACA7 = {
5259 isa = PBXFileReference;
5260 path = filefn.h;
5261 refType = 4;
5262 };
5263 F5A85C6601FA022A0175ACA7 = {
5264 isa = PBXFileReference;
5265 path = filename.h;
5266 refType = 4;
5267 };
5268 F5A85C6701FA022A0175ACA7 = {
5269 isa = PBXFileReference;
5270 path = filesys.h;
5271 refType = 4;
5272 };
5273 F5A85C6801FA022A0175ACA7 = {
5274 isa = PBXFileReference;
5275 path = font.h;
5276 refType = 4;
5277 };
5278 F5A85C6901FA022A0175ACA7 = {
5279 isa = PBXFileReference;
5280 path = fontdlg.h;
5281 refType = 4;
5282 };
5283 F5A85C6A01FA022A0175ACA7 = {
5284 isa = PBXFileReference;
5285 path = fontenc.h;
5286 refType = 4;
5287 };
5288 F5A85C6B01FA022A0175ACA7 = {
5289 isa = PBXFileReference;
5290 path = fontenum.h;
5291 refType = 4;
5292 };
5293 F5A85C6C01FA022A0175ACA7 = {
5294 isa = PBXFileReference;
5295 path = fontmap.h;
5296 refType = 4;
5297 };
5298 F5A85C6D01FA022A0175ACA7 = {
5299 isa = PBXFileReference;
5300 path = fontutil.h;
5301 refType = 4;
5302 };
5303 F5A85C6E01FA022A0175ACA7 = {
5304 isa = PBXFileReference;
5305 path = frame.h;
5306 refType = 4;
5307 };
5308 F5A85C6F01FA022A0175ACA7 = {
5309 isa = PBXFileReference;
5310 path = fs_inet.h;
5311 refType = 4;
5312 };
5313 F5A85C7001FA022A0175ACA7 = {
5314 isa = PBXFileReference;
5315 path = fs_mem.h;
5316 refType = 4;
5317 };
5318 F5A85C7101FA022A0175ACA7 = {
5319 isa = PBXFileReference;
5320 path = fs_zip.h;
5321 refType = 4;
5322 };
5323 F5A85C7201FA022A0175ACA7 = {
5324 isa = PBXFileReference;
5325 path = gauge.h;
5326 refType = 4;
5327 };
5328 F5A85C7301FA022A0175ACA7 = {
5329 isa = PBXFileReference;
5330 path = gdicmn.h;
5331 refType = 4;
5332 };
5333 F5A85C7401FA022A0175ACA7 = {
5334 isa = PBXFileReference;
5335 path = gdiobj.h;
5336 refType = 4;
5337 };
5338 F5A85C7501FA022A0175ACA7 = {
5339 children = (
5340 F5A85C7701FA022A0175ACA7,
5341 F5A85C7801FA022A0175ACA7,
5342 F5A85C7901FA022A0175ACA7,
5343 F5A85C7A01FA022A0175ACA7,
5344 F5A85C7B01FA022A0175ACA7,
5345 F5A85C7D01FA022A0175ACA7,
5346 F5A85C8001FA022A0175ACA7,
5347 F5A85C8101FA022A0175ACA7,
5348 F5A85C8201FA022A0175ACA7,
5349 F5A85C8501FA022A0175ACA7,
5350 F5A85C8601FA022A0175ACA7,
5351 F5A85C8801FA022A0175ACA7,
5352 F5A85C8901FA022A0175ACA7,
5353 F5A85C8A01FA022A0175ACA7,
5354 F5A85C8B01FA022A0175ACA7,
5355 F5A85C8C01FA022A0175ACA7,
5356 F5A85C8D01FA022A0175ACA7,
5357 F5A85C8E01FA022A0175ACA7,
5358 F5A85C8F01FA022A0175ACA7,
5359 F5A85C9001FA022A0175ACA7,
5360 F5A85C9201FA022A0175ACA7,
5361 F5A85C9401FA022A0175ACA7,
5362 F5A85C9501FA022A0175ACA7,
5363 F5A85C9701FA022A0175ACA7,
5364 F5A85C9901FA022A0175ACA7,
5365 F5A85C9A01FA022A0175ACA7,
5366 F5A85C9B01FA022A0175ACA7,
5367 F5A85C9C01FA022A0175ACA7,
5368 F5A85C9D01FA022A0175ACA7,
5369 F5A85C9E01FA022A0175ACA7,
5370 F5A85CA101FA022A0175ACA7,
5371 F5A85CA201FA022A0175ACA7,
5372 F5A85CA301FA022A0175ACA7,
5373 F5A85CA401FA022A0175ACA7,
5374 F5A85CA501FA022A0175ACA7,
5375 F5A85CA601FA022A0175ACA7,
5376 F5A85CA701FA022A0175ACA7,
5377 F5A85CA801FA022A0175ACA7,
5378 F5A85CA901FA022A0175ACA7,
5379 F5A85CAC01FA022A0175ACA7,
5380 F5A85CAD01FA022A0175ACA7,
5381 F5A85CAF01FA022A0175ACA7,
5382 );
5383 isa = PBXGroup;
5384 path = generic;
5385 refType = 4;
5386 };
5387 F5A85C7701FA022A0175ACA7 = {
5388 isa = PBXFileReference;
5389 path = accel.h;
5390 refType = 4;
5391 };
5392 F5A85C7801FA022A0175ACA7 = {
5393 isa = PBXFileReference;
5394 path = calctrl.h;
5395 refType = 4;
5396 };
5397 F5A85C7901FA022A0175ACA7 = {
5398 isa = PBXFileReference;
5399 path = caret.h;
5400 refType = 4;
5401 };
5402 F5A85C7A01FA022A0175ACA7 = {
5403 isa = PBXFileReference;
5404 path = choicdgg.h;
5405 refType = 4;
5406 };
5407 F5A85C7B01FA022A0175ACA7 = {
5408 isa = PBXFileReference;
5409 path = colrdlgg.h;
5410 refType = 4;
5411 };
5412 F5A85C7D01FA022A0175ACA7 = {
5413 isa = PBXFileReference;
5414 path = dcpsg.h;
5415 refType = 4;
5416 };
5417 F5A85C8001FA022A0175ACA7 = {
5418 isa = PBXFileReference;
5419 path = dirctrlg.h;
5420 refType = 4;
5421 };
5422 F5A85C8101FA022A0175ACA7 = {
5423 isa = PBXFileReference;
5424 path = dirdlgg.h;
5425 refType = 4;
5426 };
5427 F5A85C8201FA022A0175ACA7 = {
5428 isa = PBXFileReference;
5429 path = dragimgg.h;
5430 refType = 4;
5431 };
5432 F5A85C8501FA022A0175ACA7 = {
5433 isa = PBXFileReference;
5434 path = fdrepdlg.h;
5435 refType = 4;
5436 };
5437 F5A85C8601FA022A0175ACA7 = {
5438 isa = PBXFileReference;
5439 path = filedlgg.h;
5440 refType = 4;
5441 };
5442 F5A85C8801FA022A0175ACA7 = {
5443 isa = PBXFileReference;
5444 path = fontdlgg.h;
5445 refType = 4;
5446 };
5447 F5A85C8901FA022A0175ACA7 = {
5448 isa = PBXFileReference;
5449 path = grid.h;
5450 refType = 4;
5451 };
5452 F5A85C8A01FA022A0175ACA7 = {
5453 isa = PBXFileReference;
5454 path = gridctrl.h;
5455 refType = 4;
5456 };
5457 F5A85C8B01FA022A0175ACA7 = {
5458 isa = PBXFileReference;
5459 path = gridg.h;
5460 refType = 4;
5461 };
5462 F5A85C8C01FA022A0175ACA7 = {
5463 isa = PBXFileReference;
5464 path = gridsel.h;
5465 refType = 4;
5466 };
5467 F5A85C8D01FA022A0175ACA7 = {
5468 isa = PBXFileReference;
5469 path = helpext.h;
5470 refType = 4;
5471 };
5472 F5A85C8E01FA022A0175ACA7 = {
5473 isa = PBXFileReference;
5474 path = helphtml.h;
5475 refType = 4;
5476 };
5477 F5A85C8F01FA022A0175ACA7 = {
5478 isa = PBXFileReference;
5479 path = helpwxht.h;
5480 refType = 4;
5481 };
5482 F5A85C9001FA022A0175ACA7 = {
5483 isa = PBXFileReference;
5484 path = helpxlp.h;
5485 refType = 4;
5486 };
5487 F5A85C9201FA022A0175ACA7 = {
5488 isa = PBXFileReference;
5489 path = imaglist.h;
5490 refType = 4;
5491 };
5492 F5A85C9401FA022A0175ACA7 = {
5493 isa = PBXFileReference;
5494 path = laywin.h;
5495 refType = 4;
5496 };
5497 F5A85C9501FA022A0175ACA7 = {
5498 isa = PBXFileReference;
5499 path = listctrl.h;
5500 refType = 4;
5501 };
5502 F5A85C9701FA022A0175ACA7 = {
5503 isa = PBXFileReference;
5504 path = msgdlgg.h;
5505 refType = 4;
5506 };
5507 F5A85C9901FA022A0175ACA7 = {
5508 isa = PBXFileReference;
5509 path = notebook.h;
5510 refType = 4;
5511 };
5512 F5A85C9A01FA022A0175ACA7 = {
5513 isa = PBXFileReference;
5514 path = paletteg.h;
5515 refType = 4;
5516 };
5517 F5A85C9B01FA022A0175ACA7 = {
5518 isa = PBXFileReference;
5519 path = panelg.h;
5520 refType = 4;
5521 };
5522 F5A85C9C01FA022A0175ACA7 = {
5523 isa = PBXFileReference;
5524 path = printps.h;
5525 refType = 4;
5526 };
5527 F5A85C9D01FA022A0175ACA7 = {
5528 isa = PBXFileReference;
5529 path = prntdlgg.h;
5530 refType = 4;
5531 };
5532 F5A85C9E01FA022A0175ACA7 = {
5533 isa = PBXFileReference;
5534 path = progdlgg.h;
5535 refType = 4;
5536 };
5537 F5A85CA101FA022A0175ACA7 = {
5538 isa = PBXFileReference;
5539 path = sashwin.h;
5540 refType = 4;
5541 };
5542 F5A85CA201FA022A0175ACA7 = {
5543 isa = PBXFileReference;
5544 path = scrolwin.h;
5545 refType = 4;
5546 };
5547 F5A85CA301FA022A0175ACA7 = {
5548 isa = PBXFileReference;
5549 path = spinctlg.h;
5550 refType = 4;
5551 };
5552 F5A85CA401FA022A0175ACA7 = {
5553 isa = PBXFileReference;
5554 path = splash.h;
5555 refType = 4;
5556 };
5557 F5A85CA501FA022A0175ACA7 = {
5558 isa = PBXFileReference;
5559 path = splitter.h;
5560 refType = 4;
5561 };
5562 F5A85CA601FA022A0175ACA7 = {
5563 isa = PBXFileReference;
5564 path = statline.h;
5565 refType = 4;
5566 };
5567 F5A85CA701FA022A0175ACA7 = {
5568 isa = PBXFileReference;
5569 path = statusbr.h;
5570 refType = 4;
5571 };
5572 F5A85CA801FA022A0175ACA7 = {
5573 isa = PBXFileReference;
5574 path = tabg.h;
5575 refType = 4;
5576 };
5577 F5A85CA901FA022A0175ACA7 = {
5578 isa = PBXFileReference;
5579 path = textdlgg.h;
5580 refType = 4;
5581 };
5582 F5A85CAC01FA022A0175ACA7 = {
5583 isa = PBXFileReference;
5584 path = treectlg.h;
5585 refType = 4;
5586 };
5587 F5A85CAD01FA022A0175ACA7 = {
5588 isa = PBXFileReference;
5589 path = treelay.h;
5590 refType = 4;
5591 };
5592 F5A85CAF01FA022A0175ACA7 = {
5593 isa = PBXFileReference;
5594 path = wizard.h;
5595 refType = 4;
5596 };
5597 F5A85CB001FA022A0175ACA7 = {
5598 isa = PBXFileReference;
5599 path = geometry.h;
5600 refType = 4;
5601 };
5602 F5A85CB101FA022A0175ACA7 = {
5603 isa = PBXFileReference;
5604 path = gifdecod.h;
5605 refType = 4;
5606 };
5607 F5A85CB201FA022A0175ACA7 = {
5608 isa = PBXFileReference;
5609 path = glcanvas.h;
5610 refType = 4;
5611 };
5612 F5A85CB301FA022A0175ACA7 = {
5613 isa = PBXFileReference;
5614 path = grid.h;
5615 refType = 4;
5616 };
5617 F5A85CB401FA022A0175ACA7 = {
5618 isa = PBXFileReference;
5619 path = gsocket.h;
5620 refType = 4;
5621 };
5622 F5A85CF901FA022B0175ACA7 = {
5623 isa = PBXFileReference;
5624 path = hash.h;
5625 refType = 4;
5626 };
5627 F5A85CFA01FA022B0175ACA7 = {
5628 isa = PBXFileReference;
5629 path = help.h;
5630 refType = 4;
5631 };
5632 F5A85CFB01FA022B0175ACA7 = {
5633 isa = PBXFileReference;
5634 path = helpbase.h;
5635 refType = 4;
5636 };
5637 F5A85CFC01FA022B0175ACA7 = {
5638 isa = PBXFileReference;
5639 path = helphtml.h;
5640 refType = 4;
5641 };
5642 F5A85CFD01FA022B0175ACA7 = {
5643 isa = PBXFileReference;
5644 path = helpwin.h;
5645 refType = 4;
5646 };
5647 F5A85CFF01FA022B0175ACA7 = {
5648 children = (
5649 F5A85D0101FA022B0175ACA7,
5650 F5A85D0201FA022B0175ACA7,
5651 F5A85D0301FA022B0175ACA7,
5652 F5A85D0401FA022B0175ACA7,
5653 F5A85D0501FA022B0175ACA7,
5654 F5A85D0601FA022B0175ACA7,
5655 F5A85D0701FA022B0175ACA7,
5656 F5A85D0801FA022B0175ACA7,
5657 F5A85D0901FA022B0175ACA7,
5658 F5A85D0A01FA022B0175ACA7,
5659 F5A85D0B01FA022B0175ACA7,
5660 F5A85D0C01FA022B0175ACA7,
5661 F5A85D0D01FA022B0175ACA7,
5662 F5A85D2001FA022B0175ACA7,
5663 );
5664 isa = PBXGroup;
5665 path = html;
5666 refType = 4;
5667 };
5668 F5A85D0101FA022B0175ACA7 = {
5669 isa = PBXFileReference;
5670 path = forcelnk.h;
5671 refType = 4;
5672 };
5673 F5A85D0201FA022B0175ACA7 = {
5674 isa = PBXFileReference;
5675 path = helpctrl.h;
5676 refType = 4;
5677 };
5678 F5A85D0301FA022B0175ACA7 = {
5679 isa = PBXFileReference;
5680 path = helpdata.h;
5681 refType = 4;
5682 };
5683 F5A85D0401FA022B0175ACA7 = {
5684 isa = PBXFileReference;
5685 path = helpfrm.h;
5686 refType = 4;
5687 };
5688 F5A85D0501FA022B0175ACA7 = {
5689 isa = PBXFileReference;
5690 path = htmlcell.h;
5691 refType = 4;
5692 };
5693 F5A85D0601FA022B0175ACA7 = {
5694 isa = PBXFileReference;
5695 path = htmldefs.h;
5696 refType = 4;
5697 };
5698 F5A85D0701FA022B0175ACA7 = {
5699 isa = PBXFileReference;
5700 path = htmlfilt.h;
5701 refType = 4;
5702 };
5703 F5A85D0801FA022B0175ACA7 = {
5704 isa = PBXFileReference;
5705 path = htmlpars.h;
5706 refType = 4;
5707 };
5708 F5A85D0901FA022B0175ACA7 = {
5709 isa = PBXFileReference;
5710 path = htmlproc.h;
5711 refType = 4;
5712 };
5713 F5A85D0A01FA022B0175ACA7 = {
5714 isa = PBXFileReference;
5715 path = htmltag.h;
5716 refType = 4;
5717 };
5718 F5A85D0B01FA022B0175ACA7 = {
5719 isa = PBXFileReference;
5720 path = htmlwin.h;
5721 refType = 4;
5722 };
5723 F5A85D0C01FA022B0175ACA7 = {
5724 isa = PBXFileReference;
5725 path = htmprint.h;
5726 refType = 4;
5727 };
5728 F5A85D0D01FA022B0175ACA7 = {
5729 isa = PBXFileReference;
5730 path = m_templ.h;
5731 refType = 4;
5732 };
5733 F5A85D2001FA022B0175ACA7 = {
5734 isa = PBXFileReference;
5735 path = winpars.h;
5736 refType = 4;
5737 };
5738 F5A85D2101FA022B0175ACA7 = {
5739 isa = PBXFileReference;
5740 path = icon.h;
5741 refType = 4;
5742 };
5743 F5A85D2201FA022B0175ACA7 = {
5744 isa = PBXFileReference;
5745 path = imagbmp.h;
5746 refType = 4;
5747 };
5748 F5A85D2301FA022B0175ACA7 = {
5749 isa = PBXFileReference;
5750 path = image.h;
5751 refType = 4;
5752 };
5753 F5A85D2401FA022B0175ACA7 = {
5754 isa = PBXFileReference;
5755 path = imaggif.h;
5756 refType = 4;
5757 };
5758 F5A85D2501FA022B0175ACA7 = {
5759 isa = PBXFileReference;
5760 path = imagiff.h;
5761 refType = 4;
5762 };
5763 F5A85D2601FA022B0175ACA7 = {
5764 isa = PBXFileReference;
5765 path = imagjpeg.h;
5766 refType = 4;
5767 };
5768 F5A85D2701FA022B0175ACA7 = {
5769 isa = PBXFileReference;
5770 path = imaglist.h;
5771 refType = 4;
5772 };
5773 F5A85D2801FA022B0175ACA7 = {
5774 isa = PBXFileReference;
5775 path = imagpcx.h;
5776 refType = 4;
5777 };
5778 F5A85D2901FA022B0175ACA7 = {
5779 isa = PBXFileReference;
5780 path = imagpng.h;
5781 refType = 4;
5782 };
5783 F5A85D2A01FA022B0175ACA7 = {
5784 isa = PBXFileReference;
5785 path = imagpnm.h;
5786 refType = 4;
5787 };
5788 F5A85D2B01FA022B0175ACA7 = {
5789 isa = PBXFileReference;
5790 path = imagtiff.h;
5791 refType = 4;
5792 };
5793 F5A85D2C01FA022B0175ACA7 = {
5794 isa = PBXFileReference;
5795 path = imagxpm.h;
5796 refType = 4;
5797 };
5798 F5A85D2D01FA022B0175ACA7 = {
5799 isa = PBXFileReference;
5800 path = intl.h;
5801 refType = 4;
5802 };
5803 F5A85D2E01FA022B0175ACA7 = {
5804 isa = PBXFileReference;
5805 path = ioswrap.h;
5806 refType = 4;
5807 };
5808 F5A85D2F01FA022B0175ACA7 = {
5809 isa = PBXFileReference;
5810 path = ipcbase.h;
5811 refType = 4;
5812 };
5813 F5A85D3001FA022B0175ACA7 = {
5814 isa = PBXFileReference;
5815 path = isql.h;
5816 refType = 4;
5817 };
5818 F5A85D3101FA022B0175ACA7 = {
5819 isa = PBXFileReference;
5820 path = isqlext.h;
5821 refType = 4;
5822 };
5823 F5A85D3201FA022B0175ACA7 = {
5824 isa = PBXFileReference;
5825 path = joystick.h;
5826 refType = 4;
5827 };
5828 F5A85D3301FA022B0175ACA7 = {
5829 isa = PBXFileReference;
5830 path = layout.h;
5831 refType = 4;
5832 };
5833 F5A85D3401FA022B0175ACA7 = {
5834 isa = PBXFileReference;
5835 path = laywin.h;
5836 refType = 4;
5837 };
5838 F5A85D3501FA022B0175ACA7 = {
5839 isa = PBXFileReference;
5840 path = list.h;
5841 refType = 4;
5842 };
5843 F5A85D3601FA022B0175ACA7 = {
5844 isa = PBXFileReference;
5845 path = listbox.h;
5846 refType = 4;
5847 };
5848 F5A85D3701FA022B0175ACA7 = {
5849 isa = PBXFileReference;
5850 path = listctrl.h;
5851 refType = 4;
5852 };
5853 F5A85D3901FA022B0175ACA7 = {
5854 isa = PBXFileReference;
5855 path = log.h;
5856 refType = 4;
5857 };
5858 F5A85D3A01FA022B0175ACA7 = {
5859 isa = PBXFileReference;
5860 path = longlong.h;
5861 refType = 4;
5862 };
5863 F5A85D3B01FA022B0175ACA7 = {
5864 children = (
5865 F5A85D3C01FA022B0175ACA7,
5866 F5A85D3D01FA022B0175ACA7,
5867 F5A85D3E01FA022B0175ACA7,
5868 F5A85D3F01FA022B0175ACA7,
5869 F5A85D4001FA022B0175ACA7,
5870 F5A85D4101FA022B0175ACA7,
5871 F5A85D4201FA022B0175ACA7,
5872 F5A85D4301FA022B0175ACA7,
5873 F5A85D4401FA022B0175ACA7,
5874 F5A85D4501FA022B0175ACA7,
5875 F5A85D4601FA022B0175ACA7,
5876 F5A85D4701FA022B0175ACA7,
5877 F5A85D4801FA022B0175ACA7,
5878 F5A85D4901FA022B0175ACA7,
5879 F5A85D4A01FA022B0175ACA7,
5880 F5A85D4B01FA022B0175ACA7,
5881 F5A85D4C01FA022B0175ACA7,
5882 F5A85D4D01FA022B0175ACA7,
5883 F5A85D4E01FA022B0175ACA7,
5884 F5A85D4F01FA022B0175ACA7,
5885 F5A85D5001FA022B0175ACA7,
5886 F5A85D5101FA022B0175ACA7,
5887 F5A85D5201FA022B0175ACA7,
5888 F5A85D5301FA022B0175ACA7,
5889 F5A85D5401FA022B0175ACA7,
5890 F5A85D5501FA022B0175ACA7,
5891 F5A85D5601FA022B0175ACA7,
5892 F5A85D5701FA022B0175ACA7,
5893 F5A85D5801FA022B0175ACA7,
5894 F5A85D5901FA022B0175ACA7,
5895 F5A85D5A01FA022B0175ACA7,
5896 F5A85D5B01FA022B0175ACA7,
5897 F5A85D5C01FA022B0175ACA7,
5898 F5A85D5D01FA022B0175ACA7,
5899 F5A85D5E01FA022B0175ACA7,
5900 F5A85D6001FA022B0175ACA7,
5901 F5A85D6101FA022B0175ACA7,
5902 F5A85D6201FA022B0175ACA7,
5903 F5A85D6301FA022B0175ACA7,
5904 F5A85D6401FA022B0175ACA7,
5905 F5A85D6501FA022B0175ACA7,
5906 F5A85D6601FA022B0175ACA7,
5907 F5A85D6701FA022B0175ACA7,
5908 F5A85D6801FA022B0175ACA7,
5909 F5A85D6901FA022B0175ACA7,
5910 F5A85D6A01FA022B0175ACA7,
5911 F5A85D6B01FA022B0175ACA7,
5912 F5A85D6C01FA022B0175ACA7,
5913 F5A85D6D01FA022B0175ACA7,
5914 F5A85D6E01FA022B0175ACA7,
5915 F5A85D6F01FA022B0175ACA7,
5916 F5A85D7001FA022B0175ACA7,
5917 F5A85D7101FA022B0175ACA7,
5918 F5A85D7201FA022B0175ACA7,
5919 F5A85D7301FA022B0175ACA7,
5920 F5A85D7401FA022B0175ACA7,
5921 F5A85D7501FA022B0175ACA7,
5922 F5A85D7601FA022B0175ACA7,
5923 F5A85D7701FA022B0175ACA7,
5924 F5A85D7801FA022B0175ACA7,
5925 F5A85D7901FA022B0175ACA7,
5926 F5A85D7A01FA022B0175ACA7,
5927 F5A85D7B01FA022B0175ACA7,
5928 F5A85D7C01FA022B0175ACA7,
5929 F5A85D7D01FA022B0175ACA7,
5930 F5A85D7E01FA022B0175ACA7,
5931 F5A85D7F01FA022B0175ACA7,
5932 F5A85D8001FA022B0175ACA7,
5933 F5A85D8101FA022B0175ACA7,
5934 F5A85D8201FA022B0175ACA7,
5935 F5A85D8301FA022B0175ACA7,
5936 F5A85D8401FA022B0175ACA7,
5937 F5A85D8501FA022B0175ACA7,
5938 F5A85D8601FA022B0175ACA7,
5939 F5A85D8701FA022B0175ACA7,
5940 F5A85D8801FA022B0175ACA7,
5941 F5A85D8901FA022B0175ACA7,
5942 F5A85D8A01FA022B0175ACA7,
5943 F5A85D8B01FA022B0175ACA7,
5944 F5A85D8C01FA022B0175ACA7,
5945 F5A85D8D01FA022B0175ACA7,
5946 );
5947 isa = PBXGroup;
5948 path = mac;
5949 refType = 4;
5950 };
5951 F5A85D3C01FA022B0175ACA7 = {
5952 isa = PBXFileReference;
5953 path = accel.h;
5954 refType = 4;
5955 };
5956 F5A85D3D01FA022B0175ACA7 = {
5957 isa = PBXFileReference;
5958 path = aga.h;
5959 refType = 4;
5960 };
5961 F5A85D3E01FA022B0175ACA7 = {
5962 isa = PBXFileReference;
5963 path = app.h;
5964 refType = 4;
5965 };
5966 F5A85D3F01FA022B0175ACA7 = {
5967 isa = PBXFileReference;
5968 path = bitmap.h;
5969 refType = 4;
5970 };
5971 F5A85D4001FA022B0175ACA7 = {
5972 isa = PBXFileReference;
5973 path = bmpbuttn.h;
5974 refType = 4;
5975 };
5976 F5A85D4101FA022B0175ACA7 = {
5977 isa = PBXFileReference;
5978 path = brush.h;
5979 refType = 4;
5980 };
5981 F5A85D4201FA022B0175ACA7 = {
5982 isa = PBXFileReference;
5983 path = button.h;
5984 refType = 4;
5985 };
5986 F5A85D4301FA022B0175ACA7 = {
5987 isa = PBXFileReference;
5988 path = checkbox.h;
5989 refType = 4;
5990 };
5991 F5A85D4401FA022B0175ACA7 = {
5992 isa = PBXFileReference;
5993 path = checklst.h;
5994 refType = 4;
5995 };
5996 F5A85D4501FA022B0175ACA7 = {
5997 isa = PBXFileReference;
5998 path = choice.h;
5999 refType = 4;
6000 };
6001 F5A85D4601FA022B0175ACA7 = {
6002 isa = PBXFileReference;
6003 path = clipbrd.h;
6004 refType = 4;
6005 };
6006 F5A85D4701FA022B0175ACA7 = {
6007 isa = PBXFileReference;
6008 path = colordlg.h;
6009 refType = 4;
6010 };
6011 F5A85D4801FA022B0175ACA7 = {
6012 isa = PBXFileReference;
6013 path = colour.h;
6014 refType = 4;
6015 };
6016 F5A85D4901FA022B0175ACA7 = {
6017 isa = PBXFileReference;
6018 path = combobox.h;
6019 refType = 4;
6020 };
6021 F5A85D4A01FA022B0175ACA7 = {
6022 isa = PBXFileReference;
6023 path = control.h;
6024 refType = 4;
6025 };
6026 F5A85D4B01FA022B0175ACA7 = {
6027 isa = PBXFileReference;
6028 path = cursor.h;
6029 refType = 4;
6030 };
6031 F5A85D4C01FA022B0175ACA7 = {
6032 isa = PBXFileReference;
6033 path = dataform.h;
6034 refType = 4;
6035 };
6036 F5A85D4D01FA022B0175ACA7 = {
6037 isa = PBXFileReference;
6038 path = dataobj.h;
6039 refType = 4;
6040 };
6041 F5A85D4E01FA022B0175ACA7 = {
6042 isa = PBXFileReference;
6043 path = dataobj2.h;
6044 refType = 4;
6045 };
6046 F5A85D4F01FA022B0175ACA7 = {
6047 isa = PBXFileReference;
6048 path = dc.h;
6049 refType = 4;
6050 };
6051 F5A85D5001FA022B0175ACA7 = {
6052 isa = PBXFileReference;
6053 path = dcclient.h;
6054 refType = 4;
6055 };
6056 F5A85D5101FA022B0175ACA7 = {
6057 isa = PBXFileReference;
6058 path = dcmemory.h;
6059 refType = 4;
6060 };
6061 F5A85D5201FA022B0175ACA7 = {
6062 isa = PBXFileReference;
6063 path = dcprint.h;
6064 refType = 4;
6065 };
6066 F5A85D5301FA022B0175ACA7 = {
6067 isa = PBXFileReference;
6068 path = dcscreen.h;
6069 refType = 4;
6070 };
6071 F5A85D5401FA022B0175ACA7 = {
6072 isa = PBXFileReference;
6073 path = dialog.h;
6074 refType = 4;
6075 };
6076 F5A85D5501FA022B0175ACA7 = {
6077 isa = PBXFileReference;
6078 path = dirdlg.h;
6079 refType = 4;
6080 };
6081 F5A85D5601FA022B0175ACA7 = {
6082 isa = PBXFileReference;
6083 path = dnd.h;
6084 refType = 4;
6085 };
6086 F5A85D5701FA022B0175ACA7 = {
6087 isa = PBXFileReference;
6088 path = filedlg.h;
6089 refType = 4;
6090 };
6091 F5A85D5801FA022B0175ACA7 = {
6092 isa = PBXFileReference;
6093 path = font.h;
6094 refType = 4;
6095 };
6096 F5A85D5901FA022B0175ACA7 = {
6097 isa = PBXFileReference;
6098 path = fontdlg.h;
6099 refType = 4;
6100 };
6101 F5A85D5A01FA022B0175ACA7 = {
6102 isa = PBXFileReference;
6103 path = frame.h;
6104 refType = 4;
6105 };
6106 F5A85D5B01FA022B0175ACA7 = {
6107 isa = PBXFileReference;
6108 path = gauge.h;
6109 refType = 4;
6110 };
6111 F5A85D5C01FA022B0175ACA7 = {
6112 isa = PBXFileReference;
6113 path = gdiobj.h;
6114 refType = 4;
6115 };
6116 F5A85D5D01FA022B0175ACA7 = {
6117 isa = PBXFileReference;
6118 path = glcanvas.h;
6119 refType = 4;
6120 };
6121 F5A85D5E01FA022B0175ACA7 = {
6122 isa = PBXFileReference;
6123 path = gsockmac.h;
6124 refType = 4;
6125 };
6126 F5A85D6001FA022B0175ACA7 = {
6127 isa = PBXFileReference;
6128 path = icon.h;
6129 refType = 4;
6130 };
6131 F5A85D6101FA022B0175ACA7 = {
6132 isa = PBXFileReference;
6133 path = imaglist.h;
6134 refType = 4;
6135 };
6136 F5A85D6201FA022B0175ACA7 = {
6137 isa = PBXFileReference;
6138 path = joystick.h;
6139 refType = 4;
6140 };
6141 F5A85D6301FA022B0175ACA7 = {
6142 isa = PBXFileReference;
6143 path = listbox.h;
6144 refType = 4;
6145 };
6146 F5A85D6401FA022B0175ACA7 = {
6147 isa = PBXFileReference;
6148 path = listctrl.h;
6149 refType = 4;
6150 };
6151 F5A85D6501FA022B0175ACA7 = {
6152 isa = PBXFileReference;
6153 path = macnotfy.h;
6154 refType = 4;
6155 };
6156 F5A85D6601FA022B0175ACA7 = {
6157 isa = PBXFileReference;
6158 path = macsock.h;
6159 refType = 4;
6160 };
6161 F5A85D6701FA022B0175ACA7 = {
6162 isa = PBXFileReference;
6163 path = mdi.h;
6164 refType = 4;
6165 };
6166 F5A85D6801FA022B0175ACA7 = {
6167 isa = PBXFileReference;
6168 path = menu.h;
6169 refType = 4;
6170 };
6171 F5A85D6901FA022B0175ACA7 = {
6172 isa = PBXFileReference;
6173 path = menuitem.h;
6174 refType = 4;
6175 };
6176 F5A85D6A01FA022B0175ACA7 = {
6177 isa = PBXFileReference;
6178 path = metafile.h;
6179 refType = 4;
6180 };
6181 F5A85D6B01FA022B0175ACA7 = {
6182 isa = PBXFileReference;
6183 path = mimetype.h;
6184 refType = 4;
6185 };
6186 F5A85D6C01FA022B0175ACA7 = {
6187 isa = PBXFileReference;
6188 path = minifram.h;
6189 refType = 4;
6190 };
6191 F5A85D6D01FA022B0175ACA7 = {
6192 isa = PBXFileReference;
6193 path = msgdlg.h;
6194 refType = 4;
6195 };
6196 F5A85D6E01FA022B0175ACA7 = {
6197 isa = PBXFileReference;
6198 path = notebook.h;
6199 refType = 4;
6200 };
6201 F5A85D6F01FA022B0175ACA7 = {
6202 isa = PBXFileReference;
6203 path = palette.h;
6204 refType = 4;
6205 };
6206 F5A85D7001FA022B0175ACA7 = {
6207 isa = PBXFileReference;
6208 path = pen.h;
6209 refType = 4;
6210 };
6211 F5A85D7101FA022B0175ACA7 = {
6212 isa = PBXFileReference;
6213 path = pnghand.h;
6214 refType = 4;
6215 };
6216 F5A85D7201FA022B0175ACA7 = {
6217 isa = PBXFileReference;
6218 path = pngread.h;
6219 refType = 4;
6220 };
6221 F5A85D7301FA022B0175ACA7 = {
6222 isa = PBXFileReference;
6223 path = print.h;
6224 refType = 4;
6225 };
6226 F5A85D7401FA022B0175ACA7 = {
6227 isa = PBXFileReference;
6228 path = printdlg.h;
6229 refType = 4;
6230 };
6231 F5A85D7501FA022B0175ACA7 = {
6232 isa = PBXFileReference;
6233 path = printmac.h;
6234 refType = 4;
6235 };
6236 F5A85D7601FA022B0175ACA7 = {
6237 isa = PBXFileReference;
6238 path = private.h;
6239 refType = 4;
6240 };
6241 F5A85D7701FA022B0175ACA7 = {
6242 isa = PBXFileReference;
6243 path = radiobox.h;
6244 refType = 4;
6245 };
6246 F5A85D7801FA022B0175ACA7 = {
6247 isa = PBXFileReference;
6248 path = radiobut.h;
6249 refType = 4;
6250 };
6251 F5A85D7901FA022B0175ACA7 = {
6252 isa = PBXFileReference;
6253 path = region.h;
6254 refType = 4;
6255 };
6256 F5A85D7A01FA022B0175ACA7 = {
6257 isa = PBXFileReference;
6258 path = scrolbar.h;
6259 refType = 4;
6260 };
6261 F5A85D7B01FA022B0175ACA7 = {
6262 isa = PBXFileReference;
6263 path = setup0.h;
6264 refType = 4;
6265 };
6266 F5A85D7C01FA022B0175ACA7 = {
6267 isa = PBXFileReference;
6268 path = slider.h;
6269 refType = 4;
6270 };
6271 F5A85D7D01FA022B0175ACA7 = {
6272 isa = PBXFileReference;
6273 path = spinbutt.h;
6274 refType = 4;
6275 };
6276 F5A85D7E01FA022B0175ACA7 = {
6277 isa = PBXFileReference;
6278 path = statbmp.h;
6279 refType = 4;
6280 };
6281 F5A85D7F01FA022B0175ACA7 = {
6282 isa = PBXFileReference;
6283 path = statbox.h;
6284 refType = 4;
6285 };
6286 F5A85D8001FA022B0175ACA7 = {
6287 isa = PBXFileReference;
6288 path = statline.h;
6289 refType = 4;
6290 };
6291 F5A85D8101FA022B0175ACA7 = {
6292 isa = PBXFileReference;
6293 path = stattext.h;
6294 refType = 4;
6295 };
6296 F5A85D8201FA022B0175ACA7 = {
6297 isa = PBXFileReference;
6298 path = statusbr.h;
6299 refType = 4;
6300 };
6301 F5A85D8301FA022B0175ACA7 = {
6302 isa = PBXFileReference;
6303 path = tabctrl.h;
6304 refType = 4;
6305 };
6306 F5A85D8401FA022B0175ACA7 = {
6307 isa = PBXFileReference;
6308 path = taskbar.h;
6309 refType = 4;
6310 };
6311 F5A85D8501FA022B0175ACA7 = {
6312 isa = PBXFileReference;
6313 path = textctrl.h;
6314 refType = 4;
6315 };
6316 F5A85D8601FA022B0175ACA7 = {
6317 isa = PBXFileReference;
6318 path = timer.h;
6319 refType = 4;
6320 };
6321 F5A85D8701FA022B0175ACA7 = {
6322 isa = PBXFileReference;
6323 path = toolbar.h;
6324 refType = 4;
6325 };
6326 F5A85D8801FA022B0175ACA7 = {
6327 isa = PBXFileReference;
6328 path = tooltip.h;
6329 refType = 4;
6330 };
6331 F5A85D8901FA022B0175ACA7 = {
6332 isa = PBXFileReference;
6333 path = toplevel.h;
6334 refType = 4;
6335 };
6336 F5A85D8A01FA022B0175ACA7 = {
6337 isa = PBXFileReference;
6338 path = treectrl.h;
6339 refType = 4;
6340 };
6341 F5A85D8B01FA022B0175ACA7 = {
6342 isa = PBXFileReference;
6343 path = uma.h;
6344 refType = 4;
6345 };
6346 F5A85D8C01FA022B0175ACA7 = {
6347 isa = PBXFileReference;
6348 path = wave.h;
6349 refType = 4;
6350 };
6351 F5A85D8D01FA022B0175ACA7 = {
6352 isa = PBXFileReference;
6353 path = window.h;
6354 refType = 4;
6355 };
6356 F5A85D8E01FA022B0175ACA7 = {
6357 isa = PBXFileReference;
6358 path = matrix.h;
6359 refType = 4;
6360 };
6361 F5A85D8F01FA022B0175ACA7 = {
6362 isa = PBXFileReference;
6363 path = mdi.h;
6364 refType = 4;
6365 };
6366 F5A85D9001FA022B0175ACA7 = {
6367 isa = PBXFileReference;
6368 path = memconf.h;
6369 refType = 4;
6370 };
6371 F5A85D9101FA022B0175ACA7 = {
6372 isa = PBXFileReference;
6373 path = memory.h;
6374 refType = 4;
6375 };
6376 F5A85D9201FA022B0175ACA7 = {
6377 isa = PBXFileReference;
6378 path = memtext.h;
6379 refType = 4;
6380 };
6381 F5A85D9301FA022B0175ACA7 = {
6382 isa = PBXFileReference;
6383 path = menu.h;
6384 refType = 4;
6385 };
6386 F5A85D9401FA022B0175ACA7 = {
6387 isa = PBXFileReference;
6388 path = menuitem.h;
6389 refType = 4;
6390 };
6391 F5A85D9501FA022B0175ACA7 = {
6392 isa = PBXFileReference;
6393 path = metafile.h;
6394 refType = 4;
6395 };
6396 F5A85DAD01FA022B0175ACA7 = {
6397 isa = PBXFileReference;
6398 path = mimetype.h;
6399 refType = 4;
6400 };
6401 F5A85DAE01FA022B0175ACA7 = {
6402 isa = PBXFileReference;
6403 path = minifram.h;
6404 refType = 4;
6405 };
6406 F5A85DAF01FA022B0175ACA7 = {
6407 isa = PBXFileReference;
6408 path = module.h;
6409 refType = 4;
6410 };
6411 F5A85DF101FA022B0175ACA7 = {
6412 isa = PBXFileReference;
6413 path = msgdlg.h;
6414 refType = 4;
6415 };
6416 F5A85DF201FA022B0175ACA7 = {
6417 isa = PBXFileReference;
6418 path = mstream.h;
6419 refType = 4;
6420 };
6421 F5A85E9701FA022B0175ACA7 = {
6422 isa = PBXFileReference;
6423 path = notebook.h;
6424 refType = 4;
6425 };
6426 F5A85E9801FA022B0175ACA7 = {
6427 isa = PBXFileReference;
6428 path = object.h;
6429 refType = 4;
6430 };
6431 F5A85E9901FA022B0175ACA7 = {
6432 isa = PBXFileReference;
6433 path = odbc.h;
6434 refType = 4;
6435 };
6436 F5A85EFF01FA022B0175ACA7 = {
6437 isa = PBXFileReference;
6438 path = ownerdrw.h;
6439 refType = 4;
6440 };
6441 F5A85F0001FA022B0175ACA7 = {
6442 isa = PBXFileReference;
6443 path = palette.h;
6444 refType = 4;
6445 };
6446 F5A85F0101FA022B0175ACA7 = {
6447 isa = PBXFileReference;
6448 path = panel.h;
6449 refType = 4;
6450 };
6451 F5A85F0201FA022B0175ACA7 = {
6452 isa = PBXFileReference;
6453 path = paper.h;
6454 refType = 4;
6455 };
6456 F5A85F0301FA022B0175ACA7 = {
6457 isa = PBXFileReference;
6458 path = pen.h;
6459 refType = 4;
6460 };
6461 F5A85F0401FA022B0175ACA7 = {
6462 isa = PBXFileReference;
6463 path = platform.h;
6464 refType = 4;
6465 };
6466 F5A85F0501FA022B0175ACA7 = {
6467 isa = PBXFileReference;
6468 path = popupwin.h;
6469 refType = 4;
6470 };
6471 F5A85F0601FA022B0175ACA7 = {
6472 isa = PBXFileReference;
6473 path = print.h;
6474 refType = 4;
6475 };
6476 F5A85F0701FA022B0175ACA7 = {
6477 isa = PBXFileReference;
6478 path = printdlg.h;
6479 refType = 4;
6480 };
6481 F5A85F0801FA022B0175ACA7 = {
6482 isa = PBXFileReference;
6483 path = prntbase.h;
6484 refType = 4;
6485 };
6486 F5A85F0901FA022B0175ACA7 = {
6487 isa = PBXFileReference;
6488 path = process.h;
6489 refType = 4;
6490 };
6491 F5A85F0A01FA022B0175ACA7 = {
6492 isa = PBXFileReference;
6493 path = progdlg.h;
6494 refType = 4;
6495 };
6496 F5A85F0B01FA022B0175ACA7 = {
6497 isa = PBXFileReference;
6498 path = prop.h;
6499 refType = 4;
6500 };
6501 F5A85F0C01FA022B0175ACA7 = {
6502 isa = PBXFileReference;
6503 path = propform.h;
6504 refType = 4;
6505 };
6506 F5A85F0D01FA022B0175ACA7 = {
6507 isa = PBXFileReference;
6508 path = proplist.h;
6509 refType = 4;
6510 };
6511 F5A85F0E01FA022B0175ACA7 = {
6512 children = (
6513 F5A85F1001FA022B0175ACA7,
6514 F5A85F1101FA022B0175ACA7,
6515 F5A85F1201FA022B0175ACA7,
6516 F5A85F1301FA022B0175ACA7,
6517 );
6518 isa = PBXGroup;
6519 path = protocol;
6520 refType = 4;
6521 };
6522 F5A85F1001FA022B0175ACA7 = {
6523 isa = PBXFileReference;
6524 path = file.h;
6525 refType = 4;
6526 };
6527 F5A85F1101FA022B0175ACA7 = {
6528 isa = PBXFileReference;
6529 path = ftp.h;
6530 refType = 4;
6531 };
6532 F5A85F1201FA022B0175ACA7 = {
6533 isa = PBXFileReference;
6534 path = http.h;
6535 refType = 4;
6536 };
6537 F5A85F1301FA022B0175ACA7 = {
6538 isa = PBXFileReference;
6539 path = protocol.h;
6540 refType = 4;
6541 };
6542 F5A85F1401FA022B0175ACA7 = {
6543 isa = PBXFileReference;
6544 path = quantize.h;
6545 refType = 4;
6546 };
6547 F5A85F1501FA022B0175ACA7 = {
6548 isa = PBXFileReference;
6549 path = radiobox.h;
6550 refType = 4;
6551 };
6552 F5A85F1601FA022B0175ACA7 = {
6553 isa = PBXFileReference;
6554 path = radiobut.h;
6555 refType = 4;
6556 };
6557 F5A85F1701FA022B0175ACA7 = {
6558 isa = PBXFileReference;
6559 path = regex.h;
6560 refType = 4;
6561 };
6562 F5A85F1801FA022B0175ACA7 = {
6563 isa = PBXFileReference;
6564 path = region.h;
6565 refType = 4;
6566 };
6567 F5A85F1901FA022B0175ACA7 = {
6568 isa = PBXFileReference;
6569 path = resource.h;
6570 refType = 4;
6571 };
6572 F5A85F1A01FA022B0175ACA7 = {
6573 isa = PBXFileReference;
6574 path = sashwin.h;
6575 refType = 4;
6576 };
6577 F5A85F1B01FA022B0175ACA7 = {
6578 isa = PBXFileReference;
6579 path = sckaddr.h;
6580 refType = 4;
6581 };
6582 F5A85F1C01FA022B0175ACA7 = {
6583 isa = PBXFileReference;
6584 path = sckipc.h;
6585 refType = 4;
6586 };
6587 F5A85F1D01FA022B0175ACA7 = {
6588 isa = PBXFileReference;
6589 path = sckstrm.h;
6590 refType = 4;
6591 };
6592 F5A85F1E01FA022B0175ACA7 = {
6593 isa = PBXFileReference;
6594 path = scrolbar.h;
6595 refType = 4;
6596 };
6597 F5A85F1F01FA022B0175ACA7 = {
6598 isa = PBXFileReference;
6599 path = scrolwin.h;
6600 refType = 4;
6601 };
6602 F5A85F2001FA022B0175ACA7 = {
6603 isa = PBXFileReference;
6604 path = settings.h;
6605 refType = 4;
6606 };
6607 F5A85F2201FA022B0175ACA7 = {
6608 isa = PBXFileReference;
6609 path = sizer.h;
6610 refType = 4;
6611 };
6612 F5A85F2301FA022B0175ACA7 = {
6613 isa = PBXFileReference;
6614 path = slider.h;
6615 refType = 4;
6616 };
6617 F5A85F2401FA022B0175ACA7 = {
6618 isa = PBXFileReference;
6619 path = snglinst.h;
6620 refType = 4;
6621 };
6622 F5A85F2501FA022B0175ACA7 = {
6623 isa = PBXFileReference;
6624 path = socket.h;
6625 refType = 4;
6626 };
6627 F5A85F2601FA022B0175ACA7 = {
6628 isa = PBXFileReference;
6629 path = spawnbrowser.h;
6630 refType = 4;
6631 };
6632 F5A85F2701FA022B0175ACA7 = {
6633 isa = PBXFileReference;
6634 path = spinbutt.h;
6635 refType = 4;
6636 };
6637 F5A85F2801FA022B0175ACA7 = {
6638 isa = PBXFileReference;
6639 path = spinctrl.h;
6640 refType = 4;
6641 };
6642 F5A85F2901FA022B0175ACA7 = {
6643 isa = PBXFileReference;
6644 path = splash.h;
6645 refType = 4;
6646 };
6647 F5A85F2A01FA022B0175ACA7 = {
6648 isa = PBXFileReference;
6649 path = splitter.h;
6650 refType = 4;
6651 };
6652 F5A85F2B01FA022B0175ACA7 = {
6653 isa = PBXFileReference;
6654 path = stack.h;
6655 refType = 4;
6656 };
6657 F5A85F2C01FA022B0175ACA7 = {
6658 isa = PBXFileReference;
6659 path = statbmp.h;
6660 refType = 4;
6661 };
6662 F5A85F2D01FA022B0175ACA7 = {
6663 isa = PBXFileReference;
6664 path = statbox.h;
6665 refType = 4;
6666 };
6667 F5A85F2E01FA022B0175ACA7 = {
6668 isa = PBXFileReference;
6669 path = statline.h;
6670 refType = 4;
6671 };
6672 F5A85F2F01FA022B0175ACA7 = {
6673 isa = PBXFileReference;
6674 path = stattext.h;
6675 refType = 4;
6676 };
6677 F5A85F3001FA022B0175ACA7 = {
6678 isa = PBXFileReference;
6679 path = statusbr.h;
6680 refType = 4;
6681 };
6682 F5A85F3101FA022B0175ACA7 = {
6683 isa = PBXFileReference;
6684 path = strconv.h;
6685 refType = 4;
6686 };
6687 F5A85F3201FA022B0175ACA7 = {
6688 isa = PBXFileReference;
6689 path = stream.h;
6690 refType = 4;
6691 };
6692 F5A85F3301FA022B0175ACA7 = {
6693 isa = PBXFileReference;
6694 path = string.h;
6695 refType = 4;
6696 };
6697 F5A85F3401FA022B0175ACA7 = {
6698 isa = PBXFileReference;
6699 path = sysopt.h;
6700 refType = 4;
6701 };
6702 F5A85F3501FA022B0175ACA7 = {
6703 isa = PBXFileReference;
6704 path = tab.h;
6705 refType = 4;
6706 };
6707 F5A85F3601FA022B0175ACA7 = {
6708 isa = PBXFileReference;
6709 path = tabctrl.h;
6710 refType = 4;
6711 };
6712 F5A85F3701FA022B0175ACA7 = {
6713 isa = PBXFileReference;
6714 path = taskbar.h;
6715 refType = 4;
6716 };
6717 F5A85F3801FA022B0175ACA7 = {
6718 isa = PBXFileReference;
6719 path = tbarbase.h;
6720 refType = 4;
6721 };
6722 F5A85F3901FA022B0175ACA7 = {
6723 isa = PBXFileReference;
6724 path = tbarsmpl.h;
6725 refType = 4;
6726 };
6727 F5A85F3A01FA022B0175ACA7 = {
6728 isa = PBXFileReference;
6729 path = textbuf.h;
6730 refType = 4;
6731 };
6732 F5A85F3B01FA022B0175ACA7 = {
6733 isa = PBXFileReference;
6734 path = textctrl.h;
6735 refType = 4;
6736 };
6737 F5A85F3C01FA022B0175ACA7 = {
6738 isa = PBXFileReference;
6739 path = textdlg.h;
6740 refType = 4;
6741 };
6742 F5A85F3D01FA022B0175ACA7 = {
6743 isa = PBXFileReference;
6744 path = textfile.h;
6745 refType = 4;
6746 };
6747 F5A85F3E01FA022B0175ACA7 = {
6748 isa = PBXFileReference;
6749 path = tglbtn.h;
6750 refType = 4;
6751 };
6752 F5A85F3F01FA022B0175ACA7 = {
6753 isa = PBXFileReference;
6754 path = thread.h;
6755 refType = 4;
6756 };
6757 F5A85F4001FA022B0175ACA7 = {
6758 isa = PBXFileReference;
6759 path = time.h;
6760 refType = 4;
6761 };
6762 F5A85F4101FA022B0175ACA7 = {
6763 isa = PBXFileReference;
6764 path = timer.h;
6765 refType = 4;
6766 };
6767 F5A85F4201FA022B0175ACA7 = {
6768 isa = PBXFileReference;
6769 path = tipdlg.h;
6770 refType = 4;
6771 };
6772 F5A85F4301FA022B0175ACA7 = {
6773 isa = PBXFileReference;
6774 path = tipwin.h;
6775 refType = 4;
6776 };
6777 F5A85F4401FA022B0175ACA7 = {
6778 isa = PBXFileReference;
6779 path = tokenzr.h;
6780 refType = 4;
6781 };
6782 F5A85F4501FA022B0175ACA7 = {
6783 isa = PBXFileReference;
6784 path = toolbar.h;
6785 refType = 4;
6786 };
6787 F5A85F4601FA022B0175ACA7 = {
6788 isa = PBXFileReference;
6789 path = tooltip.h;
6790 refType = 4;
6791 };
6792 F5A85F4701FA022B0175ACA7 = {
6793 isa = PBXFileReference;
6794 path = toplevel.h;
6795 refType = 4;
6796 };
6797 F5A85F4801FA022B0175ACA7 = {
6798 isa = PBXFileReference;
6799 path = treebase.h;
6800 refType = 4;
6801 };
6802 F5A85F4901FA022B0175ACA7 = {
6803 isa = PBXFileReference;
6804 path = treectrl.h;
6805 refType = 4;
6806 };
6807 F5A85F4A01FA022B0175ACA7 = {
6808 isa = PBXFileReference;
6809 path = treelay.h;
6810 refType = 4;
6811 };
6812 F5A85F4B01FA022B0175ACA7 = {
6813 isa = PBXFileReference;
6814 path = txtstrm.h;
6815 refType = 4;
6816 };
6817 F5A85F4C01FA022B0175ACA7 = {
6818 isa = PBXFileReference;
6819 path = types.h;
6820 refType = 4;
6821 };
6822 F5A85F7301FA022B0175ACA7 = {
6823 children = (
6824 F5A85F7501FA022B0175ACA7,
6825 F5A85F7601FA022B0175ACA7,
6826 F5A85F7701FA022B0175ACA7,
6827 F5A85F7801FA022B0175ACA7,
6828 );
6829 isa = PBXGroup;
6830 path = unix;
6831 refType = 4;
6832 };
6833 F5A85F7501FA022B0175ACA7 = {
6834 isa = PBXFileReference;
6835 path = execute.h;
6836 refType = 4;
6837 };
6838 F5A85F7601FA022B0175ACA7 = {
6839 isa = PBXFileReference;
6840 path = fontutil.h;
6841 refType = 4;
6842 };
6843 F5A85F7701FA022B0175ACA7 = {
6844 isa = PBXFileReference;
6845 path = gsockunx.h;
6846 refType = 4;
6847 };
6848 F5A85F7801FA022B0175ACA7 = {
6849 isa = PBXFileReference;
6850 path = mimetype.h;
6851 refType = 4;
6852 };
6853 F5A85F7901FA022B0175ACA7 = {
6854 isa = PBXFileReference;
6855 path = url.h;
6856 refType = 4;
6857 };
6858 F5A85F7A01FA022B0175ACA7 = {
6859 isa = PBXFileReference;
6860 path = utils.h;
6861 refType = 4;
6862 };
6863 F5A85F7B01FA022B0175ACA7 = {
6864 isa = PBXFileReference;
6865 path = valgen.h;
6866 refType = 4;
6867 };
6868 F5A85F7C01FA022B0175ACA7 = {
6869 isa = PBXFileReference;
6870 path = validate.h;
6871 refType = 4;
6872 };
6873 F5A85F7D01FA022B0175ACA7 = {
6874 isa = PBXFileReference;
6875 path = valtext.h;
6876 refType = 4;
6877 };
6878 F5A85F7E01FA022B0175ACA7 = {
6879 isa = PBXFileReference;
6880 path = variant.h;
6881 refType = 4;
6882 };
6883 F5A85F7F01FA022B0175ACA7 = {
6884 isa = PBXFileReference;
6885 path = vector.h;
6886 refType = 4;
6887 };
6888 F5A85F8001FA022B0175ACA7 = {
6889 isa = PBXFileReference;
6890 path = version.h;
6891 refType = 4;
6892 };
6893 F5A85F8201FA022B0175ACA7 = {
6894 isa = PBXFileReference;
6895 path = wave.h;
6896 refType = 4;
6897 };
6898 F5A85F8301FA022B0175ACA7 = {
6899 isa = PBXFileReference;
6900 path = wfstream.h;
6901 refType = 4;
6902 };
6903 F5A85F8401FA022B0175ACA7 = {
6904 isa = PBXFileReference;
6905 path = window.h;
6906 refType = 4;
6907 };
6908 F5A85F8501FA022B0175ACA7 = {
6909 isa = PBXFileReference;
6910 path = wizard.h;
6911 refType = 4;
6912 };
6913 F5A85F8601FA022B0175ACA7 = {
6914 isa = PBXFileReference;
6915 path = wx.h;
6916 refType = 4;
6917 };
6918 F5A85F8D01FA022B0175ACA7 = {
6919 isa = PBXFileReference;
6920 path = wxchar.h;
6921 refType = 4;
6922 };
6923 F5A85F8E01FA022B0175ACA7 = {
6924 isa = PBXFileReference;
6925 path = wxexpr.h;
6926 refType = 4;
6927 };
6928 F5A85F8F01FA022B0175ACA7 = {
6929 isa = PBXFileReference;
6930 path = wxhtml.h;
6931 refType = 4;
6932 };
6933 F5A85F9001FA022B0175ACA7 = {
6934 isa = PBXFileReference;
6935 path = wxprec.h;
6936 refType = 4;
6937 };
6938 F5A85F9101FA022B0175ACA7 = {
6939 isa = PBXFileReference;
6940 path = xpmdecod.h;
6941 refType = 4;
6942 };
6943 F5A85F9201FA022B0175ACA7 = {
6944 isa = PBXFileReference;
6945 path = xpmhand.h;
6946 refType = 4;
6947 };
6948 F5A85F9301FA022B0175ACA7 = {
6949 isa = PBXFileReference;
6950 path = zipstrm.h;
6951 refType = 4;
6952 };
6953 F5A85F9401FA022B0175ACA7 = {
6954 isa = PBXFileReference;
6955 path = zstream.h;
6956 refType = 4;
6957 };
6958 F5A85FA901FA022B0175ACA7 = {
6959 children = (
6960 F5A85FDD01FA022B0175ACA7,
6961 F5A8606E01FA022C0175ACA7,
6962 F5A860F101FA022C0175ACA7,
6963 F5A8613E01FA022C0175ACA7,
6964 F5A8619901FA022C0175ACA7,
6965 F5A863AB01FA022C0175ACA7,
6966 F5A8641801FA022D0175ACA7,
6967 F5A8648A01FA022D0175ACA7,
6968 );
6969 isa = PBXGroup;
6970 name = src;
6971 path = "";
6972 refType = 2;
6973 };
6974 F5A85FDD01FA022B0175ACA7 = {
6975 children = (
6976 F5A85FDF01FA022B0175ACA7,
6977 F5F5A6A102CDB6CA01000133,
6978 F5F5A6A202CDB6CA01000133,
6979 F5A85FE101FA022B0175ACA7,
6980 F5A85FE201FA022B0175ACA7,
6981 F5A85FE301FA022B0175ACA7,
6982 F5A85FE401FA022B0175ACA7,
6983 F5A85FE501FA022B0175ACA7,
6984 F5A85FE601FA022B0175ACA7,
6985 F5A85FE701FA022B0175ACA7,
6986 F5A85FE801FA022B0175ACA7,
6987 F5A85FE901FA022B0175ACA7,
6988 F5A85FEA01FA022B0175ACA7,
6989 F5A85FEB01FA022B0175ACA7,
6990 F5A85FEC01FA022B0175ACA7,
6991 F5A85FEF01FA022B0175ACA7,
6992 F5A85FF001FA022B0175ACA7,
6993 F5A85FF101FA022B0175ACA7,
6994 F5A85FF301FA022B0175ACA7,
6995 F5A85FF401FA022B0175ACA7,
6996 F5A85FF601FA022B0175ACA7,
6997 F5A85FF701FA022B0175ACA7,
6998 F5A85FF801FA022B0175ACA7,
6999 F5A85FF901FA022B0175ACA7,
7000 F5A85FFA01FA022B0175ACA7,
7001 F5A85FFB01FA022B0175ACA7,
7002 F5A85FFE01FA022B0175ACA7,
7003 F5A85FFF01FA022B0175ACA7,
7004 F5A8600001FA022B0175ACA7,
7005 F5A8600101FA022B0175ACA7,
7006 F5A8600201FA022B0175ACA7,
7007 F5A8600301FA022B0175ACA7,
7008 F5A8600401FA022B0175ACA7,
7009 F5AC2EDC03803A3601000133,
7010 F5A8600501FA022B0175ACA7,
7011 F5A8600601FA022B0175ACA7,
7012 F5A8600701FA022B0175ACA7,
7013 F5A8600801FA022B0175ACA7,
7014 F5A8600901FA022B0175ACA7,
7015 F5A8600A01FA022B0175ACA7,
7016 F5A8600B01FA022B0175ACA7,
7017 F5A8600C01FA022B0175ACA7,
7018 F5A8600D01FA022B0175ACA7,
7019 F5A8600E01FA022B0175ACA7,
7020 F5A8600F01FA022B0175ACA7,
7021 F5A8601001FA022B0175ACA7,
7022 F5A8601101FA022B0175ACA7,
7023 F5A8601201FA022B0175ACA7,
7024 F5A8601301FA022B0175ACA7,
7025 F5A8601401FA022B0175ACA7,
7026 F5A8601501FA022B0175ACA7,
7027 F5A8601601FA022B0175ACA7,
7028 F5A8601701FA022B0175ACA7,
7029 F5A8601901FA022B0175ACA7,
7030 F5F5A69F02CDB27401000133,
7031 F5A8601A01FA022B0175ACA7,
7032 F5A8601B01FA022B0175ACA7,
7033 F5F5A6A302CDB6CA01000133,
7034 F5A8601C01FA022B0175ACA7,
7035 F5A8601D01FA022B0175ACA7,
7036 F5A8601E01FA022B0175ACA7,
7037 F5F5A6A402CDB6CA01000133,
7038 F5A8601F01FA022B0175ACA7,
7039 F5A8602001FA022B0175ACA7,
7040 F5A8602101FA022B0175ACA7,
7041 F5A8602201FA022B0175ACA7,
7042 F5A8602301FA022B0175ACA7,
7043 F5A8602401FA022B0175ACA7,
7044 F5A8602501FA022B0175ACA7,
7045 F5A8602601FA022B0175ACA7,
7046 F5A8602801FA022B0175ACA7,
7047 F5A8602901FA022B0175ACA7,
7048 F5A8602A01FA022B0175ACA7,
7049 F5A8602B01FA022B0175ACA7,
7050 F5A8602E01FA022B0175ACA7,
7051 F5A8602F01FA022B0175ACA7,
7052 F5A8603001FA022B0175ACA7,
7053 F5A8603101FA022B0175ACA7,
7054 F5A8603201FA022B0175ACA7,
7055 F5A8603301FA022B0175ACA7,
7056 F5A8603401FA022B0175ACA7,
7057 F5A8603501FA022B0175ACA7,
7058 F58E04FD02F11FA701A8020C,
7059 F5A8603601FA022B0175ACA7,
7060 F5A8603701FA022B0175ACA7,
7061 F5A8603801FA022B0175ACA7,
7062 F5A8603901FA022B0175ACA7,
7063 F5A8603A01FA022B0175ACA7,
7064 F5A8603D01FA022C0175ACA7,
7065 F5A8603E01FA022C0175ACA7,
7066 F5A8603F01FA022C0175ACA7,
7067 F5A8604001FA022C0175ACA7,
7068 F5A8604101FA022C0175ACA7,
7069 F5AC2EDD03803A3601000133,
7070 F5A8604301FA022C0175ACA7,
7071 F5A8604501FA022C0175ACA7,
7072 F5A8604601FA022C0175ACA7,
7073 F5A8604701FA022C0175ACA7,
7074 F5A8604801FA022C0175ACA7,
7075 F5A8604901FA022C0175ACA7,
7076 F5AC2EDE03803A3601000133,
7077 F5A8604A01FA022C0175ACA7,
7078 F5A8604B01FA022C0175ACA7,
7079 F5A8604C01FA022C0175ACA7,
7080 F5A8604D01FA022C0175ACA7,
7081 F5A8604E01FA022C0175ACA7,
7082 F5A8604F01FA022C0175ACA7,
7083 F5A8605001FA022C0175ACA7,
7084 F5A8605101FA022C0175ACA7,
7085 F5A8605201FA022C0175ACA7,
7086 F5A8605301FA022C0175ACA7,
7087 F5A8605401FA022C0175ACA7,
7088 F5A8605501FA022C0175ACA7,
7089 F5A8605601FA022C0175ACA7,
7090 F5A8605701FA022C0175ACA7,
7091 F5A8605801FA022C0175ACA7,
7092 F5A8605901FA022C0175ACA7,
7093 F5A8605B01FA022C0175ACA7,
7094 F5A8605D01FA022C0175ACA7,
7095 F5A8605E01FA022C0175ACA7,
7096 F5A8605F01FA022C0175ACA7,
7097 F5A8606001FA022C0175ACA7,
7098 F5A8606101FA022C0175ACA7,
7099 F5A8606201FA022C0175ACA7,
7100 F5A8606301FA022C0175ACA7,
7101 F5A8606401FA022C0175ACA7,
7102 F5A8606501FA022C0175ACA7,
7103 F5A8606601FA022C0175ACA7,
7104 F5A8606701FA022C0175ACA7,
7105 F5A8606801FA022C0175ACA7,
7106 F5A8606901FA022C0175ACA7,
7107 );
7108 isa = PBXGroup;
7109 path = common;
7110 refType = 4;
7111 };
7112 F5A85FDF01FA022B0175ACA7 = {
7113 isa = PBXFileReference;
7114 name = appcmn.cpp;
7115 path = common/appcmn.cpp;
7116 refType = 2;
7117 };
7118 F5A85FE101FA022B0175ACA7 = {
7119 isa = PBXFileReference;
7120 name = bmpbase.cpp;
7121 path = common/bmpbase.cpp;
7122 refType = 2;
7123 };
7124 F5A85FE201FA022B0175ACA7 = {
7125 isa = PBXFileReference;
7126 name = choiccmn.cpp;
7127 path = common/choiccmn.cpp;
7128 refType = 2;
7129 };
7130 F5A85FE301FA022B0175ACA7 = {
7131 isa = PBXFileReference;
7132 name = clipcmn.cpp;
7133 path = common/clipcmn.cpp;
7134 refType = 2;
7135 };
7136 F5A85FE401FA022B0175ACA7 = {
7137 isa = PBXFileReference;
7138 name = clntdata.cpp;
7139 path = common/clntdata.cpp;
7140 refType = 2;
7141 };
7142 F5A85FE501FA022B0175ACA7 = {
7143 isa = PBXFileReference;
7144 name = cmdline.cpp;
7145 path = common/cmdline.cpp;
7146 refType = 2;
7147 };
7148 F5A85FE601FA022B0175ACA7 = {
7149 isa = PBXFileReference;
7150 name = cmdproc.cpp;
7151 path = common/cmdproc.cpp;
7152 refType = 2;
7153 };
7154 F5A85FE701FA022B0175ACA7 = {
7155 isa = PBXFileReference;
7156 name = cmndata.cpp;
7157 path = common/cmndata.cpp;
7158 refType = 2;
7159 };
7160 F5A85FE801FA022B0175ACA7 = {
7161 isa = PBXFileReference;
7162 name = config.cpp;
7163 path = common/config.cpp;
7164 refType = 2;
7165 };
7166 F5A85FE901FA022B0175ACA7 = {
7167 isa = PBXFileReference;
7168 name = containr.cpp;
7169 path = common/containr.cpp;
7170 refType = 2;
7171 };
7172 F5A85FEA01FA022B0175ACA7 = {
7173 isa = PBXFileReference;
7174 name = cshelp.cpp;
7175 path = common/cshelp.cpp;
7176 refType = 2;
7177 };
7178 F5A85FEB01FA022B0175ACA7 = {
7179 isa = PBXFileReference;
7180 name = ctrlcmn.cpp;
7181 path = common/ctrlcmn.cpp;
7182 refType = 2;
7183 };
7184 F5A85FEC01FA022B0175ACA7 = {
7185 isa = PBXFileReference;
7186 name = ctrlsub.cpp;
7187 path = common/ctrlsub.cpp;
7188 refType = 2;
7189 };
7190 F5A85FEF01FA022B0175ACA7 = {
7191 isa = PBXFileReference;
7192 name = datetime.cpp;
7193 path = common/datetime.cpp;
7194 refType = 2;
7195 };
7196 F5A85FF001FA022B0175ACA7 = {
7197 isa = PBXFileReference;
7198 name = datstrm.cpp;
7199 path = common/datstrm.cpp;
7200 refType = 2;
7201 };
7202 F5A85FF101FA022B0175ACA7 = {
7203 isa = PBXFileReference;
7204 name = db.cpp;
7205 path = common/db.cpp;
7206 refType = 2;
7207 };
7208 F5A85FF301FA022B0175ACA7 = {
7209 isa = PBXFileReference;
7210 name = dbtable.cpp;
7211 path = common/dbtable.cpp;
7212 refType = 2;
7213 };
7214 F5A85FF401FA022B0175ACA7 = {
7215 isa = PBXFileReference;
7216 name = dcbase.cpp;
7217 path = common/dcbase.cpp;
7218 refType = 2;
7219 };
7220 F5A85FF601FA022B0175ACA7 = {
7221 isa = PBXFileReference;
7222 name = dircmn.cpp;
7223 path = common/dircmn.cpp;
7224 refType = 2;
7225 };
7226 F5A85FF701FA022B0175ACA7 = {
7227 isa = PBXFileReference;
7228 name = dlgcmn.cpp;
7229 path = common/dlgcmn.cpp;
7230 refType = 2;
7231 };
7232 F5A85FF801FA022B0175ACA7 = {
7233 isa = PBXFileReference;
7234 name = dndcmn.cpp;
7235 path = common/dndcmn.cpp;
7236 refType = 2;
7237 };
7238 F5A85FF901FA022B0175ACA7 = {
7239 isa = PBXFileReference;
7240 name = dobjcmn.cpp;
7241 path = common/dobjcmn.cpp;
7242 refType = 2;
7243 };
7244 F5A85FFA01FA022B0175ACA7 = {
7245 isa = PBXFileReference;
7246 name = docmdi.cpp;
7247 path = common/docmdi.cpp;
7248 refType = 2;
7249 };
7250 F5A85FFB01FA022B0175ACA7 = {
7251 isa = PBXFileReference;
7252 name = docview.cpp;
7253 path = common/docview.cpp;
7254 refType = 2;
7255 };
7256 F5A85FFE01FA022B0175ACA7 = {
7257 isa = PBXFileReference;
7258 name = dseldlg.cpp;
7259 path = common/dseldlg.cpp;
7260 refType = 2;
7261 };
7262 F5A85FFF01FA022B0175ACA7 = {
7263 isa = PBXFileReference;
7264 name = dynarray.cpp;
7265 path = common/dynarray.cpp;
7266 refType = 2;
7267 };
7268 F5A8600001FA022B0175ACA7 = {
7269 isa = PBXFileReference;
7270 name = dynlib.cpp;
7271 path = common/dynlib.cpp;
7272 refType = 2;
7273 };
7274 F5A8600101FA022B0175ACA7 = {
7275 isa = PBXFileReference;
7276 name = dynload.cpp;
7277 path = common/dynload.cpp;
7278 refType = 2;
7279 };
7280 F5A8600201FA022B0175ACA7 = {
7281 isa = PBXFileReference;
7282 name = effects.cpp;
7283 path = common/effects.cpp;
7284 refType = 2;
7285 };
7286 F5A8600301FA022B0175ACA7 = {
7287 isa = PBXFileReference;
7288 name = encconv.cpp;
7289 path = common/encconv.cpp;
7290 refType = 2;
7291 };
7292 F5A8600401FA022B0175ACA7 = {
7293 isa = PBXFileReference;
7294 name = event.cpp;
7295 path = common/event.cpp;
7296 refType = 2;
7297 };
7298 F5A8600501FA022B0175ACA7 = {
7299 isa = PBXFileReference;
7300 name = extended.c;
7301 path = common/extended.c;
7302 refType = 2;
7303 };
7304 F5A8600601FA022B0175ACA7 = {
7305 isa = PBXFileReference;
7306 name = fddlgcmn.cpp;
7307 path = common/fddlgcmn.cpp;
7308 refType = 2;
7309 };
7310 F5A8600701FA022B0175ACA7 = {
7311 isa = PBXFileReference;
7312 name = ffile.cpp;
7313 path = common/ffile.cpp;
7314 refType = 2;
7315 };
7316 F5A8600801FA022B0175ACA7 = {
7317 isa = PBXFileReference;
7318 name = file.cpp;
7319 path = common/file.cpp;
7320 refType = 2;
7321 };
7322 F5A8600901FA022B0175ACA7 = {
7323 isa = PBXFileReference;
7324 name = fileconf.cpp;
7325 path = common/fileconf.cpp;
7326 refType = 2;
7327 };
7328 F5A8600A01FA022B0175ACA7 = {
7329 isa = PBXFileReference;
7330 name = filefn.cpp;
7331 path = common/filefn.cpp;
7332 refType = 2;
7333 };
7334 F5A8600B01FA022B0175ACA7 = {
7335 isa = PBXFileReference;
7336 name = filename.cpp;
7337 path = common/filename.cpp;
7338 refType = 2;
7339 };
7340 F5A8600C01FA022B0175ACA7 = {
7341 isa = PBXFileReference;
7342 name = filesys.cpp;
7343 path = common/filesys.cpp;
7344 refType = 2;
7345 };
7346 F5A8600D01FA022B0175ACA7 = {
7347 isa = PBXFileReference;
7348 name = fontcmn.cpp;
7349 path = common/fontcmn.cpp;
7350 refType = 2;
7351 };
7352 F5A8600E01FA022B0175ACA7 = {
7353 isa = PBXFileReference;
7354 name = fontmap.cpp;
7355 path = common/fontmap.cpp;
7356 refType = 2;
7357 };
7358 F5A8600F01FA022B0175ACA7 = {
7359 isa = PBXFileReference;
7360 name = framecmn.cpp;
7361 path = common/framecmn.cpp;
7362 refType = 2;
7363 };
7364 F5A8601001FA022B0175ACA7 = {
7365 isa = PBXFileReference;
7366 name = fs_inet.cpp;
7367 path = common/fs_inet.cpp;
7368 refType = 2;
7369 };
7370 F5A8601101FA022B0175ACA7 = {
7371 isa = PBXFileReference;
7372 name = fs_mem.cpp;
7373 path = common/fs_mem.cpp;
7374 refType = 2;
7375 };
7376 F5A8601201FA022B0175ACA7 = {
7377 isa = PBXFileReference;
7378 name = fs_zip.cpp;
7379 path = common/fs_zip.cpp;
7380 refType = 2;
7381 };
7382 F5A8601301FA022B0175ACA7 = {
7383 isa = PBXFileReference;
7384 name = ftp.cpp;
7385 path = common/ftp.cpp;
7386 refType = 2;
7387 };
7388 F5A8601401FA022B0175ACA7 = {
7389 isa = PBXFileReference;
7390 name = gaugecmn.cpp;
7391 path = common/gaugecmn.cpp;
7392 refType = 2;
7393 };
7394 F5A8601501FA022B0175ACA7 = {
7395 isa = PBXFileReference;
7396 name = gdicmn.cpp;
7397 path = common/gdicmn.cpp;
7398 refType = 2;
7399 };
7400 F5A8601601FA022B0175ACA7 = {
7401 isa = PBXFileReference;
7402 name = geometry.cpp;
7403 path = common/geometry.cpp;
7404 refType = 2;
7405 };
7406 F5A8601701FA022B0175ACA7 = {
7407 isa = PBXFileReference;
7408 name = gifdecod.cpp;
7409 path = common/gifdecod.cpp;
7410 refType = 2;
7411 };
7412 F5A8601901FA022B0175ACA7 = {
7413 isa = PBXFileReference;
7414 name = hash.cpp;
7415 path = common/hash.cpp;
7416 refType = 2;
7417 };
7418 F5A8601A01FA022B0175ACA7 = {
7419 isa = PBXFileReference;
7420 name = helpbase.cpp;
7421 path = common/helpbase.cpp;
7422 refType = 2;
7423 };
7424 F5A8601B01FA022B0175ACA7 = {
7425 isa = PBXFileReference;
7426 name = http.cpp;
7427 path = common/http.cpp;
7428 refType = 2;
7429 };
7430 F5A8601C01FA022B0175ACA7 = {
7431 isa = PBXFileReference;
7432 name = imagall.cpp;
7433 path = common/imagall.cpp;
7434 refType = 2;
7435 };
7436 F5A8601D01FA022B0175ACA7 = {
7437 isa = PBXFileReference;
7438 name = imagbmp.cpp;
7439 path = common/imagbmp.cpp;
7440 refType = 2;
7441 };
7442 F5A8601E01FA022B0175ACA7 = {
7443 isa = PBXFileReference;
7444 name = image.cpp;
7445 path = common/image.cpp;
7446 refType = 2;
7447 };
7448 F5A8601F01FA022B0175ACA7 = {
7449 isa = PBXFileReference;
7450 name = imaggif.cpp;
7451 path = common/imaggif.cpp;
7452 refType = 2;
7453 };
7454 F5A8602001FA022B0175ACA7 = {
7455 isa = PBXFileReference;
7456 name = imagiff.cpp;
7457 path = common/imagiff.cpp;
7458 refType = 2;
7459 };
7460 F5A8602101FA022B0175ACA7 = {
7461 isa = PBXFileReference;
7462 name = imagjpeg.cpp;
7463 path = common/imagjpeg.cpp;
7464 refType = 2;
7465 };
7466 F5A8602201FA022B0175ACA7 = {
7467 isa = PBXFileReference;
7468 name = imagpcx.cpp;
7469 path = common/imagpcx.cpp;
7470 refType = 2;
7471 };
7472 F5A8602301FA022B0175ACA7 = {
7473 isa = PBXFileReference;
7474 name = imagpng.cpp;
7475 path = common/imagpng.cpp;
7476 refType = 2;
7477 };
7478 F5A8602401FA022B0175ACA7 = {
7479 isa = PBXFileReference;
7480 name = imagpnm.cpp;
7481 path = common/imagpnm.cpp;
7482 refType = 2;
7483 };
7484 F5A8602501FA022B0175ACA7 = {
7485 isa = PBXFileReference;
7486 name = imagtiff.cpp;
7487 path = common/imagtiff.cpp;
7488 refType = 2;
7489 };
7490 F5A8602601FA022B0175ACA7 = {
7491 isa = PBXFileReference;
7492 name = imagxpm.cpp;
7493 path = common/imagxpm.cpp;
7494 refType = 2;
7495 };
7496 F5A8602801FA022B0175ACA7 = {
7497 isa = PBXFileReference;
7498 name = intl.cpp;
7499 path = common/intl.cpp;
7500 refType = 2;
7501 };
7502 F5A8602901FA022B0175ACA7 = {
7503 isa = PBXFileReference;
7504 name = ipcbase.cpp;
7505 path = common/ipcbase.cpp;
7506 refType = 2;
7507 };
7508 F5A8602A01FA022B0175ACA7 = {
7509 isa = PBXFileReference;
7510 name = layout.cpp;
7511 path = common/layout.cpp;
7512 refType = 2;
7513 };
7514 F5A8602B01FA022B0175ACA7 = {
7515 isa = PBXFileReference;
7516 name = lboxcmn.cpp;
7517 path = common/lboxcmn.cpp;
7518 refType = 2;
7519 };
7520 F5A8602E01FA022B0175ACA7 = {
7521 isa = PBXFileReference;
7522 name = list.cpp;
7523 path = common/list.cpp;
7524 refType = 2;
7525 };
7526 F5A8602F01FA022B0175ACA7 = {
7527 isa = PBXFileReference;
7528 name = log.cpp;
7529 path = common/log.cpp;
7530 refType = 2;
7531 };
7532 F5A8603001FA022B0175ACA7 = {
7533 isa = PBXFileReference;
7534 name = longlong.cpp;
7535 path = common/longlong.cpp;
7536 refType = 2;
7537 };
7538 F5A8603101FA022B0175ACA7 = {
7539 isa = PBXFileReference;
7540 name = matrix.cpp;
7541 path = common/matrix.cpp;
7542 refType = 2;
7543 };
7544 F5A8603201FA022B0175ACA7 = {
7545 isa = PBXFileReference;
7546 name = memory.cpp;
7547 path = common/memory.cpp;
7548 refType = 2;
7549 };
7550 F5A8603301FA022B0175ACA7 = {
7551 isa = PBXFileReference;
7552 name = menucmn.cpp;
7553 path = common/menucmn.cpp;
7554 refType = 2;
7555 };
7556 F5A8603401FA022B0175ACA7 = {
7557 isa = PBXFileReference;
7558 name = mimecmn.cpp;
7559 path = common/mimecmn.cpp;
7560 refType = 2;
7561 };
7562 F5A8603501FA022B0175ACA7 = {
7563 isa = PBXFileReference;
7564 name = module.cpp;
7565 path = common/module.cpp;
7566 refType = 2;
7567 };
7568 F5A8603601FA022B0175ACA7 = {
7569 isa = PBXFileReference;
7570 name = mstream.cpp;
7571 path = common/mstream.cpp;
7572 refType = 2;
7573 };
7574 F5A8603701FA022B0175ACA7 = {
7575 isa = PBXFileReference;
7576 name = nbkbase.cpp;
7577 path = common/nbkbase.cpp;
7578 refType = 2;
7579 };
7580 F5A8603801FA022B0175ACA7 = {
7581 isa = PBXFileReference;
7582 name = object.cpp;
7583 path = common/object.cpp;
7584 refType = 2;
7585 };
7586 F5A8603901FA022B0175ACA7 = {
7587 isa = PBXFileReference;
7588 name = odbc.cpp;
7589 path = common/odbc.cpp;
7590 refType = 2;
7591 };
7592 F5A8603A01FA022B0175ACA7 = {
7593 isa = PBXFileReference;
7594 name = paper.cpp;
7595 path = common/paper.cpp;
7596 refType = 2;
7597 };
7598 F5A8603D01FA022C0175ACA7 = {
7599 isa = PBXFileReference;
7600 name = popupcmn.cpp;
7601 path = common/popupcmn.cpp;
7602 refType = 2;
7603 };
7604 F5A8603E01FA022C0175ACA7 = {
7605 isa = PBXFileReference;
7606 name = prntbase.cpp;
7607 path = common/prntbase.cpp;
7608 refType = 2;
7609 };
7610 F5A8603F01FA022C0175ACA7 = {
7611 isa = PBXFileReference;
7612 name = process.cpp;
7613 path = common/process.cpp;
7614 refType = 2;
7615 };
7616 F5A8604001FA022C0175ACA7 = {
7617 isa = PBXFileReference;
7618 name = protocol.cpp;
7619 path = common/protocol.cpp;
7620 refType = 2;
7621 };
7622 F5A8604101FA022C0175ACA7 = {
7623 isa = PBXFileReference;
7624 name = quantize.cpp;
7625 path = common/quantize.cpp;
7626 refType = 2;
7627 };
7628 F5A8604301FA022C0175ACA7 = {
7629 isa = PBXFileReference;
7630 name = regex.cpp;
7631 path = common/regex.cpp;
7632 refType = 2;
7633 };
7634 F5A8604501FA022C0175ACA7 = {
7635 isa = PBXFileReference;
7636 name = resource.cpp;
7637 path = common/resource.cpp;
7638 refType = 2;
7639 };
7640 F5A8604601FA022C0175ACA7 = {
7641 isa = PBXFileReference;
7642 name = sckaddr.cpp;
7643 path = common/sckaddr.cpp;
7644 refType = 2;
7645 };
7646 F5A8604701FA022C0175ACA7 = {
7647 isa = PBXFileReference;
7648 name = sckfile.cpp;
7649 path = common/sckfile.cpp;
7650 refType = 2;
7651 };
7652 F5A8604801FA022C0175ACA7 = {
7653 isa = PBXFileReference;
7654 name = sckipc.cpp;
7655 path = common/sckipc.cpp;
7656 refType = 2;
7657 };
7658 F5A8604901FA022C0175ACA7 = {
7659 isa = PBXFileReference;
7660 name = sckstrm.cpp;
7661 path = common/sckstrm.cpp;
7662 refType = 2;
7663 };
7664 F5A8604A01FA022C0175ACA7 = {
7665 isa = PBXFileReference;
7666 name = sizer.cpp;
7667 path = common/sizer.cpp;
7668 refType = 2;
7669 };
7670 F5A8604B01FA022C0175ACA7 = {
7671 isa = PBXFileReference;
7672 name = socket.cpp;
7673 path = common/socket.cpp;
7674 refType = 2;
7675 };
7676 F5A8604C01FA022C0175ACA7 = {
7677 isa = PBXFileReference;
7678 name = statbar.cpp;
7679 path = common/statbar.cpp;
7680 refType = 2;
7681 };
7682 F5A8604D01FA022C0175ACA7 = {
7683 isa = PBXFileReference;
7684 name = strconv.cpp;
7685 path = common/strconv.cpp;
7686 refType = 2;
7687 };
7688 F5A8604E01FA022C0175ACA7 = {
7689 isa = PBXFileReference;
7690 name = stream.cpp;
7691 path = common/stream.cpp;
7692 refType = 2;
7693 };
7694 F5A8604F01FA022C0175ACA7 = {
7695 isa = PBXFileReference;
7696 name = string.cpp;
7697 path = common/string.cpp;
7698 refType = 2;
7699 };
7700 F5A8605001FA022C0175ACA7 = {
7701 isa = PBXFileReference;
7702 name = sysopt.cpp;
7703 path = common/sysopt.cpp;
7704 refType = 2;
7705 };
7706 F5A8605101FA022C0175ACA7 = {
7707 isa = PBXFileReference;
7708 name = tbarbase.cpp;
7709 path = common/tbarbase.cpp;
7710 refType = 2;
7711 };
7712 F5A8605201FA022C0175ACA7 = {
7713 isa = PBXFileReference;
7714 name = textbuf.cpp;
7715 path = common/textbuf.cpp;
7716 refType = 2;
7717 };
7718 F5A8605301FA022C0175ACA7 = {
7719 isa = PBXFileReference;
7720 name = textcmn.cpp;
7721 path = common/textcmn.cpp;
7722 refType = 2;
7723 };
7724 F5A8605401FA022C0175ACA7 = {
7725 isa = PBXFileReference;
7726 name = textfile.cpp;
7727 path = common/textfile.cpp;
7728 refType = 2;
7729 };
7730 F5A8605501FA022C0175ACA7 = {
7731 isa = PBXFileReference;
7732 name = timercmn.cpp;
7733 path = common/timercmn.cpp;
7734 refType = 2;
7735 };
7736 F5A8605601FA022C0175ACA7 = {
7737 isa = PBXFileReference;
7738 name = tokenzr.cpp;
7739 path = common/tokenzr.cpp;
7740 refType = 2;
7741 };
7742 F5A8605701FA022C0175ACA7 = {
7743 isa = PBXFileReference;
7744 path = toplvcmn.cpp;
7745 refType = 4;
7746 };
7747 F5A8605801FA022C0175ACA7 = {
7748 isa = PBXFileReference;
7749 path = treebase.cpp;
7750 refType = 4;
7751 };
7752 F5A8605901FA022C0175ACA7 = {
7753 isa = PBXFileReference;
7754 path = txtstrm.cpp;
7755 refType = 4;
7756 };
7757 F5A8605B01FA022C0175ACA7 = {
7758 isa = PBXFileReference;
7759 path = unzip.c;
7760 refType = 4;
7761 };
7762 F5A8605D01FA022C0175ACA7 = {
7763 isa = PBXFileReference;
7764 path = url.cpp;
7765 refType = 4;
7766 };
7767 F5A8605E01FA022C0175ACA7 = {
7768 isa = PBXFileReference;
7769 path = utilscmn.cpp;
7770 refType = 4;
7771 };
7772 F5A8605F01FA022C0175ACA7 = {
7773 isa = PBXFileReference;
7774 path = valgen.cpp;
7775 refType = 4;
7776 };
7777 F5A8606001FA022C0175ACA7 = {
7778 isa = PBXFileReference;
7779 path = validate.cpp;
7780 refType = 4;
7781 };
7782 F5A8606101FA022C0175ACA7 = {
7783 isa = PBXFileReference;
7784 path = valtext.cpp;
7785 refType = 4;
7786 };
7787 F5A8606201FA022C0175ACA7 = {
7788 isa = PBXFileReference;
7789 path = variant.cpp;
7790 refType = 4;
7791 };
7792 F5A8606301FA022C0175ACA7 = {
7793 isa = PBXFileReference;
7794 path = wfstream.cpp;
7795 refType = 4;
7796 };
7797 F5A8606401FA022C0175ACA7 = {
7798 isa = PBXFileReference;
7799 path = wincmn.cpp;
7800 refType = 4;
7801 };
7802 F5A8606501FA022C0175ACA7 = {
7803 isa = PBXFileReference;
7804 path = wxchar.cpp;
7805 refType = 4;
7806 };
7807 F5A8606601FA022C0175ACA7 = {
7808 isa = PBXFileReference;
7809 path = wxexpr.cpp;
7810 refType = 4;
7811 };
7812 F5A8606701FA022C0175ACA7 = {
7813 isa = PBXFileReference;
7814 path = xpmdecod.cpp;
7815 refType = 4;
7816 };
7817 F5A8606801FA022C0175ACA7 = {
7818 isa = PBXFileReference;
7819 path = zipstrm.cpp;
7820 refType = 4;
7821 };
7822 F5A8606901FA022C0175ACA7 = {
7823 isa = PBXFileReference;
7824 path = zstream.cpp;
7825 refType = 4;
7826 };
7827 F5A8606E01FA022C0175ACA7 = {
7828 children = (
7829 F5A8607001FA022C0175ACA7,
7830 F5A8607101FA022C0175ACA7,
7831 F5A8607201FA022C0175ACA7,
7832 F5A8607301FA022C0175ACA7,
7833 F5A8607401FA022C0175ACA7,
7834 F5A8607501FA022C0175ACA7,
7835 F5A8607701FA022C0175ACA7,
7836 F5A8607801FA022C0175ACA7,
7837 F5A8607901FA022C0175ACA7,
7838 F5A8607A01FA022C0175ACA7,
7839 F5A8607C01FA022C0175ACA7,
7840 F5A8607D01FA022C0175ACA7,
7841 F5A8607E01FA022C0175ACA7,
7842 F5A8608001FA022C0175ACA7,
7843 F5A8608101FA022C0175ACA7,
7844 F5A8608201FA022C0175ACA7,
7845 F5A8608501FA022C0175ACA7,
7846 F5A8608601FA022C0175ACA7,
7847 F5A8608701FA022C0175ACA7,
7848 F5A8608801FA022C0175ACA7,
7849 F5A8608901FA022C0175ACA7,
7850 F5A8608B01FA022C0175ACA7,
7851 F5A8608D01FA022C0175ACA7,
7852 F5A8608E01FA022C0175ACA7,
7853 F5A8608F01FA022C0175ACA7,
7854 F5A8609001FA022C0175ACA7,
7855 F5A8609101FA022C0175ACA7,
7856 F5A8609201FA022C0175ACA7,
7857 F5A8609301FA022C0175ACA7,
7858 F5A8609401FA022C0175ACA7,
7859 F5A8609501FA022C0175ACA7,
7860 F5A8609601FA022C0175ACA7,
7861 F5A8609701FA022C0175ACA7,
7862 F5A8609801FA022C0175ACA7,
7863 F5A8609A01FA022C0175ACA7,
7864 F5A8609B01FA022C0175ACA7,
7865 F5A8609C01FA022C0175ACA7,
7866 F5A8609D01FA022C0175ACA7,
7867 F5A8609E01FA022C0175ACA7,
7868 F5A8609F01FA022C0175ACA7,
7869 F5A860A001FA022C0175ACA7,
7870 F5A860A101FA022C0175ACA7,
7871 F5A860A201FA022C0175ACA7,
7872 );
7873 isa = PBXGroup;
7874 path = generic;
7875 refType = 4;
7876 };
7877 F5A8607001FA022C0175ACA7 = {
7878 isa = PBXFileReference;
7879 path = busyinfo.cpp;
7880 refType = 4;
7881 };
7882 F5A8607101FA022C0175ACA7 = {
7883 isa = PBXFileReference;
7884 path = calctrl.cpp;
7885 refType = 4;
7886 };
7887 F5A8607201FA022C0175ACA7 = {
7888 isa = PBXFileReference;
7889 path = caret.cpp;
7890 refType = 4;
7891 };
7892 F5A8607301FA022C0175ACA7 = {
7893 isa = PBXFileReference;
7894 path = choicdgg.cpp;
7895 refType = 4;
7896 };
7897 F5A8607401FA022C0175ACA7 = {
7898 isa = PBXFileReference;
7899 path = colrdlgg.cpp;
7900 refType = 4;
7901 };
7902 F5A8607501FA022C0175ACA7 = {
7903 isa = PBXFileReference;
7904 path = dcpsg.cpp;
7905 refType = 4;
7906 };
7907 F5A8607701FA022C0175ACA7 = {
7908 isa = PBXFileReference;
7909 path = dirctrlg.cpp;
7910 refType = 4;
7911 };
7912 F5A8607801FA022C0175ACA7 = {
7913 isa = PBXFileReference;
7914 path = dirdlgg.cpp;
7915 refType = 4;
7916 };
7917 F5A8607901FA022C0175ACA7 = {
7918 isa = PBXFileReference;
7919 path = dragimgg.cpp;
7920 refType = 4;
7921 };
7922 F5A8607A01FA022C0175ACA7 = {
7923 isa = PBXFileReference;
7924 path = fdrepdlg.cpp;
7925 refType = 4;
7926 };
7927 F5A8607C01FA022C0175ACA7 = {
7928 isa = PBXFileReference;
7929 path = fontdlgg.cpp;
7930 refType = 4;
7931 };
7932 F5A8607D01FA022C0175ACA7 = {
7933 isa = PBXFileReference;
7934 path = grid.cpp;
7935 refType = 4;
7936 };
7937 F5A8607E01FA022C0175ACA7 = {
7938 isa = PBXFileReference;
7939 path = gridctrl.cpp;
7940 refType = 4;
7941 };
7942 F5A8608001FA022C0175ACA7 = {
7943 isa = PBXFileReference;
7944 path = gridsel.cpp;
7945 refType = 4;
7946 };
7947 F5A8608101FA022C0175ACA7 = {
7948 isa = PBXFileReference;
7949 path = helpext.cpp;
7950 refType = 4;
7951 };
7952 F5A8608201FA022C0175ACA7 = {
7953 isa = PBXFileReference;
7954 path = helphtml.cpp;
7955 refType = 4;
7956 };
7957 F5A8608501FA022C0175ACA7 = {
7958 isa = PBXFileReference;
7959 path = imaglist.cpp;
7960 refType = 4;
7961 };
7962 F5A8608601FA022C0175ACA7 = {
7963 isa = PBXFileReference;
7964 path = laywin.cpp;
7965 refType = 4;
7966 };
7967 F5A8608701FA022C0175ACA7 = {
7968 isa = PBXFileReference;
7969 path = listctrl.cpp;
7970 refType = 4;
7971 };
7972 F5A8608801FA022C0175ACA7 = {
7973 isa = PBXFileReference;
7974 path = logg.cpp;
7975 refType = 4;
7976 };
7977 F5A8608901FA022C0175ACA7 = {
7978 isa = PBXFileReference;
7979 path = msgdlgg.cpp;
7980 refType = 4;
7981 };
7982 F5A8608B01FA022C0175ACA7 = {
7983 isa = PBXFileReference;
7984 path = numdlgg.cpp;
7985 refType = 4;
7986 };
7987 F5A8608D01FA022C0175ACA7 = {
7988 isa = PBXFileReference;
7989 path = panelg.cpp;
7990 refType = 4;
7991 };
7992 F5A8608E01FA022C0175ACA7 = {
7993 isa = PBXFileReference;
7994 path = printps.cpp;
7995 refType = 4;
7996 };
7997 F5A8608F01FA022C0175ACA7 = {
7998 isa = PBXFileReference;
7999 path = prntdlgg.cpp;
8000 refType = 4;
8001 };
8002 F5A8609001FA022C0175ACA7 = {
8003 isa = PBXFileReference;
8004 path = progdlgg.cpp;
8005 refType = 4;
8006 };
8007 F5A8609101FA022C0175ACA7 = {
8008 isa = PBXFileReference;
8009 path = prop.cpp;
8010 refType = 4;
8011 };
8012 F5A8609201FA022C0175ACA7 = {
8013 isa = PBXFileReference;
8014 path = propform.cpp;
8015 refType = 4;
8016 };
8017 F5A8609301FA022C0175ACA7 = {
8018 isa = PBXFileReference;
8019 path = proplist.cpp;
8020 refType = 4;
8021 };
8022 F5A8609401FA022C0175ACA7 = {
8023 isa = PBXFileReference;
8024 path = sashwin.cpp;
8025 refType = 4;
8026 };
8027 F5A8609501FA022C0175ACA7 = {
8028 isa = PBXFileReference;
8029 path = scrlwing.cpp;
8030 refType = 4;
8031 };
8032 F5A8609601FA022C0175ACA7 = {
8033 isa = PBXFileReference;
8034 path = spinctlg.cpp;
8035 refType = 4;
8036 };
8037 F5A8609701FA022C0175ACA7 = {
8038 isa = PBXFileReference;
8039 path = splash.cpp;
8040 refType = 4;
8041 };
8042 F5A8609801FA022C0175ACA7 = {
8043 isa = PBXFileReference;
8044 path = splitter.cpp;
8045 refType = 4;
8046 };
8047 F5A8609A01FA022C0175ACA7 = {
8048 isa = PBXFileReference;
8049 path = statusbr.cpp;
8050 refType = 4;
8051 };
8052 F5A8609B01FA022C0175ACA7 = {
8053 isa = PBXFileReference;
8054 path = tabg.cpp;
8055 refType = 4;
8056 };
8057 F5A8609C01FA022C0175ACA7 = {
8058 isa = PBXFileReference;
8059 path = tbarsmpl.cpp;
8060 refType = 4;
8061 };
8062 F5A8609D01FA022C0175ACA7 = {
8063 isa = PBXFileReference;
8064 path = textdlgg.cpp;
8065 refType = 4;
8066 };
8067 F5A8609E01FA022C0175ACA7 = {
8068 isa = PBXFileReference;
8069 path = tipdlg.cpp;
8070 refType = 4;
8071 };
8072 F5A8609F01FA022C0175ACA7 = {
8073 isa = PBXFileReference;
8074 path = tipwin.cpp;
8075 refType = 4;
8076 };
8077 F5A860A001FA022C0175ACA7 = {
8078 isa = PBXFileReference;
8079 path = treectlg.cpp;
8080 refType = 4;
8081 };
8082 F5A860A101FA022C0175ACA7 = {
8083 isa = PBXFileReference;
8084 path = treelay.cpp;
8085 refType = 4;
8086 };
8087 F5A860A201FA022C0175ACA7 = {
8088 isa = PBXFileReference;
8089 path = wizard.cpp;
8090 refType = 4;
8091 };
8092 F5A860F101FA022C0175ACA7 = {
8093 children = (
8094 F5A8610401FA022C0175ACA7,
8095 F5A8610501FA022C0175ACA7,
8096 F5A8610601FA022C0175ACA7,
8097 F5A8610701FA022C0175ACA7,
8098 F5A8610801FA022C0175ACA7,
8099 F5A8610901FA022C0175ACA7,
8100 F5A8610A01FA022C0175ACA7,
8101 F5A8610B01FA022C0175ACA7,
8102 F5A8610C01FA022C0175ACA7,
8103 F5A8610D01FA022C0175ACA7,
8104 F5A8610E01FA022C0175ACA7,
8105 F5A8610F01FA022C0175ACA7,
8106 F5A8611001FA022C0175ACA7,
8107 F5A8611101FA022C0175ACA7,
8108 F5A8611201FA022C0175ACA7,
8109 F5A8611301FA022C0175ACA7,
8110 F5A8611501FA022C0175ACA7,
8111 F5A8611601FA022C0175ACA7,
8112 F5A8611701FA022C0175ACA7,
8113 );
8114 isa = PBXGroup;
8115 path = html;
8116 refType = 4;
8117 };
8118 F5A8610401FA022C0175ACA7 = {
8119 isa = PBXFileReference;
8120 path = helpctrl.cpp;
8121 refType = 4;
8122 };
8123 F5A8610501FA022C0175ACA7 = {
8124 isa = PBXFileReference;
8125 path = helpdata.cpp;
8126 refType = 4;
8127 };
8128 F5A8610601FA022C0175ACA7 = {
8129 isa = PBXFileReference;
8130 path = helpfrm.cpp;
8131 refType = 4;
8132 };
8133 F5A8610701FA022C0175ACA7 = {
8134 isa = PBXFileReference;
8135 path = htmlcell.cpp;
8136 refType = 4;
8137 };
8138 F5A8610801FA022C0175ACA7 = {
8139 isa = PBXFileReference;
8140 path = htmlfilt.cpp;
8141 refType = 4;
8142 };
8143 F5A8610901FA022C0175ACA7 = {
8144 isa = PBXFileReference;
8145 path = htmlpars.cpp;
8146 refType = 4;
8147 };
8148 F5A8610A01FA022C0175ACA7 = {
8149 isa = PBXFileReference;
8150 path = htmltag.cpp;
8151 refType = 4;
8152 };
8153 F5A8610B01FA022C0175ACA7 = {
8154 isa = PBXFileReference;
8155 path = htmlwin.cpp;
8156 refType = 4;
8157 };
8158 F5A8610C01FA022C0175ACA7 = {
8159 isa = PBXFileReference;
8160 path = htmprint.cpp;
8161 refType = 4;
8162 };
8163 F5A8610D01FA022C0175ACA7 = {
8164 isa = PBXFileReference;
8165 path = m_dflist.cpp;
8166 refType = 4;
8167 };
8168 F5A8610E01FA022C0175ACA7 = {
8169 isa = PBXFileReference;
8170 path = m_fonts.cpp;
8171 refType = 4;
8172 };
8173 F5A8610F01FA022C0175ACA7 = {
8174 isa = PBXFileReference;
8175 path = m_hline.cpp;
8176 refType = 4;
8177 };
8178 F5A8611001FA022C0175ACA7 = {
8179 isa = PBXFileReference;
8180 path = m_image.cpp;
8181 refType = 4;
8182 };
8183 F5A8611101FA022C0175ACA7 = {
8184 isa = PBXFileReference;
8185 path = m_layout.cpp;
8186 refType = 4;
8187 };
8188 F5A8611201FA022C0175ACA7 = {
8189 isa = PBXFileReference;
8190 path = m_links.cpp;
8191 refType = 4;
8192 };
8193 F5A8611301FA022C0175ACA7 = {
8194 isa = PBXFileReference;
8195 path = m_list.cpp;
8196 refType = 4;
8197 };
8198 F5A8611501FA022C0175ACA7 = {
8199 isa = PBXFileReference;
8200 path = m_pre.cpp;
8201 refType = 4;
8202 };
8203 F5A8611601FA022C0175ACA7 = {
8204 isa = PBXFileReference;
8205 path = m_tables.cpp;
8206 refType = 4;
8207 };
8208 F5A8611701FA022C0175ACA7 = {
8209 isa = PBXFileReference;
8210 path = winpars.cpp;
8211 refType = 4;
8212 };
8213 F5A8613E01FA022C0175ACA7 = {
8214 children = (
8215 F5A8614301FA022C0175ACA7,
8216 F5A8614401FA022C0175ACA7,
8217 F5A8614501FA022C0175ACA7,
8218 F5A8614601FA022C0175ACA7,
8219 F5A8614701FA022C0175ACA7,
8220 F5A8614801FA022C0175ACA7,
8221 F5A8614A01FA022C0175ACA7,
8222 F5A8614B01FA022C0175ACA7,
8223 F5A8614C01FA022C0175ACA7,
8224 F5A8614D01FA022C0175ACA7,
8225 F5A8614E01FA022C0175ACA7,
8226 F5A8615101FA022C0175ACA7,
8227 F5A8615201FA022C0175ACA7,
8228 F5A8615301FA022C0175ACA7,
8229 F5A8615401FA022C0175ACA7,
8230 F5A8615501FA022C0175ACA7,
8231 F5A8615601FA022C0175ACA7,
8232 F5A8615701FA022C0175ACA7,
8233 F5A8615801FA022C0175ACA7,
8234 F5A8615901FA022C0175ACA7,
8235 F5A8615A01FA022C0175ACA7,
8236 F5A8615B01FA022C0175ACA7,
8237 F5A8615D01FA022C0175ACA7,
8238 F5A8615E01FA022C0175ACA7,
8239 F5A8616001FA022C0175ACA7,
8240 F5A8616101FA022C0175ACA7,
8241 F5A8616201FA022C0175ACA7,
8242 F5A8616301FA022C0175ACA7,
8243 F5A8616401FA022C0175ACA7,
8244 F5A8616501FA022C0175ACA7,
8245 F5A8616601FA022C0175ACA7,
8246 F5A8616701FA022C0175ACA7,
8247 F5A8616801FA022C0175ACA7,
8248 F5A8616901FA022C0175ACA7,
8249 F5A8616B01FA022C0175ACA7,
8250 F5A8616C01FA022C0175ACA7,
8251 F5A8616D01FA022C0175ACA7,
8252 F5A8616E01FA022C0175ACA7,
8253 F5A8616F01FA022C0175ACA7,
8254 F5A8617001FA022C0175ACA7,
8255 F5A8617101FA022C0175ACA7,
8256 F5A8617701FA022C0175ACA7,
8257 F5A8617901FA022C0175ACA7,
8258 F5A8618D01FA022C0175ACA7,
8259 F5A8618E01FA022C0175ACA7,
8260 F5A8618F01FA022C0175ACA7,
8261 );
8262 isa = PBXGroup;
8263 path = jpeg;
8264 refType = 4;
8265 };
8266 F5A8614301FA022C0175ACA7 = {
8267 isa = PBXFileReference;
8268 path = jcapimin.c;
8269 refType = 4;
8270 };
8271 F5A8614401FA022C0175ACA7 = {
8272 isa = PBXFileReference;
8273 path = jcapistd.c;
8274 refType = 4;
8275 };
8276 F5A8614501FA022C0175ACA7 = {
8277 isa = PBXFileReference;
8278 path = jccoefct.c;
8279 refType = 4;
8280 };
8281 F5A8614601FA022C0175ACA7 = {
8282 isa = PBXFileReference;
8283 path = jccolor.c;
8284 refType = 4;
8285 };
8286 F5A8614701FA022C0175ACA7 = {
8287 isa = PBXFileReference;
8288 path = jcdctmgr.c;
8289 refType = 4;
8290 };
8291 F5A8614801FA022C0175ACA7 = {
8292 isa = PBXFileReference;
8293 path = jchuff.c;
8294 refType = 4;
8295 };
8296 F5A8614A01FA022C0175ACA7 = {
8297 isa = PBXFileReference;
8298 path = jcinit.c;
8299 refType = 4;
8300 };
8301 F5A8614B01FA022C0175ACA7 = {
8302 isa = PBXFileReference;
8303 path = jcmainct.c;
8304 refType = 4;
8305 };
8306 F5A8614C01FA022C0175ACA7 = {
8307 isa = PBXFileReference;
8308 path = jcmarker.c;
8309 refType = 4;
8310 };
8311 F5A8614D01FA022C0175ACA7 = {
8312 isa = PBXFileReference;
8313 path = jcmaster.c;
8314 refType = 4;
8315 };
8316 F5A8614E01FA022C0175ACA7 = {
8317 isa = PBXFileReference;
8318 path = jcomapi.c;
8319 refType = 4;
8320 };
8321 F5A8615101FA022C0175ACA7 = {
8322 isa = PBXFileReference;
8323 path = jcparam.c;
8324 refType = 4;
8325 };
8326 F5A8615201FA022C0175ACA7 = {
8327 isa = PBXFileReference;
8328 path = jcphuff.c;
8329 refType = 4;
8330 };
8331 F5A8615301FA022C0175ACA7 = {
8332 isa = PBXFileReference;
8333 path = jcprepct.c;
8334 refType = 4;
8335 };
8336 F5A8615401FA022C0175ACA7 = {
8337 isa = PBXFileReference;
8338 path = jcsample.c;
8339 refType = 4;
8340 };
8341 F5A8615501FA022C0175ACA7 = {
8342 isa = PBXFileReference;
8343 path = jctrans.c;
8344 refType = 4;
8345 };
8346 F5A8615601FA022C0175ACA7 = {
8347 isa = PBXFileReference;
8348 path = jdapimin.c;
8349 refType = 4;
8350 };
8351 F5A8615701FA022C0175ACA7 = {
8352 isa = PBXFileReference;
8353 path = jdapistd.c;
8354 refType = 4;
8355 };
8356 F5A8615801FA022C0175ACA7 = {
8357 isa = PBXFileReference;
8358 path = jdatadst.c;
8359 refType = 4;
8360 };
8361 F5A8615901FA022C0175ACA7 = {
8362 isa = PBXFileReference;
8363 path = jdatasrc.c;
8364 refType = 4;
8365 };
8366 F5A8615A01FA022C0175ACA7 = {
8367 isa = PBXFileReference;
8368 path = jdcoefct.c;
8369 refType = 4;
8370 };
8371 F5A8615B01FA022C0175ACA7 = {
8372 isa = PBXFileReference;
8373 path = jdcolor.c;
8374 refType = 4;
8375 };
8376 F5A8615D01FA022C0175ACA7 = {
8377 isa = PBXFileReference;
8378 path = jddctmgr.c;
8379 refType = 4;
8380 };
8381 F5A8615E01FA022C0175ACA7 = {
8382 isa = PBXFileReference;
8383 path = jdhuff.c;
8384 refType = 4;
8385 };
8386 F5A8616001FA022C0175ACA7 = {
8387 isa = PBXFileReference;
8388 path = jdinput.c;
8389 refType = 4;
8390 };
8391 F5A8616101FA022C0175ACA7 = {
8392 isa = PBXFileReference;
8393 path = jdmainct.c;
8394 refType = 4;
8395 };
8396 F5A8616201FA022C0175ACA7 = {
8397 isa = PBXFileReference;
8398 path = jdmarker.c;
8399 refType = 4;
8400 };
8401 F5A8616301FA022C0175ACA7 = {
8402 isa = PBXFileReference;
8403 path = jdmaster.c;
8404 refType = 4;
8405 };
8406 F5A8616401FA022C0175ACA7 = {
8407 isa = PBXFileReference;
8408 path = jdmerge.c;
8409 refType = 4;
8410 };
8411 F5A8616501FA022C0175ACA7 = {
8412 isa = PBXFileReference;
8413 path = jdphuff.c;
8414 refType = 4;
8415 };
8416 F5A8616601FA022C0175ACA7 = {
8417 isa = PBXFileReference;
8418 path = jdpostct.c;
8419 refType = 4;
8420 };
8421 F5A8616701FA022C0175ACA7 = {
8422 isa = PBXFileReference;
8423 path = jdsample.c;
8424 refType = 4;
8425 };
8426 F5A8616801FA022C0175ACA7 = {
8427 isa = PBXFileReference;
8428 path = jdtrans.c;
8429 refType = 4;
8430 };
8431 F5A8616901FA022C0175ACA7 = {
8432 isa = PBXFileReference;
8433 path = jerror.c;
8434 refType = 4;
8435 };
8436 F5A8616B01FA022C0175ACA7 = {
8437 isa = PBXFileReference;
8438 path = jfdctflt.c;
8439 refType = 4;
8440 };
8441 F5A8616C01FA022C0175ACA7 = {
8442 isa = PBXFileReference;
8443 path = jfdctfst.c;
8444 refType = 4;
8445 };
8446 F5A8616D01FA022C0175ACA7 = {
8447 isa = PBXFileReference;
8448 path = jfdctint.c;
8449 refType = 4;
8450 };
8451 F5A8616E01FA022C0175ACA7 = {
8452 isa = PBXFileReference;
8453 path = jidctflt.c;
8454 refType = 4;
8455 };
8456 F5A8616F01FA022C0175ACA7 = {
8457 isa = PBXFileReference;
8458 path = jidctfst.c;
8459 refType = 4;
8460 };
8461 F5A8617001FA022C0175ACA7 = {
8462 isa = PBXFileReference;
8463 path = jidctint.c;
8464 refType = 4;
8465 };
8466 F5A8617101FA022C0175ACA7 = {
8467 isa = PBXFileReference;
8468 path = jidctred.c;
8469 refType = 4;
8470 };
8471 F5A8617701FA022C0175ACA7 = {
8472 isa = PBXFileReference;
8473 path = jmemmgr.c;
8474 refType = 4;
8475 };
8476 F5A8617901FA022C0175ACA7 = {
8477 isa = PBXFileReference;
8478 path = jmemnobs.c;
8479 refType = 4;
8480 };
8481 F5A8618D01FA022C0175ACA7 = {
8482 isa = PBXFileReference;
8483 path = jquant1.c;
8484 refType = 4;
8485 };
8486 F5A8618E01FA022C0175ACA7 = {
8487 isa = PBXFileReference;
8488 path = jquant2.c;
8489 refType = 4;
8490 };
8491 F5A8618F01FA022C0175ACA7 = {
8492 isa = PBXFileReference;
8493 path = jutils.c;
8494 refType = 4;
8495 };
8496 F5A8619901FA022C0175ACA7 = {
8497 children = (
8498 F5A8619A01FA022C0175ACA7,
8499 F5A8619B01FA022C0175ACA7,
8500 F5A8619C01FA022C0175ACA7,
8501 F5A8619E01FA022C0175ACA7,
8502 F5A8619F01FA022C0175ACA7,
8503 F5A861A001FA022C0175ACA7,
8504 F5A861A101FA022C0175ACA7,
8505 F5A861A201FA022C0175ACA7,
8506 F5A861A301FA022C0175ACA7,
8507 F5A861A401FA022C0175ACA7,
8508 F5A861A501FA022C0175ACA7,
8509 F5A861A601FA022C0175ACA7,
8510 F5A861A701FA022C0175ACA7,
8511 F5A861A801FA022C0175ACA7,
8512 F5A861A901FA022C0175ACA7,
8513 F5A861AA01FA022C0175ACA7,
8514 F5A861AB01FA022C0175ACA7,
8515 F5A861AC01FA022C0175ACA7,
8516 F5A861AD01FA022C0175ACA7,
8517 F5A861AE01FA022C0175ACA7,
8518 F5A861AF01FA022C0175ACA7,
8519 F5A861B001FA022C0175ACA7,
8520 F5A861B101FA022C0175ACA7,
8521 F5A861B201FA022C0175ACA7,
8522 F5A861B301FA022C0175ACA7,
8523 F5A861B401FA022C0175ACA7,
8524 F5A861B501FA022C0175ACA7,
8525 F5A861B601FA022C0175ACA7,
8526 F5A861B701FA022C0175ACA7,
8527 F5A861B801FA022C0175ACA7,
8528 F5A861B901FA022C0175ACA7,
8529 F5A861BB01FA022C0175ACA7,
8530 F5A861BC01FA022C0175ACA7,
8531 F5A861BD01FA022C0175ACA7,
8532 F5A861BE01FA022C0175ACA7,
8533 F5A861BF01FA022C0175ACA7,
8534 F5A861C001FA022C0175ACA7,
8535 F5A861C101FA022C0175ACA7,
8536 F5A861C301FA022C0175ACA7,
8537 F5A861C501FA022C0175ACA7,
8538 F5A861C601FA022C0175ACA7,
8539 F5A861C701FA022C0175ACA7,
8540 F5A861C801FA022C0175ACA7,
8541 F5A861CC01FA022C0175ACA7,
8542 F5A861CD01FA022C0175ACA7,
8543 F5A861CE01FA022C0175ACA7,
8544 F5A861CF01FA022C0175ACA7,
8545 F5A861D001FA022C0175ACA7,
8546 F5A861D101FA022C0175ACA7,
8547 F5A861D201FA022C0175ACA7,
8548 F5A861E701FA022C0175ACA7,
8549 F5A861E801FA022C0175ACA7,
8550 F5A861E901FA022C0175ACA7,
8551 F5A861EA01FA022C0175ACA7,
8552 F5A861EB01FA022C0175ACA7,
8553 F5A861EC01FA022C0175ACA7,
8554 F5A861ED01FA022C0175ACA7,
8555 F5A861EE01FA022C0175ACA7,
8556 F5A861EF01FA022C0175ACA7,
8557 F5A861F001FA022C0175ACA7,
8558 F5A861F101FA022C0175ACA7,
8559 F5A861F201FA022C0175ACA7,
8560 F5A861F301FA022C0175ACA7,
8561 F5A861F401FA022C0175ACA7,
8562 F5A861F501FA022C0175ACA7,
8563 F5A861F701FA022C0175ACA7,
8564 F5A861F801FA022C0175ACA7,
8565 F5A861F901FA022C0175ACA7,
8566 F5A861FB01FA022C0175ACA7,
8567 F5A861FC01FA022C0175ACA7,
8568 F5A861FD01FA022C0175ACA7,
8569 F5A861FE01FA022C0175ACA7,
8570 F5A861FF01FA022C0175ACA7,
8571 F5A8620001FA022C0175ACA7,
8572 F5A8620101FA022C0175ACA7,
8573 F5A8620201FA022C0175ACA7,
8574 F5A8620301FA022C0175ACA7,
8575 F5A8620401FA022C0175ACA7,
8576 F5A8620601FA022C0175ACA7,
8577 F5A8620701FA022C0175ACA7,
8578 F5A8620801FA022C0175ACA7,
8579 F5A8620901FA022C0175ACA7,
8580 F5A8620A01FA022C0175ACA7,
8581 );
8582 isa = PBXGroup;
8583 path = mac;
8584 refType = 4;
8585 };
8586 F5A8619A01FA022C0175ACA7 = {
8587 isa = PBXFileReference;
8588 path = accel.cpp;
8589 refType = 4;
8590 };
8591 F5A8619B01FA022C0175ACA7 = {
8592 isa = PBXFileReference;
8593 path = aga.cpp;
8594 refType = 4;
8595 };
8596 F5A8619C01FA022C0175ACA7 = {
8597 isa = PBXFileReference;
8598 path = app.cpp;
8599 refType = 4;
8600 };
8601 F5A8619E01FA022C0175ACA7 = {
8602 isa = PBXFileReference;
8603 path = apprsrc.r;
8604 refType = 4;
8605 };
8606 F5A8619F01FA022C0175ACA7 = {
8607 isa = PBXFileReference;
8608 path = bitmap.cpp;
8609 refType = 4;
8610 };
8611 F5A861A001FA022C0175ACA7 = {
8612 isa = PBXFileReference;
8613 path = bmpbuttn.cpp;
8614 refType = 4;
8615 };
8616 F5A861A101FA022C0175ACA7 = {
8617 isa = PBXFileReference;
8618 path = brush.cpp;
8619 refType = 4;
8620 };
8621 F5A861A201FA022C0175ACA7 = {
8622 isa = PBXFileReference;
8623 path = button.cpp;
8624 refType = 4;
8625 };
8626 F5A861A301FA022C0175ACA7 = {
8627 isa = PBXFileReference;
8628 path = carbrsrc.r;
8629 refType = 4;
8630 };
8631 F5A861A401FA022C0175ACA7 = {
8632 isa = PBXFileReference;
8633 path = checkbox.cpp;
8634 refType = 4;
8635 };
8636 F5A861A501FA022C0175ACA7 = {
8637 isa = PBXFileReference;
8638 path = checklst.cpp;
8639 refType = 4;
8640 };
8641 F5A861A601FA022C0175ACA7 = {
8642 isa = PBXFileReference;
8643 path = choice.cpp;
8644 refType = 4;
8645 };
8646 F5A861A701FA022C0175ACA7 = {
8647 isa = PBXFileReference;
8648 path = clipbrd.cpp;
8649 refType = 4;
8650 };
8651 F5A861A801FA022C0175ACA7 = {
8652 isa = PBXFileReference;
8653 path = colordlg.cpp;
8654 refType = 4;
8655 };
8656 F5A861A901FA022C0175ACA7 = {
8657 isa = PBXFileReference;
8658 path = colour.cpp;
8659 refType = 4;
8660 };
8661 F5A861AA01FA022C0175ACA7 = {
8662 isa = PBXFileReference;
8663 path = combobox.cpp;
8664 refType = 4;
8665 };
8666 F5A861AB01FA022C0175ACA7 = {
8667 isa = PBXFileReference;
8668 path = control.cpp;
8669 refType = 4;
8670 };
8671 F5A861AC01FA022C0175ACA7 = {
8672 isa = PBXFileReference;
8673 path = corersrc.r;
8674 refType = 4;
8675 };
8676 F5A861AD01FA022C0175ACA7 = {
8677 isa = PBXFileReference;
8678 path = cursor.cpp;
8679 refType = 4;
8680 };
8681 F5A861AE01FA022C0175ACA7 = {
8682 isa = PBXFileReference;
8683 path = data.cpp;
8684 refType = 4;
8685 };
8686 F5A861AF01FA022C0175ACA7 = {
8687 isa = PBXFileReference;
8688 path = dataobj.cpp;
8689 refType = 4;
8690 };
8691 F5A861B001FA022C0175ACA7 = {
8692 isa = PBXFileReference;
8693 path = dc.cpp;
8694 refType = 4;
8695 };
8696 F5A861B101FA022C0175ACA7 = {
8697 isa = PBXFileReference;
8698 path = dcclient.cpp;
8699 refType = 4;
8700 };
8701 F5A861B201FA022C0175ACA7 = {
8702 isa = PBXFileReference;
8703 path = dcmemory.cpp;
8704 refType = 4;
8705 };
8706 F5A861B301FA022C0175ACA7 = {
8707 isa = PBXFileReference;
8708 path = dcprint.cpp;
8709 refType = 4;
8710 };
8711 F5A861B401FA022C0175ACA7 = {
8712 isa = PBXFileReference;
8713 path = dcscreen.cpp;
8714 refType = 4;
8715 };
8716 F5A861B501FA022C0175ACA7 = {
8717 isa = PBXFileReference;
8718 path = dialog.cpp;
8719 refType = 4;
8720 };
8721 F5A861B601FA022C0175ACA7 = {
8722 isa = PBXFileReference;
8723 path = dirdlg.cpp;
8724 refType = 4;
8725 };
8726 F5A861B701FA022C0175ACA7 = {
8727 isa = PBXFileReference;
8728 path = dirmac.cpp;
8729 refType = 4;
8730 };
8731 F5A861B801FA022C0175ACA7 = {
8732 isa = PBXFileReference;
8733 path = dnd.cpp;
8734 refType = 4;
8735 };
8736 F5A861B901FA022C0175ACA7 = {
8737 isa = PBXFileReference;
8738 path = filedlg.cpp;
8739 refType = 4;
8740 };
8741 F5A861BB01FA022C0175ACA7 = {
8742 isa = PBXFileReference;
8743 path = font.cpp;
8744 refType = 4;
8745 };
8746 F5A861BC01FA022C0175ACA7 = {
8747 isa = PBXFileReference;
8748 path = fontdlg.cpp;
8749 refType = 4;
8750 };
8751 F5A861BD01FA022C0175ACA7 = {
8752 isa = PBXFileReference;
8753 path = fontenum.cpp;
8754 refType = 4;
8755 };
8756 F5A861BE01FA022C0175ACA7 = {
8757 isa = PBXFileReference;
8758 path = fontutil.cpp;
8759 refType = 4;
8760 };
8761 F5A861BF01FA022C0175ACA7 = {
8762 isa = PBXFileReference;
8763 path = frame.cpp;
8764 refType = 4;
8765 };
8766 F5A861C001FA022C0175ACA7 = {
8767 isa = PBXFileReference;
8768 path = gauge.cpp;
8769 refType = 4;
8770 };
8771 F5A861C101FA022C0175ACA7 = {
8772 isa = PBXFileReference;
8773 path = gdiobj.cpp;
8774 refType = 4;
8775 };
8776 F5A861C301FA022C0175ACA7 = {
8777 isa = PBXFileReference;
8778 path = gsocket.c;
8779 refType = 4;
8780 };
8781 F5A861C501FA022C0175ACA7 = {
8782 isa = PBXFileReference;
8783 path = icon.cpp;
8784 refType = 4;
8785 };
8786 F5A861C601FA022C0175ACA7 = {
8787 isa = PBXFileReference;
8788 path = joystick.cpp;
8789 refType = 4;
8790 };
8791 F5A861C701FA022C0175ACA7 = {
8792 isa = PBXFileReference;
8793 path = listbox.cpp;
8794 refType = 4;
8795 };
8796 F5A861C801FA022C0175ACA7 = {
8797 isa = PBXFileReference;
8798 path = macnotfy.cpp;
8799 refType = 4;
8800 };
8801 F5A861CC01FA022C0175ACA7 = {
8802 isa = PBXFileReference;
8803 path = mdi.cpp;
8804 refType = 4;
8805 };
8806 F5A861CD01FA022C0175ACA7 = {
8807 isa = PBXFileReference;
8808 path = menu.cpp;
8809 refType = 4;
8810 };
8811 F5A861CE01FA022C0175ACA7 = {
8812 isa = PBXFileReference;
8813 path = menuitem.cpp;
8814 refType = 4;
8815 };
8816 F5A861CF01FA022C0175ACA7 = {
8817 isa = PBXFileReference;
8818 path = metafile.cpp;
8819 refType = 4;
8820 };
8821 F5A861D001FA022C0175ACA7 = {
8822 isa = PBXFileReference;
8823 path = mimetmac.cpp;
8824 refType = 4;
8825 };
8826 F5A861D101FA022C0175ACA7 = {
8827 isa = PBXFileReference;
8828 path = minifram.cpp;
8829 refType = 4;
8830 };
8831 F5A861D201FA022C0175ACA7 = {
8832 children = (
8833 F5A861D301FA022C0175ACA7,
8834 F5A861D501FA022C0175ACA7,
8835 F5A861D701FA022C0175ACA7,
8836 F5A861D901FA022C0175ACA7,
8837 F5A861DB01FA022C0175ACA7,
8838 F5A861DD01FA022C0175ACA7,
8839 F5A861DF01FA022C0175ACA7,
8840 F5A861E101FA022C0175ACA7,
8841 F5A861E501FA022C0175ACA7,
8842 );
8843 isa = PBXGroup;
8844 path = morefile;
8845 refType = 4;
8846 };
8847 F5A861D301FA022C0175ACA7 = {
8848 isa = PBXFileReference;
8849 path = DirectoryCopy.c;
8850 refType = 4;
8851 };
8852 F5A861D501FA022C0175ACA7 = {
8853 isa = PBXFileReference;
8854 path = FileCopy.c;
8855 refType = 4;
8856 };
8857 F5A861D701FA022C0175ACA7 = {
8858 isa = PBXFileReference;
8859 path = FSpCompat.c;
8860 refType = 4;
8861 };
8862 F5A861D901FA022C0175ACA7 = {
8863 isa = PBXFileReference;
8864 path = FullPath.c;
8865 refType = 4;
8866 };
8867 F5A861DB01FA022C0175ACA7 = {
8868 isa = PBXFileReference;
8869 path = IterateDirectory.c;
8870 refType = 4;
8871 };
8872 F5A861DD01FA022C0175ACA7 = {
8873 isa = PBXFileReference;
8874 path = MoreDesktopMgr.c;
8875 refType = 4;
8876 };
8877 F5A861DF01FA022C0175ACA7 = {
8878 isa = PBXFileReference;
8879 path = MoreFiles.c;
8880 refType = 4;
8881 };
8882 F5A861E101FA022C0175ACA7 = {
8883 isa = PBXFileReference;
8884 path = MoreFilesExtras.c;
8885 refType = 4;
8886 };
8887 F5A861E501FA022C0175ACA7 = {
8888 isa = PBXFileReference;
8889 path = Search.c;
8890 refType = 4;
8891 };
8892 F5A861E701FA022C0175ACA7 = {
8893 isa = PBXFileReference;
8894 path = msgdlg.cpp;
8895 refType = 4;
8896 };
8897 F5A861E801FA022C0175ACA7 = {
8898 isa = PBXFileReference;
8899 path = notebmac.cpp;
8900 refType = 4;
8901 };
8902 F5A861E901FA022C0175ACA7 = {
8903 isa = PBXFileReference;
8904 path = palette.cpp;
8905 refType = 4;
8906 };
8907 F5A861EA01FA022C0175ACA7 = {
8908 isa = PBXFileReference;
8909 path = pen.cpp;
8910 refType = 4;
8911 };
8912 F5A861EB01FA022C0175ACA7 = {
8913 isa = PBXFileReference;
8914 path = pnghand.cpp;
8915 refType = 4;
8916 };
8917 F5A861EC01FA022C0175ACA7 = {
8918 isa = PBXFileReference;
8919 path = print.cpp;
8920 refType = 4;
8921 };
8922 F5A861ED01FA022C0175ACA7 = {
8923 isa = PBXFileReference;
8924 path = printdlg.cpp;
8925 refType = 4;
8926 };
8927 F5A861EE01FA022C0175ACA7 = {
8928 isa = PBXFileReference;
8929 path = printmac.cpp;
8930 refType = 4;
8931 };
8932 F5A861EF01FA022C0175ACA7 = {
8933 isa = PBXFileReference;
8934 path = radiobox.cpp;
8935 refType = 4;
8936 };
8937 F5A861F001FA022C0175ACA7 = {
8938 isa = PBXFileReference;
8939 path = radiobut.cpp;
8940 refType = 4;
8941 };
8942 F5A861F101FA022C0175ACA7 = {
8943 isa = PBXFileReference;
8944 path = region.cpp;
8945 refType = 4;
8946 };
8947 F5A861F201FA022C0175ACA7 = {
8948 isa = PBXFileReference;
8949 path = scrolbar.cpp;
8950 refType = 4;
8951 };
8952 F5A861F301FA022C0175ACA7 = {
8953 isa = PBXFileReference;
8954 path = settings.cpp;
8955 refType = 4;
8956 };
8957 F5A861F401FA022C0175ACA7 = {
8958 isa = PBXFileReference;
8959 path = slider.cpp;
8960 refType = 4;
8961 };
8962 F5A861F501FA022C0175ACA7 = {
8963 isa = PBXFileReference;
8964 path = spinbutt.cpp;
8965 refType = 4;
8966 };
8967 F5A861F701FA022C0175ACA7 = {
8968 isa = PBXFileReference;
8969 path = statbmp.cpp;
8970 refType = 4;
8971 };
8972 F5A861F801FA022C0175ACA7 = {
8973 isa = PBXFileReference;
8974 path = statbox.cpp;
8975 refType = 4;
8976 };
8977 F5A861F901FA022C0175ACA7 = {
8978 isa = PBXFileReference;
8979 path = statbrma.cpp;
8980 refType = 4;
8981 };
8982 F5A861FB01FA022C0175ACA7 = {
8983 isa = PBXFileReference;
8984 path = statlmac.cpp;
8985 refType = 4;
8986 };
8987 F5A861FC01FA022C0175ACA7 = {
8988 isa = PBXFileReference;
8989 path = stattext.cpp;
8990 refType = 4;
8991 };
8992 F5A861FD01FA022C0175ACA7 = {
8993 isa = PBXFileReference;
8994 path = tabctrl.cpp;
8995 refType = 4;
8996 };
8997 F5A861FE01FA022C0175ACA7 = {
8998 isa = PBXFileReference;
8999 path = taskbar.cpp;
9000 refType = 4;
9001 };
9002 F5A861FF01FA022C0175ACA7 = {
9003 isa = PBXFileReference;
9004 path = textctrl.cpp;
9005 refType = 4;
9006 };
9007 F5A8620001FA022C0175ACA7 = {
9008 isa = PBXFileReference;
9009 path = thread.cpp;
9010 refType = 4;
9011 };
9012 F5A8620101FA022C0175ACA7 = {
9013 isa = PBXFileReference;
9014 path = timer.cpp;
9015 refType = 4;
9016 };
9017 F5A8620201FA022C0175ACA7 = {
9018 isa = PBXFileReference;
9019 path = toolbar.cpp;
9020 refType = 4;
9021 };
9022 F5A8620301FA022C0175ACA7 = {
9023 isa = PBXFileReference;
9024 path = tooltip.cpp;
9025 refType = 4;
9026 };
9027 F5A8620401FA022C0175ACA7 = {
9028 isa = PBXFileReference;
9029 path = toplevel.cpp;
9030 refType = 4;
9031 };
9032 F5A8620601FA022C0175ACA7 = {
9033 isa = PBXFileReference;
9034 path = uma.cpp;
9035 refType = 4;
9036 };
9037 F5A8620701FA022C0175ACA7 = {
9038 isa = PBXFileReference;
9039 path = utils.cpp;
9040 refType = 4;
9041 };
9042 F5A8620801FA022C0175ACA7 = {
9043 isa = PBXFileReference;
9044 path = utilsexc.cpp;
9045 refType = 4;
9046 };
9047 F5A8620901FA022C0175ACA7 = {
9048 isa = PBXFileReference;
9049 path = wave.cpp;
9050 refType = 4;
9051 };
9052 F5A8620A01FA022C0175ACA7 = {
9053 isa = PBXFileReference;
9054 path = window.cpp;
9055 refType = 4;
9056 };
9057 F5A863AB01FA022C0175ACA7 = {
9058 children = (
9059 F5A863BF01FA022D0175ACA7,
9060 F5A863C401FA022D0175ACA7,
9061 F5A863C501FA022D0175ACA7,
9062 F5A863D101FA022D0175ACA7,
9063 F5A863D201FA022D0175ACA7,
9064 F5A863D301FA022D0175ACA7,
9065 F5A863D401FA022D0175ACA7,
9066 F5A863D501FA022D0175ACA7,
9067 F5A863D601FA022D0175ACA7,
9068 F5A863D701FA022D0175ACA7,
9069 F5A863D801FA022D0175ACA7,
9070 F5A863D901FA022D0175ACA7,
9071 F5A863DA01FA022D0175ACA7,
9072 F5A863DB01FA022D0175ACA7,
9073 F5A863DC01FA022D0175ACA7,
9074 F5A863DD01FA022D0175ACA7,
9075 );
9076 isa = PBXGroup;
9077 path = png;
9078 refType = 4;
9079 };
9080 F5A863BF01FA022D0175ACA7 = {
9081 isa = PBXFileReference;
9082 path = png.c;
9083 refType = 4;
9084 };
9085 F5A863C401FA022D0175ACA7 = {
9086 isa = PBXFileReference;
9087 path = pngerror.c;
9088 refType = 4;
9089 };
9090 F5A863C501FA022D0175ACA7 = {
9091 isa = PBXFileReference;
9092 path = pngget.c;
9093 refType = 4;
9094 };
9095 F5A863D101FA022D0175ACA7 = {
9096 isa = PBXFileReference;
9097 path = pngmem.c;
9098 refType = 4;
9099 };
9100 F5A863D201FA022D0175ACA7 = {
9101 isa = PBXFileReference;
9102 path = pngpread.c;
9103 refType = 4;
9104 };
9105 F5A863D301FA022D0175ACA7 = {
9106 isa = PBXFileReference;
9107 path = pngread.c;
9108 refType = 4;
9109 };
9110 F5A863D401FA022D0175ACA7 = {
9111 isa = PBXFileReference;
9112 path = pngrio.c;
9113 refType = 4;
9114 };
9115 F5A863D501FA022D0175ACA7 = {
9116 isa = PBXFileReference;
9117 path = pngrtran.c;
9118 refType = 4;
9119 };
9120 F5A863D601FA022D0175ACA7 = {
9121 isa = PBXFileReference;
9122 path = pngrutil.c;
9123 refType = 4;
9124 };
9125 F5A863D701FA022D0175ACA7 = {
9126 isa = PBXFileReference;
9127 path = pngset.c;
9128 refType = 4;
9129 };
9130 F5A863D801FA022D0175ACA7 = {
9131 isa = PBXFileReference;
9132 path = pngtest.c;
9133 refType = 4;
9134 };
9135 F5A863D901FA022D0175ACA7 = {
9136 isa = PBXFileReference;
9137 path = pngtrans.c;
9138 refType = 4;
9139 };
9140 F5A863DA01FA022D0175ACA7 = {
9141 isa = PBXFileReference;
9142 path = pngwio.c;
9143 refType = 4;
9144 };
9145 F5A863DB01FA022D0175ACA7 = {
9146 isa = PBXFileReference;
9147 path = pngwrite.c;
9148 refType = 4;
9149 };
9150 F5A863DC01FA022D0175ACA7 = {
9151 isa = PBXFileReference;
9152 path = pngwtran.c;
9153 refType = 4;
9154 };
9155 F5A863DD01FA022D0175ACA7 = {
9156 isa = PBXFileReference;
9157 path = pngwutil.c;
9158 refType = 4;
9159 };
9160 F5A8641801FA022D0175ACA7 = {
9161 children = (
9162 F5A8642601FA022D0175ACA7,
9163 F5A8642701FA022D0175ACA7,
9164 F5A8642801FA022D0175ACA7,
9165 F5A8642901FA022D0175ACA7,
9166 F5A8642A01FA022D0175ACA7,
9167 F5A8642C01FA022D0175ACA7,
9168 F5A8642D01FA022D0175ACA7,
9169 F5A8642E01FA022D0175ACA7,
9170 F5A8642F01FA022D0175ACA7,
9171 F5A8643001FA022D0175ACA7,
9172 F5A8643101FA022D0175ACA7,
9173 F5A8643301FA022D0175ACA7,
9174 F5A8643401FA022D0175ACA7,
9175 F5A8643501FA022D0175ACA7,
9176 F5A8643601FA022D0175ACA7,
9177 F5A8643701FA022D0175ACA7,
9178 F5A8643801FA022D0175ACA7,
9179 F5A8643A01FA022D0175ACA7,
9180 F5A8643B01FA022D0175ACA7,
9181 F5A8643D01FA022D0175ACA7,
9182 F5A8643E01FA022D0175ACA7,
9183 F5A8643F01FA022D0175ACA7,
9184 F5A8644101FA022D0175ACA7,
9185 F5A8644201FA022D0175ACA7,
9186 F5A8644301FA022D0175ACA7,
9187 F5A8644401FA022D0175ACA7,
9188 F5A8644501FA022D0175ACA7,
9189 F5A8644601FA022D0175ACA7,
9190 F5A8644701FA022D0175ACA7,
9191 F5A8644801FA022D0175ACA7,
9192 F5A8644A01FA022D0175ACA7,
9193 F5A8644D01FA022D0175ACA7,
9194 F5A8644E01FA022D0175ACA7,
9195 );
9196 isa = PBXGroup;
9197 path = tiff;
9198 refType = 4;
9199 };
9200 F5A8642601FA022D0175ACA7 = {
9201 isa = PBXFileReference;
9202 path = tif_aux.c;
9203 refType = 4;
9204 };
9205 F5A8642701FA022D0175ACA7 = {
9206 isa = PBXFileReference;
9207 path = tif_close.c;
9208 refType = 4;
9209 };
9210 F5A8642801FA022D0175ACA7 = {
9211 isa = PBXFileReference;
9212 path = tif_codec.c;
9213 refType = 4;
9214 };
9215 F5A8642901FA022D0175ACA7 = {
9216 isa = PBXFileReference;
9217 path = tif_compress.c;
9218 refType = 4;
9219 };
9220 F5A8642A01FA022D0175ACA7 = {
9221 isa = PBXFileReference;
9222 path = tif_dir.c;
9223 refType = 4;
9224 };
9225 F5A8642C01FA022D0175ACA7 = {
9226 isa = PBXFileReference;
9227 path = tif_dirinfo.c;
9228 refType = 4;
9229 };
9230 F5A8642D01FA022D0175ACA7 = {
9231 isa = PBXFileReference;
9232 path = tif_dirread.c;
9233 refType = 4;
9234 };
9235 F5A8642E01FA022D0175ACA7 = {
9236 isa = PBXFileReference;
9237 path = tif_dirwrite.c;
9238 refType = 4;
9239 };
9240 F5A8642F01FA022D0175ACA7 = {
9241 isa = PBXFileReference;
9242 path = tif_dumpmode.c;
9243 refType = 4;
9244 };
9245 F5A8643001FA022D0175ACA7 = {
9246 isa = PBXFileReference;
9247 path = tif_error.c;
9248 refType = 4;
9249 };
9250 F5A8643101FA022D0175ACA7 = {
9251 isa = PBXFileReference;
9252 path = tif_fax3.c;
9253 refType = 4;
9254 };
9255 F5A8643301FA022D0175ACA7 = {
9256 isa = PBXFileReference;
9257 path = tif_fax3sm.c;
9258 refType = 4;
9259 };
9260 F5A8643401FA022D0175ACA7 = {
9261 isa = PBXFileReference;
9262 path = tif_flush.c;
9263 refType = 4;
9264 };
9265 F5A8643501FA022D0175ACA7 = {
9266 isa = PBXFileReference;
9267 path = tif_getimage.c;
9268 refType = 4;
9269 };
9270 F5A8643601FA022D0175ACA7 = {
9271 isa = PBXFileReference;
9272 path = tif_jpeg.c;
9273 refType = 4;
9274 };
9275 F5A8643701FA022D0175ACA7 = {
9276 isa = PBXFileReference;
9277 path = tif_luv.c;
9278 refType = 4;
9279 };
9280 F5A8643801FA022D0175ACA7 = {
9281 isa = PBXFileReference;
9282 path = tif_lzw.c;
9283 refType = 4;
9284 };
9285 F5A8643A01FA022D0175ACA7 = {
9286 isa = PBXFileReference;
9287 path = tif_next.c;
9288 refType = 4;
9289 };
9290 F5A8643B01FA022D0175ACA7 = {
9291 isa = PBXFileReference;
9292 path = tif_open.c;
9293 refType = 4;
9294 };
9295 F5A8643D01FA022D0175ACA7 = {
9296 isa = PBXFileReference;
9297 path = tif_packbits.c;
9298 refType = 4;
9299 };
9300 F5A8643E01FA022D0175ACA7 = {
9301 isa = PBXFileReference;
9302 path = tif_pixarlog.c;
9303 refType = 4;
9304 };
9305 F5A8643F01FA022D0175ACA7 = {
9306 isa = PBXFileReference;
9307 path = tif_predict.c;
9308 refType = 4;
9309 };
9310 F5A8644101FA022D0175ACA7 = {
9311 isa = PBXFileReference;
9312 path = tif_print.c;
9313 refType = 4;
9314 };
9315 F5A8644201FA022D0175ACA7 = {
9316 isa = PBXFileReference;
9317 path = tif_read.c;
9318 refType = 4;
9319 };
9320 F5A8644301FA022D0175ACA7 = {
9321 isa = PBXFileReference;
9322 path = tif_strip.c;
9323 refType = 4;
9324 };
9325 F5A8644401FA022D0175ACA7 = {
9326 isa = PBXFileReference;
9327 path = tif_swab.c;
9328 refType = 4;
9329 };
9330 F5A8644501FA022D0175ACA7 = {
9331 isa = PBXFileReference;
9332 path = tif_thunder.c;
9333 refType = 4;
9334 };
9335 F5A8644601FA022D0175ACA7 = {
9336 isa = PBXFileReference;
9337 path = tif_tile.c;
9338 refType = 4;
9339 };
9340 F5A8644701FA022D0175ACA7 = {
9341 isa = PBXFileReference;
9342 path = tif_unix.c;
9343 refType = 4;
9344 };
9345 F5A8644801FA022D0175ACA7 = {
9346 isa = PBXFileReference;
9347 path = tif_version.c;
9348 refType = 4;
9349 };
9350 F5A8644A01FA022D0175ACA7 = {
9351 isa = PBXFileReference;
9352 path = tif_warning.c;
9353 refType = 4;
9354 };
9355 F5A8644D01FA022D0175ACA7 = {
9356 isa = PBXFileReference;
9357 path = tif_write.c;
9358 refType = 4;
9359 };
9360 F5A8644E01FA022D0175ACA7 = {
9361 isa = PBXFileReference;
9362 path = tif_zip.c;
9363 refType = 4;
9364 };
9365 F5A8648A01FA022D0175ACA7 = {
9366 children = (
9367 F5A8649201FA022D0175ACA7,
9368 F5A8649401FA022D0175ACA7,
9369 );
9370 isa = PBXGroup;
9371 path = unix;
9372 refType = 4;
9373 };
9374 F5A8649201FA022D0175ACA7 = {
9375 isa = PBXFileReference;
9376 path = snglinst.cpp;
9377 refType = 4;
9378 };
9379 F5A8649401FA022D0175ACA7 = {
9380 isa = PBXFileReference;
9381 path = utilsunx.cpp;
9382 refType = 4;
9383 };
9384 F5A8703A01FA0B7F0175ACA7 = {
9385 isa = PBXFileReference;
9386 name = listimpl.cpp;
9387 path = ../include/wx/listimpl.cpp;
9388 refType = 2;
9389 };
9390 F5AC2EDC03803A3601000133 = {
9391 isa = PBXFileReference;
9392 path = execcmn.cpp;
9393 refType = 4;
9394 };
9395 F5AC2EDD03803A3601000133 = {
9396 isa = PBXFileReference;
9397 path = radiocmn.cpp;
9398 refType = 4;
9399 };
9400 F5AC2EDE03803A3601000133 = {
9401 isa = PBXFileReference;
9402 path = settcmn.cpp;
9403 refType = 4;
9404 };
9405 F5AC2EE003803A3601000133 = {
9406 fileRef = F5AC2EDD03803A3601000133;
9407 isa = PBXBuildFile;
9408 settings = {
9409 };
9410 };
9411 F5AC2EE103803A3601000133 = {
9412 fileRef = F5AC2EDE03803A3601000133;
9413 isa = PBXBuildFile;
9414 settings = {
9415 };
9416 };
9417 F5AC2EE203803A3601000133 = {
9418 fileRef = F5AC2EDC03803A3601000133;
9419 isa = PBXBuildFile;
9420 settings = {
9421 };
9422 };
9423 F5AC2EE303803A3601000133 = {
9424 fileRef = F5AC2EDD03803A3601000133;
9425 isa = PBXBuildFile;
9426 settings = {
9427 };
9428 };
9429 F5AC2EE403803A3601000133 = {
9430 fileRef = F5AC2EDE03803A3601000133;
9431 isa = PBXBuildFile;
9432 settings = {
9433 };
9434 };
9435 F5C5D3DF01FA2D0A01D0F0BA = {
9436 isa = PBXFrameworkReference;
9437 name = System.framework;
9438 path = /System/Library/Frameworks/System.framework;
9439 refType = 0;
9440 };
9441 F5C6AC47020C2B0F01000133 = {
9442 isa = PBXLibraryReference;
9443 path = libwx_macd.a;
9444 refType = 3;
9445 };
9446 F5C6AC48020C2B1001000133 = {
9447 buildPhases = (
9448 F5955E9802CBA86701000133,
9449 F5C6AC49020C2B1001000133,
9450 F5C6AC4A020C2B1001000133,
9451 F5C6AC4B020C2B1001000133,
9452 F5C6AC4C020C2B1001000133,
9453 );
9454 buildSettings = {
9455 DYLIB_COMPATIBILITY_VERSION = 1;
9456 DYLIB_CURRENT_VERSION = 1;
9457 HEADER_SEARCH_PATHS = "../include mac/morefile jpeg png regex tiff - \"$(SYSTEM_DEVELOPER_DIR)/Headers/FlatCarbon\" /usr/include";
9458 LIBRARY_STYLE = STATIC;
9459 OPTIMIZATION_CFLAGS = "-O0";
9460 OTHER_CFLAGS = "-D__WXDEBUG__ -D__WXMAC__ -fno-rtti -fno-exceptions";
9461 OTHER_LDFLAGS = "";
9462 OTHER_LIBTOOL_FLAGS = "";
9463 OTHER_REZFLAGS = "-d __UNIX__";
9464 PREFIX_HEADER = ../include/wx_pb.h;
9465 PRODUCT_NAME = libwx_macd.a;
9466 REZ_EXECUTABLE = NO;
9467 SECTORDER_FLAGS = "";
9468 WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas";
9469 };
9470 dependencies = (
9471 );
9472 isa = PBXLibraryTarget;
9473 name = wxStaticDebug;
9474 productName = "wx library";
9475 productReference = F5C6AC47020C2B0F01000133;
9476 shouldUseHeadermap = 0;
9477 };
9478 F5C6AC49020C2B1001000133 = {
9479 buildActionMask = 2147483647;
9480 files = (
9481 F5FD822202CCECE601000133,
9482 );
9483 isa = PBXHeadersBuildPhase;
9484 runOnlyForDeploymentPostprocessing = 0;
9485 };
9486 F5C6AC4A020C2B1001000133 = {
9487 buildActionMask = 2147483647;
9488 files = (
9489 F5955EA502CBAA7301000133,
9490 F5955EA602CBAA8C01000133,
9491 F5955EA702CBAA8D01000133,
9492 F5955EA802CBAA8E01000133,
9493 F5955EA902CBAA8F01000133,
9494 F5955EAA02CBAA9001000133,
9495 F5955EAB02CBAA9101000133,
9496 F5955EAC02CBAA9201000133,
9497 F5955EAD02CBAAB201000133,
9498 F5955EAE02CBAAB201000133,
9499 F5955EAF02CBAAB301000133,
9500 F5955EB102CBAAB501000133,
9501 F5955EB202CBAAB501000133,
9502 F5955EB302CBAAB601000133,
9503 F5955EB402CBAAB601000133,
9504 F5955EB502CBAAB601000133,
9505 F5955EB602CBAAB701000133,
9506 F5955EB702CBAAB701000133,
9507 F5955EB802CBAAB801000133,
9508 F5955EB902CBAAB801000133,
9509 F5955EBA02CBAAB901000133,
9510 F5955EBB02CBAAB901000133,
9511 F5955EBC02CBAAB901000133,
9512 F5955EBD02CBAABA01000133,
9513 F5955EBE02CBAABA01000133,
9514 F5955EBF02CBAABB01000133,
9515 F5955EC002CBAABC01000133,
9516 F5955EC102CBAABD01000133,
9517 F5955EC202CBAABD01000133,
9518 F5955EC302CBAAC001000133,
9519 F5955EC402CBAAC101000133,
9520 F5955EC502CBAAC101000133,
9521 F5955EC602CBAAC201000133,
9522 F5955EC702CBAAC201000133,
9523 F5955EC802CBAAC301000133,
9524 F5955EC902CBAAC401000133,
9525 F5955ECA02CBAAC401000133,
9526 F5955ECB02CBAAC501000133,
9527 F5955ECC02CBAAC501000133,
9528 F5955ECD02CBAAC501000133,
9529 F5955ECE02CBAAC601000133,
9530 F5955ECF02CBAAC601000133,
9531 F5955ED002CBAAC701000133,
9532 F5955ED102CBAAC701000133,
9533 F5955ED202CBAAC801000133,
9534 F5955ED302CBAAC801000133,
9535 F5955ED402CBAAC901000133,
9536 F5955ED502CBAACA01000133,
9537 F5955ED602CBAACA01000133,
9538 F5955ED702CBAACB01000133,
9539 F5955ED802CBAACB01000133,
9540 F5955ED902CBAACC01000133,
9541 F5955EDA02CBAACC01000133,
9542 F5955EDB02CBAACD01000133,
9543 F5955EDC02CBAACD01000133,
9544 F5955EDD02CBAACD01000133,
9545 F5955EDE02CBAACE01000133,
9546 F5955EDF02CBAACE01000133,
9547 F5955EE002CBAACF01000133,
9548 F5955EE102CBAAD501000133,
9549 F5955EE202CBAAD601000133,
9550 F5955EE302CBAAD601000133,
9551 F5955EE402CBAAD601000133,
9552 F5955EE502CBAAD701000133,
9553 F5955EE602CBAAD701000133,
9554 F5955EE702CBAAD801000133,
9555 F5955EE802CBAAD801000133,
9556 F5955EE902CBAAD901000133,
9557 F5955EEA02CBAAD901000133,
9558 F5955EEB02CBAADA01000133,
9559 F5955EEC02CBAADA01000133,
9560 F5955EED02CBAADA01000133,
9561 F5955EEE02CBAADB01000133,
9562 F5955EEF02CBAADB01000133,
9563 F5955EF002CBAADC01000133,
9564 F5955EF202CBAADD01000133,
9565 F5955EF402CBAADE01000133,
9566 F5955EF502CBAADE01000133,
9567 F5955EF602CBAAE001000133,
9568 F5955EF702CBAAE001000133,
9569 F5955EF802CBAAE101000133,
9570 F5955EF902CBAAE101000133,
9571 F5955EFA02CBAAE201000133,
9572 F5955EFB02CBAAE301000133,
9573 F5955EFC02CBAAE301000133,
9574 F5955EFD02CBAAE401000133,
9575 F5955EFE02CBAAE401000133,
9576 F5955EFF02CBAAE501000133,
9577 F5955F0002CBAAE501000133,
9578 F5955F0102CBAAE601000133,
9579 F5955F0202CBAAE801000133,
9580 F5955F0302CBAAE901000133,
9581 F5955F0402CBAAE901000133,
9582 F5955F0502CBAAE901000133,
9583 F5955F0602CBAAEA01000133,
9584 F5955F0702CBAAEB01000133,
9585 F5955F0802CBAAEB01000133,
9586 F5955F0902CBAAEB01000133,
9587 F5955F0A02CBAAEC01000133,
9588 F5955F0B02CBAAEC01000133,
9589 F5955F0C02CBAAED01000133,
9590 F5955F0D02CBAAED01000133,
9591 F5955F0E02CBAAEE01000133,
9592 F5955F0F02CBAAEE01000133,
9593 F5955F1002CBAAEE01000133,
9594 F5955F1102CBAAEF01000133,
9595 F5955F1302CBAAF101000133,
9596 F5955F1402CBAAF101000133,
9597 F5955F1502CBAAF101000133,
9598 F5955F1602CBAAF301000133,
9599 F5955F1702CBAAF501000133,
9600 F5955F1802CBAAF601000133,
9601 F5955F1902CBAAF601000133,
9602 F5955F1A02CBAAF701000133,
9603 F5955F1B02CBAAF701000133,
9604 F5955F1C02CBAAF701000133,
9605 F5955F1D02CBAAF801000133,
9606 F5955F1E02CBAAF801000133,
9607 F5955F1F02CBAAF901000133,
9608 F5955F2002CBAAF901000133,
9609 F5955F2102CBAAFA01000133,
9610 F5955F2202CBAAFB01000133,
9611 F5955F2302CBAB0601000133,
9612 F5955F2402CBAB0701000133,
9613 F5955F2502CBAB0701000133,
9614 F5955F2602CBAB0701000133,
9615 F5955F2702CBAB0801000133,
9616 F5955F2802CBAB0901000133,
9617 F5955F2902CBAB0901000133,
9618 F5955F2A02CBAB0901000133,
9619 F5955F2B02CBAB0A01000133,
9620 F5955F2C02CBAB0A01000133,
9621 F5955F2D02CBAB0A01000133,
9622 F5955F2E02CBAB0B01000133,
9623 F5955F2F02CBAB0C01000133,
9624 F5955F3002CBAB0C01000133,
9625 F5955F3102CBAB0C01000133,
9626 F5955F3202CBAB0D01000133,
9627 F5955F3302CBAB0D01000133,
9628 F5955F3402CBAB0E01000133,
9629 F5955F3502CBAB0E01000133,
9630 F5955F3602CBAB0F01000133,
9631 F5955F3702CBAB0F01000133,
9632 F5955F3802CBAB0F01000133,
9633 F5955F3902CBAB1001000133,
9634 F5955F3A02CBAB1001000133,
9635 F5955F3B02CBAB1101000133,
9636 F5955F3C02CBAB1401000133,
9637 F5955F3D02CBAB1401000133,
9638 F5955F3E02CBAB1501000133,
9639 F5955F3F02CBAB1501000133,
9640 F5955F4002CBAB1601000133,
9641 F5955F4102CBAB1601000133,
9642 F5955F4202CBAB1601000133,
9643 F5955F4302CBAB1701000133,
9644 F5955F4402CBAB1701000133,
9645 F5955F4502CBAB1801000133,
9646 F5955F4602CBAB1801000133,
9647 F5955F4702CBAB1901000133,
9648 F5955F4802CBAB1901000133,
9649 F5955F4902CBAB1A01000133,
9650 F5955F4A02CBAB1A01000133,
9651 F5955F4B02CBAB1A01000133,
9652 F5955F4C02CBAB1B01000133,
9653 F5955F4D02CBAB1B01000133,
9654 F5955F4E02CBAB1E01000133,
9655 F5955F4F02CBAB1E01000133,
9656 F5955F5002CBAB1F01000133,
9657 F5955F5102CBAB1F01000133,
9658 F5955F5202CBAB2001000133,
9659 F5955F5302CBAB2101000133,
9660 F5955F5402CBAB2101000133,
9661 F5955F5502CBAB2101000133,
9662 F5955F5602CBAB2201000133,
9663 F5955F5702CBAB2201000133,
9664 F5955F5802CBAB2201000133,
9665 F5955F5902CBAB2301000133,
9666 F5955F5A02CBAB2501000133,
9667 F5955F5B02CBAB2601000133,
9668 F5955F5C02CBAB2601000133,
9669 F5955F5E02CBAB2701000133,
9670 F5955F5F02CBAB2801000133,
9671 F5955F6002CBAB2801000133,
9672 F5955F6102CBAB2801000133,
9673 F5955F6202CBAB2F01000133,
9674 F5955F6302CBAB2F01000133,
9675 F5955F6402CBAB3001000133,
9676 F5955F6502CBAB3001000133,
9677 F5955F6602CBAB3101000133,
9678 F5955F6702CBAB3101000133,
9679 F5955F6802CBAB3201000133,
9680 F5955F6902CBAB3201000133,
9681 F5955F6A02CBAB3301000133,
9682 F5955F6B02CBAB3301000133,
9683 F5955F6C02CBAB3301000133,
9684 F5955F6D02CBAB3301000133,
9685 F5955F6E02CBAB3401000133,
9686 F5955F6F02CBAB3401000133,
9687 F5955F7002CBAB3501000133,
9688 F5955F7102CBAB3501000133,
9689 F5955F7202CBAB3501000133,
9690 F5955F7302CBAB3601000133,
9691 F5955F7402CBAB3601000133,
9692 F5955F7502CBAB3701000133,
9693 F5955F7602CBAB3701000133,
9694 F5955F7702CBAB3701000133,
9695 F5955F7802CBAB3801000133,
9696 F5955F7902CBAB3B01000133,
9697 F5955F7A02CBAB3B01000133,
9698 F5955F7B02CBAB3B01000133,
9699 F5955F7C02CBAB3C01000133,
9700 F5955F7D02CBAB3C01000133,
9701 F5955F7E02CBAB3D01000133,
9702 F5955F7F02CBAB3D01000133,
9703 F5955F8002CBAB3D01000133,
9704 F5955F8102CBAB3E01000133,
9705 F5955F8202CBAB3E01000133,
9706 F5955F8302CBAB3E01000133,
9707 F5955F8402CBAB4001000133,
9708 F5955F8502CBAB4101000133,
9709 F5955F8602CBAB4101000133,
9710 F5955F8702CBAB4201000133,
9711 F5955F8802CBAB4201000133,
9712 F5955F8902CBAB4201000133,
9713 F5955F8A02CBAB4301000133,
9714 F5955F8B02CBAB4301000133,
9715 F5955F8C02CBAB4301000133,
9716 F5955F8D02CBAB4401000133,
9717 F5955F8E02CBAB4401000133,
9718 F5955F8F02CBAB4401000133,
9719 F5955F9002CBAB4601000133,
9720 F5955F9102CBAB4601000133,
9721 F5955F9202CBAB4601000133,
9722 F5955F9302CBAB4A01000133,
9723 F5955F9402CBAB4A01000133,
9724 F5955F9502CBAB4B01000133,
9725 F5955F9602CBAB4B01000133,
9726 F5955F9702CBAB4C01000133,
9727 F5955F9802CBAB4C01000133,
9728 F5955F9902CBAB4D01000133,
9729 F5955F9A02CBAB4D01000133,
9730 F5955F9B02CBAB4E01000133,
9731 F5955F9C02CBAB4E01000133,
9732 F5955F9D02CBAB4E01000133,
9733 F5955F9E02CBAB4F01000133,
9734 F5955F9F02CBAB5001000133,
9735 F5955FA002CBAB5001000133,
9736 F5955FA102CBAB5101000133,
9737 F5955FA202CBAB5101000133,
9738 F5955FA302CBAB5301000133,
9739 F5955FA402CBAB5401000133,
9740 F5955FA502CBAB5401000133,
9741 F5955FA602CBAB5701000133,
9742 F5955FA702CBAB5801000133,
9743 F5955FA802CBAB5801000133,
9744 F5955FA902CBAB5901000133,
9745 F5955FAA02CBAB5901000133,
9746 F5955FAB02CBAB5901000133,
9747 F5955FAC02CBAB5A01000133,
9748 F5955FAD02CBAB5A01000133,
9749 F5955FAE02CBAB5A01000133,
9750 F5955FAF02CBAB5B01000133,
9751 F5955FB002CBAB5B01000133,
9752 F5955FB102CBAB5C01000133,
9753 F5955FB202CBAB5C01000133,
9754 F5955FB302CBAB5D01000133,
9755 F5955FB402CBAB5D01000133,
9756 F5955FB502CBAB5E01000133,
9757 F5955FB602CBAB5E01000133,
9758 F5955FB702CBAB5E01000133,
9759 F5955FB802CBAB5F01000133,
9760 F5955FB902CBAB5F01000133,
9761 F5955FBA02CBAB5F01000133,
9762 F5955FBB02CBAB6001000133,
9763 F5955FBC02CBAB6101000133,
9764 F5955FBD02CBAB6101000133,
9765 F5955FBE02CBAB6101000133,
9766 F5955FBF02CBAB6201000133,
9767 F5955FC002CBAB6301000133,
9768 F5955FC102CBAB6401000133,
9769 F5955FC202CBAB6401000133,
9770 F5955FC302CBAB6401000133,
9771 F5955FC402CBAB6501000133,
9772 F5955FC502CBAB6601000133,
9773 F5955FC602CBAB6801000133,
9774 F5955FC702CBAB6801000133,
9775 F5955FC802CBAB6901000133,
9776 F5955FC902CBAB6901000133,
9777 F5955FCA02CBAB6A01000133,
9778 F5955FCB02CBAB6A01000133,
9779 F5955FCC02CBAB6C01000133,
9780 F5955FCD02CBAB6C01000133,
9781 F5955FCE02CBAB6C01000133,
9782 F5955FCF02CBAB6D01000133,
9783 F5955FD002CBAB6D01000133,
9784 F5955FD102CBAB6D01000133,
9785 F5955FD202CBAB6E01000133,
9786 F5955FD302CBAB6E01000133,
9787 F5955FD402CBAB6F01000133,
9788 F5955FD502CBAB6F01000133,
9789 F5955FD602CBAB7001000133,
9790 F5955FD702CBAB7001000133,
9791 F5955FD802CBAB7001000133,
9792 F5955FD902CBAB7101000133,
9793 F5955FDA02CBAB7101000133,
9794 F5955FDB02CBAB7101000133,
9795 F5955FDC02CBAB7701000133,
9796 F5955FDD02CBAB7701000133,
9797 F5955FDE02CBAB7801000133,
9798 F5955FDF02CBAB7801000133,
9799 F5955FE002CBAB7B01000133,
9800 F5955FE102CBAB7C01000133,
9801 F5955FE202CBAB7C01000133,
9802 F5955FE302CBAB7C01000133,
9803 F5955FE402CBAB7D01000133,
9804 F5955FE502CBAB7D01000133,
9805 F5955FE602CBAB7D01000133,
9806 F5955FE702CBAB7E01000133,
9807 F5955FE802CBAB7E01000133,
9808 F5955FE902CBAB7E01000133,
9809 F5955FEA02CBAB7F01000133,
9810 F5955FEB02CBAB7F01000133,
9811 F5955FEC02CBAB7F01000133,
9812 F5955FED02CBAB8001000133,
9813 F5955FEE02CBAB8101000133,
9814 F5955FEF02CBAB8101000133,
9815 F5955FF002CBAB8101000133,
9816 F5955FF102CBAB8201000133,
9817 F5955FF202CBAB8201000133,
9818 F5955FF302CBAB8201000133,
9819 F5955FF402CBAB8301000133,
9820 F5955FF502CBAB8501000133,
9821 F5955FF602CBAB8501000133,
9822 F5955FF702CBAB8601000133,
9823 F5955FF802CBAB8901000133,
9824 F5955FF902CBAB8901000133,
9825 F5955FFA02CBAB8901000133,
9826 F5955FFB02CBAB8A01000133,
9827 F5955FFC02CBAB8A01000133,
9828 F5955FFD02CBAB8A01000133,
9829 F5955FFE02CBAB8B01000133,
9830 F5955FFF02CBAB8B01000133,
9831 F595600002CBAB8C01000133,
9832 F595600102CBAB8C01000133,
9833 F595600202CBAB8C01000133,
9834 F595600302CBAB8D01000133,
9835 F595600402CBAB8D01000133,
9836 F595600502CBAB8D01000133,
9837 F595600602CBAB8E01000133,
9838 F595600702CBAB8E01000133,
9839 F595600802CBAB8F01000133,
9840 F595600902CBAB8F01000133,
9841 F595600A02CBAB8F01000133,
9842 F595600B02CBAB9001000133,
9843 F595600C02CBAB9001000133,
9844 F595600D02CBAB9001000133,
9845 F595600E02CBAB9101000133,
9846 F595600F02CBAB9601000133,
9847 F595601002CBAB9601000133,
9848 F595601102CBAB9601000133,
9849 F595601202CBAB9701000133,
9850 F595601302CBAB9701000133,
9851 F595601402CBAB9701000133,
9852 F595601502CBAB9801000133,
9853 F595601602CBAB9801000133,
9854 F595601702CBAB9801000133,
9855 F595601802CBAB9901000133,
9856 F5F5A6A002CDB27401000133,
9857 F5F5A6A502CDB6CA01000133,
9858 F5F5A6A602CDB6CA01000133,
9859 F5F5A6A702CDB6CA01000133,
9860 F5F5A6A802CDB6CA01000133,
9861 F5F5A6A902CDB91E01000133,
9862 F5F5A6AA02CDB92001000133,
9863 F58E04FE02F11FA701A8020C,
9864 F5AC2EE003803A3601000133,
9865 F5AC2EE103803A3601000133,
9866 );
9867 isa = PBXSourcesBuildPhase;
9868 runOnlyForDeploymentPostprocessing = 0;
9869 };
9870 F5C6AC4B020C2B1001000133 = {
9871 buildActionMask = 2147483647;
9872 files = (
9873 );
9874 isa = PBXFrameworksBuildPhase;
9875 runOnlyForDeploymentPostprocessing = 0;
9876 };
9877 F5C6AC4C020C2B1001000133 = {
9878 buildActionMask = 2147483647;
9879 files = (
9880 F5955E9D02CBA8B501000133,
9881 F5955E9E02CBA8B701000133,
9882 F5955E9F02CBA8B901000133,
9883 );
9884 isa = PBXRezBuildPhase;
9885 runOnlyForDeploymentPostprocessing = 0;
9886 };
9887 F5CC83C20379B1A901000133 = {
9888 buildActionMask = 2147483647;
9889 files = (
9890 );
9891 generatedFileNames = (
9892 );
9893 isa = PBXShellScriptBuildPhase;
9894 neededFileNames = (
9895 );
9896 runOnlyForDeploymentPostprocessing = 0;
9897 shellPath = /bin/sh;
9898 shellScript = "# Create wx include directory if necessary\nif [ ! -d \"$SYMROOT/include/wx\" ]; then\n mkdir -p \"$SYMROOT/include/wx\" || exit 1\nfi\n# Copy setup0.h to setup.h\nif [ ! -f \"$SYMROOT/include/wx/setup.h\" ]; then\n cp \"$SRCROOT/../include/wx/mac/setup0.h\" \"$SYMROOT/include/wx/setup.h\" || exit 1\nfi\n# Generate lexer\nif [ ! -f \"$SYMROOT/lexer.c\" -o \"$SYMROOT/lexer.c\" -ot \"$SRCROOT/common/lexer.l\" ]; then\n flex \"$SRCROOT/common/lexer.l\" || exit 1\n sed -e \"s;$SRCROOT/common/lex.yy.c;lexer.l;g\" < lex.yy.c | \\\n sed -e \"s/yy/PROIO_yy/g\" | \\\n sed -e \"s/input/PROIO_input/g\" | \\\n sed -e \"s/unput/PROIO_unput/g\" > \"$SYMROOT/lexer.c\" || exit 1\n rm -f lex.yy.c\nfi\n# Generate parser\nif [ ! -f \"$SYMROOT/parser.c\" -o \"$SYMROOT/parser.c\" -ot \"$SRCROOT/common/parser.y\" ]; then\n bison -y \"$SRCROOT/common/parser.y\" || exit 1\n sed -e \"s;$SRCROOT/common/y.tab.c;parser.y;g\" < y.tab.c | \\\n sed -e \"s/BUFSIZ/5000/g\" | \\\n sed -e \"s/YYLMAX 200/YYLMAX 5000/g\" | \\\n sed -e \"s/yy/PROIO_yy/g\" | \\\n sed -e \"s/input/PROIO_input/g\" | \\\n sed -e \"s/unput/PROIO_unput/g\" > \"$SYMROOT/parser.c\" || exit 1\n rm -f y.tab.c\nfi";
9899 };
9900 F5CC83C30379B20901000133 = {
9901 fileRef = F5A8604501FA022C0175ACA7;
9902 isa = PBXBuildFile;
9903 settings = {
9904 };
9905 };
9906 F5CC83D90379C17C01000133 = {
9907 isa = PBXFileReference;
9908 path = artprov.h;
9909 refType = 4;
9910 };
9911 F5CC83DA0379C17C01000133 = {
9912 isa = PBXFileReference;
9913 path = build.h;
9914 refType = 4;
9915 };
9916 F5CC83DD0379C17C01000133 = {
9917 fileRef = F5CC83D90379C17C01000133;
9918 isa = PBXBuildFile;
9919 settings = {
9920 };
9921 };
9922 F5CC83DE0379C17C01000133 = {
9923 fileRef = F5CC83DA0379C17C01000133;
9924 isa = PBXBuildFile;
9925 settings = {
9926 };
9927 };
9928 F5CC83DF0379C20901000133 = {
9929 isa = PBXFileReference;
9930 name = dcbuffer.h;
9931 path = /Volumes/Users/gilles/cvs/wxWindows/include/wx/dcbuffer.h;
9932 refType = 0;
9933 };
9934 F5CC83E00379C20901000133 = {
9935 isa = PBXFileReference;
9936 name = display.h;
9937 path = /Volumes/Users/gilles/cvs/wxWindows/include/wx/display.h;
9938 refType = 0;
9939 };
9940 F5CC83E10379C20901000133 = {
9941 isa = PBXFileReference;
9942 name = features.h;
9943 path = /Volumes/Users/gilles/cvs/wxWindows/include/wx/features.h;
9944 refType = 0;
9945 };
9946 F5CC83E20379C20901000133 = {
9947 isa = PBXFileReference;
9948 name = hashmap.h;
9949 path = /Volumes/Users/gilles/cvs/wxWindows/include/wx/hashmap.h;
9950 refType = 0;
9951 };
9952 F5CC83E30379C20901000133 = {
9953 isa = PBXFileReference;
9954 name = iconbndl.h;
9955 path = /Volumes/Users/gilles/cvs/wxWindows/include/wx/iconbndl.h;
9956 refType = 0;
9957 };
9958 F5CC83E40379C20901000133 = {
9959 isa = PBXFileReference;
9960 name = ipc.h;
9961 path = /Volumes/Users/gilles/cvs/wxWindows/include/wx/ipc.h;
9962 refType = 0;
9963 };
9964 F5CC83E50379C20901000133 = {
9965 isa = PBXFileReference;
9966 name = listbase.h;
9967 path = /Volumes/Users/gilles/cvs/wxWindows/include/wx/listbase.h;
9968 refType = 0;
9969 };
9970 F5CC83E60379C20901000133 = {
9971 isa = PBXFileReference;
9972 name = msgout.h;
9973 path = /Volumes/Users/gilles/cvs/wxWindows/include/wx/msgout.h;
9974 refType = 0;
9975 };
9976 F5CC83E70379C20901000133 = {
9977 isa = PBXFileReference;
9978 name = ptr_scpd.h;
9979 path = /Volumes/Users/gilles/cvs/wxWindows/include/wx/ptr_scpd.h;
9980 refType = 0;
9981 };
9982 F5CC83E80379C20901000133 = {
9983 isa = PBXFileReference;
9984 path = thrimpl.cpp;
9985 refType = 4;
9986 };
9987 F5CC83E90379C20901000133 = {
9988 isa = PBXFileReference;
9989 path = volume.h;
9990 refType = 4;
9991 };
9992 F5CC83F50379C20901000133 = {
9993 fileRef = F5CC83DF0379C20901000133;
9994 isa = PBXBuildFile;
9995 settings = {
9996 };
9997 };
9998 F5CC83F60379C20901000133 = {
9999 fileRef = F5CC83E00379C20901000133;
10000 isa = PBXBuildFile;
10001 settings = {
10002 };
10003 };
10004 F5CC83F70379C20901000133 = {
10005 fileRef = F5CC83E10379C20901000133;
10006 isa = PBXBuildFile;
10007 settings = {
10008 };
10009 };
10010 F5CC83F80379C20901000133 = {
10011 fileRef = F5CC83E20379C20901000133;
10012 isa = PBXBuildFile;
10013 settings = {
10014 };
10015 };
10016 F5CC83F90379C20901000133 = {
10017 fileRef = F5CC83E30379C20901000133;
10018 isa = PBXBuildFile;
10019 settings = {
10020 };
10021 };
10022 F5CC83FA0379C20901000133 = {
10023 fileRef = F5CC83E40379C20901000133;
10024 isa = PBXBuildFile;
10025 settings = {
10026 };
10027 };
10028 F5CC83FB0379C20901000133 = {
10029 fileRef = F5CC83E50379C20901000133;
10030 isa = PBXBuildFile;
10031 settings = {
10032 };
10033 };
10034 F5CC83FC0379C20901000133 = {
10035 fileRef = F5CC83E60379C20901000133;
10036 isa = PBXBuildFile;
10037 settings = {
10038 };
10039 };
10040 F5CC83FD0379C20901000133 = {
10041 fileRef = F5CC83E70379C20901000133;
10042 isa = PBXBuildFile;
10043 settings = {
10044 };
10045 };
10046 F5CC83FE0379C20901000133 = {
10047 fileRef = F5CC83E80379C20901000133;
10048 isa = PBXBuildFile;
10049 settings = {
10050 };
10051 };
10052 F5CC83FF0379C20901000133 = {
10053 fileRef = F5CC83E90379C20901000133;
10054 isa = PBXBuildFile;
10055 settings = {
10056 };
10057 };
10058 F5D00F2901FDFB8401000133 = {
10059 isa = PBXFileReference;
10060 name = "libstdc++.a";
10061 path = "/usr/lib/libstdc++.a";
10062 refType = 0;
10063 };
10064 F5D0E30702CCEA1D01000133 = {
10065 isa = PBXFileReference;
10066 path = lexer.c;
10067 refType = 3;
10068 };
10069 F5D0E30802CCEA1D01000133 = {
10070 isa = PBXFileReference;
10071 name = parser.c;
10072 path = build/parser.c;
10073 refType = 2;
10074 };
10075 F5F5A69F02CDB27401000133 = {
10076 isa = PBXFileReference;
10077 name = hashmap.cpp;
10078 path = common/hashmap.cpp;
10079 refType = 2;
10080 };
10081 F5F5A6A002CDB27401000133 = {
10082 fileRef = F5F5A69F02CDB27401000133;
10083 isa = PBXBuildFile;
10084 settings = {
10085 };
10086 };
10087 F5F5A6A102CDB6CA01000133 = {
10088 isa = PBXFileReference;
10089 name = artprov.cpp;
10090 path = common/artprov.cpp;
10091 refType = 2;
10092 };
10093 F5F5A6A202CDB6CA01000133 = {
10094 isa = PBXFileReference;
10095 name = artstd.cpp;
10096 path = common/artstd.cpp;
10097 refType = 2;
10098 };
10099 F5F5A6A302CDB6CA01000133 = {
10100 isa = PBXFileReference;
10101 name = iconbndl.cpp;
10102 path = common/iconbndl.cpp;
10103 refType = 2;
10104 };
10105 F5F5A6A402CDB6CA01000133 = {
10106 isa = PBXFileReference;
10107 name = imagfill.cpp;
10108 path = common/imagfill.cpp;
10109 refType = 2;
10110 };
10111 F5F5A6A502CDB6CA01000133 = {
10112 fileRef = F5F5A6A102CDB6CA01000133;
10113 isa = PBXBuildFile;
10114 settings = {
10115 };
10116 };
10117 F5F5A6A602CDB6CA01000133 = {
10118 fileRef = F5F5A6A202CDB6CA01000133;
10119 isa = PBXBuildFile;
10120 settings = {
10121 };
10122 };
10123 F5F5A6A702CDB6CA01000133 = {
10124 fileRef = F5F5A6A302CDB6CA01000133;
10125 isa = PBXBuildFile;
10126 settings = {
10127 };
10128 };
10129 F5F5A6A802CDB6CA01000133 = {
10130 fileRef = F5F5A6A402CDB6CA01000133;
10131 isa = PBXBuildFile;
10132 settings = {
10133 };
10134 };
10135 F5F5A6A902CDB91E01000133 = {
10136 fileRef = F5A8649401FA022D0175ACA7;
10137 isa = PBXBuildFile;
10138 settings = {
10139 };
10140 };
10141 F5F5A6AA02CDB92001000133 = {
10142 fileRef = F5A8649201FA022D0175ACA7;
10143 isa = PBXBuildFile;
10144 settings = {
10145 };
10146 };
10147 F5F5A6B602CDD62501000133 = {
10148 buildActionMask = 2147483647;
10149 files = (
10150 F5CC83DD0379C17C01000133,
10151 F5CC83DE0379C17C01000133,
10152 F5CC83F50379C20901000133,
10153 F5CC83F60379C20901000133,
10154 F5CC83F70379C20901000133,
10155 F5CC83F80379C20901000133,
10156 F5CC83F90379C20901000133,
10157 F5CC83FA0379C20901000133,
10158 F5CC83FB0379C20901000133,
10159 F5CC83FC0379C20901000133,
10160 F5CC83FD0379C20901000133,
10161 F5CC83FF0379C20901000133,
10162 );
10163 isa = PBXHeadersBuildPhase;
10164 runOnlyForDeploymentPostprocessing = 0;
10165 };
10166 F5F5A6B702CDD62501000133 = {
10167 buildActionMask = 2147483647;
10168 files = (
10169 F5A0C52502CF702801000133,
10170 F5A0C52602CF702D01000133,
10171 F5A0C52702CF702D01000133,
10172 F5A0C52802CF703401000133,
10173 F5A0C52902CF703401000133,
10174 F5A0C52A02CF703501000133,
10175 F5A0C52B02CF703501000133,
10176 F5A0C52C02CF703601000133,
10177 F5A0C52D02CF703601000133,
10178 F5A0C52E02CF703701000133,
10179 F5A0C52F02CF703701000133,
10180 F5A0C53002CF703801000133,
10181 F5A0C53102CF703801000133,
10182 F5A0C53202CF703901000133,
10183 F5A0C53302CF703A01000133,
10184 F5A0C53402CF703A01000133,
10185 F5A0C53502CF703B01000133,
10186 F5A0C53602CF705401000133,
10187 F5A0C53702CF705501000133,
10188 F5A0C53802CF705501000133,
10189 F5A0C53902CF705601000133,
10190 F5A0C53A02CF705701000133,
10191 F5A0C53B02CF705701000133,
10192 F5A0C53C02CF705801000133,
10193 F5A0C53D02CF705801000133,
10194 F5A0C53E02CF705901000133,
10195 F5A0C53F02CF705901000133,
10196 F5A0C54002CF705A01000133,
10197 F5A0C54102CF705A01000133,
10198 F5A0C54202CF705A01000133,
10199 F5A0C54302CF705B01000133,
10200 F5A0C54402CF705C01000133,
10201 F5A0C54502CF705C01000133,
10202 F5A0C54602CF705C01000133,
10203 F5A0C54702CF705D01000133,
10204 F5A0C54802CF705D01000133,
10205 F5A0C54902CF705E01000133,
10206 F5A0C54A02CF705E01000133,
10207 F5A0C54B02CF705E01000133,
10208 F5A0C54C02CF706101000133,
10209 F5A0C54D02CF706101000133,
10210 F5A0C54E02CF706201000133,
10211 F5A0C54F02CF706201000133,
10212 F5A0C55002CF706401000133,
10213 F5A0C55102CF706501000133,
10214 F5A0C55202CF706501000133,
10215 F5A0C55302CF706601000133,
10216 F5A0C55402CF706601000133,
10217 F5A0C55502CF706701000133,
10218 F5A0C55602CF706701000133,
10219 F5A0C55702CF706701000133,
10220 F5A0C55802CF706801000133,
10221 F5A0C55902CF706901000133,
10222 F5A0C55A02CF706901000133,
10223 F5A0C55B02CF706A01000133,
10224 F5A0C55C02CF706A01000133,
10225 F5A0C55D02CF706B01000133,
10226 F5A0C55E02CF706B01000133,
10227 F5A0C55F02CF706B01000133,
10228 F5A0C56002CF706C01000133,
10229 F5A0C56102CF706C01000133,
10230 F5A0C56202CF706D01000133,
10231 F5A0C56302CF706D01000133,
10232 F5A0C56402CF706E01000133,
10233 F5A0C56502CF706E01000133,
10234 F5A0C56602CF706E01000133,
10235 F5A0C56702CF706F01000133,
10236 F5A0C56802CF706F01000133,
10237 F5A0C56902CF707001000133,
10238 F5A0C56A02CF707001000133,
10239 F5A0C56B02CF707301000133,
10240 F5A0C56C02CF707301000133,
10241 F5A0C56D02CF707401000133,
10242 F5A0C56E02CF707401000133,
10243 F5A0C56F02CF707501000133,
10244 F5A0C57002CF707501000133,
10245 F5A0C57102CF707601000133,
10246 F5A0C57202CF707601000133,
10247 F5A0C57302CF707701000133,
10248 F5A0C57402CF707701000133,
10249 F5A0C57502CF707701000133,
10250 F5A0C57602CF707C01000133,
10251 F5A0C57802CF707E01000133,
10252 F5A0C57902CF707E01000133,
10253 F5A0C57A02CF707E01000133,
10254 F5A0C57B02CF707F01000133,
10255 F5A0C57C02CF707F01000133,
10256 F5A0C57D02CF708001000133,
10257 F5A0C57E02CF708101000133,
10258 F5A0C57F02CF708201000133,
10259 F5A0C58002CF708201000133,
10260 F5A0C58102CF708301000133,
10261 F5A0C58202CF708301000133,
10262 F5A0C58302CF708401000133,
10263 F5A0C58402CF708401000133,
10264 F5A0C58502CF708401000133,
10265 F5A0C58602CF708501000133,
10266 F5A0C58702CF708501000133,
10267 F5A0C58802CF708501000133,
10268 F5A0C58902CF708601000133,
10269 F5A0C58A02CF708601000133,
10270 F5A0C58B02CF708901000133,
10271 F5A0C58C02CF708A01000133,
10272 F5A0C58D02CF708A01000133,
10273 F5A0C58E02CF708B01000133,
10274 F5A0C58F02CF708B01000133,
10275 F5A0C59002CF708B01000133,
10276 F5A0C59102CF708C01000133,
10277 F5A0C59202CF708D01000133,
10278 F5A0C59302CF708E01000133,
10279 F5A0C59402CF709001000133,
10280 F5A0C59502CF709101000133,
10281 F5A0C59602CF709201000133,
10282 F5A0C59702CF709201000133,
10283 F5A0C59802CF709201000133,
10284 F5A0C59902CF709301000133,
10285 F5A0C59B02CF709501000133,
10286 F5A0C59C02CF709501000133,
10287 F5A0C59D02CF709601000133,
10288 F5A0C59E02CF709701000133,
10289 F5A0C59F02CF709701000133,
10290 F5A0C5A002CF709801000133,
10291 F5A0C5A102CF709901000133,
10292 F5A0C5A202CF709901000133,
10293 F5A0C5A302CF709A01000133,
10294 F5A0C5A402CF709A01000133,
10295 F5A0C5A502CF709B01000133,
10296 F5A0C5A602CF709B01000133,
10297 F5A0C5A702CF709B01000133,
10298 F5A0C5A802CF709C01000133,
10299 F5A0C5A902CF70A501000133,
10300 F5A0C5AA02CF70A601000133,
10301 F5A0C5AB02CF70A601000133,
10302 F5A0C5AC02CF70A601000133,
10303 F5A0C5AD02CF70A801000133,
10304 F5A0C5AE02CF70A801000133,
10305 F5A0C5AF02CF70A801000133,
10306 F5A0C5B002CF70A901000133,
10307 F5A0C5B102CF70AA01000133,
10308 F5A0C5B202CF70AA01000133,
10309 F5A0C5B302CF70AA01000133,
10310 F5A0C5B402CF70AB01000133,
10311 F5A0C5B502CF70AB01000133,
10312 F5A0C5B602CF70AC01000133,
10313 F5A0C5B702CF70AD01000133,
10314 F5A0C5B802CF70AD01000133,
10315 F5A0C5B902CF70AD01000133,
10316 F5A0C5BA02CF70AE01000133,
10317 F5A0C5BB02CF70AE01000133,
10318 F5A0C5BC02CF70AF01000133,
10319 F5A0C5BD02CF70AF01000133,
10320 F5A0C5BE02CF70AF01000133,
10321 F5A0C5BF02CF70B001000133,
10322 F5A0C5C002CF70B101000133,
10323 F5A0C5C102CF70B101000133,
10324 F5A0C5C202CF70B201000133,
10325 F5A0C5C302CF70B501000133,
10326 F5A0C5C402CF70B501000133,
10327 F5A0C5C502CF70B601000133,
10328 F5A0C5C602CF70B601000133,
10329 F5A0C5C702CF70B601000133,
10330 F5A0C5C802CF70B701000133,
10331 F5A0C5C902CF70B701000133,
10332 F5A0C5CA02CF70B701000133,
10333 F5A0C5CB02CF70B801000133,
10334 F5A0C5CC02CF70B901000133,
10335 F5A0C5CD02CF70B901000133,
10336 F5A0C5CE02CF70B901000133,
10337 F5A0C5CF02CF70BA01000133,
10338 F5A0C5D002CF70BA01000133,
10339 F5A0C5D102CF70BA01000133,
10340 F5A0C5D202CF70BB01000133,
10341 F5A0C5D302CF70BC01000133,
10342 F5A0C5D402CF70BC01000133,
10343 F5A0C5D502CF70BC01000133,
10344 F5A0C5D602CF70BD01000133,
10345 F5A0C5D702CF70C201000133,
10346 F5A0C5D802CF70C301000133,
10347 F5A0C5D902CF70C301000133,
10348 F5A0C5DA02CF70C301000133,
10349 F5A0C5DB02CF70C401000133,
10350 F5A0C5DC02CF70C501000133,
10351 F5A0C5DD02CF70C501000133,
10352 F5A0C5DE02CF70C801000133,
10353 F5A0C5DF02CF70C801000133,
10354 F5A0C5E002CF70D201000133,
10355 F5A0C5E102CF70D201000133,
10356 F5A0C5E202CF70D201000133,
10357 F5A0C5E302CF70D301000133,
10358 F5A0C5E402CF70D301000133,
10359 F5A0C5E502CF70D501000133,
10360 F5A0C5E602CF70D601000133,
10361 F5A0C5E702CF70D601000133,
10362 F5A0C5E902CF70D701000133,
10363 F5A0C5EA02CF70D701000133,
10364 F5A0C5EB02CF70D801000133,
10365 F5A0C5EC02CF70D801000133,
10366 F5A0C5ED02CF70D801000133,
10367 F5A0C5EE02CF70D901000133,
10368 F5A0C5EF02CF70D901000133,
10369 F5A0C5F002CF70DA01000133,
10370 F5A0C5F102CF70DA01000133,
10371 F5A0C5F202CF70DA01000133,
10372 F5A0C5F302CF70DB01000133,
10373 F5A0C5F402CF70EA01000133,
10374 F5A0C5F502CF70EB01000133,
10375 F5A0C5F602CF70EB01000133,
10376 F5A0C5F702CF70EC01000133,
10377 F5A0C5F802CF70EC01000133,
10378 F5A0C5F902CF70EC01000133,
10379 F5A0C5FA02CF70ED01000133,
10380 F5A0C5FB02CF70ED01000133,
10381 F5A0C5FC02CF70EE01000133,
10382 F5A0C5FD02CF70EE01000133,
10383 F5A0C5FE02CF70EE01000133,
10384 F5A0C5FF02CF70EF01000133,
10385 F5A0C60102CF70F001000133,
10386 F5A0C60202CF70F101000133,
10387 F5A0C60302CF70F101000133,
10388 F5A0C60402CF70F201000133,
10389 F5A0C60502CF70F201000133,
10390 F5A0C60602CF70F201000133,
10391 F5A0C60702CF70F301000133,
10392 F5A0C60802CF70F401000133,
10393 F5A0C60902CF70F501000133,
10394 F5A0C60A02CF70F501000133,
10395 F5A0C60B02CF70F601000133,
10396 F5A0C60C02CF70F601000133,
10397 F5A0C60D02CF70F601000133,
10398 F5A0C60E02CF70F701000133,
10399 F5A0C60F02CF70F701000133,
10400 F5A0C61002CF70F701000133,
10401 F5A0C61102CF70F801000133,
10402 F5A0C61202CF70FA01000133,
10403 F5A0C61302CF70FA01000133,
10404 F5A0C61402CF70FB01000133,
10405 F5A0C61502CF70FB01000133,
10406 F5A0C61602CF70FC01000133,
10407 F5A0C61702CF70FC01000133,
10408 F5A0C61802CF70FC01000133,
10409 F5A0C61902CF70FD01000133,
10410 F5A0C61A02CF70FD01000133,
10411 F5A0C61B02CF70FD01000133,
10412 F5A0C61C02CF70FE01000133,
10413 F5A0C61D02CF70FE01000133,
10414 F5A0C61E02CF70FF01000133,
10415 F5A0C61F02CF70FF01000133,
10416 F5A0C62002CF710701000133,
10417 F5A0C62102CF710701000133,
10418 F5A0C62202CF710701000133,
10419 F5A0C62302CF710801000133,
10420 F5A0C62402CF710801000133,
10421 F5A0C62502CF710801000133,
10422 F5A0C62602CF710901000133,
10423 F5A0C62702CF710901000133,
10424 F5A0C62802CF710A01000133,
10425 F5A0C62902CF710A01000133,
10426 F5A0C62A02CF710A01000133,
10427 F5A0C62B02CF710B01000133,
10428 F5A0C62C02CF710B01000133,
10429 F5A0C62D02CF710C01000133,
10430 F5A0C62E02CF710C01000133,
10431 F5A0C62F02CF710D01000133,
10432 F5A0C63002CF711001000133,
10433 F5A0C63102CF711001000133,
10434 F5A0C63202CF711101000133,
10435 F5A0C63302CF711101000133,
10436 F5A0C63402CF711101000133,
10437 F5A0C63502CF711201000133,
10438 F5A0C63602CF711201000133,
10439 F5A0C63702CF711301000133,
10440 F5A0C63802CF711301000133,
10441 F5A0C63902CF711301000133,
10442 F5A0C63A02CF711401000133,
10443 F5A0C63B02CF711401000133,
10444 F5A0C63C02CF711401000133,
10445 F5A0C63D02CF711501000133,
10446 F5A0C63E02CF711501000133,
10447 F5A0C63F02CF711601000133,
10448 F5A0C64002CF711601000133,
10449 F5A0C64102CF711601000133,
10450 F5A0C64202CF711701000133,
10451 F5A0C64302CF711701000133,
10452 F5A0C64402CF711801000133,
10453 F5A0C64502CF711B01000133,
10454 F5A0C64602CF711B01000133,
10455 F5A0C64702CF711B01000133,
10456 F5A0C64802CF711C01000133,
10457 F5A0C64902CF711C01000133,
10458 F5A0C64A02CF711D01000133,
10459 F5A0C64B02CF711D01000133,
10460 F5A0C64C02CF711D01000133,
10461 F5A0C64D02CF711E01000133,
10462 F5A0C64E02CF711E01000133,
10463 F5A0C64F02CF711E01000133,
10464 F5A0C65002CF711F01000133,
10465 F5A0C65102CF712301000133,
10466 F5A0C65202CF712301000133,
10467 F5A0C65302CF712401000133,
10468 F5A0C65402CF712401000133,
10469 F5A0C65502CF712401000133,
10470 F5A0C65602CF712501000133,
10471 F5A0C65702CF712501000133,
10472 F5A0C65802CF712601000133,
10473 F5A0C65902CF712601000133,
10474 F5A0C65A02CF712701000133,
10475 F5A0C65B02CF712701000133,
10476 F5A0C65C02CF712701000133,
10477 F5A0C65D02CF712801000133,
10478 F5A0C65E02CF712801000133,
10479 F5A0C65F02CF712901000133,
10480 F5A0C66002CF712901000133,
10481 F5A0C66102CF712A01000133,
10482 F5A0C66202CF712A01000133,
10483 F5A0C66302CF712A01000133,
10484 F5A0C66402CF712B01000133,
10485 F5A0C66502CF712B01000133,
10486 F5A0C66602CF712C01000133,
10487 F5A0C66702CF712C01000133,
10488 F5A0C66802CF712C01000133,
10489 F5A0C66902CF712D01000133,
10490 F5A0C66A02CF712D01000133,
10491 F5A0C66B02CF712F01000133,
10492 F5A0C66C02CF713001000133,
10493 F5A0C66D02CF713001000133,
10494 F5A0C66E02CF713001000133,
10495 F5A0C66F02CF713101000133,
10496 F5A0C67002CF713101000133,
10497 F5A0C67102CF713101000133,
10498 F5A0C67202CF713201000133,
10499 F5A0C67302CF713201000133,
10500 F5A0C67402CF713301000133,
10501 F5A0C67502CF713401000133,
10502 F5A0C67602CF713501000133,
10503 F5A0C67702CF713501000133,
10504 F5A0C67802CF713601000133,
10505 F5A0C67902CF713601000133,
10506 F5A0C67A02CF713601000133,
10507 F5A0C67B02CF713701000133,
10508 F5A0C67C02CF713701000133,
10509 F5A0C67D02CF713801000133,
10510 F5A0C67E02CF713801000133,
10511 F5A0C67F02CF713901000133,
10512 F5A0C68002CF713901000133,
10513 F5A0C68102CF713901000133,
10514 F5A0C68202CF713A01000133,
10515 F5A0C68302CF713A01000133,
10516 F5A0C68402CF713B01000133,
10517 F5A0C68502CF713B01000133,
10518 F5A0C68602CF713B01000133,
10519 F5A0C68702CF713C01000133,
10520 F5A0C68802CF713C01000133,
10521 F5A0C68902CF713C01000133,
10522 F5A0C68A02CF713F01000133,
10523 F5A0C68B02CF713F01000133,
10524 F5A0C68C02CF714001000133,
10525 F5A0C68D02CF714001000133,
10526 F5A0C68E02CF714001000133,
10527 F5A0C68F02CF714101000133,
10528 F5A0C69002CF714101000133,
10529 F5A0C69202CF714201000133,
10530 F5A0C69302CF714201000133,
10531 F5A0C69402CF714201000133,
10532 F5A0C69502CF714301000133,
10533 F5A0C69602CF714301000133,
10534 F5A0C69702CF714401000133,
10535 F5A0C69802CF714401000133,
10536 F5A0C69902CF714501000133,
10537 F5A0C69B02CF714601000133,
10538 F5A0C69C02CF714601000133,
10539 F5A0C69D02CF714601000133,
10540 F5A0C69E02CF714701000133,
10541 F5A0C6A002CF714801000133,
10542 F5A0C6A102CF714801000133,
10543 F5A0C6A202CF714801000133,
10544 F58E04FF02F11FA701A8020C,
10545 F5CC83C30379B20901000133,
10546 F5CC83FE0379C20901000133,
10547 F5AC2EE203803A3601000133,
10548 F5AC2EE303803A3601000133,
10549 F5AC2EE403803A3601000133,
10550 );
10551 isa = PBXSourcesBuildPhase;
10552 runOnlyForDeploymentPostprocessing = 0;
10553 };
10554 F5F5A6B802CDD62501000133 = {
10555 buildActionMask = 2147483647;
10556 files = (
10557 );
10558 isa = PBXFrameworksBuildPhase;
10559 runOnlyForDeploymentPostprocessing = 0;
10560 };
10561 F5F5A6B902CDD62501000133 = {
10562 buildActionMask = 2147483647;
10563 files = (
10564 F5A0C69102CF714101000133,
10565 F5A0C69A02CF714501000133,
10566 F5A0C69F02CF714701000133,
10567 );
10568 isa = PBXRezBuildPhase;
10569 runOnlyForDeploymentPostprocessing = 0;
10570 };
10571 F5F5A6BA02CDD62501000133 = {
10572 buildPhases = (
10573 F5CC83C20379B1A901000133,
10574 F5F5A6B602CDD62501000133,
10575 F5F5A6B702CDD62501000133,
10576 F5F5A6B802CDD62501000133,
10577 F5F5A6B902CDD62501000133,
10578 );
10579 buildSettings = {
10580 DEBUGGING_SYMBOLS = NO;
10581 DYLIB_COMPATIBILITY_VERSION = 1;
10582 DYLIB_CURRENT_VERSION = 1;
10583 HEADER_SEARCH_PATHS = "../include mac/morefile jpeg png regex tiff - \"$(SYSTEM_DEVELOPER_DIR)/Headers/FlatCarbon\" /usr/include";
10584 LIBRARY_STYLE = STATIC;
10585 OPTIMIZATION_CFLAGS = "-O3";
10586 OTHER_CFLAGS = "-D__WXMAC__ -fno-rtti -fno-exceptions";
10587 OTHER_LDFLAGS = "";
10588 OTHER_LIBTOOL_FLAGS = "";
10589 OTHER_REZFLAGS = "-d __UNIX__";
10590 PREFIX_HEADER = ../include/wx_pb.h;
10591 PRODUCT_NAME = libwx_mac.a;
10592 REZ_EXECUTABLE = NO;
10593 SECTORDER_FLAGS = "";
10594 WARNING_CFLAGS = "-Wmost -Wno-four-char-constants -Wno-unknown-pragmas";
10595 };
10596 dependencies = (
10597 );
10598 isa = PBXLibraryTarget;
10599 name = wxStaticRelease;
10600 productInstallPath = /usr/local/lib;
10601 productName = wxStaticRelease;
10602 productReference = F5F5A6BB02CDD62501000133;
10603 shouldUseHeadermap = 0;
10604 };
10605 F5F5A6BB02CDD62501000133 = {
10606 isa = PBXLibraryReference;
10607 path = libwx_mac.a;
10608 refType = 3;
10609 };
10610 F5FD821D02CCEB8C01000133 = {
10611 isa = PBXFileReference;
10612 name = wx_pb.h;
10613 path = ../include/wx_pb.h;
10614 refType = 2;
10615 };
10616 F5FD822102CCECE601000133 = {
10617 isa = PBXFileReference;
10618 name = setup.h;
10619 path = build/include/wx/setup.h;
10620 refType = 2;
10621 };
10622 F5FD822202CCECE601000133 = {
10623 fileRef = F5FD822102CCECE601000133;
10624 isa = PBXBuildFile;
10625 settings = {
10626 };
10627 };
10628 };
10629 rootObject = 0867D690FE84028FC02AAC07;
10630 }