From a67b433c06f468c9a75ca1bbcda17d3bc8e9c6bf Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Sat, 25 May 2019 04:45:53 +0100 Subject: - Added solutions by Laurent Rosenfeld. --- challenge-009/laurent-rosenfeld/blog.txt | 1 + challenge-009/laurent-rosenfeld/perl5/ch-1.pl | 14 + challenge-009/laurent-rosenfeld/perl5/ch-1a.sh | 1 + challenge-009/laurent-rosenfeld/perl5/ch-2.pl | 62 ++++ challenge-009/laurent-rosenfeld/perl6/ch-1.sh | 1 + challenge-009/laurent-rosenfeld/perl6/ch-1a.p6 | 9 + challenge-009/laurent-rosenfeld/perl6/ch-1b.p6 | 5 + challenge-009/laurent-rosenfeld/perl6/ch-2.p6 | 54 ++++ stats/pwc-current.json | 207 ++++++------ stats/pwc-language-breakdown.json | 180 +++++------ stats/pwc-leaders.json | 422 ++++++++++++------------- stats/pwc-summary-1-30.json | 38 +-- stats/pwc-summary-31-60.json | 34 +- stats/pwc-summary-61-90.json | 76 ++--- stats/pwc-summary.json | 210 ++++++------ 15 files changed, 740 insertions(+), 574 deletions(-) create mode 100644 challenge-009/laurent-rosenfeld/blog.txt create mode 100644 challenge-009/laurent-rosenfeld/perl5/ch-1.pl create mode 100644 challenge-009/laurent-rosenfeld/perl5/ch-1a.sh create mode 100644 challenge-009/laurent-rosenfeld/perl5/ch-2.pl create mode 100644 challenge-009/laurent-rosenfeld/perl6/ch-1.sh create mode 100644 challenge-009/laurent-rosenfeld/perl6/ch-1a.p6 create mode 100644 challenge-009/laurent-rosenfeld/perl6/ch-1b.p6 create mode 100644 challenge-009/laurent-rosenfeld/perl6/ch-2.p6 diff --git a/challenge-009/laurent-rosenfeld/blog.txt b/challenge-009/laurent-rosenfeld/blog.txt new file mode 100644 index 0000000000..f91c381806 --- /dev/null +++ b/challenge-009/laurent-rosenfeld/blog.txt @@ -0,0 +1 @@ +http://blogs.perl.org/users/laurent_r/2019/05/perl-weekly-challenge-9-squares-and-rankings.html diff --git a/challenge-009/laurent-rosenfeld/perl5/ch-1.pl b/challenge-009/laurent-rosenfeld/perl5/ch-1.pl new file mode 100644 index 0000000000..b5c26e5f53 --- /dev/null +++ b/challenge-009/laurent-rosenfeld/perl5/ch-1.pl @@ -0,0 +1,14 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature qw/say/; + +for my $integer (100..1000) { + my $square = $integer ** 2; + my @digits = split //, $square; + my %unique_digits = map {$_ => 1} @digits; + if (scalar keys %unique_digits >= 5) { + say "$integer -> $square"; + last; + } +} diff --git a/challenge-009/laurent-rosenfeld/perl5/ch-1a.sh b/challenge-009/laurent-rosenfeld/perl5/ch-1a.sh new file mode 100644 index 0000000000..344824c2c1 --- /dev/null +++ b/challenge-009/laurent-rosenfeld/perl5/ch-1a.sh @@ -0,0 +1 @@ +perl -MList::Util=uniq -E 'for (100..1000) { say "$_ -> ", $_**2 and last if uniq (split //, $_**2) >= 5}' diff --git a/challenge-009/laurent-rosenfeld/perl5/ch-2.pl b/challenge-009/laurent-rosenfeld/perl5/ch-2.pl new file mode 100644 index 0000000000..4e196012d9 --- /dev/null +++ b/challenge-009/laurent-rosenfeld/perl5/ch-2.pl @@ -0,0 +1,62 @@ +#!/usr/bin/perl +use strict; +use warnings; +use feature qw/say/; + +sub standard { + my %scores = @_; + my ($prev_rank, $prev_val, $rank) = (0, 0, 0); + say "Rank\tID\tScore"; + for my $key (sort { $scores{$a} <=> $scores{$b} } keys %scores) { + $rank++; + if ($scores{$key} > $prev_val) { + say $rank, "\t$key\t$scores{$key}"; + $prev_rank = $rank; + } else { + say $prev_rank, "\t$key\t$scores{$key}"; + } + $prev_val = $scores{$key}; + } +} + +sub modified { + my %scores = @_; + my ($prev_val, $rank) = (0, 0); + my @buffer; + say "Rank\tID\tScore"; + for my $key (sort { $scores{$a} <=> $scores{$b} } keys %scores) { + $rank++; + if ($scores{$key} > $prev_val) { + say $rank - 1, $_ for @buffer; + @buffer = ("\t$key\t$scores{$key}"); + } else { + push @buffer, "\t$key\t$scores{$key}"; + } + $prev_val = $scores{$key}; + } + say $rank, shift @buffer while @buffer; +} + +sub dense { + my %scores = @_; + my ($prev_rank, $prev_val, $rank) = (0, 0, 0); + say "Rank\tID\tScore"; + for my $key (sort { $scores{$a} <=> $scores{$b} } keys %scores) { + if ($scores{$key} > $prev_val) { + $rank++; + say $rank, "\t$key\t$scores{$key}"; + $prev_rank = $rank; + } else { + say $prev_rank, "\t$key\t$scores{$key}"; + } + $prev_val = $scores{$key}; + } +} + +my %scores = (a => 4, b => 5, c => 3, d => 5, e => 1, f => 4, g => 6, h => 4, i =>6); +say " Standard"; +standard(%scores); +say "\n Modified"; +modified(%scores); +say "\n Dense"; +dense(%scores); diff --git a/challenge-009/laurent-rosenfeld/perl6/ch-1.sh b/challenge-009/laurent-rosenfeld/perl6/ch-1.sh new file mode 100644 index 0000000000..e16364d762 --- /dev/null +++ b/challenge-009/laurent-rosenfeld/perl6/ch-1.sh @@ -0,0 +1 @@ +perl6 -e 'say $_ ** 2 and last if ($_**2).comb.unique >= 5 for 100..*' diff --git a/challenge-009/laurent-rosenfeld/perl6/ch-1a.p6 b/challenge-009/laurent-rosenfeld/perl6/ch-1a.p6 new file mode 100644 index 0000000000..66ca511399 --- /dev/null +++ b/challenge-009/laurent-rosenfeld/perl6/ch-1a.p6 @@ -0,0 +1,9 @@ +use v6; + +my @squares = map {$_ ** 2}, 100..*; # lazy infinite list of squares +for @squares -> $square { + if $square.comb.unique >= 5 { + say $square; + last; + } +} diff --git a/challenge-009/laurent-rosenfeld/perl6/ch-1b.p6 b/challenge-009/laurent-rosenfeld/perl6/ch-1b.p6 new file mode 100644 index 0000000000..eed3a9e319 --- /dev/null +++ b/challenge-009/laurent-rosenfeld/perl6/ch-1b.p6 @@ -0,0 +1,5 @@ +use v6; + +my @squares = map {$_ ** 2}, 100..*; +my @candidates = grep { .comb.unique >= 5}, @squares; +say @candidates[0]; diff --git a/challenge-009/laurent-rosenfeld/perl6/ch-2.p6 b/challenge-009/laurent-rosenfeld/perl6/ch-2.p6 new file mode 100644 index 0000000000..c707566df3 --- /dev/null +++ b/challenge-009/laurent-rosenfeld/perl6/ch-2.p6 @@ -0,0 +1,54 @@ +use v6; + +sub standard (%scores) { + my ($prev_rank, $prev_val, $rank, $rankings ) = 0, 0, 0, ""; + for sort {%scores{$_}}, keys %scores -> $key { + $rank++; + if (%scores{$key} > $prev_val) { + $rankings ~= "$rank\t$key\t%scores{$key}\n"; + $prev_rank = $rank; + } else { + $rankings ~= "$prev_rank\t$key\t%scores{$key}\n"; + } + $prev_val = %scores{$key}; + } + return $rankings; +} + +sub modified (%scores) { + my ($prev_val, $rank, @rankings, @buffer) = 0, 0; + for sort {%scores{$_}}, keys %scores -> $key { + $rank++; + if (%scores{$key} > $prev_val) { + push @rankings, ($rank - 1 ~ $_) for @buffer; + @buffer = ("\t$key\t%scores{$key}"); + } else { + push @buffer, "\t$key\t%scores{$key}"; + } + $prev_val = %scores{$key}; + } + push @rankings, ($rank ~ $_) for @buffer; + return join "\n", @rankings; +} + +sub dense (%scores) { + my ($prev_rank, $prev_val, $rank, $rankings) = 0, 0, 0, ""; + for sort {%scores{$_}}, keys %scores -> $key { + if (%scores{$key} > $prev_val) { + $rank++; + $rankings ~= "$rank\t$key\t%scores{$key}\n"; + $prev_rank = $rank; + } else { + $rankings ~= "$prev_rank\t$key\t%scores{$key}\n"; + } + $prev_val = %scores{$key}; + } + return $rankings; +} + +my %scores = a => 4, b => 5, c => 3, d => 5, e => 1, f => 4, g => 6, h => 4, i =>6; + +my $head = "Rank\tID\tScore"; +.say for " Standard", $head, standard(%scores); +.say for "\n Modified", $head, modified(%scores); +.say for "\n Dense", $head, dense(%scores); diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 244aa3edbc..3466e9e77e 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,80 +1,7 @@ { - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "series" : [ - { - "data" : [ - { - "name" : "Andrezgz", - "y" : 2, - "drilldown" : "Andrezgz" - }, - { - "name" : "Daniel Mita", - "drilldown" : "Daniel Mita", - "y" : 2 - }, - { - "name" : "Dave Jacoby", - "drilldown" : "Dave Jacoby", - "y" : 2 - }, - { - "name" : "Gustavo Chaves", - "y" : 2, - "drilldown" : "Gustavo Chaves" - }, - { - "name" : "Joelle Maslak", - "drilldown" : "Joelle Maslak", - "y" : 6 - }, - { - "name" : "Maxim Nechaev", - "drilldown" : "Maxim Nechaev", - "y" : 2 - }, - { - "name" : "Simon Proctor", - "y" : 1, - "drilldown" : "Simon Proctor" - }, - { - "name" : "Steven Wilson", - "drilldown" : "Steven Wilson", - "y" : 2 - }, - { - "name" : "Yozen Hernandez", - "y" : 2, - "drilldown" : "Yozen Hernandez" - } - ], - "name" : "Champions", - "colorByPoint" : 1 - } - ], - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, "chart" : { "type" : "column" }, - "title" : { - "text" : "Perl Weekly Challenge - 009" - }, - "subtitle" : { - "text" : "[Champions: 9] Last updated at 2019-05-25 03:28:25 GMT" - }, "drilldown" : { "series" : [ { @@ -88,14 +15,14 @@ "id" : "Andrezgz" }, { + "id" : "Daniel Mita", + "name" : "Daniel Mita", "data" : [ [ "Perl 6", 2 ] - ], - "id" : "Daniel Mita", - "name" : "Daniel Mita" + ] }, { "data" : [ @@ -104,21 +31,20 @@ 2 ] ], - "name" : "Dave Jacoby", - "id" : "Dave Jacoby" + "id" : "Dave Jacoby", + "name" : "Dave Jacoby" }, { - "id" : "Gustavo Chaves", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Gustavo Chaves" + "name" : "Gustavo Chaves", + "id" : "Gustavo Chaves" }, { - "id" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -129,37 +55,52 @@ 3 ] ], - "name" : "Joelle Maslak" + "name" : "Joelle Maslak", + "id" : "Joelle Maslak" + }, + { + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld", + "data" : [ + [ + "Perl 5", + 2 + ], + [ + "Perl 6", + 2 + ] + ] }, { - "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Maxim Nechaev" + "name" : "Maxim Nechaev", + "id" : "Maxim Nechaev" }, { + "id" : "Simon Proctor", + "name" : "Simon Proctor", "data" : [ [ "Perl 6", 1 ] - ], - "name" : "Simon Proctor", - "id" : "Simon Proctor" + ] }, { + "id" : "Steven Wilson", + "name" : "Steven Wilson", "data" : [ [ "Perl 5", 2 ] - ], - "name" : "Steven Wilson", - "id" : "Steven Wilson" + ] }, { "data" : [ @@ -173,15 +114,93 @@ } ] }, + "subtitle" : { + "text" : "[Champions: 10] Last updated at 2019-05-25 03:44:59 GMT" + }, "xAxis" : { "type" : "category" }, - "legend" : { - "enabled" : 0 + "title" : { + "text" : "Perl Weekly Challenge - 009" }, "tooltip" : { - "pointerFormat" : "{point.name}: {point.y:f}
", "followPointer" : 1, - "headerFormat" : "{series.name}
" + "headerFormat" : "{series.name}
", + "pointerFormat" : "{point.name}: {point.y:f}
" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } + } + }, + "series" : [ + { + "colorByPoint" : 1, + "name" : "Champions", + "data" : [ + { + "drilldown" : "Andrezgz", + "y" : 2, + "name" : "Andrezgz" + }, + { + "drilldown" : "Daniel Mita", + "y" : 2, + "name" : "Daniel Mita" + }, + { + "name" : "Dave Jacoby", + "y" : 2, + "drilldown" : "Dave Jacoby" + }, + { + "drilldown" : "Gustavo Chaves", + "y" : 2, + "name" : "Gustavo Chaves" + }, + { + "y" : 6, + "drilldown" : "Joelle Maslak", + "name" : "Joelle Maslak" + }, + { + "name" : "Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld", + "y" : 4 + }, + { + "name" : "Maxim Nechaev", + "drilldown" : "Maxim Nechaev", + "y" : 2 + }, + { + "y" : 1, + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" + }, + { + "drilldown" : "Steven Wilson", + "y" : 2, + "name" : "Steven Wilson" + }, + { + "name" : "Yozen Hernandez", + "drilldown" : "Yozen Hernandez", + "y" : 2 + } + ] + } + ], + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "legend" : { + "enabled" : 0 } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index a657b3c3af..401f50ecf3 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,26 +1,72 @@ { - "tooltip" : { - "followPointer" : "true", - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "legend" : { - "enabled" : "false" + "series" : [ + { + "name" : "Perl Weekly Challenge Languages", + "data" : [ + { + "drilldown" : "001", + "y" : 113, + "name" : "#001 [P5=76 P6=37]" + }, + { + "y" : 95, + "name" : "#002 [P5=63 P6=32]", + "drilldown" : "002" + }, + { + "drilldown" : "003", + "name" : "#003 [P5=32 P6=26]", + "y" : 58 + }, + { + "drilldown" : "004", + "y" : 75, + "name" : "#004 [P5=46 P6=29]" + }, + { + "drilldown" : "005", + "y" : 55, + "name" : "#005 [P5=33 P6=22]" + }, + { + "name" : "#006 [P5=27 P6=14]", + "y" : 41, + "drilldown" : "006" + }, + { + "name" : "#007 [P5=24 P6=20]", + "y" : 44, + "drilldown" : "007" + }, + { + "name" : "#008 [P5=34 P6=20]", + "y" : 54, + "drilldown" : "008" + }, + { + "name" : "#009 [P5=17 P6=8]", + "y" : 25, + "drilldown" : "009" + } + ], + "colorByPoint" : "true" + } + ], + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } }, "chart" : { "type" : "column" }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-05-25 03:28:47 GMT" - }, "drilldown" : { "series" : [ { - "id" : "001", - "name" : "001", "data" : [ [ "Perl 5", @@ -30,7 +76,9 @@ "Perl 6", 37 ] - ] + ], + "name" : "001", + "id" : "001" }, { "id" : "002", @@ -47,7 +95,6 @@ "name" : "002" }, { - "id" : "003", "data" : [ [ "Perl 5", @@ -58,9 +105,11 @@ 26 ] ], - "name" : "003" + "name" : "003", + "id" : "003" }, { + "name" : "004", "data" : [ [ "Perl 5", @@ -71,11 +120,9 @@ 29 ] ], - "name" : "004", "id" : "004" }, { - "name" : "005", "data" : [ [ "Perl 5", @@ -86,9 +133,11 @@ 22 ] ], + "name" : "005", "id" : "005" }, { + "id" : "006", "name" : "006", "data" : [ [ @@ -99,10 +148,11 @@ "Perl 6", 14 ] - ], - "id" : "006" + ] }, { + "id" : "007", + "name" : "007", "data" : [ [ "Perl 5", @@ -112,12 +162,9 @@ "Perl 6", 20 ] - ], - "name" : "007", - "id" : "007" + ] }, { - "id" : "008", "data" : [ [ "Perl 5", @@ -128,18 +175,19 @@ 20 ] ], - "name" : "008" + "name" : "008", + "id" : "008" }, { "name" : "009", "data" : [ [ "Perl 5", - 15 + 17 ], [ "Perl 6", - 6 + 8 ] ], "id" : "009" @@ -149,71 +197,23 @@ "xAxis" : { "type" : "category" }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "tooltip" : { + "followPointer" : "true", + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "" + }, + "legend" : { + "enabled" : "false" + }, "yAxis" : { "title" : { "text" : "Total Solutions" } }, - "series" : [ - { - "data" : [ - { - "name" : "#001 [P5=76 P6=37]", - "y" : 113, - "drilldown" : "001" - }, - { - "y" : 95, - "name" : "#002 [P5=63 P6=32]", - "drilldown" : "002" - }, - { - "y" : 58, - "name" : "#003 [P5=32 P6=26]", - "drilldown" : "003" - }, - { - "drilldown" : "004", - "name" : "#004 [P5=46 P6=29]", - "y" : 75 - }, - { - "y" : 55, - "name" : "#005 [P5=33 P6=22]", - "drilldown" : "005" - }, - { - "name" : "#006 [P5=27 P6=14]", - "y" : 41, - "drilldown" : "006" - }, - { - "drilldown" : "007", - "name" : "#007 [P5=24 P6=20]", - "y" : 44 - }, - { - "y" : 54, - "name" : "#008 [P5=34 P6=20]", - "drilldown" : "008" - }, - { - "drilldown" : "009", - "y" : 21, - "name" : "#009 [P5=15 P6=6]" - } - ], - "name" : "Perl Weekly Challenge Languages", - "colorByPoint" : "true" - } - ], - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 - } + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-05-25 03:45:42 GMT" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 2f08992af1..1c2d9f5638 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,52 +1,43 @@ { - "legend" : { - "enabled" : "false" - }, - "tooltip" : { - "followPointer" : "true", - "headerFormat" : "", - "pointFormat" : "{point.name}: {point.y:f}
" - }, "drilldown" : { "series" : [ { "data" : [ [ - "Perl 6", - 20 + "Perl 5", + 18 ], [ "Blog", - 2 + 10 ], [ - "Perl 5", - 20 + "Perl 6", + 17 ] ], - "id" : "Joelle Maslak", - "name" : "Joelle Maslak" + "id" : "Laurent Rosenfeld", + "name" : "Laurent Rosenfeld" }, { - "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld", + "name" : "Joelle Maslak", + "id" : "Joelle Maslak", "data" : [ [ "Perl 6", - 15 + 20 ], [ - "Perl 5", - 16 + "Blog", + 2 ], [ - "Blog", - 9 + "Perl 5", + 20 ] ] }, { - "name" : "Jaldhar H. Vyas", "id" : "Jaldhar H. Vyas", "data" : [ [ @@ -57,10 +48,11 @@ "Perl 5", 16 ] - ] + ], + "name" : "Jaldhar H. Vyas" }, { - "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg", "data" : [ [ "Perl 5", @@ -71,29 +63,28 @@ 14 ] ], - "id" : "Ruben Westerberg" + "name" : "Ruben Westerberg" }, { - "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ [ - "Perl 6", - 15 + "Blog", + 6 ], [ "Perl 5", 4 ], [ - "Blog", - 6 + "Perl 6", + 15 ] ], - "id" : "Simon Proctor" + "name" : "Simon Proctor" }, { "name" : "Adam Russell", - "id" : "Adam Russell", "data" : [ [ "Blog", @@ -103,9 +94,12 @@ "Perl 5", 16 ] - ] + ], + "id" : "Adam Russell" }, { + "name" : "Dr James A. Smith", + "id" : "Dr James A. Smith", "data" : [ [ "Perl 5", @@ -115,9 +109,7 @@ "Perl 6", 10 ] - ], - "id" : "Dr James A. Smith", - "name" : "Dr James A. Smith" + ] }, { "name" : "Kian-Meng Ang", @@ -134,21 +126,21 @@ ] }, { - "name" : "Arne Sommer", "id" : "Arne Sommer", "data" : [ - [ - "Blog", - 7 - ], [ "Perl 6", 14 + ], + [ + "Blog", + 7 ] - ] + ], + "name" : "Arne Sommer" }, { - "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals", "data" : [ [ "Blog", @@ -163,18 +155,18 @@ 10 ] ], - "id" : "Jo Christian Oterhals" + "name" : "Jo Christian Oterhals" }, { "name" : "Gustavo Chaves", "data" : [ - [ - "Perl 5", - 15 - ], [ "Blog", 4 + ], + [ + "Perl 5", + 15 ] ], "id" : "Gustavo Chaves" @@ -191,43 +183,44 @@ }, { "name" : "Athanasius", - "id" : "Athanasius", "data" : [ [ "Perl 5", 16 ] - ] + ], + "id" : "Athanasius" }, { + "name" : "Nick Logan", "data" : [ [ - "Perl 5", + "Perl 6", 8 ], [ - "Perl 6", + "Perl 5", 8 ] ], - "id" : "Nick Logan", - "name" : "Nick Logan" + "id" : "Nick Logan" }, { + "name" : "Dave Jacoby", + "id" : "Dave Jacoby", "data" : [ - [ - "Perl 5", - 7 - ], [ "Blog", 8 + ], + [ + "Perl 5", + 7 ] - ], - "id" : "Dave Jacoby", - "name" : "Dave Jacoby" + ] }, { + "name" : "Francis Whittle", "data" : [ [ "Perl 6", @@ -238,25 +231,23 @@ 4 ] ], - "id" : "Francis Whittle", - "name" : "Francis Whittle" + "id" : "Francis Whittle" }, { + "name" : "Lars Balker", + "id" : "Lars Balker", "data" : [ - [ - "Perl 6", - 4 - ], [ "Perl 5", 10 + ], + [ + "Perl 6", + 4 ] - ], - "id" : "Lars Balker", - "name" : "Lars Balker" + ] }, { - "name" : "Mark Senn", "id" : "Mark Senn", "data" : [ [ @@ -267,40 +258,40 @@ "Perl 6", 10 ] - ] + ], + "name" : "Mark Senn" }, { - "id" : "Daniel Mantovani", + "name" : "Daniel Mantovani", "data" : [ [ "Perl 5", 11 ] ], - "name" : "Daniel Mantovani" + "id" : "Daniel Mantovani" }, { + "id" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] ], - "id" : "Doug Schrag", "name" : "Doug Schrag" }, { - "name" : "Duncan C. White", "data" : [ [ "Perl 5", 10 ] ], - "id" : "Duncan C. White" + "id" : "Duncan C. White", + "name" : "Duncan C. White" }, { - "name" : "Robert Gratza", "data" : [ [ "Perl 6", @@ -311,10 +302,12 @@ 2 ] ], - "id" : "Robert Gratza" + "id" : "Robert Gratza", + "name" : "Robert Gratza" }, { "name" : "E. Choroba", + "id" : "E. Choroba", "data" : [ [ "Perl 5", @@ -324,38 +317,37 @@ "Blog", 3 ] - ], - "id" : "E. Choroba" + ] }, { + "id" : "John Barrett", "data" : [ [ "Perl 5", 7 ] ], - "id" : "John Barrett", "name" : "John Barrett" }, { "name" : "Ozzy", + "id" : "Ozzy", "data" : [ [ "Perl 6", 7 ] - ], - "id" : "Ozzy" + ] }, { - "name" : "Alicia Bielsa", - "id" : "Alicia Bielsa", "data" : [ [ "Perl 5", 6 ] - ] + ], + "id" : "Alicia Bielsa", + "name" : "Alicia Bielsa" }, { "name" : "Maxim Kolodyazhny", @@ -378,18 +370,18 @@ "name" : "Maxim Nechaev" }, { + "name" : "Philippe Bruhat", "id" : "Philippe Bruhat", "data" : [ - [ - "Perl 5", - 4 - ], [ "Blog", 2 + ], + [ + "Perl 5", + 4 ] - ], - "name" : "Philippe Bruhat" + ] }, { "name" : "Sergio Iglesias", @@ -402,14 +394,14 @@ "id" : "Sergio Iglesias" }, { + "name" : "Steven Wilson", "data" : [ [ "Perl 5", 6 ] ], - "id" : "Steven Wilson", - "name" : "Steven Wilson" + "id" : "Steven Wilson" }, { "name" : "Arpad Toth", @@ -422,17 +414,17 @@ "id" : "Arpad Toth" }, { - "id" : "Guillermo Ramos", + "name" : "Guillermo Ramos", "data" : [ [ "Perl 5", 5 ] ], - "name" : "Guillermo Ramos" + "id" : "Guillermo Ramos" }, { - "name" : "Khalid", + "id" : "Khalid", "data" : [ [ "Perl 5", @@ -443,45 +435,45 @@ 1 ] ], - "id" : "Khalid" + "name" : "Khalid" }, { "name" : "Steve Rogerson", + "id" : "Steve Rogerson", "data" : [ - [ - "Perl 6", - 2 - ], [ "Perl 5", 3 + ], + [ + "Perl 6", + 2 ] - ], - "id" : "Steve Rogerson" + ] }, { + "name" : "Veesh Goldman", + "id" : "Veesh Goldman", "data" : [ [ "Perl 5", 5 ] - ], - "id" : "Veesh Goldman", - "name" : "Veesh Goldman" + ] }, { + "name" : "Yozen Hernandez", + "id" : "Yozen Hernandez", "data" : [ - [ - "Blog", - 1 - ], [ "Perl 5", 4 + ], + [ + "Blog", + 1 ] - ], - "id" : "Yozen Hernandez", - "name" : "Yozen Hernandez" + ] }, { "name" : "Alex Daniel", @@ -494,64 +486,64 @@ "id" : "Alex Daniel" }, { + "id" : "Bob Kleemann", "data" : [ [ "Perl 5", 4 ] ], - "id" : "Bob Kleemann", "name" : "Bob Kleemann" }, { + "name" : "Chenyf", "id" : "Chenyf", "data" : [ [ "Perl 6", 4 ] - ], - "name" : "Chenyf" + ] }, { - "name" : "David Kayal", "id" : "David Kayal", "data" : [ [ "Perl 5", 4 ] - ] + ], + "name" : "David Kayal" }, { - "name" : "Finley", + "id" : "Finley", "data" : [ [ "Perl 6", 4 ] ], - "id" : "Finley" + "name" : "Finley" }, { "name" : "Jaime Corchado", - "id" : "Jaime Corchado", "data" : [ [ "Perl 5", 4 ] - ] + ], + "id" : "Jaime Corchado" }, { - "id" : "Luis F. Uceta", + "name" : "Luis F. Uceta", "data" : [ [ "Perl 6", 4 ] ], - "name" : "Luis F. Uceta" + "id" : "Luis F. Uceta" }, { "data" : [ @@ -574,36 +566,37 @@ "id" : "Neil Bowers" }, { + "name" : "Simon Reinhardt", + "id" : "Simon Reinhardt", "data" : [ [ "Perl 5", 4 ] - ], - "id" : "Simon Reinhardt", - "name" : "Simon Reinhardt" + ] }, { + "name" : "Tim Smith", "data" : [ [ "Perl 6", 4 ] ], - "id" : "Tim Smith", - "name" : "Tim Smith" + "id" : "Tim Smith" }, { + "name" : "Ailbhe Tweedie", + "id" : "Ailbhe Tweedie", "data" : [ [ "Perl 5", 3 ] - ], - "id" : "Ailbhe Tweedie", - "name" : "Ailbhe Tweedie" + ] }, { + "name" : "Dave Cross", "id" : "Dave Cross", "data" : [ [ @@ -614,36 +607,33 @@ "Perl 5", 2 ] - ], - "name" : "Dave Cross" + ] } ] }, - "xAxis" : { - "type" : "category" - }, "plotOptions" : { "series" : { "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 + "enabled" : 1, + "format" : "{point.y}" }, "borderWidth" : 0 } }, "series" : [ { + "name" : "Perl Weekly Challenge Leaders", "colorByPoint" : "true", "data" : [ { - "y" : 84, - "drilldown" : "Joelle Maslak", - "name" : "#1: Joelle Maslak" + "name" : "#1: Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld", + "y" : 90 }, { - "drilldown" : "Laurent Rosenfeld", - "y" : 80, - "name" : "#2: Laurent Rosenfeld" + "name" : "#2: Joelle Maslak", + "drilldown" : "Joelle Maslak", + "y" : 84 }, { "name" : "#3: Jaldhar H. Vyas", @@ -651,9 +641,9 @@ "drilldown" : "Jaldhar H. Vyas" }, { - "name" : "#4: Ruben Westerberg", + "drilldown" : "Ruben Westerberg", "y" : 56, - "drilldown" : "Ruben Westerberg" + "name" : "#4: Ruben Westerberg" }, { "y" : 50, @@ -661,9 +651,9 @@ "name" : "#5: Simon Proctor" }, { - "y" : 48, + "name" : "#6: Adam Russell", "drilldown" : "Adam Russell", - "name" : "#6: Adam Russell" + "y" : 48 }, { "name" : "#7: Dr James A. Smith", @@ -671,8 +661,8 @@ "drilldown" : "Dr James A. Smith" }, { - "y" : 44, "drilldown" : "Kian-Meng Ang", + "y" : 44, "name" : "#8: Kian-Meng Ang" }, { @@ -681,14 +671,14 @@ "name" : "#9: Arne Sommer" }, { - "name" : "#10: Jo Christian Oterhals", + "y" : 42, "drilldown" : "Jo Christian Oterhals", - "y" : 42 + "name" : "#10: Jo Christian Oterhals" }, { - "name" : "#11: Gustavo Chaves", "y" : 38, - "drilldown" : "Gustavo Chaves" + "drilldown" : "Gustavo Chaves", + "name" : "#11: Gustavo Chaves" }, { "name" : "#12: Andrezgz", @@ -706,38 +696,38 @@ "drilldown" : "Nick Logan" }, { - "y" : 30, + "name" : "#15: Dave Jacoby", "drilldown" : "Dave Jacoby", - "name" : "#15: Dave Jacoby" + "y" : 30 }, { - "y" : 28, + "name" : "#16: Francis Whittle", "drilldown" : "Francis Whittle", - "name" : "#16: Francis Whittle" + "y" : 28 }, { "name" : "#17: Lars Balker", - "drilldown" : "Lars Balker", - "y" : 28 + "y" : 28, + "drilldown" : "Lars Balker" }, { - "name" : "#18: Mark Senn", "y" : 26, - "drilldown" : "Mark Senn" + "drilldown" : "Mark Senn", + "name" : "#18: Mark Senn" }, { - "name" : "#19: Daniel Mantovani", + "y" : 22, "drilldown" : "Daniel Mantovani", - "y" : 22 + "name" : "#19: Daniel Mantovani" }, { - "name" : "#20: Doug Schrag", "drilldown" : "Doug Schrag", - "y" : 20 + "y" : 20, + "name" : "#20: Doug Schrag" }, { - "drilldown" : "Duncan C. White", "y" : 20, + "drilldown" : "Duncan C. White", "name" : "#21: Duncan C. White" }, { @@ -756,9 +746,9 @@ "name" : "#24: John Barrett" }, { - "name" : "#25: Ozzy", "y" : 14, - "drilldown" : "Ozzy" + "drilldown" : "Ozzy", + "name" : "#25: Ozzy" }, { "y" : 12, @@ -766,24 +756,24 @@ "name" : "#26: Alicia Bielsa" }, { - "y" : 12, "drilldown" : "Maxim Kolodyazhny", + "y" : 12, "name" : "#27: Maxim Kolodyazhny" }, { - "y" : 12, "drilldown" : "Maxim Nechaev", + "y" : 12, "name" : "#28: Maxim Nechaev" }, { - "name" : "#29: Philippe Bruhat", "drilldown" : "Philippe Bruhat", - "y" : 12 + "y" : 12, + "name" : "#29: Philippe Bruhat" }, { - "name" : "#30: Sergio Iglesias", + "drilldown" : "Sergio Iglesias", "y" : 12, - "drilldown" : "Sergio Iglesias" + "name" : "#30: Sergio Iglesias" }, { "name" : "#31: Steven Wilson", @@ -791,34 +781,34 @@ "y" : 12 }, { - "name" : "#32: Arpad Toth", + "drilldown" : "Arpad Toth", "y" : 10, - "drilldown" : "Arpad Toth" + "name" : "#32: Arpad Toth" }, { - "name" : "#33: Guillermo Ramos", "drilldown" : "Guillermo Ramos", - "y" : 10 + "y" : 10, + "name" : "#33: Guillermo Ramos" }, { "name" : "#34: Khalid", - "y" : 10, - "drilldown" : "Khalid" + "drilldown" : "Khalid", + "y" : 10 }, { - "name" : "#35: Steve Rogerson", + "y" : 10, "drilldown" : "Steve Rogerson", - "y" : 10 + "name" : "#35: Steve Rogerson" }, { - "name" : "#36: Veesh Goldman", "drilldown" : "Veesh Goldman", - "y" : 10 + "y" : 10, + "name" : "#36: Veesh Goldman" }, { - "name" : "#37: Yozen Hernandez", + "y" : 10, "drilldown" : "Yozen Hernandez", - "y" : 10 + "name" : "#37: Yozen Hernandez" }, { "drilldown" : "Alex Daniel", @@ -826,24 +816,24 @@ "name" : "#38: Alex Daniel" }, { + "name" : "#39: Bob Kleemann", "y" : 8, - "drilldown" : "Bob Kleemann", - "name" : "#39: Bob Kleemann" + "drilldown" : "Bob Kleemann" }, { - "y" : 8, "drilldown" : "Chenyf", + "y" : 8, "name" : "#40: Chenyf" }, { - "name" : "#41: David Kayal", "drilldown" : "David Kayal", - "y" : 8 + "y" : 8, + "name" : "#41: David Kayal" }, { - "name" : "#42: Finley", "y" : 8, - "drilldown" : "Finley" + "drilldown" : "Finley", + "name" : "#42: Finley" }, { "name" : "#43: Jaime Corchado", @@ -851,18 +841,18 @@ "drilldown" : "Jaime Corchado" }, { - "y" : 8, "drilldown" : "Luis F. Uceta", + "y" : 8, "name" : "#44: Luis F. Uceta" }, { - "name" : "#45: Matt Latusek", "y" : 8, - "drilldown" : "Matt Latusek" + "drilldown" : "Matt Latusek", + "name" : "#45: Matt Latusek" }, { - "drilldown" : "Neil Bowers", "y" : 8, + "drilldown" : "Neil Bowers", "name" : "#46: Neil Bowers" }, { @@ -871,13 +861,13 @@ "y" : 8 }, { - "y" : 8, + "name" : "#48: Tim Smith", "drilldown" : "Tim Smith", - "name" : "#48: Tim Smith" + "y" : 8 }, { - "drilldown" : "Ailbhe Tweedie", "y" : 6, + "drilldown" : "Ailbhe Tweedie", "name" : "#49: Ailbhe Tweedie" }, { @@ -885,22 +875,32 @@ "y" : 6, "drilldown" : "Dave Cross" } - ], - "name" : "Perl Weekly Challenge Leaders" + ] } ], - "chart" : { - "type" : "column" + "tooltip" : { + "followPointer" : "true", + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "" }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" + "xAxis" : { + "type" : "category" }, "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-05-25 03:28:39 GMT" + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-05-25 03:45:07 GMT" + }, + "legend" : { + "enabled" : "false" }, "yAxis" : { "title" : { "text" : "Total Score" } + }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" + }, + "chart" : { + "type" : "column" } } diff --git a/stats/pwc-summary-1-30.json b/stats/pwc-summary-1-30.json index 937f2861dd..2680ee2aac 100644 --- a/stats/pwc-summary-1-30.json +++ b/stats/pwc-summary-1-30.json @@ -1,4 +1,9 @@ { + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, "xAxis" : { "categories" : [ "Abigail", @@ -33,15 +38,25 @@ "Freddie B" ] }, - "plotOptions" : { - "column" : { - "stacking" : "percent" + "yAxis" : { + "min" : 0, + "title" : { + "text" : "" } }, + "chart" : { + "type" : "column" + }, + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, "tooltip" : { "shared" : 1, "pointFormat" : "{series.name}: {point.y}
" }, + "subtitle" : { + "text" : "[Champions: 30] Last updated at 2019-05-25 03:44:59 GMT" + }, "series" : [ { "name" : "Perl 5", @@ -113,20 +128,5 @@ ], "name" : "Perl 6" } - ], - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-05-25 03:28:25 GMT" - }, - "chart" : { - "type" : "column" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : "" - } - } + ] } diff --git a/stats/pwc-summary-31-60.json b/stats/pwc-summary-31-60.json index cac1fc7a0b..b1ff0e3a30 100644 --- a/stats/pwc-summary-31-60.json +++ b/stats/pwc-summary-31-60.json @@ -1,11 +1,9 @@ { - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 + "title" : { + "text" : "Perl Weekly Challenge - 2019" }, "series" : [ { - "name" : "Perl 5", "data" : [ 5, 15, @@ -25,7 +23,7 @@ 12, 3, 10, - 16, + 18, 1, 0, 0, @@ -37,9 +35,11 @@ 8, 0, 2 - ] + ], + "name" : "Perl 5" }, { + "name" : "Perl 6", "data" : [ 0, 0, @@ -59,7 +59,7 @@ 0, 0, 4, - 15, + 17, 1, 10, 2, @@ -71,15 +71,20 @@ 8, 4, 0 - ], - "name" : "Perl 6" + ] } ], "subtitle" : { - "text" : "[Champions: 30] Last updated at 2019-05-25 03:28:25 GMT" + "text" : "[Champions: 30] Last updated at 2019-05-25 03:44:59 GMT" }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } }, "xAxis" : { "categories" : [ @@ -115,11 +120,6 @@ "Oleksii Tsvietnov" ] }, - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, "yAxis" : { "title" : { "text" : "" diff --git a/stats/pwc-summary-61-90.json b/stats/pwc-summary-61-90.json index 6bd7bf48d3..6a612c0206 100644 --- a/stats/pwc-summary-61-90.json +++ b/stats/pwc-summary-61-90.json @@ -1,40 +1,4 @@ { - "plotOptions" : { - "column" : { - "stacking" : "percent" - } - }, - "xAxis" : { - "categories" : [ - "Ozzy", - "Pavel Jurca", - "Pavel Starikov", - "Pete Houston", - "Pete Sergeant", - "Philippe Bruhat", - "Prajith P", - "Robert Gratza", - "Ruben Westerberg", - "Sean Meininger", - "Sergio Iglesias", - "Simon Proctor", - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Tiago Stock", - "Tim Smith", - "Tore Andersson", - "Luis F. Uceta", - "Veesh Goldman", - "William Gilmore", - "Yary H", - "Yozen Hernandez" - ] - }, - "subtitle" : { - "text" : "[Champions: 24] Last updated at 2019-05-25 03:28:25 GMT" - }, "title" : { "text" : "Perl Weekly Challenge - 2019" }, @@ -102,13 +66,49 @@ ] } ], - "chart" : { - "type" : "column" + "subtitle" : { + "text" : "[Champions: 24] Last updated at 2019-05-25 03:44:59 GMT" + }, + "plotOptions" : { + "column" : { + "stacking" : "percent" + } + }, + "xAxis" : { + "categories" : [ + "Ozzy", + "Pavel Jurca", + "Pavel Starikov", + "Pete Houston", + "Pete Sergeant", + "Philippe Bruhat", + "Prajith P", + "Robert Gratza", + "Ruben Westerberg", + "Sean Meininger", + "Sergio Iglesias", + "Simon Proctor", + "Simon Reinhardt", + "Steve Rogerson", + "Steven Lembark", + "Steven Wilson", + "Tiago Stock", + "Tim Smith", + "Tore Andersson", + "Luis F. Uceta", + "Veesh Goldman", + "William Gilmore", + "Yary H", + "Yozen Hernandez" + ] }, "yAxis" : { "min" : 0, "title" : { "text" : "" } + }, + "chart" : { + "type" : "column" } } diff --git a/stats/pwc-summary.json b/stats/pwc-summary.json index 226c9c8e9c..d029a973b2 100644 --- a/stats/pwc-summary.json +++ b/stats/pwc-summary.json @@ -1,107 +1,9 @@ { - "xAxis" : { - "categories" : [ - "Abigail", - "Adam Russell", - "Ailbhe Tweedie", - "Alex Daniel", - "Alexander Karelas", - "Alexey Melezhik", - "Alicia Bielsa", - "Andrezgz", - "Antonio Gamiz", - "Arne Sommer", - "Arpad Toth", - "Athanasius", - "Aubrey Quarcoo", - "Bill Palmer", - "Bob Kleemann", - "Clive Holloway", - "Daniel Mantovani", - "Daniel Mita", - "Dave Cross", - "Dave Jacoby", - "David Kayal", - "Denis Yurashku", - "Doug Schrag", - "Duncan C. White", - "E. Choroba", - "Eddy HS", - "Finley", - "Francis Whittle", - "Fred Zinn", - "Freddie B", - "Guillermo Ramos", - "Gustavo Chaves", - "Jacques Guinnebault", - "Jaime Corchado", - "Jaldhar H. Vyas", - "Dr James A. Smith", - "Jeff", - "Jeremy Carman", - "Jim Bacon", - "JJ Merelo", - "Jo Christian Oterhals", - "Joelle Maslak", - "John Barrett", - "Juan Caballero", - "Khalid", - "Kian-Meng Ang", - "Kivanc Yazan", - "Lars Balker", - "Laurent Rosenfeld", - "Magnus Woldrich", - "Mark Senn", - "Martin Mugeni", - "Matt Latusek", - "Maxim Kolodyazhny", - "Maxim Nechaev", - "Michael Schaap", - "Neil Bowers", - "Nick Logan", - "Chenyf", - "Oleksii Tsvietnov", - "Ozzy", - "Pavel Jurca", - "Pavel Starikov", - "Pete Houston", - "Pete Sergeant", - "Philippe Bruhat", - "Prajith P", - "Robert Gratza", - "Ruben Westerberg", - "Sean Meininger", - "Sergio Iglesias", - "Simon Proctor", - "Simon Reinhardt", - "Steve Rogerson", - "Steven Lembark", - "Steven Wilson", - "Tiago Stock", - "Tim Smith", - "Tore Andersson", - "Luis F. Uceta", - "Veesh Goldman", - "William Gilmore", - "Yary H", - "Yozen Hernandez" - ] - }, - "tooltip" : { - "pointFormat" : "{series.name}: {point.y}
", - "shared" : 1 - }, - "title" : { - "text" : "Perl Weekly Challenge - 2019" - }, - "chart" : { - "type" : "column" - }, "yAxis" : { - "min" : 0, "title" : { "text" : "" - } + }, + "min" : 0 }, "series" : [ { @@ -154,7 +56,7 @@ 12, 3, 10, - 16, + 18, 1, 0, 0, @@ -194,7 +96,6 @@ "name" : "Perl 5" }, { - "name" : "Perl 6", "data" : [ 0, 0, @@ -244,7 +145,7 @@ 0, 0, 4, - 15, + 17, 1, 10, 2, @@ -280,15 +181,114 @@ 0, 1, 0 - ] + ], + "name" : "Perl 6" } ], + "title" : { + "text" : "Perl Weekly Challenge - 2019" + }, + "tooltip" : { + "shared" : 1, + "pointFormat" : "{series.name}: {point.y}
" + }, "plotOptions" : { "column" : { "stacking" : "percent" } }, + "xAxis" : { + "categories" : [ + "Abigail", + "Adam Russell", + "Ailbhe Tweedie", + "Alex Daniel", + "Alexander Karelas", + "Alexey Melezhik", + "Alicia Bielsa", + "Andrezgz", + "Antonio Gamiz", + "Arne Sommer", + "Arpad Toth", + "Athanasius", + "Aubrey Quarcoo", + "Bill Palmer", + "Bob Kleemann", + "Clive Holloway", + "Daniel Mantovani", + "Daniel Mita", + "Dave Cross", + "Dave Jacoby", + "David Kayal", + "Denis Yurashku", + "Doug Schrag", + "Duncan C. White", + "E. Choroba", + "Eddy HS", + "Finley", + "Francis Whittle", + "Fred Zinn", + "Freddie B", + "Guillermo Ramos", + "Gustavo Chaves", + "Jacques Guinnebault", + "Jaime Corchado", + "Jaldhar H. Vyas", + "Dr James A. Smith", + "Jeff", + "Jeremy Carman", + "Jim Bacon", + "JJ Merelo", + "Jo Christian Oterhals", + "Joelle Maslak", + "John Barrett", + "Juan Caballero", + "Khalid", + "Kian-Meng Ang", + "Kivanc Yazan", + "Lars Balker", + "Laurent Rosenfeld", + "Magnus Woldrich", + "Mark Senn", + "Martin Mugeni", + "Matt Latusek", + "Maxim Kolodyazhny", + "Maxim Nechaev", + "Michael Schaap", + "Neil Bowers", + "Nick Logan", + "Chenyf", + "Oleksii Tsvietnov", + "Ozzy", + "Pavel Jurca", + "Pavel Starikov", + "Pete Houston", + "Pete Sergeant", + "Philippe Bruhat", + "Prajith P", + "Robert Gratza", + "Ruben Westerberg", + "Sean Meininger", + "Sergio Iglesias", + "Simon Proctor", + "Simon Reinhardt", + "Steve Rogerson", + "Steven Lembark", + "Steven Wilson", + "Tiago Stock", + "Tim Smith", + "Tore Andersson", + "Luis F. Uceta", + "Veesh Goldman", + "William Gilmore", + "Yary H", + "Yozen Hernandez" + ] + }, + "chart" : { + "type" : "column" + }, "subtitle" : { - "text" : "[Champions: 84] Last updated at 2019-05-25 03:28:25 GMT" + "text" : "[Champions: 84] Last updated at 2019-05-25 03:44:59 GMT" } } -- cgit