-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.in
2120 lines (2045 loc) · 104 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
# Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
subdir = .
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(srcdir)/config.h.in \
$(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
TODO acconfig.h config.guess config.sub depcomp install-sh \
ltmain.sh missing mkinstalldirs
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.in
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
SOURCES =
DIST_SOURCES =
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
html-recursive info-recursive install-data-recursive \
install-dvi-recursive install-exec-recursive \
install-html-recursive install-info-recursive \
install-pdf-recursive install-ps-recursive install-recursive \
installcheck-recursive installdirs-recursive pdf-recursive \
ps-recursive uninstall-recursive
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
distdir dist dist-all distcheck
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
{ test ! -d "$(distdir)" \
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -fr "$(distdir)"; }; }
am__relativize = \
dir0=`pwd`; \
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
sed_rest='s,^[^/]*/*,,'; \
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
sed_butlast='s,/*[^/]*$$,,'; \
while test -n "$$dir1"; do \
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
if test "$$first" != "."; then \
if test "$$first" = ".."; then \
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
else \
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
if test "$$first2" = "$$first"; then \
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
else \
dir2="../$$dir2"; \
fi; \
dir0="$$dir0"/"$$first"; \
fi; \
fi; \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
ALL_LINGUAS = @ALL_LINGUAS@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CATALOGS = @CATALOGS@
CATOBJEXT = @CATOBJEXT@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DATADIRNAME = @DATADIRNAME@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
GMOFILES = @GMOFILES@
GMSGFMT = @GMSGFMT@
GREP = @GREP@
GST_CFLAGS = @GST_CFLAGS@
GST_LIBS = @GST_LIBS@
HAVE_GSTREAMER = @HAVE_GSTREAMER@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLLIBS = @INTLLIBS@
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
INTLTOOL_MERGE = @INTLTOOL_MERGE@
INTLTOOL_PERL = @INTLTOOL_PERL@
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LOCALEDIR = @LOCALEDIR@
LTLIBOBJS = @LTLIBOBJS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
MKINSTALLDIRS = @MKINSTALLDIRS@
MSGFMT = @MSGFMT@
MSGFMT_OPTS = @MSGFMT_OPTS@
MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_CFLAGS = @PACKAGE_CFLAGS@
PACKAGE_LIBS = @PACKAGE_LIBS@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
POFILES = @POFILES@
POSUB = @POSUB@
PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
WINDRES = @WINDRES@
XGETTEXT = @XGETTEXT@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
lt_ECHO = @lt_ECHO@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
AM_CFLAGS = -Wall#-fprofile-arcs -ftest-coverage -pg
SUBDIRS = src po
EXTRA_DIST = \
autogen.sh \
bygfoot.glade \
bygfoot.gladep
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update
SUPPORT_DIRS = support_files support_files/pixmaps \
support_files/pixmaps/live_game support_files/pixmaps/symbols \
support_files/pixmaps/history support_files/mmedia \
support_files/mmedia/pics support_files/lg_commentary \
support_files/strategy support_files/names \
support_files/definitions support_files/definitions/europe \
support_files/definitions/europe/israel \
support_files/definitions/europe/norway \
support_files/definitions/europe/turkey \
support_files/definitions/europe/belgium \
support_files/definitions/europe/andorra \
support_files/definitions/europe/bulgaria \
support_files/definitions/europe/romania \
support_files/definitions/europe/albania \
support_files/definitions/europe/luxembourg \
support_files/definitions/europe/greece \
support_files/definitions/europe/n_ireland \
support_files/definitions/europe/belarus \
support_files/definitions/europe/fyr_macedonia \
support_files/definitions/europe/moldova \
support_files/definitions/europe/estonia \
support_files/definitions/europe/russia \
support_files/definitions/europe/azerbaijan \
support_files/definitions/europe/scotland \
support_files/definitions/europe/netherlands \
support_files/definitions/europe/england \
support_files/definitions/europe/slovakia \
support_files/definitions/europe/wales \
support_files/definitions/europe/bosnia_herzegovina \
support_files/definitions/europe/armenia \
support_files/definitions/europe/montenegro \
support_files/definitions/europe/georgia \
support_files/definitions/europe/ireland \
support_files/definitions/europe/lithuania \
support_files/definitions/europe/slovenia \
support_files/definitions/europe/latvia \
support_files/definitions/europe/denmark \
support_files/definitions/europe/italy \
support_files/definitions/europe/croatia \
support_files/definitions/europe/cyprus \
support_files/definitions/europe/sweden \
support_files/definitions/europe/san_marino \
support_files/definitions/europe/czech \
support_files/definitions/europe/portugal \
support_files/definitions/europe/malta \
support_files/definitions/europe/france \
support_files/definitions/europe/ukraine \
support_files/definitions/europe/kazakhstan \
support_files/definitions/europe/iceland \
support_files/definitions/europe/germany \
support_files/definitions/europe/serbia \
support_files/definitions/europe/switzerland \
support_files/definitions/europe/austria \
support_files/definitions/europe/faroe_islands \
support_files/definitions/europe/spain \
support_files/definitions/europe/finland \
support_files/definitions/europe/hungary \
support_files/definitions/europe/poland \
support_files/definitions/miscellaneous \
support_files/definitions/miscellaneous/europe \
support_files/definitions/miscellaneous/wc06 \
support_files/definitions/miscellaneous/euro08 \
support_files/definitions/miscellaneous/fifa \
support_files/definitions/miscellaneous/eu \
support_files/definitions/miscellaneous/misc \
support_files/definitions/south_america \
support_files/definitions/south_america/uruguay \
support_files/definitions/south_america/ecuador \
support_files/definitions/south_america/brazil \
support_files/definitions/south_america/americas \
support_files/definitions/south_america/chile \
support_files/definitions/south_america/bolivia \
support_files/definitions/south_america/colombia \
support_files/definitions/south_america/argentina \
support_files/definitions/south_america/paraguay \
support_files/definitions/south_america/peru \
support_files/definitions/south_america/venezuela \
support_files/definitions/australia \
support_files/definitions/australia/australia \
support_files/definitions/australia/aus_victoria \
support_files/definitions/north_america \
support_files/definitions/north_america/mexico \
support_files/definitions/north_america/usa \
support_files/definitions/north_america/guatemala \
support_files/definitions/north_america/honduras \
support_files/definitions/north_america/jamaica \
support_files/definitions/north_america/canada \
support_files/definitions/north_america/costa_rica \
support_files/definitions/north_america/belize \
support_files/definitions/north_america/nicaragua \
support_files/definitions/north_america/puerto_rico \
support_files/definitions/north_america/el_salvador \
support_files/definitions/north_america/trinidad_and_tobago \
support_files/definitions/north_america/panama \
support_files/definitions/asia \
support_files/definitions/asia/japan \
support_files/definitions/asia/uzbekistan \
support_files/definitions/asia/korea \
support_files/definitions/asia/china \
support_files/definitions/asia/india \
support_files/definitions/asia/saudi_arabia \
support_files/definitions/asia/thailand \
support_files/definitions/asia/australia \
support_files/definitions/asia/singapore \
support_files/definitions/asia/qatar \
support_files/definitions/asia/indonesia \
support_files/definitions/asia/iran \
support_files/definitions/asia/uae support_files/news \
support_files/hints
SUPPORT_FILES = support_files/pixmaps/live_game/save.png \
support_files/pixmaps/live_game/stadium_riot.png \
support_files/pixmaps/live_game/structure_change.png \
support_files/pixmaps/live_game/foul.png \
support_files/pixmaps/live_game/goal_own.png \
support_files/pixmaps/live_game/injury_temp.png \
support_files/pixmaps/live_game/scoring_chance.png \
support_files/pixmaps/live_game/lost_possession.png \
support_files/pixmaps/live_game/red.png \
support_files/pixmaps/live_game/yellow.png \
support_files/pixmaps/live_game/miss.png \
support_files/pixmaps/live_game/stadium_fire.png \
support_files/pixmaps/live_game/penalty.png \
support_files/pixmaps/live_game/cross_bar.png \
support_files/pixmaps/live_game/whistle.png \
support_files/pixmaps/live_game/injury.png \
support_files/pixmaps/live_game/stadium_brkn.png \
support_files/pixmaps/live_game/goal.png \
support_files/pixmaps/live_game/post.png \
support_files/pixmaps/live_game/header.png \
support_files/pixmaps/live_game/sub.png \
support_files/pixmaps/symbols/flag_zambia.png \
support_files/pixmaps/symbols/flag_algeria.png \
support_files/pixmaps/symbols/flag_bahrain.png \
support_files/pixmaps/symbols/flag_netherlands.png \
support_files/pixmaps/symbols/flag_canada.png \
support_files/pixmaps/symbols/flag_uae.png \
support_files/pixmaps/symbols/flag_botswana.png \
support_files/pixmaps/symbols/flag_sm.png \
support_files/pixmaps/symbols/flag_euro08.png \
support_files/pixmaps/symbols/flag_tahiti.png \
support_files/pixmaps/symbols/flag_brazil.png \
support_files/pixmaps/symbols/flag_turkey.png \
support_files/pixmaps/symbols/flag_rsa.png \
support_files/pixmaps/symbols/flag_australia.png \
support_files/pixmaps/symbols/flag_greece.png \
support_files/pixmaps/symbols/flag_malta.png \
support_files/pixmaps/symbols/flag_germany.png \
support_files/pixmaps/symbols/flag_vietnam.png \
support_files/pixmaps/symbols/flag_saudi_arabia.png \
support_files/pixmaps/symbols/flag_azerbaijan.png \
support_files/pixmaps/symbols/flag_russia.png \
support_files/pixmaps/symbols/flag_kittsnev.png \
support_files/pixmaps/symbols/flag_slovakia.png \
support_files/pixmaps/symbols/flag_bosnia_herzegovina.png \
support_files/pixmaps/symbols/flag_ghana.png \
support_files/pixmaps/symbols/flag_ecuador.png \
support_files/pixmaps/symbols/flag_china.png \
support_files/pixmaps/symbols/flag_vanuatu.png \
support_files/pixmaps/symbols/flag_bolivia.png \
support_files/pixmaps/symbols/flag_colombia.png \
support_files/pixmaps/symbols/flag_romania.png \
support_files/pixmaps/symbols/flag_egypt.png \
support_files/pixmaps/symbols/flag_oman.png \
support_files/pixmaps/symbols/flag_iraq.png \
support_files/pixmaps/symbols/flag_portugal.png \
support_files/pixmaps/symbols/flag_france.png \
support_files/pixmaps/symbols/flag_fyr_macedonia.png \
support_files/pixmaps/symbols/flag_morocco.png \
support_files/pixmaps/symbols/flag_angola.png \
support_files/pixmaps/symbols/flag_cameroon.png \
support_files/pixmaps/symbols/flag_kenya.png \
support_files/pixmaps/symbols/flag_es.png \
support_files/pixmaps/symbols/flag_england.png \
support_files/pixmaps/symbols/flag_lie.png \
support_files/pixmaps/symbols/flag_eu.png \
support_files/pixmaps/symbols/flag_sudan.png \
support_files/pixmaps/symbols/flag_peru.png \
support_files/pixmaps/symbols/flag_tunisia.png \
support_files/pixmaps/symbols/flag_lithuania.png \
support_files/pixmaps/symbols/flag_macedonia.png \
support_files/pixmaps/symbols/flag_croatia.png \
support_files/pixmaps/symbols/flag_turkmenistan.png \
support_files/pixmaps/symbols/flag_solomon.png \
support_files/pixmaps/symbols/flag_usa.png \
support_files/pixmaps/symbols/flag_el_salvador.png \
support_files/pixmaps/symbols/flag_panama.png \
support_files/pixmaps/symbols/flag_cdi.png \
support_files/pixmaps/symbols/flag_switzerland.png \
support_files/pixmaps/symbols/flag_liberia.png \
support_files/pixmaps/symbols/flag_costa_rica.png \
support_files/pixmaps/symbols/flag_lux.png \
support_files/pixmaps/symbols/flag_austria.png \
support_files/pixmaps/symbols/flag_togo.png \
support_files/pixmaps/symbols/flag_faroe_islands.png \
support_files/pixmaps/symbols/flag_paraguay.png \
support_files/pixmaps/symbols/flag_rwanda.png \
support_files/pixmaps/symbols/flag_jordan.png \
support_files/pixmaps/symbols/flag_latvia.png \
support_files/pixmaps/symbols/flag_fiji.png \
support_files/pixmaps/symbols/map_ireland.png \
support_files/pixmaps/symbols/flag_honduras.png \
support_files/pixmaps/symbols/wc_samerica.png \
support_files/pixmaps/symbols/flag_thailand.png \
support_files/pixmaps/symbols/wc_africa.png \
support_files/pixmaps/symbols/flag_cyprus.png \
support_files/pixmaps/symbols/flag_kyrgyzstan.png \
support_files/pixmaps/symbols/flag_albania.png \
support_files/pixmaps/symbols/flag_nz.png \
support_files/pixmaps/symbols/flag_cpv.png \
support_files/pixmaps/symbols/flag_ch.png \
support_files/pixmaps/symbols/flag_n_ireland.png \
support_files/pixmaps/symbols/flag_belarus.png \
support_files/pixmaps/symbols/flag_liechtenstein.png \
support_files/pixmaps/symbols/flag_korea.png \
support_files/pixmaps/symbols/flag_moldova.png \
support_files/pixmaps/symbols/flag_sri_lanka.png \
support_files/pixmaps/symbols/flag_maldives.png \
support_files/pixmaps/symbols/flag_serbia.png \
support_files/pixmaps/symbols/flag_argentina.png \
support_files/pixmaps/symbols/flag_hongkong.png \
support_files/pixmaps/symbols/flag_malawi.png \
support_files/pixmaps/symbols/flag_cz.png \
support_files/pixmaps/symbols/flag_yemen.png \
support_files/pixmaps/symbols/wc_namerica.png \
support_files/pixmaps/symbols/flag_israel.png \
support_files/pixmaps/symbols/flag_italy.png \
support_files/pixmaps/symbols/flag_india.png \
support_files/pixmaps/symbols/flag_mexico.png \
support_files/pixmaps/symbols/flag_luxembourg.png \
support_files/pixmaps/symbols/flag_czech.png \
support_files/pixmaps/symbols/flag_venezuela.png \
support_files/pixmaps/symbols/flag_dk.png \
support_files/pixmaps/symbols/wc_oceania.png \
support_files/pixmaps/symbols/flag_guatemala.png \
support_files/pixmaps/symbols/flag_tajikistan.png \
support_files/pixmaps/symbols/flag_tritob.png \
support_files/pixmaps/symbols/flag_burkina_faso.png \
support_files/pixmaps/symbols/flag_scotland.png \
support_files/pixmaps/symbols/flag_guinea.png \
support_files/pixmaps/symbols/flag_royal_league.png \
support_files/pixmaps/symbols/flag_spain.png \
support_files/pixmaps/symbols/wc_asia.png \
support_files/pixmaps/symbols/flag_hungary.png \
support_files/pixmaps/symbols/flag_lebanon.png \
support_files/pixmaps/symbols/flag_wc06.png \
support_files/pixmaps/symbols/flag_sweden.png \
support_files/pixmaps/symbols/flag_andorra.png \
support_files/pixmaps/symbols/flag_san_marino.png \
support_files/pixmaps/symbols/flag_singapore.png \
support_files/pixmaps/symbols/flag_aus_victoria.png \
support_files/pixmaps/symbols/flag_iran.png \
support_files/pixmaps/symbols/flag_japan.png \
support_files/pixmaps/symbols/flag_benin.png \
support_files/pixmaps/symbols/wc_europe.png \
support_files/pixmaps/symbols/flag_uganda.png \
support_files/pixmaps/symbols/flag_zimbabwe.png \
support_files/pixmaps/symbols/flag_libya.png \
support_files/pixmaps/symbols/flag_malaysia.png \
support_files/pixmaps/symbols/flag_estonia.png \
support_files/pixmaps/symbols/flag_kuwait.png \
support_files/pixmaps/symbols/flag_congo.png \
support_files/pixmaps/symbols/flag_korea_dpr.png \
support_files/pixmaps/symbols/flag_qatar.png \
support_files/pixmaps/symbols/flag_vingren.png \
support_files/pixmaps/symbols/flag_indonesia.png \
support_files/pixmaps/symbols/flag_wales.png \
support_files/pixmaps/symbols/flag_scg.png \
support_files/pixmaps/symbols/flag_armenia.png \
support_files/pixmaps/symbols/flag_poland.png \
support_files/pixmaps/symbols/flag_georgia.png \
support_files/pixmaps/symbols/flag_ireland.png \
support_files/pixmaps/symbols/flag_norway.png \
support_files/pixmaps/symbols/flag_uzbekistan.png \
support_files/pixmaps/symbols/flag_denmark.png \
support_files/pixmaps/symbols/flag_mali.png \
support_files/pixmaps/symbols/flag_jamaica.png \
support_files/pixmaps/symbols/flag_bulgaria.png \
support_files/pixmaps/symbols/flag_syria.png \
support_files/pixmaps/symbols/flag_bh.png \
support_files/pixmaps/symbols/flag_congodr.png \
support_files/pixmaps/symbols/flag_laos.png \
support_files/pixmaps/symbols/flag_fi.png \
support_files/pixmaps/symbols/flag_ukraine.png \
support_files/pixmaps/symbols/flag_iceland.png \
support_files/pixmaps/symbols/flag_fifa.png \
support_files/pixmaps/symbols/flag_finland.png \
support_files/pixmaps/symbols/flag_montenegro.png \
support_files/pixmaps/symbols/flag_senegal.png \
support_files/pixmaps/symbols/flag_nigeria.png \
support_files/pixmaps/symbols/flag_slovenia.png \
support_files/pixmaps/symbols/flag_palestine.png \
support_files/pixmaps/symbols/flag_chile.png \
support_files/pixmaps/symbols/flag_belgium.png \
support_files/pixmaps/symbols/flag_chtaipei.png \
support_files/pixmaps/symbols/flag_gabon.png \
support_files/pixmaps/symbols/flag_kazakhstan.png \
support_files/pixmaps/symbols/flag_uruguay.png \
support_files/pixmaps/symbols/flag_puerto_rico.png \
support_files/pixmaps/symbols/flag_belize.png \
support_files/pixmaps/history/fire_failure.png \
support_files/pixmaps/history/relegated.png \
support_files/pixmaps/history/champion.png \
support_files/pixmaps/history/end_season.png \
support_files/pixmaps/history/reach_cup_round.png \
support_files/pixmaps/history/start_game.png \
support_files/pixmaps/history/win_final.png \
support_files/pixmaps/history/fire_finance.png \
support_files/pixmaps/history/promoted.png \
support_files/pixmaps/history/job_offer.png \
support_files/pixmaps/history/lose_final.png \
support_files/pixmaps/menu_fixtures.png \
support_files/pixmaps/menu_match_stats.png \
support_files/pixmaps/menu_player_move_to_ya.png \
support_files/pixmaps/bygfoot_splash2.png \
support_files/pixmaps/menu_league_results.png \
support_files/pixmaps/transfers.png \
support_files/pixmaps/menu_browse_tms.png \
support_files/pixmaps/menu_fixtures_comp.png \
support_files/pixmaps/menu_player_put_transfer.png \
support_files/pixmaps/menu_player_move_to_team.png \
support_files/pixmaps/table_down.png \
support_files/pixmaps/player_status_ban.png \
support_files/pixmaps/boost_off.png \
support_files/pixmaps/preview.png \
support_files/pixmaps/boost_on.png \
support_files/pixmaps/bygfoot_splash.png \
support_files/pixmaps/menu_structure.png \
support_files/pixmaps/menu_season_res.png \
support_files/pixmaps/menu_mmatches.png \
support_files/pixmaps/style_all_atk.png \
support_files/pixmaps/menu_stadium.png \
support_files/pixmaps/menu_rearrange.png \
support_files/pixmaps/menu_player_info.png \
support_files/pixmaps/menu_save_geometry.png \
support_files/pixmaps/style_atk.png \
support_files/pixmaps/player_status_injury.png \
support_files/pixmaps/menu_physio.png \
support_files/pixmaps/player_status_cold.png \
support_files/pixmaps/boost_anti.png \
support_files/pixmaps/menu_player_browse.png \
support_files/pixmaps/menu_player_remove_transfer.png \
support_files/pixmaps/menu_last_match.png \
support_files/pixmaps/menu_league_stats.png \
support_files/pixmaps/new_week.png \
support_files/pixmaps/decrease_red.png \
support_files/pixmaps/style_all_def.png \
support_files/pixmaps/increase_green.png \
support_files/pixmaps/player_status_hot.png \
support_files/pixmaps/menu_boost.png \
support_files/pixmaps/menu_finances.png \
support_files/pixmaps/menu_table.png \
support_files/pixmaps/menu_player_contract.png \
support_files/pixmaps/style_bal.png \
support_files/pixmaps/style_def.png \
support_files/pixmaps/menu_player_shoots.png \
support_files/pixmaps/menu_youth_academy.png \
support_files/pixmaps/bygfoot_icon.png \
support_files/pixmaps/menu_scout.png \
support_files/pixmaps/menu_style.png \
support_files/pixmaps/menu_player_fire.png \
support_files/pixmaps/menu_history.png \
support_files/pixmaps/table_stay.png \
support_files/pixmaps/player_status_yellow.png \
support_files/pixmaps/table_up.png \
support_files/mmedia/pics/match13.jpg \
support_files/mmedia/pics/match4.jpg \
support_files/mmedia/pics/match14.jpg \
support_files/mmedia/pics/match5.jpg \
support_files/mmedia/pics/match15.jpg \
support_files/mmedia/pics/match6.jpg \
support_files/mmedia/pics/match7.jpg \
support_files/mmedia/pics/match8.jpg \
support_files/mmedia/pics/match9.jpg \
support_files/mmedia/pics/match1.jpg \
support_files/mmedia/pics/match10.jpg \
support_files/mmedia/pics/match11.jpg \
support_files/mmedia/pics/match2.jpg \
support_files/mmedia/pics/match12.jpg \
support_files/mmedia/pics/match3.jpg \
support_files/lg_commentary/lg_commentary_ro.xml \
support_files/lg_commentary/lg_commentary_en.xml \
support_files/lg_commentary/lg_commentary_pt.xml \
support_files/lg_commentary/lg_commentary_fr.xml \
support_files/lg_commentary/lg_commentary_bg.xml \
support_files/lg_commentary/lg_commentary_de.xml \
support_files/lg_commentary/lg_commentary_el.xml \
support_files/lg_commentary/lg_commentary_sv.xml \
support_files/lg_commentary/lg_commentary_nl.xml \
support_files/lg_commentary/lg_commentary_pl.xml \
support_files/lg_commentary/lg_commentary_it.xml \
support_files/lg_commentary/lg_commentary_tr.xml \
support_files/strategy/strategy_gy.xml \
support_files/strategy/strategy_gy2.xml \
support_files/strategy/strategy_fit.xml \
support_files/strategy/strategy_defend.xml \
support_files/strategy/strategy_attack1.xml \
support_files/strategy/strategy_attack2.xml \
support_files/strategy/strategy_defence.xml \
support_files/strategy/strategy_normal2.xml \
support_files/names/player_names_belgium.xml \
support_files/names/player_names_sweden.xml \
support_files/names/player_names_romania.xml \
support_files/names/player_names_japan.xml \
support_files/names/player_names_portugal.xml \
support_files/names/player_names_france.xml \
support_files/names/player_names_serbia.xml \
support_files/names/player_names_netherlands.xml \
support_files/names/player_names_argentina.xml \
support_files/names/player_names_england.xml \
support_files/names/player_names_peru.xml \
support_files/names/player_names_poland.xml \
support_files/names/player_names_norway.xml \
support_files/names/player_names_israel.xml \
support_files/names/player_names_denmark.xml \
support_files/names/player_names_italy.xml \
support_files/names/player_names_brazil.xml \
support_files/names/player_names_turkey.xml \
support_files/names/player_names_australia.xml \
support_files/names/player_names_bulgaria.xml \
support_files/names/player_names_usa.xml \
support_files/names/player_names_greece.xml \
support_files/names/player_names_czech.xml \
support_files/names/player_names_ukraine.xml \
support_files/names/player_names_germany.xml \
support_files/names/player_names_russia.xml \
support_files/names/player_names_scotland.xml \
support_files/names/player_names_latinoamerica.xml \
support_files/names/player_names_spain.xml \
support_files/names/player_names_finland.xml \
support_files/names/player_names_hungary.xml \
support_files/names/player_names_general.xml \
support_files/names/player_names_latvia.xml \
support_files/definitions/europe/israel/cup_israel_prom_games1.xml \
support_files/definitions/europe/israel/country_israel.xml \
support_files/definitions/europe/israel/league_israel1.xml \
support_files/definitions/europe/israel/league_israel2.xml \
support_files/definitions/europe/israel/league_israel3.xml \
support_files/definitions/europe/israel/league_israel4a.xml \
support_files/definitions/europe/israel/league_israel4b.xml \
support_files/definitions/europe/israel/cup_israel_cup.xml \
support_files/definitions/europe/norway/cup_norway_nm.xml \
support_files/definitions/europe/norway/country_norway.xml \
support_files/definitions/europe/norway/league_norway1.xml \
support_files/definitions/europe/norway/league_norway2.xml \
support_files/definitions/europe/norway/league_norway3a.xml \
support_files/definitions/europe/norway/league_norway3b.xml \
support_files/definitions/europe/norway/cup_norway_kvalik.xml \
support_files/definitions/europe/norway/league_norway3c.xml \
support_files/definitions/europe/norway/league_norway3d.xml \
support_files/definitions/europe/turkey/cup_turkey_supercup.xml \
support_files/definitions/europe/turkey/cup_turkey_prom_games1.xml \
support_files/definitions/europe/turkey/country_turkey.xml \
support_files/definitions/europe/turkey/cup_turkey_kupasi.xml \
support_files/definitions/europe/turkey/league_turkey1.xml \
support_files/definitions/europe/turkey/league_turkey2.xml \
support_files/definitions/europe/turkey/league_turkey3a.xml \
support_files/definitions/europe/turkey/league_turkey3b.xml \
support_files/definitions/europe/turkey/league_turkey3c.xml \
support_files/definitions/europe/turkey/league_turkey3d.xml \
support_files/definitions/europe/turkey/league_turkey3e.xml \
support_files/definitions/europe/belgium/cup_belgium_supercup.xml \
support_files/definitions/europe/belgium/cup_belgium_beker.xml \
support_files/definitions/europe/belgium/cup_belgium_eindronde2.xml \
support_files/definitions/europe/belgium/cup_belgium_eindronde3.xml \
support_files/definitions/europe/belgium/cup_belgium_eindronde4.xml \
support_files/definitions/europe/belgium/country_belgium.xml \
support_files/definitions/europe/belgium/league_belgium1.xml \
support_files/definitions/europe/belgium/league_belgium2.xml \
support_files/definitions/europe/belgium/league_belgium3a.xml \
support_files/definitions/europe/belgium/cup_belgium.xml \
support_files/definitions/europe/belgium/league_belgium3b.xml \
support_files/definitions/europe/belgium/league_belgium4a.xml \
support_files/definitions/europe/belgium/league_belgium4b.xml \
support_files/definitions/europe/belgium/league_belgium4c.xml \
support_files/definitions/europe/belgium/league_belgium4d.xml \
support_files/definitions/europe/andorra/cup_andorra_supercup.xml \
support_files/definitions/europe/andorra/cup_andorra_cup.xml \
support_files/definitions/europe/andorra/cup_andorra_prom_games1.xml \
support_files/definitions/europe/andorra/country_andorra.xml \
support_files/definitions/europe/andorra/league_andorra1.xml \
support_files/definitions/europe/andorra/league_andorra2.xml \
support_files/definitions/europe/bulgaria/cup_bulgaria_national.xml \
support_files/definitions/europe/bulgaria/cup_supercup_bulgaria.xml \
support_files/definitions/europe/bulgaria/cup_bulgaria_prom_games2.xml \
support_files/definitions/europe/bulgaria/country_bulgaria.xml \
support_files/definitions/europe/bulgaria/league_bulgaria1.xml \
support_files/definitions/europe/bulgaria/league_bulgaria2a.xml \
support_files/definitions/europe/bulgaria/league_bulgaria2b.xml \
support_files/definitions/europe/bulgaria/league_bulgaria3a.xml \
support_files/definitions/europe/bulgaria/league_bulgaria3b.xml \
support_files/definitions/europe/bulgaria/league_bulgaria3c.xml \
support_files/definitions/europe/bulgaria/league_bulgaria3d.xml \
support_files/definitions/europe/romania/league_romania3e.xml \
support_files/definitions/europe/romania/league_romania3f.xml \
support_files/definitions/europe/romania/cup_romania_supercup.xml \
support_files/definitions/europe/romania/cup_romania_coupe.xml \
support_files/definitions/europe/romania/country_romania.xml \
support_files/definitions/europe/romania/cup_romania_prom_games3.xml \
support_files/definitions/europe/romania/league_romania1.xml \
support_files/definitions/europe/romania/cup_romania_prom_games4.xml \
support_files/definitions/europe/romania/league_romania2a.xml \
support_files/definitions/europe/romania/league_romania2b.xml \
support_files/definitions/europe/romania/league_romania3a.xml \
support_files/definitions/europe/romania/league_romania3b.xml \
support_files/definitions/europe/romania/league_romania3c.xml \
support_files/definitions/europe/romania/league_romania3d.xml \
support_files/definitions/europe/albania/cup_albania_supercup.xml \
support_files/definitions/europe/albania/cup_albania_cup.xml \
support_files/definitions/europe/albania/cup_albania_prom_games1.xml \
support_files/definitions/europe/albania/country_albania.xml \
support_files/definitions/europe/albania/league_albania1.xml \
support_files/definitions/europe/albania/league_albania2.xml \
support_files/definitions/europe/albania/league_albania3a.xml \
support_files/definitions/europe/albania/league_albania3b.xml \
support_files/definitions/europe/luxembourg/league_luxembourg3b.xml \
support_files/definitions/europe/luxembourg/cup_luxembourg_cup.xml \
support_files/definitions/europe/luxembourg/country_luxembourg.xml \
support_files/definitions/europe/luxembourg/league_luxembourg1.xml \
support_files/definitions/europe/luxembourg/league_luxembourg2.xml \
support_files/definitions/europe/luxembourg/league_luxembourg3a.xml \
support_files/definitions/europe/greece/league_greece3a.xml \
support_files/definitions/europe/greece/league_greece3b.xml \
support_files/definitions/europe/greece/cup_greece_supercup.xml \
support_files/definitions/europe/greece/cup_greece_cup.xml \
support_files/definitions/europe/greece/cup_greece_prom_games2.xml \
support_files/definitions/europe/greece/country_greece.xml \
support_files/definitions/europe/greece/league_greece1.xml \
support_files/definitions/europe/greece/league_greece2.xml \
support_files/definitions/europe/n_ireland/league_n_ireland3.xml \
support_files/definitions/europe/n_ireland/cup_n_ireland_setanta.xml \
support_files/definitions/europe/n_ireland/cup_n_ireland_cup.xml \
support_files/definitions/europe/n_ireland/cup_n_ireland_prom_games1.xml \
support_files/definitions/europe/n_ireland/country_n_ireland.xml \
support_files/definitions/europe/n_ireland/league_n_ireland1.xml \
support_files/definitions/europe/n_ireland/league_n_ireland2.xml \
support_files/definitions/europe/belarus/country_belarus.xml \
support_files/definitions/europe/belarus/league_belarus1.xml \
support_files/definitions/europe/belarus/league_belarus2.xml \
support_files/definitions/europe/belarus/cup_belarus_cup.xml \
support_files/definitions/europe/fyr_macedonia/cup_fyr_macedonia_prom_games1.xml \
support_files/definitions/europe/fyr_macedonia/country_fyr_macedonia.xml \
support_files/definitions/europe/fyr_macedonia/league_fyr_macedonia1.xml \
support_files/definitions/europe/fyr_macedonia/league_fyr_macedonia2.xml \
support_files/definitions/europe/fyr_macedonia/league_fyr_macedonia3a.xml \
support_files/definitions/europe/fyr_macedonia/league_fyr_macedonia3b.xml \
support_files/definitions/europe/fyr_macedonia/league_fyr_macedonia3c.xml \
support_files/definitions/europe/fyr_macedonia/league_fyr_macedonia3d.xml \
support_files/definitions/europe/fyr_macedonia/league_fyr_macedonia3e.xml \
support_files/definitions/europe/fyr_macedonia/league_fyr_macedonia3f.xml \
support_files/definitions/europe/fyr_macedonia/cup_fyr_macedonia_cup.xml \
support_files/definitions/europe/moldova/country_moldova.xml \
support_files/definitions/europe/moldova/league_moldova1.xml \
support_files/definitions/europe/moldova/league_moldova2.xml \
support_files/definitions/europe/moldova/league_moldova3a.xml \
support_files/definitions/europe/moldova/league_moldova3b.xml \
support_files/definitions/europe/moldova/cup_moldova_cup.xml \
support_files/definitions/europe/estonia/cup_estonia_cup.xml \
support_files/definitions/europe/estonia/cup_estonia_prom_games1.xml \
support_files/definitions/europe/estonia/country_estonia.xml \
support_files/definitions/europe/estonia/league_estonia1.xml \
support_files/definitions/europe/estonia/league_estonia2.xml \
support_files/definitions/europe/estonia/league_estonia3a.xml \
support_files/definitions/europe/estonia/league_estonia3b.xml \
support_files/definitions/europe/estonia/league_estonia4a.xml \
support_files/definitions/europe/estonia/league_estonia4b.xml \
support_files/definitions/europe/estonia/league_estonia4c.xml \
support_files/definitions/europe/estonia/league_estonia4d.xml \
support_files/definitions/europe/estonia/cup_estonia_supercup.xml \
support_files/definitions/europe/russia/league_russia3e.xml \
support_files/definitions/europe/russia/cup_russia_supercup.xml \
support_files/definitions/europe/russia/cup_russia_cup.xml \
support_files/definitions/europe/russia/country_russia.xml \
support_files/definitions/europe/russia/league_russia1.xml \
support_files/definitions/europe/russia/league_russia2.xml \
support_files/definitions/europe/russia/league_russia3a.xml \
support_files/definitions/europe/russia/league_russia3b.xml \
support_files/definitions/europe/russia/league_russia3c.xml \
support_files/definitions/europe/russia/league_russia3d.xml \
support_files/definitions/europe/azerbaijan/cup_azerbaijan_cup.xml \
support_files/definitions/europe/azerbaijan/country_azerbaijan.xml \
support_files/definitions/europe/azerbaijan/league_azerbaijan1.xml \
support_files/definitions/europe/azerbaijan/league_azerbaijan2.xml \
support_files/definitions/europe/scotland/cup_scotland_league.xml \
support_files/definitions/europe/scotland/cup_scotland_fa.xml \
support_files/definitions/europe/scotland/cup_scotland_prom_games2.xml \
support_files/definitions/europe/scotland/country_scotland.xml \
support_files/definitions/europe/scotland/cup_scotland_prom_games3.xml \
support_files/definitions/europe/scotland/league_scotland1.xml \
support_files/definitions/europe/scotland/league_scotland2.xml \
support_files/definitions/europe/scotland/league_scotland3.xml \
support_files/definitions/europe/scotland/league_scotland4.xml \
support_files/definitions/europe/netherlands/league_netherlands3d.xml \
support_files/definitions/europe/netherlands/cup_netherlands_nacompetitie2.xml \
support_files/definitions/europe/netherlands/league_netherlands3e.xml \
support_files/definitions/europe/netherlands/league_netherlands3f.xml \
support_files/definitions/europe/netherlands/cup_netherlands_nacompetitie4.xml \
support_files/definitions/europe/netherlands/cup_netherlands_nacompetitie5.xml \
support_files/definitions/europe/netherlands/cup_netherlands_supercup.xml \
support_files/definitions/europe/netherlands/cup_netherlands_cup.xml \
support_files/definitions/europe/netherlands/cup_netherlands_nacompetitie6.xml \
support_files/definitions/europe/netherlands/country_netherlands.xml \
support_files/definitions/europe/netherlands/league_netherlands1.xml \
support_files/definitions/europe/netherlands/league_netherlands2.xml \
support_files/definitions/europe/netherlands/league_netherlands3a.xml \
support_files/definitions/europe/netherlands/league_netherlands3b.xml \
support_files/definitions/europe/netherlands/league_netherlands3c.xml \
support_files/definitions/europe/england/cup_england_league_vs_cup.xml \
support_files/definitions/europe/england/cup_england_league.xml \
support_files/definitions/europe/england/cup_england_fa.xml \
support_files/definitions/europe/england/cup_england_prom_games2.xml \
support_files/definitions/europe/england/country_england.xml \
support_files/definitions/europe/england/cup_england_prom_games3.xml \
support_files/definitions/europe/england/league_england1.xml \
support_files/definitions/europe/england/cup_england_prom_games4.xml \
support_files/definitions/europe/england/league_england2.xml \
support_files/definitions/europe/england/cup_england_prom_games5.xml \
support_files/definitions/europe/england/league_england3.xml \
support_files/definitions/europe/england/league_england4.xml \
support_files/definitions/europe/england/league_england5.xml \
support_files/definitions/europe/slovakia/league_slovakia3b.xml \
support_files/definitions/europe/slovakia/cup_slovakia_cup.xml \
support_files/definitions/europe/slovakia/country_slovakia.xml \
support_files/definitions/europe/slovakia/league_slovakia1.xml \
support_files/definitions/europe/slovakia/league_slovakia2.xml \
support_files/definitions/europe/slovakia/league_slovakia3a.xml \
support_files/definitions/europe/wales/league_wales2a.xml \
support_files/definitions/europe/wales/league_wales2b.xml \
support_files/definitions/europe/wales/cup_wales_challenge.xml \
support_files/definitions/europe/wales/cup_wales_welsh.xml \
support_files/definitions/europe/wales/cup_wales_premier.xml \
support_files/definitions/europe/wales/league_wales_english.xml \
support_files/definitions/europe/wales/country_wales.xml \
support_files/definitions/europe/wales/league_wales1.xml \
support_files/definitions/europe/bosnia_herzegovina/league_bosnia_herzegovina2a.xml \
support_files/definitions/europe/bosnia_herzegovina/league_bosnia_herzegovina2b.xml \
support_files/definitions/europe/bosnia_herzegovina/cup_bosnia_herzegovina_cup.xml \
support_files/definitions/europe/bosnia_herzegovina/country_bosnia_herzegovina.xml \
support_files/definitions/europe/bosnia_herzegovina/league_bosnia_herzegovina1.xml \
support_files/definitions/europe/armenia/league_armenia2.xml \
support_files/definitions/europe/armenia/cup_armenia_cup.xml \
support_files/definitions/europe/armenia/country_armenia.xml \
support_files/definitions/europe/armenia/league_armenia1.xml \
support_files/definitions/europe/montenegro/country_montenegro.xml \
support_files/definitions/europe/montenegro/league_montenegro1.xml \
support_files/definitions/europe/montenegro/league_montenegro2.xml \
support_files/definitions/europe/montenegro/cup_montenegro_cup.xml \
support_files/definitions/europe/montenegro/cup_montenegro_prom_games1.xml \
support_files/definitions/europe/georgia/country_georgia.xml \
support_files/definitions/europe/georgia/league_georgia1.xml \
support_files/definitions/europe/georgia/league_georgia2a.xml \
support_files/definitions/europe/georgia/league_georgia2b.xml \
support_files/definitions/europe/georgia/cup_georgia_cup.xml \
support_files/definitions/europe/georgia/cup_georgia_prom_games1.xml \
support_files/definitions/europe/ireland/cup_ireland_prom_games2.xml \
support_files/definitions/europe/ireland/country_ireland.xml \
support_files/definitions/europe/ireland/league_ireland1.xml \
support_files/definitions/europe/ireland/league_ireland2.xml \
support_files/definitions/europe/ireland/cup_ireland_setanta.xml \
support_files/definitions/europe/ireland/league_ireland3a.xml \
support_files/definitions/europe/ireland/league_ireland3b.xml \
support_files/definitions/europe/ireland/cup_ireland_league.xml \
support_files/definitions/europe/ireland/cup_ireland_cup.xml \
support_files/definitions/europe/ireland/cup_ireland_prom_games.xml \
support_files/definitions/europe/lithuania/country_lithuania.xml \
support_files/definitions/europe/lithuania/league_lithuania1.xml \
support_files/definitions/europe/lithuania/league_lithuania2.xml \
support_files/definitions/europe/lithuania/cup_lithuania_cup.xml \
support_files/definitions/europe/lithuania/cup_lithuania_prom_games1.xml \
support_files/definitions/europe/slovenia/cup_slovenia_prom_games1.xml \
support_files/definitions/europe/slovenia/country_slovenia.xml \
support_files/definitions/europe/slovenia/league_slovenia1.xml \
support_files/definitions/europe/slovenia/league_slovenia2.xml \
support_files/definitions/europe/slovenia/league_slovenia3a.xml \
support_files/definitions/europe/slovenia/league_slovenia3b.xml \
support_files/definitions/europe/slovenia/cup_slovenia_supercup.xml \
support_files/definitions/europe/slovenia/cup_slovenia_cup.xml \
support_files/definitions/europe/latvia/country_latvia.xml \
support_files/definitions/europe/latvia/league_latvia1.xml \
support_files/definitions/europe/latvia/league_latvia2.xml \
support_files/definitions/europe/latvia/league_latvia3a.xml \
support_files/definitions/europe/latvia/league_latvia3b.xml \
support_files/definitions/europe/latvia/league_latvia3c.xml \
support_files/definitions/europe/latvia/league_latvia3d.xml \
support_files/definitions/europe/latvia/league_latvia3e.xml \
support_files/definitions/europe/latvia/cup_latvia_cup.xml \
support_files/definitions/europe/latvia/cup_latvia_promotion1.xml \
support_files/definitions/europe/denmark/cup_denmark_prom_games2.xml \
support_files/definitions/europe/denmark/country_denmark.xml \
support_files/definitions/europe/denmark/league_denmark1.xml \
support_files/definitions/europe/denmark/league_denmark2.xml \
support_files/definitions/europe/denmark/league_denmark3a.xml \
support_files/definitions/europe/denmark/league_denmark3b.xml \
support_files/definitions/europe/denmark/league_denmark4a.xml \
support_files/definitions/europe/denmark/league_denmark4b.xml \
support_files/definitions/europe/denmark/league_denmark4c.xml \
support_files/definitions/europe/denmark/cup_denmark_cup.xml \
support_files/definitions/europe/italy/league_italy1.xml \
support_files/definitions/europe/italy/league_italy2.xml \
support_files/definitions/europe/italy/league_italy3a.xml \
support_files/definitions/europe/italy/league_italy4a.xml \
support_files/definitions/europe/italy/league_italy3b.xml \
support_files/definitions/europe/italy/league_italy4b.xml \
support_files/definitions/europe/italy/cup_italy_supercoppa.xml \
support_files/definitions/europe/italy/league_italy4c.xml \
support_files/definitions/europe/italy/cup_italy_prom_games_2_1.xml \
support_files/definitions/europe/italy/country_italy.xml \
support_files/definitions/europe/italy/cup_italy_prom_games_2_3.xml \
support_files/definitions/europe/italy/cup_italy_prom_games_3a_2.xml \
support_files/definitions/europe/italy/cup_italy_prom_games_3b_2.xml \
support_files/definitions/europe/italy/cup_italy_prom_games_3a_4.xml \
support_files/definitions/europe/italy/cup_italy_prom_games_4a_3.xml \
support_files/definitions/europe/italy/cup_italy_prom_games_4b_3.xml \
support_files/definitions/europe/italy/cup_italy_prom_games_3b_4.xml \
support_files/definitions/europe/italy/cup_italy_prom_games_4c_3.xml \
support_files/definitions/europe/italy/cup_italy_coppa.xml \
support_files/definitions/europe/croatia/cup_croatia_cup.xml \
support_files/definitions/europe/croatia/cup_croatia_prom_games1.xml \
support_files/definitions/europe/croatia/country_croatia.xml \
support_files/definitions/europe/croatia/league_croatia1.xml \
support_files/definitions/europe/croatia/league_croatia2.xml \
support_files/definitions/europe/croatia/league_croatia3a.xml \
support_files/definitions/europe/croatia/league_croatia3b.xml \
support_files/definitions/europe/croatia/league_croatia3c.xml \
support_files/definitions/europe/croatia/cup_croatia_supercup.xml \
support_files/definitions/europe/cyprus/cup_cyprus_supercup.xml \
support_files/definitions/europe/cyprus/cup_cyprus_cup.xml \
support_files/definitions/europe/cyprus/country_cyprus.xml \
support_files/definitions/europe/cyprus/league_cyprus1.xml \
support_files/definitions/europe/cyprus/league_cyprus2.xml \
support_files/definitions/europe/sweden/league_sweden_superettan.xml \
support_files/definitions/europe/sweden/league_sweden_division_2_ostrasvealand.xml \
support_files/definitions/europe/sweden/league_sweden_division_1_sodra.xml \
support_files/definitions/europe/sweden/league_sweden_division_3_sodranorrland.xml \
support_files/definitions/europe/sweden/cup_sweden_cupen.xml \
support_files/definitions/europe/sweden/league_sweden_division_2_vastragotaland.xml \
support_files/definitions/europe/sweden/league_sweden_division_3_vastrasvealand.xml \
support_files/definitions/europe/sweden/league_sweden_division_2_norrland.xml \
support_files/definitions/europe/sweden/league_sweden_division_1_norra.xml \
support_files/definitions/europe/sweden/league_sweden_division_3_norranorrland.xml \