-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorldCup2014new.js
9970 lines (9969 loc) · 306 KB
/
WorldCup2014new.js
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
var nodes = [
{id: 1, label: 'Abdelmoumene Djabou', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Club Africain', value: 22, group: 24},
{id: 2, label: 'Abel Aguilar', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Toulouse', value: 24, group: 11},
{id: 3, label: 'Abel Hernández', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Palermo', value: 22, group: 6},
{id: 4, label: 'Adam Kwarasey', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Strømsgodset', value: 22, group: 5},
{id: 5, label: 'Adam Lallana', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Southampton', value: 26, group: 28},
{id: 6, label: 'Adam Taggart', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Newcastle Jets', value: 22, group: 12},
{id: 7, label: 'Admir Mehmedi', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'SC Freiburg', value: 24, group: 0},
{id: 8, label: 'Adnan Januzaj', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Manchester United', value: 34, group: 28},
{id: 9, label: 'Adrián Bone', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'El Nacional', value: 22, group: 4},
{id: 10, label: 'Adrián Ramos', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Hertha BSC', value: 23, group: 11},
{id: 11, label: 'Afriyie Acquah', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Parma', value: 26, group: 5},
{id: 12, label: 'Agustín Orión', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Boca Juniors', value: 22, group: 19},
{id: 13, label: 'Ahmad Alenemeh', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Naft Tehran', value: 22, group: 1},
{id: 14, label: 'Ahmed Musa', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'CSKA Moscow', value: 27, group: 14},
{id: 15, label: 'Aïssa Mandi', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Reims', value: 22, group: 24},
{id: 16, label: 'Alan Dzagoev', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'CSKA Moscow', value: 23, group: 2},
{id: 17, label: 'Alan Pulido', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'UANL', value: 22, group: 21},
{id: 18, label: 'Albert Adomah', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Middlesbrough', value: 23, group: 5},
{id: 19, label: 'Alberto Aquilani', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Fiorentina', value: 24, group: 3},
{id: 20, label: 'Alejandro Bedoya', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Nantes', value: 22, group: 26},
{id: 21, label: 'Aleksandr Kerzhakov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Zenit Saint Petersburg', value: 26, group: 2},
{id: 22, label: 'Aleksandr Kokorin', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Dynamo Moscow', value: 23, group: 2},
{id: 23, label: 'Aleksandr Samedov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Lokomotiv Moscow', value: 23, group: 2},
{id: 24, label: 'Aleksei Ionov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Dynamo Moscow', value: 23, group: 2},
{id: 25, label: 'Aleksei Kozlov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Dynamo Moscow', value: 23, group: 2},
{id: 26, label: 'Alessio Cerci', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Torino', value: 23, group: 3},
{id: 27, label: 'Alex Oxlade-Chamberlain', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Arsenal', value: 30, group: 28},
{id: 28, label: 'Alex Song', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Barcelona', value: 37, group: 17},
{id: 29, label: 'Alex Wilkinson', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Jeonbuk Hyundai Motors', value: 22, group: 12},
{id: 30, label: 'Alexander Domínguez', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'LDU Quito', value: 22, group: 4},
{id: 31, label: 'Alexander Mejía', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Atlético Nacional', value: 22, group: 11},
{id: 32, label: 'Alexandros Tziolis', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Kayserispor', value: 22, group: 15},
{id: 33, label: 'Alexis Sánchez', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Barcelona', value: 37, group: 18},
{id: 34, label: 'Alfredo Talavera', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Toluca', value: 22, group: 21},
{id: 35, label: 'Alireza Haghighi', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Sporting Covilhã', value: 22, group: 1},
{id: 36, label: 'Alireza Jahanbakhsh', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'NEC', value: 22, group: 1},
{id: 37, label: 'Allan Nyom', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Granada', value: 24, group: 17},
{id: 38, label: 'Álvaro González', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Lazio', value: 28, group: 6},
{id: 39, label: 'Álvaro Pereira', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'São Paulo', value: 22, group: 6},
{id: 40, label: 'Amir Hossein Sadeghi', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Esteghlal', value: 22, group: 1},
{id: 41, label: 'Andranik Teymourian', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Esteghlal', value: 22, group: 1},
{id: 42, label: 'André Almeida', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Benfica', value: 25, group: 8},
{id: 43, label: 'André Ayew', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Marseille', value: 24, group: 5},
{id: 44, label: 'André Schürrle', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Chelsea', value: 33, group: 13},
{id: 45, label: 'Andrea Barzagli', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Juventus', value: 28, group: 3},
{id: 46, label: 'Andrea Pirlo', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Juventus', value: 28, group: 3},
{id: 47, label: 'Andreas Samaris', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Olympiacos', value: 23, group: 15},
{id: 48, label: 'Andrei Semyonov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Terek Grozny', value: 22, group: 2},
{id: 49, label: 'Andrés Guardado', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Bayer Leverkusen', value: 24, group: 21},
{id: 50, label: 'Andrés Iniesta', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Barcelona', value: 31, group: 23},
{id: 51, label: 'Andrey Yeshchenko', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Anzhi Makhachkala', value: 22, group: 2},
{id: 52, label: 'Andy Najar', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Anderlecht', value: 23, group: 7},
{id: 53, label: 'Anel Hadžic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Sturm Graz', value: 22, group: 20},
{id: 54, label: 'Ángel di María', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Real Madrid', value: 33, group: 19},
{id: 55, label: 'Ante Rebic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Fiorentina', value: 24, group: 25},
{id: 56, label: 'Anthony Vanden Borre', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Anderlecht', value: 23, group: 28},
{id: 57, label: 'Antoine Griezmann', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Real Sociedad', value: 25, group: 16},
{id: 58, label: 'Antonio Candreva', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Lazio', value: 28, group: 3},
{id: 59, label: 'Antonio Cassano', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Parma', value: 24, group: 3},
{id: 60, label: 'Antonio Valencia (c)', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Manchester United', value: 35, group: 4},
{id: 61, label: 'Arjen Robben', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Bayern Munich', value: 35, group: 22},
{id: 62, label: 'Aron Jóhannsson', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'AZ', value: 22, group: 26},
{id: 63, label: 'Arthur Boka', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'VfB Stuttgart', value: 25, group: 9},
{id: 64, label: 'Arturo Vidal', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Juventus', value: 32, group: 18},
{id: 65, label: 'Asamoah Gyan (c)', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Al-Ain', value: 22, group: 5},
{id: 66, label: 'Ashkan Dejagah', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Fulham', value: 24, group: 1},
{id: 67, label: 'Asmir Avdukic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Borac Banja Luka', value: 22, group: 20},
{id: 68, label: 'Asmir Begovic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Stoke City', value: 25, group: 20},
{id: 69, label: 'Atsuto Uchida', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Schalke 04', value: 28, group: 27},
{id: 70, label: 'Augusto Fernández', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Celta Vigo', value: 23, group: 19},
{id: 71, label: 'Aurélien Chedjou', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Galatasaray', value: 26, group: 17},
{id: 72, label: 'Austin Ejide', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Hapoel Beer Sheva', value: 22, group: 14},
{id: 73, label: 'Avdija Vršajevic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Hajduk Split', value: 22, group: 20},
{id: 74, label: 'Axel Witsel', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Zenit Saint Petersburg', value: 28, group: 28},
{id: 75, label: 'Azubuike Egwuekwe', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Warri Wolves', value: 22, group: 14},
{id: 76, label: 'Bacary Sagna', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Arsenal', value: 29, group: 16},
{id: 77, label: 'Bailey Wright', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Preston North End', value: 22, group: 12},
{id: 78, label: 'Bakhtiar Rahmani', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Foolad', value: 22, group: 1},
{id: 79, label: 'Bastian Schweinsteiger', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Bayern Munich', value: 29, group: 13},
{id: 80, label: 'Ben Foster', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'West Bromwich Albion', value: 23, group: 28},
{id: 81, label: 'Ben Halloran', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Fortuna Düsseldorf', value: 23, group: 12},
{id: 82, label: 'Benedikt Höwedes', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Schalke 04', value: 27, group: 13},
{id: 83, label: 'Benjamin Moukandjo', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Nancy', value: 22, group: 17},
{id: 84, label: 'Benoît Assou-Ekotto', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Queens Park Rangers', value: 23, group: 17},
{id: 85, label: 'Bernard', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Shakhtar Donetsk', value: 24, group: 23},
{id: 86, label: 'Beto', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Sevilla', value: 25, group: 8},
{id: 87, label: 'Blaise Matuidi', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Paris Saint-Germain', value: 29, group: 16},
{id: 88, label: 'Blerim Džemaili', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Napoli', value: 31, group: 0},
{id: 89, label: 'Boubacar Barry', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Lokeren', value: 22, group: 9},
{id: 90, label: 'Brad Davis', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Houston Dynamo', value: 23, group: 26},
{id: 91, label: 'Brad Guzan', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Aston Villa', value: 23, group: 26},
{id: 92, label: 'Brayan Beckeles', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Olimpia', value: 22, group: 7},
{id: 93, label: 'Bruno Alves', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Fenerbahçe', value: 25, group: 8},
{id: 94, label: 'Bruno Martins Indi', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Feyenoord', value: 22, group: 22},
{id: 95, label: 'Bryan Ruiz (c)', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'PSV', value: 25, group: 29},
{id: 96, label: 'Camilo Vargas', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Santa Fe', value: 23, group: 11},
{id: 97, label: 'Carl Medjani', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Valenciennes', value: 23, group: 24},
{id: 98, label: 'Carlo Costly', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Real España', value: 22, group: 7},
{id: 99, label: 'Carlos Bacca', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Sevilla', value: 25, group: 11},
{id: 100, label: 'Carlos Carbonero', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'River Plate', value: 22, group: 11},
{id: 101, label: 'Carlos Carmona', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Atalanta', value: 23, group: 18},
{id: 102, label: 'Carlos Gruezo', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'VfB Stuttgart', value: 25, group: 4},
{id: 103, label: 'Carlos Peña', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'León', value: 22, group: 21},
{id: 104, label: 'Carlos Salcido', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'UANL', value: 22, group: 21},
{id: 105, label: 'Carlos Sánchez', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Elche', value: 22, group: 11},
{id: 106, label: 'Carlos Valdés', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'San Lorenzo', value: 22, group: 11},
{id: 107, label: 'Cédric Djeugoué', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Coton Sport', value: 22, group: 17},
{id: 108, label: 'Cédric Si Mohamed', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'CS Constantine', value: 22, group: 24},
{id: 109, label: 'Celso Borges', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'AIK', value: 22, group: 29},
{id: 110, label: 'César Azpilicueta', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Chelsea', value: 32, group: 23},
{id: 111, label: 'Cesc Fàbregas', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Barcelona', value: 31, group: 23},
{id: 112, label: 'Charles Aránguiz', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Internacional', value: 22, group: 18},
{id: 113, label: 'Charles Itandje', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Konyaspor', value: 23, group: 17},
{id: 114, label: 'Cheick Tioté', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Newcastle United', value: 27, group: 9},
{id: 115, label: 'Chigozie Agbim', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Gombe United', value: 22, group: 14},
{id: 116, label: 'Chris Smalling', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Manchester United', value: 32, group: 28},
{id: 117, label: 'Chris Wondolowski', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'San Jose Earthquakes', value: 23, group: 26},
{id: 118, label: 'Christian Atsu', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Vitesse', value: 23, group: 5},
{id: 119, label: 'Christian Bolaños', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Copenhagen', value: 22, group: 29},
{id: 120, label: 'Christian Noboa', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Dynamo Moscow', value: 28, group: 4},
{id: 121, label: 'Christian Stuani', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Espanyol', value: 23, group: 6},
{id: 122, label: 'Christoph Kramer', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Borussia Mönchengladbach', value: 23, group: 13},
{id: 123, label: 'Ciro Immobile', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Torino', value: 23, group: 3},
{id: 124, label: 'Claudio Bravo (c)', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Real Sociedad', value: 25, group: 18},
{id: 125, label: 'Claudio Marchisio', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Juventus', value: 28, group: 3},
{id: 126, label: 'Clint Dempsey (c)', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Seattle Sounders FC', value: 22, group: 26},
{id: 127, label: 'Constant Djakpa', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Eintracht Frankfurt', value: 23, group: 9},
{id: 128, label: 'Cristian Gamboa', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Rosenborg', value: 23, group: 29},
{id: 129, label: 'Cristian Rodríguez', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Atlético Madrid', value: 28, group: 6},
{id: 130, label: 'Cristián Zapata', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Milan', value: 29, group: 11},
{id: 131, label: 'Cristiano Ronaldo (c)', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Real Madrid', value: 31, group: 8},
{id: 132, label: 'Cristopher Toselli', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Universidad Católica', value: 22, group: 18},
{id: 133, label: 'Daley Blind', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Ajax', value: 22, group: 22},
{id: 134, label: 'DaMarcus Beasley', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Puebla', value: 22, group: 26},
{id: 135, label: 'Dani Alves', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Barcelona', value: 36, group: 23},
{id: 136, label: 'Daniel Cambronero', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Herediano', value: 22, group: 29},
{id: 137, label: 'Daniel Davari', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Eintracht Braunschweig', value: 23, group: 1},
{id: 138, label: 'Daniel Opare', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Standard Liège', value: 24, group: 5},
{id: 139, label: 'Daniel Sturridge', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Liverpool', value: 27, group: 28},
{id: 140, label: 'Daniel Van Buyten', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Bayern Munich', value: 35, group: 28},
{id: 141, label: 'Daniele De Rossi', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Roma', value: 26, group: 3},
{id: 142, label: 'Danijel Pranjic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Panathinaikos', value: 23, group: 25},
{id: 143, label: 'Danijel Subašic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'AS Monaco', value: 25, group: 25},
{id: 144, label: 'Danny Welbeck', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Manchester United', value: 32, group: 28},
{id: 145, label: 'Dante', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Bayern Munich', value: 35, group: 23},
{id: 146, label: 'Dany Nounkeu', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Be?ikta?', value: 24, group: 17},
{id: 147, label: 'Darijo Srna (c)', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Shakhtar Donetsk', value: 23, group: 25},
{id: 148, label: 'Dario Vidošic', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Sion', value: 22, group: 12},
{id: 149, label: 'Daryl Janmaat', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Feyenoord', value: 22, group: 22},
{id: 150, label: 'David de Gea', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Manchester United', value: 34, group: 23},
{id: 151, label: 'David Luiz', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Chelsea', value: 30, group: 23},
{id: 152, label: 'David Myrie', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Herediano', value: 22, group: 29},
{id: 153, label: 'David Ospina', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Nice', value: 22, group: 11},
{id: 154, label: 'David Silva', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Manchester City', value: 31, group: 23},
{id: 155, label: 'David Villa', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Atlético Madrid', value: 27, group: 23},
{id: 156, label: 'DeAndre Yedlin', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Seattle Sounders FC', value: 22, group: 26},
{id: 157, label: 'Dejan Lovren', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Southampton', value: 28, group: 25},
{id: 158, label: 'Denis Glushakov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Spartak Moscow', value: 22, group: 2},
{id: 159, label: 'Didier Drogba (c)', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Galatasaray', value: 26, group: 9},
{id: 160, label: 'Didier Ya Konan', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Hannover 96', value: 24, group: 9},
{id: 161, label: 'Didier Zokora', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Trabzonspor', value: 22, group: 9},
{id: 162, label: 'Diego Benaglio', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'VfL Wolfsburg', value: 27, group: 0},
{id: 163, label: 'Diego Calvo', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Vålerenga', value: 22, group: 29},
{id: 164, label: 'Diego Costa', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Atlético Madrid', value: 27, group: 23},
{id: 165, label: 'Diego Forlán', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Cerezo Osaka', value: 24, group: 6},
{id: 166, label: 'Diego Godín', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Atlético Madrid', value: 28, group: 6},
{id: 167, label: 'Diego Lugano (c)', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'West Bromwich Albion', value: 23, group: 6},
{id: 168, label: 'Diego Pérez', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Bologna', value: 24, group: 6},
{id: 169, label: 'Diego Reyes', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Porto', value: 29, group: 21},
{id: 170, label: 'Dimitris Salpingidis', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'PAOK', value: 22, group: 15},
{id: 171, label: 'Dirk Kuyt', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Fenerbahçe', value: 26, group: 22},
{id: 172, label: 'Divock Origi', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Lille', value: 25, group: 28},
{id: 173, label: 'Djamel Mesbah', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Livorno', value: 22, group: 24},
{id: 174, label: 'Dmitri Kombarov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Spartak Moscow', value: 22, group: 2},
{id: 175, label: 'Domagoj Vida', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Dynamo Kyiv', value: 24, group: 25},
{id: 176, label: 'Donis Escober', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Olimpia', value: 22, group: 7},
{id: 177, label: 'Dries Mertens', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Napoli', value: 33, group: 28},
{id: 178, label: 'Edder Delgado', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Real España', value: 22, group: 7},
{id: 179, label: 'Eden Hazard', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Chelsea', value: 33, group: 28},
{id: 180, label: 'Éder', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Braga', value: 22, group: 8},
{id: 181, label: 'Éder Álvarez Balanta', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'River Plate', value: 22, group: 11},
{id: 182, label: 'Edgar Salli', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Lens', value: 22, group: 17},
{id: 183, label: 'Edin Džeko', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Manchester City', value: 31, group: 20},
{id: 184, label: 'Edin Višca', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + '?stanbul Ba?ak?ehir', value: 22, group: 20},
{id: 185, label: 'Edinson Cavani', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Paris Saint-Germain', value: 31, group: 6},
{id: 186, label: 'Édison Méndez', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Santa Fe', value: 23, group: 4},
{id: 187, label: 'Eduardo da Silva', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Shakhtar Donetsk', value: 23, group: 25},
{id: 188, label: 'Eduardo dos Reis Carvalho', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Braga', value: 22, group: 8},
{id: 189, label: 'Eduardo Vargas', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Valencia', value: 26, group: 18},
{id: 190, label: 'Efe Ambrose', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Celtic', value: 25, group: 14},
{id: 191, label: 'Egidio Arévalo Ríos', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Morelia', value: 23, group: 6},
{id: 192, label: 'Ehsan Hajsafi', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Sepahan', value: 22, group: 1},
{id: 193, label: 'Eiji Kawashima', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Standard Liège', value: 24, group: 27},
{id: 194, label: 'Ejike Uzoenyi', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Enugu Rangers', value: 22, group: 14},
{id: 195, label: 'El Arbi Hillel Soudani', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Dinamo Zagreb', value: 23, group: 24},
{id: 196, label: 'Eliaquim Mangala', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Porto', value: 30, group: 16},
{id: 197, label: 'Emilio Izaguirre', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Celtic', value: 25, group: 7},
{id: 198, label: 'Emir Spahic (c)', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Bayer Leverkusen', value: 24, group: 20},
{id: 199, label: 'Emmanuel Agyemang-Badu', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Udinese', value: 23, group: 5},
{id: 200, label: 'Emmanuel Emenike', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Fenerbahçe', value: 26, group: 14},
{id: 201, label: 'Enner Valencia', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Pachuca', value: 22, group: 4},
{id: 202, label: 'Enzo Pérez', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Benfica', value: 25, group: 19},
{id: 203, label: 'Erik Durm', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Borussia Dortmund', value: 24, group: 13},
{id: 204, label: 'Ermin Bicakcic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Eintracht Braunschweig', value: 23, group: 20},
{id: 205, label: 'Essaïd Belkalem', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Watford', value: 23, group: 24},
{id: 206, label: 'Esteban Granados', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Herediano', value: 22, group: 29},
{id: 207, label: 'Esteban Paredes', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Colo-Colo', value: 22, group: 18},
{id: 208, label: 'Eugene Galekovic', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Adelaide United', value: 22, group: 12},
{id: 209, label: 'Eugenio Mena', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Santos', value: 22, group: 18},
{id: 210, label: 'Eyong Enoh', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Antalyaspor', value: 22, group: 17},
{id: 211, label: 'Ezequiel Garay', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Benfica', value: 25, group: 19},
{id: 212, label: 'Ezequiel Lavezzi', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Paris Saint-Germain', value: 31, group: 19},
{id: 213, label: 'Fabian Johnson', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + '1899 Hoffenheim', value: 23, group: 26},
{id: 214, label: 'Fabián Orellana', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Celta Vigo', value: 23, group: 18},
{id: 215, label: 'Fabian Schär', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Basel', value: 25, group: 0},
{id: 216, label: 'Fábio Coentrão', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Real Madrid', value: 31, group: 8},
{id: 217, label: 'Fabrice Olinga', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Zulte Waregem', value: 23, group: 17},
{id: 218, label: 'Faouzi Ghoulam', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Napoli', value: 33, group: 24},
{id: 219, label: 'Faryd Mondragón', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Deportivo Cali', value: 22, group: 11},
{id: 220, label: 'Fatau Dauda', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Orlando Pirates', value: 22, group: 5},
{id: 221, label: 'Federico Fernández', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Napoli', value: 32, group: 19},
{id: 222, label: 'Felipe Caicedo', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Al-Jazira', value: 22, group: 4},
{id: 223, label: 'Felipe Gutiérrez', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Twente', value: 22, group: 18},
{id: 224, label: 'Fernandinho', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Manchester City', value: 31, group: 23},
{id: 225, label: 'Fernando Gago', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Boca Juniors', value: 22, group: 19},
{id: 226, label: 'Fernando Muslera', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Galatasaray', value: 26, group: 6},
{id: 227, label: 'Fernando Torres', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Chelsea', value: 32, group: 23},
{id: 228, label: 'Fidel Martínez', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Tijuana', value: 22, group: 4},
{id: 229, label: 'Francisco Javier Rodríguez', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'América', value: 22, group: 21},
{id: 230, label: 'Francisco Silva', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Osasuna', value: 22, group: 18},
{id: 231, label: 'Frank Lampard', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Chelsea', value: 32, group: 28},
{id: 232, label: 'Fraser Forster', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Celtic', value: 25, group: 28},
{id: 233, label: 'Fred', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Fluminense', value: 22, group: 23},
{id: 234, label: 'Fredy Guarín', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Internazionale', value: 29, group: 11},
{id: 235, label: 'Frickson Erazo', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Flamengo', value: 22, group: 4},
{id: 236, label: 'Gabriel Achilier', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Emelec', value: 22, group: 4},
{id: 237, label: 'Gabriel Paletta', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Parma', value: 24, group: 3},
{id: 238, label: 'Gary Cahill', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Chelsea', value: 32, group: 28},
{id: 239, label: 'Gary Medel', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Cardiff City', value: 23, group: 18},
{id: 240, label: 'Gastón Ramírez', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Southampton', value: 28, group: 6},
{id: 241, label: 'Gelson Fernandes', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'SC Freiburg', value: 24, group: 0},
{id: 242, label: 'Geoff Cameron', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Stoke City', value: 25, group: 26},
{id: 243, label: 'Georgi Shchennikov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'CSKA Moscow', value: 23, group: 2},
{id: 244, label: 'Georginio Wijnaldum', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'PSV', value: 24, group: 22},
{id: 245, label: 'Gerard Piqué', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Barcelona', value: 31, group: 23},
{id: 246, label: 'Gervinho', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Roma', value: 26, group: 9},
{id: 247, label: 'Ghasem Haddadifar', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Zob Ahan', value: 22, group: 1},
{id: 248, label: 'Giancarlo González', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Columbus Crew', value: 22, group: 29},
{id: 249, label: 'Gianluigi Buffon (c)', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Juventus', value: 28, group: 3},
{id: 250, label: 'Giannis Fetfatzidis', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Genoa', value: 24, group: 15},
{id: 251, label: 'Giannis Maniatis', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Olympiacos', value: 23, group: 15},
{id: 252, label: 'Giorgio Chiellini', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Juventus', value: 28, group: 3},
{id: 253, label: 'Giorgos Karagounis (c)', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Fulham', value: 23, group: 15},
{id: 254, label: 'Giorgos Samaras', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Celtic', value: 25, group: 15},
{id: 255, label: 'Giorgos Tzavellas', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'PAOK', value: 22, group: 15},
{id: 256, label: 'Giovani dos Santos', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Villarreal', value: 22, group: 21},
{id: 257, label: 'Giovanni Sio', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Basel', value: 26, group: 9},
{id: 258, label: 'Glen Johnson', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Liverpool', value: 27, group: 28},
{id: 259, label: 'Godfrey Oboabona', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Çaykur Rizespor', value: 23, group: 14},
{id: 260, label: 'Gökhan Inler (c)', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Napoli', value: 31, group: 0},
{id: 261, label: 'Gonzalo Higuaín', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Napoli', value: 32, group: 19},
{id: 262, label: 'Gonzalo Jara', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Nottingham Forest', value: 22, group: 18},
{id: 263, label: 'Gordon Schildenfeld', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Panathinaikos', value: 23, group: 25},
{id: 264, label: 'Gotoku Sakai', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'VfB Stuttgart', value: 25, group: 27},
{id: 265, label: 'Graham Zusi', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Sporting Kansas City', value: 22, group: 26},
{id: 266, label: 'Granit Xhaka', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Borussia Mönchengladbach', value: 23, group: 0},
{id: 267, label: 'Guillermo Ochoa', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Ajaccio', value: 23, group: 21},
{id: 268, label: 'Ha Dae-sung', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Beijing Guoan', value: 22, group: 10},
{id: 269, label: 'Han Kook-young', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Kashiwa Reysol', value: 22, group: 10},
{id: 270, label: 'Haris Medunjanin', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Gaziantepspor', value: 22, group: 20},
{id: 271, label: 'Haris Seferovic', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Real Sociedad', value: 25, group: 0},
{id: 272, label: 'Harrison Afful', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Espérance', value: 22, group: 5},
{id: 273, label: 'Hashem Beikzadeh', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Esteghlal', value: 22, group: 1},
{id: 274, label: 'Hassan Yebda', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Udinese', value: 23, group: 24},
{id: 275, label: 'Héctor Herrera', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Porto', value: 29, group: 21},
{id: 276, label: 'Héctor Moreno', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Espanyol', value: 23, group: 21},
{id: 277, label: 'Hélder Postiga', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Lazio', value: 28, group: 8},
{id: 278, label: 'Henri Bedimo', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Lyon', value: 22, group: 17},
{id: 279, label: 'Henrique', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Napoli', value: 33, group: 23},
{id: 280, label: 'Hernanes', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Internazionale', value: 29, group: 23},
{id: 281, label: 'Hiroki Sakai', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Hannover 96', value: 24, group: 27},
{id: 282, label: 'Hiroshi Kiyotake', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + '1. FC Nürnberg', value: 24, group: 27},
{id: 283, label: 'Hong Jeong-ho', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'FC Augsburg', value: 23, group: 10},
{id: 284, label: 'Hossein Mahini', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Persepolis', value: 22, group: 1},
{id: 285, label: 'Hotaru Yamaguchi', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Cerezo Osaka', value: 23, group: 27},
{id: 286, label: 'Hugo Almeida', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Be?ikta?', value: 24, group: 8},
{id: 287, label: 'Hugo Campagnaro', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Internazionale', value: 27, group: 19},
{id: 288, label: 'Hugo Lloris (c)', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Tottenham Hotspur', value: 27, group: 16},
{id: 289, label: 'Hulk', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Zenit Saint Petersburg', value: 29, group: 23},
{id: 290, label: 'Hwang Seok-ho', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Sanfrecce Hiroshima', value: 23, group: 10},
{id: 291, label: 'Ignazio Abate', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Milan', value: 27, group: 3},
{id: 292, label: 'Igor Akinfeev', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'CSKA Moscow', value: 23, group: 2},
{id: 293, label: 'Igor Denisov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Dynamo Moscow', value: 23, group: 2},
{id: 294, label: 'Iker Casillas (c)', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Real Madrid', value: 31, group: 23},
{id: 295, label: 'Isaác Brizuela', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Toluca', value: 22, group: 21},
{id: 296, label: 'Islam Slimani', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Sporting CP', value: 25, group: 24},
{id: 297, label: 'Ismaël Diomandé', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Saint-Étienne', value: 23, group: 9},
{id: 298, label: 'Ivan Franjic', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Brisbane Roar', value: 22, group: 12},
{id: 299, label: 'Ivan Perišic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'VfL Wolfsburg', value: 27, group: 25},
{id: 300, label: 'Ivan Rakitic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Sevilla', value: 25, group: 25},
{id: 301, label: 'Ivica Olic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'VfL Wolfsburg', value: 27, group: 25},
{id: 302, label: 'Izet Hajrovic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Galatasaray', value: 26, group: 20},
{id: 303, label: 'Jack Wilshere', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Arsenal', value: 30, group: 28},
{id: 304, label: 'Jackson Martínez', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Porto', value: 29, group: 11},
{id: 305, label: 'Jaime Ayoví', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Tijuana', value: 22, group: 4},
{id: 306, label: 'Jalal Hosseini', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Persepolis', value: 22, group: 1},
{id: 307, label: 'James Holland', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Austria Wien', value: 22, group: 12},
{id: 308, label: 'James Milner', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Manchester City', value: 30, group: 28},
{id: 309, label: 'James Rodríguez', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'AS Monaco', value: 25, group: 11},
{id: 310, label: 'James Troisi', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Melbourne Victory', value: 22, group: 12},
{id: 311, label: 'Jan Vertonghen', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Tottenham Hotspur', value: 25, group: 28},
{id: 312, label: 'Jasmin Fejzic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'VfR Aalen', value: 22, group: 20},
{id: 313, label: 'Jason Davidson', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Heracles Almelo', value: 22, group: 12},
{id: 314, label: 'Jasper Cillessen', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Ajax', value: 22, group: 22},
{id: 315, label: 'Javad Nekounam (c)', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Al-Kuwait', value: 22, group: 1},
{id: 316, label: 'Javi Martínez', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Bayern Munich', value: 35, group: 23},
{id: 317, label: 'Javier Aquino', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Villarreal', value: 22, group: 21},
{id: 318, label: 'Javier Hernández', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Manchester United', value: 35, group: 21},
{id: 319, label: 'Javier Mascherano', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Barcelona', value: 36, group: 19},
{id: 320, label: 'Jean Beausejour', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Wigan Athletic', value: 24, group: 18},
{id: 321, label: 'Jean Makoun', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Rennes', value: 23, group: 17},
{id: 322, label: 'Jean-Daniel Akpa-Akpro', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Toulouse', value: 23, group: 9},
{id: 323, label: 'Jefferson', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Botafogo', value: 22, group: 23},
{id: 324, label: 'Jefferson Montero', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Morelia', value: 23, group: 4},
{id: 325, label: 'Jeremain Lens', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Dynamo Kyiv', value: 25, group: 22},
{id: 326, label: 'Jermaine Jones', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Be?ikta?', value: 24, group: 26},
{id: 327, label: 'Jérôme Boateng', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Bayern Munich', value: 29, group: 13},
{id: 328, label: 'Jerry Bengtson', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'New England Revolution', value: 22, group: 7},
{id: 329, label: 'Jerry Palacios', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Alajuelense', value: 24, group: 7},
{id: 330, label: 'Ji Dong-won', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'FC Augsburg', value: 23, group: 10},
{id: 331, label: 'Jô', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Atlético Mineiro', value: 22, group: 23},
{id: 332, label: 'João Moutinho', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'AS Monaco', value: 25, group: 8},
{id: 333, label: 'João Pereira', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Valencia', value: 25, group: 8},
{id: 334, label: 'Joao Rojas', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Cruz Azul', value: 24, group: 4},
{id: 335, label: 'Joe Hart', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Manchester City', value: 30, group: 28},
{id: 336, label: 'Joel Campbell', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Olympiacos', value: 26, group: 29},
{id: 337, label: 'Joël Matip', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Schalke 04', value: 28, group: 17},
{id: 338, label: 'Joël Veltman', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Ajax', value: 22, group: 22},
{id: 339, label: 'Johan Djourou', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Hamburger SV', value: 23, group: 0},
{id: 340, label: 'John Boye', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Rennes', value: 23, group: 5},
{id: 341, label: 'John Brooks', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Hertha BSC', value: 23, group: 26},
{id: 342, label: 'John Obi Mikel', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Chelsea', value: 33, group: 14},
{id: 343, label: 'Johnny Acosta', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Alajuelense', value: 23, group: 29},
{id: 344, label: 'Johnny Herrera', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Universidad de Chile', value: 22, group: 18},
{id: 345, label: 'Jonathan de Guzmán', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Swansea City', value: 23, group: 22},
{id: 346, label: 'Jonathan Mensah', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Évian', value: 22, group: 5},
{id: 347, label: 'Jordan Ayew', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Sochaux', value: 22, group: 5},
{id: 348, label: 'Jordan Henderson', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Liverpool', value: 27, group: 28},
{id: 349, label: 'Jordi Alba', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Barcelona', value: 31, group: 23},
{id: 350, label: 'Jordy Clasie', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Feyenoord', value: 22, group: 22},
{id: 351, label: 'Jorge Claros', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Motagua', value: 22, group: 7},
{id: 352, label: 'Jorge Fucile', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Porto', value: 30, group: 6},
{id: 353, label: 'Jorge Guagua', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Emelec', value: 22, group: 4},
{id: 354, label: 'Jorge Valdivia', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Palmeiras', value: 22, group: 18},
{id: 355, label: 'José de Jesús Corona', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Cruz Azul', value: 23, group: 21},
{id: 356, label: 'José Holebas', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Olympiacos', value: 23, group: 15},
{id: 357, label: 'José Juan Vázquez', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'León', value: 22, group: 21},
{id: 358, label: 'José María Basanta', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Monterrey', value: 22, group: 19},
{id: 359, label: 'José María Giménez', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Atlético Madrid', value: 28, group: 6},
{id: 360, label: 'José Miguel Cubero', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Herediano', value: 22, group: 29},
{id: 361, label: 'José Pedro Fuenzalida', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Colo-Colo', value: 22, group: 18},
{id: 362, label: 'José Rojas', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Universidad de Chile', value: 22, group: 18},
{id: 363, label: 'Joseph Yobo (c)', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Norwich City', value: 23, group: 14},
{id: 364, label: 'Josip Drmic', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + '1. FC Nürnberg', value: 25, group: 0},
{id: 365, label: 'Jozy Altidore', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Sunderland', value: 23, group: 26},
{id: 366, label: 'Juan Camilo Zúñiga', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Napoli', value: 33, group: 11},
{id: 367, label: 'Juan Carlos García', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Wigan Athletic', value: 23, group: 7},
{id: 368, label: 'Juan Carlos Paredes', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Barcelona', value: 35, group: 4},
{id: 369, label: 'Juan Fernando Quintero', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Porto', value: 29, group: 11},
{id: 370, label: 'Juan Guillermo Cuadrado', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Fiorentina', value: 24, group: 11},
{id: 371, label: 'Juan Mata', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Manchester United', value: 34, group: 23},
{id: 372, label: 'Juan Pablo Montes', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Motagua', value: 22, group: 7},
{id: 373, label: 'Juanfran', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Atlético Madrid', value: 27, group: 23},
{id: 374, label: 'Julian Draxler', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Schalke 04', value: 27, group: 13},
{id: 375, label: 'Julian Green', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Bayern Munich', value: 35, group: 26},
{id: 376, label: 'Júlio César', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Toronto FC', value: 23, group: 23},
{id: 377, label: 'Jung Sung-ryong', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Suwon Bluewings', value: 22, group: 10},
{id: 378, label: 'Júnior Díaz', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Mainz 05', value: 26, group: 29},
{id: 379, label: 'Juwon Oshaniwa', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Ashdod', value: 22, group: 14},
{id: 380, label: 'Karim Ansarifard', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Tractor Sazi', value: 22, group: 1},
{id: 381, label: 'Karim Benzema', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Real Madrid', value: 32, group: 16},
{id: 382, label: 'Keisuke Honda', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Milan', value: 29, group: 27},
{id: 383, label: 'Kenneth Omeruo', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Middlesbrough', value: 23, group: 14},
{id: 384, label: 'Kevin De Bruyne', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'VfL Wolfsburg', value: 28, group: 28},
{id: 385, label: 'Kevin Großkreutz', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Borussia Dortmund', value: 24, group: 13},
{id: 386, label: 'Kevin Mirallas', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Everton', value: 26, group: 28},
{id: 387, label: 'Kevin-Prince Boateng', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Schalke 04', value: 28, group: 5},
{id: 388, label: 'Keylor Navas', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Levante', value: 23, group: 29},
{id: 389, label: 'Khosro Heydari', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Esteghlal', value: 22, group: 1},
{id: 390, label: 'Ki Sung-yueng', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Sunderland', value: 23, group: 10},
{id: 391, label: 'Kim Bo-kyung', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Cardiff City', value: 23, group: 10},
{id: 392, label: 'Kim Chang-soo', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Kashiwa Reysol', value: 22, group: 10},
{id: 393, label: 'Kim Seung-gyu', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Ulsan Hyundai', value: 22, group: 10},
{id: 394, label: 'Kim Shin-wook', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Ulsan Hyundai', value: 22, group: 10},
{id: 395, label: 'Kim Young-gwon', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Guangzhou Evergrande', value: 22, group: 10},
{id: 396, label: 'Klaas-Jan Huntelaar', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Schalke 04', value: 28, group: 22},
{id: 397, label: 'Koke', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Atlético Madrid', value: 27, group: 23},
{id: 398, label: 'Kolo Touré', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Liverpool', value: 31, group: 9},
{id: 399, label: 'Koo Ja-cheol (c)', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Mainz 05', value: 25, group: 10},
{id: 400, label: 'Kostas Katsouranis', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'PAOK', value: 22, group: 15},
{id: 401, label: 'Kostas Manolas', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Olympiacos', value: 23, group: 15},
{id: 402, label: 'Kostas Mitroglou', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Fulham', value: 23, group: 15},
{id: 403, label: 'Kunle Odunlami', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Sunshine Stars', value: 22, group: 14},
{id: 404, label: 'Kwadwo Asamoah', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Juventus', value: 33, group: 5},
{id: 405, label: 'Kwak Tae-hwi', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Al-Hilal', value: 22, group: 10},
{id: 406, label: 'Kyle Beckerman', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Real Salt Lake', value: 22, group: 26},
{id: 407, label: 'Landry N Guémo', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Bordeaux', value: 22, group: 17},
{id: 408, label: 'Laurent Ciman', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Standard Liège', value: 24, group: 28},
{id: 409, label: 'Laurent Koscielny', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Arsenal', value: 29, group: 16},
{id: 410, label: 'Lazaros Christodoulopoulos', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Bologna', value: 23, group: 15},
{id: 411, label: 'Lee Bum-young', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Busan IPark', value: 22, group: 10},
{id: 412, label: 'Lee Chung-yong', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Bolton Wanderers', value: 22, group: 10},
{id: 413, label: 'Lee Keun-ho', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Sangju Sangmu', value: 22, group: 10},
{id: 414, label: 'Lee Yong', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Ulsan Hyundai', value: 22, group: 10},
{id: 415, label: 'Leighton Baines', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Everton', value: 25, group: 28},
{id: 416, label: 'Leonardo Bonucci', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Juventus', value: 28, group: 3},
{id: 417, label: 'Leroy Fer', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Norwich City', value: 23, group: 22},
{id: 418, label: 'Liassine Cadamuro-Bentaïba', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Mallorca', value: 22, group: 24},
{id: 419, label: 'Lionel Messi (c)', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Barcelona', value: 36, group: 19},
{id: 420, label: 'Loïc Feudjou', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Coton Sport', value: 22, group: 17},
{id: 421, label: 'Loïc Rémy', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Newcastle United', value: 25, group: 16},
{id: 422, label: 'Lorenzo Insigne', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Napoli', value: 33, group: 3},
{id: 423, label: 'Loukas Vyntra', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Levante', value: 23, group: 15},
{id: 424, label: 'Lucas Biglia', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Lazio', value: 28, group: 19},
{id: 425, label: 'Lucas Digne', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Paris Saint-Germain', value: 29, group: 16},
{id: 426, label: 'Luis Garrido', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Olimpia', value: 22, group: 7},
{id: 427, label: 'Luis López', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Real España', value: 22, group: 7},
{id: 428, label: 'Luís Neto', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Zenit Saint Petersburg', value: 29, group: 8},
{id: 429, label: 'Luis Saritama', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Barcelona', value: 35, group: 4},
{id: 430, label: 'Luis Suárez', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Liverpool', value: 31, group: 6},
{id: 431, label: 'Luiz Gustavo', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'VfL Wolfsburg', value: 28, group: 23},
{id: 432, label: 'Luka Modric', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Real Madrid', value: 33, group: 25},
{id: 433, label: 'Lukas Podolski', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Arsenal', value: 29, group: 13},
{id: 434, label: 'Luke Shaw', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Southampton', value: 26, group: 28},
{id: 435, label: 'Madjid Bougherra (c)', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Lekhwiya', value: 22, group: 24},
{id: 436, label: 'Maicon', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Roma', value: 26, group: 23},
{id: 437, label: 'Majeed Waris', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Valenciennes', value: 23, group: 5},
{id: 438, label: 'Makoto Hasebe (c)', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + '1. FC Nürnberg', value: 24, group: 27},
{id: 439, label: 'Maksim Kanunnikov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Rubin Kazan', value: 23, group: 2},
{id: 440, label: 'Mamadou Sakho', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Liverpool', value: 31, group: 16},
{id: 441, label: 'Manabu Saito', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Yokohama F. Marinos', value: 22, group: 27},
{id: 442, label: 'Manuel Neuer', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Bayern Munich', value: 29, group: 13},
{id: 443, label: 'Marcelo', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Real Madrid', value: 33, group: 23},
{id: 444, label: 'Marcelo Brozovic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Dinamo Zagreb', value: 23, group: 25},
{id: 445, label: 'Marcelo Díaz', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Basel', value: 27, group: 18},
{id: 446, label: 'Marco Fabián', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Cruz Azul', value: 23, group: 21},
{id: 447, label: 'Marco Parolo', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Parma', value: 24, group: 3},
{id: 448, label: 'Marco Ureña', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Kuban Krasnodar', value: 23, group: 29},
{id: 449, label: 'Marco Verratti', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Paris Saint-Germain', value: 29, group: 3},
{id: 450, label: 'Marcos Rojo', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Sporting CP', value: 25, group: 19},
{id: 451, label: 'Mariano Andújar', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Catania', value: 22, group: 19},
{id: 452, label: 'Mario Balotelli', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Milan', value: 27, group: 3},
{id: 453, label: 'Mario Gavranovic', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Zürich', value: 22, group: 0},
{id: 454, label: 'Mario Götze', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Bayern Munich', value: 29, group: 13},
{id: 455, label: 'Mario Mandžukic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Bayern Munich', value: 35, group: 25},
{id: 456, label: 'Mario Martínez', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Real España', value: 22, group: 7},
{id: 457, label: 'Mario Yepes (c)', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Atalanta', value: 23, group: 11},
{id: 458, label: 'Mark Bresciano', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Al-Gharafa', value: 22, group: 12},
{id: 459, label: 'Mark Milligan', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Melbourne Victory', value: 22, group: 12},
{id: 460, label: 'Marouane Fellaini', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Manchester United', value: 34, group: 28},
{id: 461, label: 'Martín Cáceres', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Juventus', value: 33, group: 6},
{id: 462, label: 'Martín Demichelis', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Manchester City', value: 29, group: 19},
{id: 463, label: 'Martín Silva', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Vasco da Gama', value: 22, group: 6},
{id: 464, label: 'Marvin Chávez', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Chivas USA', value: 23, group: 7},
{id: 465, label: 'Masahiko Inoha', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Jubilo Iwata', value: 22, group: 27},
{id: 466, label: 'Masato Morishige', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'F.C. Tokyo', value: 22, group: 27},
{id: 467, label: 'Masoud Shojaei', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Las Palmas', value: 22, group: 1},
{id: 468, label: 'Massimo Luongo', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Swindon Town', value: 22, group: 12},
{id: 469, label: 'Mateo Kovacic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Internazionale', value: 29, group: 25},
{id: 470, label: 'Mathew Leckie', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'FSV Frankfurt', value: 22, group: 12},
{id: 471, label: 'Mathew Ryan', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Club Brugge', value: 23, group: 12},
{id: 472, label: 'Mathieu Debuchy', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Newcastle United', value: 25, group: 16},
{id: 473, label: 'Mathieu Valbuena', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Marseille', value: 24, group: 16},
{id: 474, label: 'Mathis Bolly', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Fortuna Düsseldorf', value: 23, group: 9},
{id: 475, label: 'Mats Hummels', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Borussia Dortmund', value: 24, group: 13},
{id: 476, label: 'Matt Besler', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Sporting Kansas City', value: 22, group: 26},
{id: 477, label: 'Matt McKay', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Brisbane Roar', value: 22, group: 12},
{id: 478, label: 'Matteo Darmian', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Torino', value: 23, group: 3},
{id: 479, label: 'Matthew Špiranovic', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Western Sydney Wanderers', value: 22, group: 12},
{id: 480, label: 'Matthias Ginter', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'SC Freiburg', value: 25, group: 13},
{id: 481, label: 'Mattia De Sciglio', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Milan', value: 27, group: 3},
{id: 482, label: 'Mattia Perin', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Genoa', value: 24, group: 3},
{id: 483, label: 'Mauricio Isla', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Juventus', value: 32, group: 18},
{id: 484, label: 'Mauricio Pinilla', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Cagliari', value: 23, group: 18},
{id: 485, label: 'Max Gradel', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Saint-Étienne', value: 23, group: 9},
{id: 486, label: 'Maxi Pereira', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Benfica', value: 26, group: 6},
{id: 487, label: 'Maxi Rodríguez', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Newells Old Boys', value: 22, group: 19},
{id: 488, label: 'Maxim Choupo-Moting', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Mainz 05', value: 26, group: 17},
{id: 489, label: 'Máximo Banguera', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Barcelona', value: 35, group: 4},
{id: 490, label: 'Maxwell', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Paris Saint-Germain', value: 30, group: 23},
{id: 491, label: 'Maya Yoshida', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Southampton', value: 28, group: 27},
{id: 492, label: 'Maynor Figueroa', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Hull City', value: 23, group: 7},
{id: 493, label: 'Medhi Lacen', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Getafe', value: 23, group: 24},
{id: 494, label: 'Mehdi Mostefa', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Ajaccio', value: 23, group: 24},
{id: 495, label: 'Mehrdad Pouladi', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Persepolis', value: 22, group: 1},
{id: 496, label: 'Memphis Depay', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'PSV', value: 24, group: 22},
{id: 497, label: 'Mensur Mujdža', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'SC Freiburg', value: 25, group: 20},
{id: 498, label: 'Mesut Özil', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Arsenal', value: 29, group: 13},
{id: 499, label: 'Michael Arroyo', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Atlante', value: 22, group: 4},
{id: 500, label: 'Michael Babatunde', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Volyn Lutsk', value: 22, group: 14},
{id: 501, label: 'Michael Barrantes', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Aalesund', value: 22, group: 29},
{id: 502, label: 'Michael Bradley', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Toronto FC', value: 23, group: 26},
{id: 503, label: 'Michael Essien', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Milan', value: 28, group: 5},
{id: 504, label: 'Michael Lang', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Grasshopper', value: 22, group: 0},
{id: 505, label: 'Michael Uchebo', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Cercle Brugge', value: 22, group: 14},
{id: 506, label: 'Michael Umaña', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Saprissa', value: 22, group: 29},
{id: 507, label: 'Michel Vorm', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Swansea City', value: 23, group: 22},
{id: 508, label: 'Mickaël Landreau', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Bastia', value: 22, group: 16},
{id: 509, label: 'Miguel Ángel Ponce', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Toluca', value: 22, group: 21},
{id: 510, label: 'Miguel Layún', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'América', value: 22, group: 21},
{id: 511, label: 'Miguel Veloso', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Dynamo Kyiv', value: 25, group: 8},
{id: 512, label: 'Miiko Albornoz', title: 'Country: ' + 'Chile' + '<br>' + 'Team: ' + 'Malmö FF', value: 22, group: 18},
{id: 513, label: 'Mikkel Diskerud', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Rosenborg', value: 23, group: 26},
{id: 514, label: 'Milan Badelj', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Hamburger SV', value: 23, group: 25},
{id: 515, label: 'Mile Jedinak (c)', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Crystal Palace', value: 22, group: 12},
{id: 516, label: 'Miralem Pjanic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Roma', value: 26, group: 20},
{id: 517, label: 'Miroslav Klose', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Lazio', value: 28, group: 13},
{id: 518, label: 'Mitchell Langerak', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Borussia Dortmund', value: 27, group: 12},
{id: 519, label: 'Mohamed Zemmamouche', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'USM Alger', value: 22, group: 24},
{id: 520, label: 'Mohammed Rabiu', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Kuban Krasnodar', value: 23, group: 5},
{id: 521, label: 'Morgan Schneiderlin', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Southampton', value: 28, group: 16},
{id: 522, label: 'Mousa Dembélé', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Tottenham Hotspur', value: 25, group: 28},
{id: 523, label: 'Moussa Sissoko', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Newcastle United', value: 25, group: 16},
{id: 524, label: 'Muhamed Bešic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Ferencváros', value: 22, group: 20},
{id: 525, label: 'Nabil Bentaleb', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Tottenham Hotspur', value: 27, group: 24},
{id: 526, label: 'Nabil Ghilas', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Porto', value: 30, group: 24},
{id: 527, label: 'Nacer Chadli', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Tottenham Hotspur', value: 25, group: 28},
{id: 528, label: 'Nani', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Manchester United', value: 35, group: 8},
{id: 529, label: 'Neymar', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Barcelona', value: 36, group: 23},
{id: 530, label: 'Nick Rimando', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Real Salt Lake', value: 22, group: 26},
{id: 531, label: 'Nicolás Lodeiro', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Corinthians', value: 22, group: 6},
{id: 532, label: 'Nicolas Lombaerts', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Zenit Saint Petersburg', value: 28, group: 28},
{id: 533, label: 'Nicolas N Koulou', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Marseille', value: 24, group: 17},
{id: 534, label: 'Nigel de Jong', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Milan', value: 29, group: 22},
{id: 535, label: 'Nikica Jelavic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Hull City', value: 23, group: 25},
{id: 536, label: 'Noel Valladares (c)', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Olimpia', value: 22, group: 7},
{id: 537, label: 'Ogenyi Onazi', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Lazio', value: 28, group: 14},
{id: 538, label: 'Ognjen Vranješ', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Elaz??spor', value: 22, group: 20},
{id: 539, label: 'Ognjen Vukojevic', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Dynamo Kyiv', value: 24, group: 25},
{id: 540, label: 'Oleg Shatov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Zenit Saint Petersburg', value: 26, group: 2},
{id: 541, label: 'Oliver Bozanic', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Luzern', value: 22, group: 12},
{id: 542, label: 'Oliver Zelenika', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Lokomotiva', value: 22, group: 25},
{id: 543, label: 'Olivier Giroud', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Arsenal', value: 29, group: 16},
{id: 544, label: 'Omar Gonzalez', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Los Angeles Galaxy', value: 22, group: 26},
{id: 545, label: 'Orestis Karnezis', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Granada', value: 24, group: 15},
{id: 546, label: 'Oribe Peralta', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'Santos Laguna', value: 22, group: 21},
{id: 547, label: 'Oscar', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Chelsea', value: 30, group: 23},
{id: 548, label: 'Óscar Bagüí', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Emelec', value: 22, group: 4},
{id: 549, label: 'Óscar Boniek García', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Houston Dynamo', value: 23, group: 7},
{id: 550, label: 'Óscar Duarte', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Club Brugge', value: 23, group: 29},
{id: 551, label: 'Osman Chávez', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Qingdao Jonoon', value: 22, group: 7},
{id: 552, label: 'Oswaldo Minda', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Chivas USA', value: 23, group: 4},
{id: 553, label: 'Ousmane Viera', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Çaykur Rizespor', value: 23, group: 9},
{id: 554, label: 'Pablo Armero', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'West Ham United', value: 22, group: 11},
{id: 555, label: 'Pablo Zabaleta', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Manchester City', value: 29, group: 19},
{id: 556, label: 'Panagiotis Glykos', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'PAOK', value: 22, group: 15},
{id: 557, label: 'Panagiotis Kone', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Bologna', value: 23, group: 15},
{id: 558, label: 'Panagiotis Tachtsidis', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Torino', value: 25, group: 15},
{id: 559, label: 'Park Chu-young', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Watford', value: 23, group: 10},
{id: 560, label: 'Park Jong-woo', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Guangzhou R&F', value: 22, group: 10},
{id: 561, label: 'Park Joo-ho', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Mainz 05', value: 25, group: 10},
{id: 562, label: 'Patrice Evra', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Manchester United', value: 35, group: 16},
{id: 563, label: 'Patrick Pemberton', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Alajuelense', value: 23, group: 29},
{id: 564, label: 'Paul Aguilar', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'América', value: 22, group: 21},
{id: 565, label: 'Paul Pogba', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Juventus', value: 33, group: 16},
{id: 566, label: 'Paul Verhaegh', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'FC Augsburg', value: 24, group: 22},
{id: 567, label: 'Paulinho', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Tottenham Hotspur', value: 27, group: 23},
{id: 568, label: 'Pavel Mogilevets', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Rubin Kazan', value: 23, group: 2},
{id: 569, label: 'Pedro', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Barcelona', value: 31, group: 23},
{id: 570, label: 'Pejman Montazeri', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Umm Salal', value: 22, group: 1},
{id: 571, label: 'Pepe', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Real Madrid', value: 31, group: 8},
{id: 572, label: 'Pepe Reina', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Napoli', value: 32, group: 23},
{id: 573, label: 'Per Mertesacker', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Arsenal', value: 29, group: 13},
{id: 574, label: 'Peter Odemwingie', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Stoke City', value: 25, group: 14},
{id: 575, label: 'Phil Jagielka', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Everton', value: 25, group: 28},
{id: 576, label: 'Phil Jones', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Manchester United', value: 32, group: 28},
{id: 577, label: 'Philipp Lahm (c)', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Bayern Munich', value: 29, group: 13},
{id: 578, label: 'Philippe Senderos', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Valencia', value: 26, group: 0},
{id: 579, label: 'Pierre Webó', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Fenerbahçe', value: 26, group: 17},
{id: 580, label: 'Rafa Silva', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Braga', value: 22, group: 8},
{id: 581, label: 'Rafael Márquez (c)', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'León', value: 22, group: 21},
{id: 582, label: 'Rafik Halliche', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Académica', value: 22, group: 24},
{id: 583, label: 'Raheem Sterling', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Liverpool', value: 27, group: 28},
{id: 584, label: 'Rahman Ahmadi', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Sepahan', value: 22, group: 1},
{id: 585, label: 'Raïs M Bolhi', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'CSKA Sofia', value: 22, group: 24},
{id: 586, label: 'Ramires', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Chelsea', value: 30, group: 23},
{id: 587, label: 'Ramon Azeez', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Almería', value: 22, group: 14},
{id: 588, label: 'Randall Brenes', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Cartaginés', value: 22, group: 29},
{id: 589, label: 'Raphaël Varane', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Real Madrid', value: 32, group: 16},
{id: 590, label: 'Rashid Sumaila', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Mamelodi Sundowns', value: 22, group: 5},
{id: 591, label: 'Raúl Albiol', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Napoli', value: 32, group: 23},
{id: 592, label: 'Raúl Jiménez', title: 'Country: ' + 'Mexico' + '<br>' + 'Team: ' + 'América', value: 22, group: 21},
{id: 593, label: 'Raul Meireles', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Fenerbahçe', value: 25, group: 8},
{id: 594, label: 'Rémy Cabella', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Montpellier', value: 22, group: 16},
{id: 595, label: 'Renato Ibarra', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Vitesse', value: 23, group: 4},
{id: 596, label: 'Reto Ziegler', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Sassuolo', value: 22, group: 0},
{id: 597, label: 'Reuben Gabriel', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Waasland-Beveren', value: 22, group: 14},
{id: 598, label: 'Reza Ghoochannejhad', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Charlton Athletic', value: 22, group: 1},
{id: 599, label: 'Reza Haghighi', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Persepolis', value: 22, group: 1},
{id: 600, label: 'Ricardo Álvarez', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Internazionale', value: 27, group: 19},
{id: 601, label: 'Ricardo Costa', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Valencia', value: 25, group: 8},
{id: 602, label: 'Ricardo Rodríguez', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'VfL Wolfsburg', value: 27, group: 0},
{id: 603, label: 'Rickie Lambert', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Southampton', value: 26, group: 28},
{id: 604, label: 'Rio Mavuba', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Lille', value: 25, group: 16},
{id: 605, label: 'Riyad Mahrez', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Leicester City', value: 22, group: 24},
{id: 606, label: 'Robin van Persie (c)', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Manchester United', value: 35, group: 22},
{id: 607, label: 'Rodrigo Muñoz', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Libertad', value: 22, group: 6},
{id: 608, label: 'Rodrigo Palacio', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Internazionale', value: 27, group: 19},
{id: 609, label: 'Roger Espinoza', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Wigan Athletic', value: 23, group: 7},
{id: 610, label: 'Roman Bürki', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Grasshopper', value: 22, group: 0},
{id: 611, label: 'Roman Weidenfeller', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Borussia Dortmund', value: 24, group: 13},
{id: 612, label: 'Romelu Lukaku', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Everton', value: 26, group: 28},
{id: 613, label: 'Ron Vlaar', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Aston Villa', value: 23, group: 22},
{id: 614, label: 'Ron-Robert Zieler', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Hannover 96', value: 24, group: 13},
{id: 615, label: 'Rony Martínez', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Real Sociedad', value: 25, group: 7},
{id: 616, label: 'Ross Barkley', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Everton', value: 25, group: 28},
{id: 617, label: 'Roy Miller', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'New York Red Bulls', value: 23, group: 29},
{id: 618, label: 'Rúben Amorim', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Benfica', value: 25, group: 8},
{id: 619, label: 'Rui Patrício', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Sporting CP', value: 24, group: 8},
{id: 620, label: 'Ryan McGowan', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Shandong Luneng Taishan', value: 22, group: 12},
{id: 621, label: 'Salomon Kalou', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Lille', value: 25, group: 9},
{id: 622, label: 'Salvatore Sirigu', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Paris Saint-Germain', value: 29, group: 3},
{id: 623, label: 'Sami Khedira', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Real Madrid', value: 33, group: 13},
{id: 624, label: 'Sammir', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Getafe', value: 23, group: 25},
{id: 625, label: 'Sammy Bossut', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Zulte Waregem', value: 23, group: 28},
{id: 626, label: 'Sammy N Djock', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Fethiyespor', value: 22, group: 17},
{id: 627, label: 'Samuel Etoo (c)', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Chelsea', value: 33, group: 17},
{id: 628, label: 'Samuel Inkoom', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Platanias', value: 22, group: 5},
{id: 629, label: 'Santi Cazorla', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Arsenal', value: 31, group: 23},
{id: 630, label: 'Santiago Arias', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'PSV', value: 25, group: 11},
{id: 631, label: 'Saphir Taïder', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Internazionale', value: 29, group: 24},
{id: 632, label: 'Sayouba Mandé', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Stabæk', value: 22, group: 9},
{id: 633, label: 'Sead Kolašinac', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Schalke 04', value: 28, group: 20},
{id: 634, label: 'Sebastián Coates', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Nacional', value: 22, group: 6},
{id: 635, label: 'Sejad Salihovic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + '1899 Hoffenheim', value: 23, group: 20},
{id: 636, label: 'Senad Lulic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Lazio', value: 28, group: 20},
{id: 637, label: 'Senijad Ibricic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Kayseri Erciyesspor', value: 22, group: 20},
{id: 638, label: 'Serey Die', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Basel', value: 26, group: 9},
{id: 639, label: 'Serge Aurier', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Toulouse', value: 23, group: 9},
{id: 640, label: 'Sergei Ignashevich', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'CSKA Moscow', value: 23, group: 2},
{id: 641, label: 'Sergey Ryzhikov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Rubin Kazan', value: 23, group: 2},
{id: 642, label: 'Sergio Agüero', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'Manchester City', value: 29, group: 19},
{id: 643, label: 'Sergio Busquets', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Barcelona', value: 31, group: 23},
{id: 644, label: 'Sergio Ramos', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Real Madrid', value: 31, group: 23},
{id: 645, label: 'Sergio Romero', title: 'Country: ' + 'Argentina' + '<br>' + 'Team: ' + 'AS Monaco', value: 25, group: 19},
{id: 646, label: 'Shinji Kagawa', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Manchester United', value: 35, group: 27},
{id: 647, label: 'Shinji Okazaki', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Mainz 05', value: 26, group: 27},
{id: 648, label: 'Shkodran Mustafi', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Sampdoria', value: 22, group: 13},
{id: 649, label: 'Shola Ameobi', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Newcastle United', value: 27, group: 14},
{id: 650, label: 'Shuichi Gonda', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'F.C. Tokyo', value: 22, group: 27},
{id: 651, label: 'Shusaku Nishikawa', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Urawa Red Diamonds', value: 22, group: 27},
{id: 652, label: 'Silvestre Varela', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Porto', value: 30, group: 8},
{id: 653, label: 'Šime Vrsaljko', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Genoa', value: 24, group: 25},
{id: 654, label: 'Simon Mignolet', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Liverpool', value: 31, group: 28},
{id: 655, label: 'Sofiane Feghouli', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Valencia', value: 26, group: 24},
{id: 656, label: 'Sokratis Papastathopoulos', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Borussia Dortmund', value: 27, group: 15},
{id: 657, label: 'Sol Bamba', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Trabzonspor', value: 22, group: 9},
{id: 658, label: 'Son Heung-min', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Bayer Leverkusen', value: 24, group: 10},
{id: 659, label: 'Stefan de Vrij', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Feyenoord', value: 22, group: 22},
{id: 660, label: 'Stefanos Kapino', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Panathinaikos', value: 24, group: 15},
{id: 661, label: 'Stephan Lichtsteiner', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Juventus', value: 33, group: 0},
{id: 662, label: 'Stéphane Mbia', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Sevilla', value: 25, group: 17},
{id: 663, label: 'Stéphane Ruffier', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Saint-Étienne', value: 24, group: 16},
{id: 664, label: 'Stephen Adams', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Aduana Stars', value: 22, group: 5},
{id: 665, label: 'Steve von Bergen', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Young Boys', value: 22, group: 0},
{id: 666, label: 'Steven Beitashour', title: 'Country: ' + 'Iran' + '<br>' + 'Team: ' + 'Vancouver Whitecaps FC', value: 22, group: 1},
{id: 667, label: 'Steven Defour', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Porto', value: 30, group: 28},
{id: 668, label: 'Steven Gerrard (c)', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Liverpool', value: 27, group: 28},
{id: 669, label: 'Stipe Pletikosa', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Rostov', value: 22, group: 25},
{id: 670, label: 'Sulley Muntari', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Milan', value: 28, group: 5},
{id: 671, label: 'Sylvain Gbohouo', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Séwé Sport', value: 22, group: 9},
{id: 672, label: 'Teófilo Gutiérrez', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'River Plate', value: 22, group: 11},
{id: 673, label: 'Terence Kongolo', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Feyenoord', value: 22, group: 22},
{id: 674, label: 'Theofanis Gekas', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Konyaspor', value: 23, group: 15},
{id: 675, label: 'Thiago Motta', title: 'Country: ' + 'Italy' + '<br>' + 'Team: ' + 'Paris Saint-Germain', value: 29, group: 3},
{id: 676, label: 'Thiago Silva (c)', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Paris Saint-Germain', value: 30, group: 23},
{id: 677, label: 'Thibaut Courtois', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Atlético Madrid', value: 29, group: 28},
{id: 678, label: 'Thomas Müller', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Bayern Munich', value: 29, group: 13},
{id: 679, label: 'Thomas Vermaelen', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Arsenal', value: 31, group: 28},
{id: 680, label: 'Tim Cahill', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'New York Red Bulls', value: 23, group: 12},
{id: 681, label: 'Tim Howard', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + 'Everton', value: 27, group: 26},
{id: 682, label: 'Tim Krul', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Newcastle United', value: 27, group: 22},
{id: 683, label: 'Timothy Chandler', title: 'Country: ' + 'United States' + '<br>' + 'Team: ' + '1. FC Nürnberg', value: 25, group: 26},
{id: 684, label: 'Tino-Sven Sušic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Hajduk Split', value: 22, group: 20},
{id: 685, label: 'Toby Alderweireld', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Atlético Madrid', value: 29, group: 28},
{id: 686, label: 'Tommy Oar', title: 'Country: ' + 'Australia' + '<br>' + 'Team: ' + 'Utrecht', value: 22, group: 12},
{id: 687, label: 'Toni Kroos', title: 'Country: ' + 'Germany' + '<br>' + 'Team: ' + 'Bayern Munich', value: 29, group: 13},
{id: 688, label: 'Toni Šunjic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Zorya Luhansk', value: 22, group: 20},
{id: 689, label: 'Toshihiro Aoyama', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Sanfrecce Hiroshima', value: 23, group: 27},
{id: 690, label: 'Tranquillo Barnetta', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Eintracht Frankfurt', value: 23, group: 0},
{id: 691, label: 'Uche Nwofor', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Heerenveen', value: 22, group: 14},
{id: 692, label: 'Valentin Stocker', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Basel', value: 25, group: 0},
{id: 693, label: 'Valon Behrami', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Napoli', value: 31, group: 0},
{id: 694, label: 'Vangelis Moras', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Verona', value: 22, group: 15},
{id: 695, label: 'Vasili Berezutski (c)', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'CSKA Moscow', value: 23, group: 2},
{id: 696, label: 'Vasilis Torosidis', title: 'Country: ' + 'Greece' + '<br>' + 'Team: ' + 'Roma', value: 26, group: 15},
{id: 697, label: 'Vedad Ibiševic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'VfB Stuttgart', value: 25, group: 20},
{id: 698, label: 'Vedran Corluka', title: 'Country: ' + 'Croatia' + '<br>' + 'Team: ' + 'Lokomotiv Moscow', value: 23, group: 25},
{id: 699, label: 'Victor', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Atlético Mineiro', value: 22, group: 23},
{id: 700, label: 'Víctor Bernárdez', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'San Jose Earthquakes', value: 23, group: 7},
{id: 701, label: 'Víctor Ibarbo', title: 'Country: ' + 'Colombia' + '<br>' + 'Team: ' + 'Cagliari', value: 23, group: 11},
{id: 702, label: 'Victor Moses', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Liverpool', value: 31, group: 14},
{id: 703, label: 'Vieirinha', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'VfL Wolfsburg', value: 28, group: 8},
{id: 704, label: 'Viktor Fayzulin', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Zenit Saint Petersburg', value: 26, group: 2},
{id: 705, label: 'Vincent Aboubakar', title: 'Country: ' + 'Cameroon' + '<br>' + 'Team: ' + 'Lorient', value: 22, group: 17},
{id: 706, label: 'Vincent Enyeama', title: 'Country: ' + 'Nigeria' + '<br>' + 'Team: ' + 'Lille', value: 25, group: 14},
{id: 707, label: 'Vincent Kompany (c)', title: 'Country: ' + 'Belgium' + '<br>' + 'Team: ' + 'Manchester City', value: 31, group: 28},
{id: 708, label: 'Vladimir Granat', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Dynamo Moscow', value: 23, group: 2},
{id: 709, label: 'Wakaso Mubarak', title: 'Country: ' + 'Ghana' + '<br>' + 'Team: ' + 'Rubin Kazan', value: 25, group: 5},
{id: 710, label: 'Walter Ayoví', title: 'Country: ' + 'Ecuador' + '<br>' + 'Team: ' + 'Pachuca', value: 22, group: 4},
{id: 711, label: 'Walter Gargano', title: 'Country: ' + 'Uruguay' + '<br>' + 'Team: ' + 'Parma', value: 26, group: 6},
{id: 712, label: 'Waylon Francis', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Columbus Crew', value: 22, group: 29},
{id: 713, label: 'Wayne Rooney', title: 'Country: ' + 'England' + '<br>' + 'Team: ' + 'Manchester United', value: 32, group: 28},
{id: 714, label: 'Wesley Sneijder', title: 'Country: ' + 'Netherlands' + '<br>' + 'Team: ' + 'Galatasaray', value: 26, group: 22},
{id: 715, label: 'Wilfried Bony', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Swansea City', value: 24, group: 9},
{id: 716, label: 'William Carvalho', title: 'Country: ' + 'Portugal' + '<br>' + 'Team: ' + 'Sporting CP', value: 24, group: 8},
{id: 717, label: 'Willian', title: 'Country: ' + 'Brazil' + '<br>' + 'Team: ' + 'Chelsea', value: 30, group: 23},
{id: 718, label: 'Wilson Palacios', title: 'Country: ' + 'Honduras' + '<br>' + 'Team: ' + 'Stoke City', value: 25, group: 7},
{id: 719, label: 'Xabi Alonso', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Real Madrid', value: 31, group: 23},
{id: 720, label: 'Xavi', title: 'Country: ' + 'Spain' + '<br>' + 'Team: ' + 'Barcelona', value: 31, group: 23},
{id: 721, label: 'Xherdan Shaqiri', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Bayern Munich', value: 35, group: 0},
{id: 722, label: 'Yacine Brahimi', title: 'Country: ' + 'Algeria' + '<br>' + 'Team: ' + 'Granada', value: 24, group: 24},
{id: 723, label: 'Yann Sommer', title: 'Country: ' + 'Switzerland' + '<br>' + 'Team: ' + 'Basel', value: 25, group: 0},
{id: 724, label: 'Yasuhito Endo', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Gamba Osaka', value: 22, group: 27},
{id: 725, label: 'Yasuyuki Konno', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Gamba Osaka', value: 22, group: 27},
{id: 726, label: 'Yaya Touré', title: 'Country: ' + 'Ivory Coast' + '<br>' + 'Team: ' + 'Manchester City', value: 31, group: 9},
{id: 727, label: 'Yeltsin Tejeda', title: 'Country: ' + 'Costa Rica' + '<br>' + 'Team: ' + 'Saprissa', value: 22, group: 29},
{id: 728, label: 'Yohan Cabaye', title: 'Country: ' + 'France' + '<br>' + 'Team: ' + 'Paris Saint-Germain', value: 29, group: 16},
{id: 729, label: 'Yoichiro Kakitani', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Cerezo Osaka', value: 23, group: 27},
{id: 730, label: 'Yoshito Okubo', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Kawasaki Frontale', value: 22, group: 27},
{id: 731, label: 'Yun Suk-young', title: 'Country: ' + 'South Korea' + '<br>' + 'Team: ' + 'Queens Park Rangers', value: 23, group: 10},
{id: 732, label: 'Yuri Lodygin', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Zenit Saint Petersburg', value: 26, group: 2},
{id: 733, label: 'Yuri Zhirkov', title: 'Country: ' + 'Russia' + '<br>' + 'Team: ' + 'Dynamo Moscow', value: 23, group: 2},
{id: 734, label: 'Yuto Nagatomo', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + 'Internazionale', value: 29, group: 27},
{id: 735, label: 'Yuya Osako', title: 'Country: ' + 'Japan' + '<br>' + 'Team: ' + '1860 München', value: 22, group: 27},
{id: 736, label: 'Zvjezdan Misimovic', title: 'Country: ' + 'Bosnia and Herzegovina' + '<br>' + 'Team: ' + 'Guizhou Renhe', value: 22, group: 20},
];
// create an array with edges
var edges = [
{from: 1, to: 15},
{from: 1, to: 97},
{from: 1, to: 108},
{from: 1, to: 173},
{from: 1, to: 195},
{from: 1, to: 205},
{from: 1, to: 218},
{from: 1, to: 274},
{from: 1, to: 296},
{from: 1, to: 418},
{from: 1, to: 435},
{from: 1, to: 493},
{from: 1, to: 494},
{from: 1, to: 519},
{from: 1, to: 525},
{from: 1, to: 526},
{from: 1, to: 582},
{from: 1, to: 585},
{from: 1, to: 605},
{from: 1, to: 631},
{from: 1, to: 655},
{from: 1, to: 722},
{from: 2, to: 10},
{from: 2, to: 31},
{from: 2, to: 96},
{from: 2, to: 99},
{from: 2, to: 100},
{from: 2, to: 105},
{from: 2, to: 106},
{from: 2, to: 130},
{from: 2, to: 153},
{from: 2, to: 181},
{from: 2, to: 219},
{from: 2, to: 234},
{from: 2, to: 304},
{from: 2, to: 309},
{from: 2, to: 322},
{from: 2, to: 366},
{from: 2, to: 369},
{from: 2, to: 370},
{from: 2, to: 457},
{from: 2, to: 554},
{from: 2, to: 630},
{from: 2, to: 639},
{from: 2, to: 672},
{from: 2, to: 701},
{from: 3, to: 38},
{from: 3, to: 39},
{from: 3, to: 121},
{from: 3, to: 129},
{from: 3, to: 165},
{from: 3, to: 166},
{from: 3, to: 167},
{from: 3, to: 168},
{from: 3, to: 185},
{from: 3, to: 191},
{from: 3, to: 226},
{from: 3, to: 240},
{from: 3, to: 352},
{from: 3, to: 359},
{from: 3, to: 430},
{from: 3, to: 461},
{from: 3, to: 463},
{from: 3, to: 486},
{from: 3, to: 531},
{from: 3, to: 607},
{from: 3, to: 634},
{from: 3, to: 711},
{from: 4, to: 11},
{from: 4, to: 18},
{from: 4, to: 43},
{from: 4, to: 65},
{from: 4, to: 118},
{from: 4, to: 138},
{from: 4, to: 199},
{from: 4, to: 220},
{from: 4, to: 272},
{from: 4, to: 340},
{from: 4, to: 346},
{from: 4, to: 347},
{from: 4, to: 387},
{from: 4, to: 404},
{from: 4, to: 437},
{from: 4, to: 503},
{from: 4, to: 520},
{from: 4, to: 590},
{from: 4, to: 628},
{from: 4, to: 664},
{from: 4, to: 670},
{from: 4, to: 709},
{from: 5, to: 27},
{from: 5, to: 80},
{from: 5, to: 116},
{from: 5, to: 139},
{from: 5, to: 144},
{from: 5, to: 157},
{from: 5, to: 231},
{from: 5, to: 232},
{from: 5, to: 238},
{from: 5, to: 240},
{from: 5, to: 258},
{from: 5, to: 303},
{from: 5, to: 308},
{from: 5, to: 335},
{from: 5, to: 348},
{from: 5, to: 415},
{from: 5, to: 434},
{from: 5, to: 491},
{from: 5, to: 521},
{from: 5, to: 575},
{from: 5, to: 576},
{from: 5, to: 583},
{from: 5, to: 603},
{from: 5, to: 616},
{from: 5, to: 668},
{from: 5, to: 713},
{from: 6, to: 29},
{from: 6, to: 77},
{from: 6, to: 81},
{from: 6, to: 148},
{from: 6, to: 208},
{from: 6, to: 298},
{from: 6, to: 307},
{from: 6, to: 310},
{from: 6, to: 313},
{from: 6, to: 458},
{from: 6, to: 459},
{from: 6, to: 468},
{from: 6, to: 470},
{from: 6, to: 471},
{from: 6, to: 477},
{from: 6, to: 479},
{from: 6, to: 515},
{from: 6, to: 518},
{from: 6, to: 541},
{from: 6, to: 620},
{from: 6, to: 680},
{from: 6, to: 686},
{from: 7, to: 88},
{from: 7, to: 162},
{from: 7, to: 215},
{from: 7, to: 241},
{from: 7, to: 260},
{from: 7, to: 266},
{from: 7, to: 271},
{from: 7, to: 339},
{from: 7, to: 364},
{from: 7, to: 453},
{from: 7, to: 480},
{from: 7, to: 497},
{from: 7, to: 504},
{from: 7, to: 578},
{from: 7, to: 596},
{from: 7, to: 602},
{from: 7, to: 610},
{from: 7, to: 661},
{from: 7, to: 665},
{from: 7, to: 690},
{from: 7, to: 692},
{from: 7, to: 693},
{from: 7, to: 721},
{from: 7, to: 723},
{from: 8, to: 56},
{from: 8, to: 60},
{from: 8, to: 74},
{from: 8, to: 116},
{from: 8, to: 140},
{from: 8, to: 144},
{from: 8, to: 150},
{from: 8, to: 172},
{from: 8, to: 177},
{from: 8, to: 179},
{from: 8, to: 311},
{from: 8, to: 318},
{from: 8, to: 371},
{from: 8, to: 384},
{from: 8, to: 386},
{from: 8, to: 408},
{from: 8, to: 460},
{from: 8, to: 522},
{from: 8, to: 527},
{from: 8, to: 528},
{from: 8, to: 532},
{from: 8, to: 562},
{from: 8, to: 576},
{from: 8, to: 606},
{from: 8, to: 612},
{from: 8, to: 625},
{from: 8, to: 646},
{from: 8, to: 654},
{from: 8, to: 667},
{from: 8, to: 677},
{from: 8, to: 679},
{from: 8, to: 685},
{from: 8, to: 707},
{from: 8, to: 713},
{from: 9, to: 30},
{from: 9, to: 60},
{from: 9, to: 102},
{from: 9, to: 120},
{from: 9, to: 186},
{from: 9, to: 201},
{from: 9, to: 222},
{from: 9, to: 228},
{from: 9, to: 235},
{from: 9, to: 236},
{from: 9, to: 305},
{from: 9, to: 324},
{from: 9, to: 334},
{from: 9, to: 353},
{from: 9, to: 368},
{from: 9, to: 429},
{from: 9, to: 489},
{from: 9, to: 499},
{from: 9, to: 548},
{from: 9, to: 552},
{from: 9, to: 595},
{from: 9, to: 710},
{from: 10, to: 31},
{from: 10, to: 96},
{from: 10, to: 99},
{from: 10, to: 100},
{from: 10, to: 105},
{from: 10, to: 106},
{from: 10, to: 130},
{from: 10, to: 153},
{from: 10, to: 181},
{from: 10, to: 219},
{from: 10, to: 234},
{from: 10, to: 304},
{from: 10, to: 309},
{from: 10, to: 341},
{from: 10, to: 366},
{from: 10, to: 369},
{from: 10, to: 370},
{from: 10, to: 457},
{from: 10, to: 554},
{from: 10, to: 630},
{from: 10, to: 672},
{from: 10, to: 701},
{from: 11, to: 18},
{from: 11, to: 43},
{from: 11, to: 59},
{from: 11, to: 65},
{from: 11, to: 118},
{from: 11, to: 138},
{from: 11, to: 199},
{from: 11, to: 220},
{from: 11, to: 237},
{from: 11, to: 272},
{from: 11, to: 340},
{from: 11, to: 346},
{from: 11, to: 347},
{from: 11, to: 387},
{from: 11, to: 404},
{from: 11, to: 437},
{from: 11, to: 447},
{from: 11, to: 503},
{from: 11, to: 520},