From 646345c525ce719f80fc3d26b4cf6efde8c5b024 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Mon, 10 Feb 2020 16:59:42 +0000 Subject: - Added solutions by Duane Powell. --- challenge-047/duane-powell/README | 0 challenge-047/duane-powell/perl/ch-1.pl | 201 ++++++++ challenge-047/duane-powell/perl/ch-2.pl | 23 + challenge-047/duane-powell/perl5/ch-1.pl | 201 -------- challenge-047/duane-powell/perl5/ch-2.pl | 23 - stats/pwc-current.json | 79 ++-- stats/pwc-language-breakdown-summary.json | 74 +-- stats/pwc-language-breakdown.json | 304 ++++++------ stats/pwc-leaders.json | 744 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 94 ++-- stats/pwc-summary-121-150.json | 96 ++-- stats/pwc-summary-31-60.json | 100 ++-- stats/pwc-summary-61-90.json | 102 ++-- stats/pwc-summary-91-120.json | 118 ++--- stats/pwc-summary.json | 50 +- 15 files changed, 1112 insertions(+), 1097 deletions(-) mode change 100755 => 100644 challenge-047/duane-powell/README create mode 100755 challenge-047/duane-powell/perl/ch-1.pl create mode 100755 challenge-047/duane-powell/perl/ch-2.pl delete mode 100755 challenge-047/duane-powell/perl5/ch-1.pl delete mode 100755 challenge-047/duane-powell/perl5/ch-2.pl diff --git a/challenge-047/duane-powell/README b/challenge-047/duane-powell/README old mode 100755 new mode 100644 diff --git a/challenge-047/duane-powell/perl/ch-1.pl b/challenge-047/duane-powell/perl/ch-1.pl new file mode 100755 index 0000000000..021ee1013f --- /dev/null +++ b/challenge-047/duane-powell/perl/ch-1.pl @@ -0,0 +1,201 @@ +#!/usr/bin/perl +use warnings; +use strict; +use feature qw( say ); +use Data::Dumper; + +# Problem: https://perlweeklychallenge.org/blog/perl-weekly-challenge-047/ TASK #1 + +my ($r1, $op, $r2) = @ARGV; +unless (scalar @ARGV == 3) { + say "Usage: $0 Roman_numeral operator Roman_numeral"; + exit; +} + +my %arabic = qw( + I 1 + IV 4 + V 5 + IX 9 + X 10 + XL 40 + L 50 + XC 90 + C 100 + CD 400 + D 500 + CM 900 + M 1000 +); +my %roman = reverse %arabic; + +my $n = arabic($r1); +my $m = arabic($r2); +my $a = eval "$n $op $m"; + +my $r = roman($a); +say $r, " (", $a, ")"; +exit; + +sub arabic { + my @roman = split(//, uc(shift)); + return 0 unless (scalar @roman > 0); + + my ($arabic, $next, $error, $min) = (0, '', '', 1000); + while (1) { + if (scalar @roman > 1) { + $next = $roman[0].$roman[1]; + if ( defined($arabic{$next}) ) { + $arabic += $arabic{$next}; + $error = "Roman numeral out of sequence at $next" if ($arabic{$next} > $min); + $min = $arabic{$next}; + shift @roman; + shift @roman; + next; + } + } + if (scalar @roman > 0) { + $next = $roman[0]; + if ( defined($arabic{$next}) ) { + $arabic += $arabic{$next}; + $error = "Roman numeral out of sequence at $next" if ($arabic{$next} > $min); + $min = $arabic{$next}; + shift @roman; + next; + } + else { + $error = "Invalid Roman numeral at $next"; + } + } + else { + last; + } + + last if ($error); + } + if ($error) { + say $error; + exit; + } + else { + return $arabic; + } +} + +sub roman { + my $arabic = shift; + $arabic = int($arabic); + my $roman = ''; + while ($arabic > 0) { + if ($arabic >= 1000) { + $roman .= $roman{1000}; + $arabic -= 1000; + next; + } + if ($arabic >= 900) { + $roman .= $roman{900}; + $arabic -= 900; + next; + } + if ($arabic >= 500) { + $roman .= $roman{500}; + $arabic -= 500; + next; + } + if ($arabic >= 400) { + $roman .= $roman{400}; + $arabic -= 400; + next; + } + if ($arabic >= 100) { + $roman .= $roman{100}; + $arabic -= 100; + next; + } + if ($arabic >= 90) { + $roman .= $roman{90}; + $arabic -= 90; + next; + } + if ($arabic >= 50) { + $roman .= $roman{50}; + $arabic -= 50; + next; + } + if ($arabic >= 40) { + $roman .= $roman{40}; + $arabic -= 40; + next; + } + if ($arabic >= 10) { + $roman .= $roman{10}; + $arabic -= 10; + next; + } + if ($arabic >= 9) { + $roman .= $roman{9}; + $arabic -= 9; + next; + } + if ($arabic >= 5) { + $roman .= $roman{5}; + $arabic -= 5; + next; + } + if ($arabic >= 4) { + $roman .= $roman{4}; + $arabic -= 4; + next; + } + if ($arabic >= 1) { + $roman .= $roman{1}; + $arabic -= 1; + next; + } + } + return $roman; +} + + +__END__ + +./ch-1.pl +Usage: ./ch-1.pl Roman_numeral operator Roman_numeral + +./ch-1.pl ICU + I +Invalid Roman numeral at U + +./ch-1.pl ICM + I +Roman numeral out of sequence at CM + +./ch-1.pl I + I +II (2) + +./ch-1.pl V - I +IV (4) + +/ch-1.pl M / L +XX (20) + +./ch-1.pl XL + XL +LXXX (80) + +./ch-1.pl X \* IX +XC (90) + +./ch-1.pl M / V +CC (200) + +./ch-1.pl M / X +C (100) + +./ch-1.pl MCMXCV + IV +MCMXCIX (1999) + +./ch-1.pl MCMXCV + XXV +MMXX (2020) + +./ch-1.pl MMMM - I +MMMCMXCIX (3999) + + diff --git a/challenge-047/duane-powell/perl/ch-2.pl b/challenge-047/duane-powell/perl/ch-2.pl new file mode 100755 index 0000000000..da9f001aaa --- /dev/null +++ b/challenge-047/duane-powell/perl/ch-2.pl @@ -0,0 +1,23 @@ +#!/usr/bin/perl +use warnings; +use strict; +use feature qw( say ); + +# Problem: https://perlweeklychallenge.org/blog/perl-weekly-challenge-047/ TASK #2 + +my @gap; +my $n = 100; +while (scalar @gap < 20) { + my ($a,undef,$b) = split(//,$n); + my $x = "$a$b"; # form new number by combining first and last digit of $n + + push @gap, $n if ($n/$x == int($n/$x)); # $n is a gapped number if it is divisible by $x + $n++; +} +say join(',',@gap); + +__END__ + +./ch-2.pl +100,105,108,110,120,121,130,132,135,140,143,150,154,160,165,170,176,180,187,190 + diff --git a/challenge-047/duane-powell/perl5/ch-1.pl b/challenge-047/duane-powell/perl5/ch-1.pl deleted file mode 100755 index 021ee1013f..0000000000 --- a/challenge-047/duane-powell/perl5/ch-1.pl +++ /dev/null @@ -1,201 +0,0 @@ -#!/usr/bin/perl -use warnings; -use strict; -use feature qw( say ); -use Data::Dumper; - -# Problem: https://perlweeklychallenge.org/blog/perl-weekly-challenge-047/ TASK #1 - -my ($r1, $op, $r2) = @ARGV; -unless (scalar @ARGV == 3) { - say "Usage: $0 Roman_numeral operator Roman_numeral"; - exit; -} - -my %arabic = qw( - I 1 - IV 4 - V 5 - IX 9 - X 10 - XL 40 - L 50 - XC 90 - C 100 - CD 400 - D 500 - CM 900 - M 1000 -); -my %roman = reverse %arabic; - -my $n = arabic($r1); -my $m = arabic($r2); -my $a = eval "$n $op $m"; - -my $r = roman($a); -say $r, " (", $a, ")"; -exit; - -sub arabic { - my @roman = split(//, uc(shift)); - return 0 unless (scalar @roman > 0); - - my ($arabic, $next, $error, $min) = (0, '', '', 1000); - while (1) { - if (scalar @roman > 1) { - $next = $roman[0].$roman[1]; - if ( defined($arabic{$next}) ) { - $arabic += $arabic{$next}; - $error = "Roman numeral out of sequence at $next" if ($arabic{$next} > $min); - $min = $arabic{$next}; - shift @roman; - shift @roman; - next; - } - } - if (scalar @roman > 0) { - $next = $roman[0]; - if ( defined($arabic{$next}) ) { - $arabic += $arabic{$next}; - $error = "Roman numeral out of sequence at $next" if ($arabic{$next} > $min); - $min = $arabic{$next}; - shift @roman; - next; - } - else { - $error = "Invalid Roman numeral at $next"; - } - } - else { - last; - } - - last if ($error); - } - if ($error) { - say $error; - exit; - } - else { - return $arabic; - } -} - -sub roman { - my $arabic = shift; - $arabic = int($arabic); - my $roman = ''; - while ($arabic > 0) { - if ($arabic >= 1000) { - $roman .= $roman{1000}; - $arabic -= 1000; - next; - } - if ($arabic >= 900) { - $roman .= $roman{900}; - $arabic -= 900; - next; - } - if ($arabic >= 500) { - $roman .= $roman{500}; - $arabic -= 500; - next; - } - if ($arabic >= 400) { - $roman .= $roman{400}; - $arabic -= 400; - next; - } - if ($arabic >= 100) { - $roman .= $roman{100}; - $arabic -= 100; - next; - } - if ($arabic >= 90) { - $roman .= $roman{90}; - $arabic -= 90; - next; - } - if ($arabic >= 50) { - $roman .= $roman{50}; - $arabic -= 50; - next; - } - if ($arabic >= 40) { - $roman .= $roman{40}; - $arabic -= 40; - next; - } - if ($arabic >= 10) { - $roman .= $roman{10}; - $arabic -= 10; - next; - } - if ($arabic >= 9) { - $roman .= $roman{9}; - $arabic -= 9; - next; - } - if ($arabic >= 5) { - $roman .= $roman{5}; - $arabic -= 5; - next; - } - if ($arabic >= 4) { - $roman .= $roman{4}; - $arabic -= 4; - next; - } - if ($arabic >= 1) { - $roman .= $roman{1}; - $arabic -= 1; - next; - } - } - return $roman; -} - - -__END__ - -./ch-1.pl -Usage: ./ch-1.pl Roman_numeral operator Roman_numeral - -./ch-1.pl ICU + I -Invalid Roman numeral at U - -./ch-1.pl ICM + I -Roman numeral out of sequence at CM - -./ch-1.pl I + I -II (2) - -./ch-1.pl V - I -IV (4) - -/ch-1.pl M / L -XX (20) - -./ch-1.pl XL + XL -LXXX (80) - -./ch-1.pl X \* IX -XC (90) - -./ch-1.pl M / V -CC (200) - -./ch-1.pl M / X -C (100) - -./ch-1.pl MCMXCV + IV -MCMXCIX (1999) - -./ch-1.pl MCMXCV + XXV -MMXX (2020) - -./ch-1.pl MMMM - I -MMMCMXCIX (3999) - - diff --git a/challenge-047/duane-powell/perl5/ch-2.pl b/challenge-047/duane-powell/perl5/ch-2.pl deleted file mode 100755 index da9f001aaa..0000000000 --- a/challenge-047/duane-powell/perl5/ch-2.pl +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/perl -use warnings; -use strict; -use feature qw( say ); - -# Problem: https://perlweeklychallenge.org/blog/perl-weekly-challenge-047/ TASK #2 - -my @gap; -my $n = 100; -while (scalar @gap < 20) { - my ($a,undef,$b) = split(//,$n); - my $x = "$a$b"; # form new number by combining first and last digit of $n - - push @gap, $n if ($n/$x == int($n/$x)); # $n is a gapped number if it is divisible by $x - $n++; -} -say join(',',@gap); - -__END__ - -./ch-2.pl -100,105,108,110,120,121,130,132,135,140,143,150,154,160,165,170,176,180,187,190 - diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 819d4b3631..7d8443ced7 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,24 +1,31 @@ { + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, "plotOptions" : { "series" : { "borderWidth" : 0, "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" + "format" : "{point.y}", + "enabled" : 1 } } }, - "legend" : { - "enabled" : 0 - }, - "subtitle" : { - "text" : "[Champions: 3] Last updated at 2020-02-10 11:51:55 GMT" - }, "drilldown" : { "series" : [ { - "name" : "Javier Luque", - "id" : "Javier Luque", + "name" : "Duane Powell", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Duane Powell" + }, + { "data" : [ [ "Perl", @@ -32,10 +39,12 @@ "Blog", 1 ] - ] + ], + "name" : "Javier Luque", + "id" : "Javier Luque" }, { - "name" : "Luca Ferrari", + "id" : "Luca Ferrari", "data" : [ [ "Raku", @@ -46,60 +55,66 @@ 2 ] ], - "id" : "Luca Ferrari" + "name" : "Luca Ferrari" }, { "name" : "Simon Proctor", - "id" : "Simon Proctor", "data" : [ [ "Raku", 2 ] - ] + ], + "id" : "Simon Proctor" } ] }, + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category" + }, "tooltip" : { "pointFormat" : "{point.name}: {point.y:f}
", "followPointer" : 1, "headerFormat" : "{series.name}
" }, - "title" : { - "text" : "Perl Weekly Challenge - 047" + "subtitle" : { + "text" : "[Champions: 4] Last updated at 2020-02-10 16:59:20 GMT" }, "series" : [ { - "colorByPoint" : 1, "name" : "Perl Weekly Challenge - 047", "data" : [ + { + "drilldown" : "Duane Powell", + "name" : "Duane Powell", + "y" : 2 + }, { "name" : "Javier Luque", "y" : 5, "drilldown" : "Javier Luque" }, { + "y" : 4, "name" : "Luca Ferrari", - "drilldown" : "Luca Ferrari", - "y" : 4 + "drilldown" : "Luca Ferrari" }, { + "y" : 2, "name" : "Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 2 + "drilldown" : "Simon Proctor" } - ] + ], + "colorByPoint" : 1 } ], - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" + "legend" : { + "enabled" : 0 }, - "xAxis" : { - "type" : "category" + "title" : { + "text" : "Perl Weekly Challenge - 047" } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 2b590d1d12..948496b5c0 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,24 +1,43 @@ { - "subtitle" : { - "text" : "Last updated at 2020-02-10 11:51:55 GMT" + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 }, - "legend" : { - "enabled" : "false" + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, - "title" : { - "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" - }, - "yAxis" : { - "min" : 0, - "title" : { - "text" : null - } + "subtitle" : { + "text" : "Last updated at 2020-02-10 16:59:20 GMT" }, "series" : [ { + "dataLabels" : { + "y" : 10, + "enabled" : "true", + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "rotation" : -90, + "format" : "{point.y:.0f}", + "color" : "#FFFFFF", + "align" : "right" + }, + "name" : "Contributions", "data" : [ [ "Blog", @@ -26,38 +45,19 @@ ], [ "Perl", - 1903 + 1905 ], [ "Raku", 1166 ] - ], - "name" : "Contributions", - "dataLabels" : { - "rotation" : -90, - "format" : "{point.y:.0f}", - "align" : "right", - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - }, - "y" : 10, - "enabled" : "true", - "color" : "#FFFFFF" - } + ] } ], - "chart" : { - "type" : "column" + "legend" : { + "enabled" : "false" }, - "xAxis" : { - "type" : "category", - "labels" : { - "style" : { - "fontSize" : "13px", - "fontFamily" : "Verdana, sans-serif" - } - } + "title" : { + "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index d40adc03a8..0f57bd641f 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -3,15 +3,14 @@ "type" : "category" }, "tooltip" : { + "headerFormat" : "", "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" + "followPointer" : "true" }, "drilldown" : { "series" : [ { "name" : "001", - "id" : "001", "data" : [ [ "Perl", @@ -25,9 +24,12 @@ "Blog", 11 ] - ] + ], + "id" : "001" }, { + "id" : "002", + "name" : "002", "data" : [ [ "Perl", @@ -41,12 +43,10 @@ "Blog", 10 ] - ], - "id" : "002", - "name" : "002" + ] }, { - "id" : "003", + "name" : "003", "data" : [ [ "Perl", @@ -61,9 +61,10 @@ 9 ] ], - "name" : "003" + "id" : "003" }, { + "id" : "004", "data" : [ [ "Perl", @@ -78,7 +79,6 @@ 10 ] ], - "id" : "004", "name" : "004" }, { @@ -100,6 +100,7 @@ "name" : "005" }, { + "name" : "006", "data" : [ [ "Perl", @@ -114,11 +115,9 @@ 7 ] ], - "id" : "006", - "name" : "006" + "id" : "006" }, { - "name" : "007", "id" : "007", "data" : [ [ @@ -133,9 +132,11 @@ "Blog", 10 ] - ] + ], + "name" : "007" }, { + "name" : "008", "data" : [ [ "Perl", @@ -150,8 +151,7 @@ 12 ] ], - "id" : "008", - "name" : "008" + "id" : "008" }, { "id" : "009", @@ -172,7 +172,7 @@ "name" : "009" }, { - "id" : "010", + "name" : "010", "data" : [ [ "Perl", @@ -187,10 +187,10 @@ 11 ] ], - "name" : "010" + "id" : "010" }, { - "id" : "011", + "name" : "011", "data" : [ [ "Perl", @@ -205,7 +205,7 @@ 10 ] ], - "name" : "011" + "id" : "011" }, { "name" : "012", @@ -227,6 +227,7 @@ }, { "id" : "013", + "name" : "013", "data" : [ [ "Perl", @@ -240,11 +241,10 @@ "Blog", 13 ] - ], - "name" : "013" + ] }, { - "name" : "014", + "id" : "014", "data" : [ [ "Perl", @@ -259,10 +259,10 @@ 15 ] ], - "id" : "014" + "name" : "014" }, { - "name" : "015", + "id" : "015", "data" : [ [ "Perl", @@ -277,10 +277,11 @@ 15 ] ], - "id" : "015" + "name" : "015" }, { "id" : "016", + "name" : "016", "data" : [ [ "Perl", @@ -294,11 +295,10 @@ "Blog", 12 ] - ], - "name" : "016" + ] }, { - "id" : "017", + "name" : "017", "data" : [ [ "Perl", @@ -313,10 +313,9 @@ 12 ] ], - "name" : "017" + "id" : "017" }, { - "name" : "018", "data" : [ [ "Perl", @@ -331,10 +330,10 @@ 14 ] ], + "name" : "018", "id" : "018" }, { - "name" : "019", "data" : [ [ "Perl", @@ -349,9 +348,11 @@ 13 ] ], + "name" : "019", "id" : "019" }, { + "id" : "020", "name" : "020", "data" : [ [ @@ -366,8 +367,7 @@ "Blog", 13 ] - ], - "id" : "020" + ] }, { "name" : "021", @@ -424,8 +424,8 @@ "name" : "023" }, { - "name" : "024", "id" : "024", + "name" : "024", "data" : [ [ "Perl", @@ -478,6 +478,7 @@ "name" : "026" }, { + "id" : "027", "data" : [ [ "Perl", @@ -492,7 +493,6 @@ 9 ] ], - "id" : "027", "name" : "027" }, { @@ -514,6 +514,8 @@ "id" : "028" }, { + "id" : "029", + "name" : "029", "data" : [ [ "Perl", @@ -527,12 +529,9 @@ "Blog", 12 ] - ], - "id" : "029", - "name" : "029" + ] }, { - "id" : "030", "data" : [ [ "Perl", @@ -547,9 +546,12 @@ 10 ] ], - "name" : "030" + "name" : "030", + "id" : "030" }, { + "id" : "031", + "name" : "031", "data" : [ [ "Perl", @@ -563,9 +565,7 @@ "Blog", 9 ] - ], - "id" : "031", - "name" : "031" + ] }, { "data" : [ @@ -582,8 +582,8 @@ 10 ] ], - "id" : "032", - "name" : "032" + "name" : "032", + "id" : "032" }, { "name" : "033", @@ -605,6 +605,7 @@ }, { "id" : "034", + "name" : "034", "data" : [ [ "Perl", @@ -618,8 +619,7 @@ "Blog", 11 ] - ], - "name" : "034" + ] }, { "name" : "035", @@ -640,8 +640,8 @@ "id" : "035" }, { - "name" : "036", "id" : "036", + "name" : "036", "data" : [ [ "Perl", @@ -676,6 +676,7 @@ "id" : "037" }, { + "id" : "038", "data" : [ [ "Perl", @@ -690,7 +691,6 @@ 11 ] ], - "id" : "038", "name" : "038" }, { @@ -712,6 +712,8 @@ "name" : "039" }, { + "id" : "040", + "name" : "040", "data" : [ [ "Perl", @@ -725,12 +727,9 @@ "Blog", 9 ] - ], - "id" : "040", - "name" : "040" + ] }, { - "name" : "041", "data" : [ [ "Perl", @@ -745,11 +744,10 @@ 8 ] ], + "name" : "041", "id" : "041" }, { - "name" : "042", - "id" : "042", "data" : [ [ "Perl", @@ -763,10 +761,12 @@ "Blog", 11 ] - ] + ], + "name" : "042", + "id" : "042" }, { - "name" : "043", + "id" : "043", "data" : [ [ "Perl", @@ -781,9 +781,11 @@ 10 ] ], - "id" : "043" + "name" : "043" }, { + "id" : "044", + "name" : "044", "data" : [ [ "Perl", @@ -797,11 +799,11 @@ "Blog", 8 ] - ], - "id" : "044", - "name" : "044" + ] }, { + "id" : "045", + "name" : "045", "data" : [ [ "Perl", @@ -815,9 +817,7 @@ "Blog", 10 ] - ], - "id" : "045", - "name" : "045" + ] }, { "name" : "046", @@ -839,11 +839,10 @@ }, { "name" : "047", - "id" : "047", "data" : [ [ "Perl", - 2 + 4 ], [ "Raku", @@ -853,51 +852,57 @@ "Blog", 3 ] - ] + ], + "id" : "047" } ] }, - "legend" : { - "enabled" : "false" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-02-10 11:51:55 GMT" + "chart" : { + "type" : "column" }, "plotOptions" : { "series" : { + "borderWidth" : 0, "dataLabels" : { "enabled" : 1, "format" : "{point.y}" - }, - "borderWidth" : 0 + } } }, - "chart" : { - "type" : "column" + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "legend" : { + "enabled" : "false" }, "series" : [ { "colorByPoint" : "true", "data" : [ { - "name" : "#001", "y" : 140, + "name" : "#001", "drilldown" : "001" }, { - "drilldown" : "002", + "name" : "#002", "y" : 109, - "name" : "#002" + "drilldown" : "002" }, { "name" : "#003", - "drilldown" : "003", - "y" : 71 + "y" : 71, + "drilldown" : "003" }, { "drilldown" : "004", - "y" : 91, - "name" : "#004" + "name" : "#004", + "y" : 91 }, { "name" : "#005", @@ -905,34 +910,34 @@ "drilldown" : "005" }, { + "drilldown" : "006", "name" : "#006", - "y" : 48, - "drilldown" : "006" + "y" : 48 }, { - "name" : "#007", "y" : 56, + "name" : "#007", "drilldown" : "007" }, { + "y" : 70, "name" : "#008", - "drilldown" : "008", - "y" : 70 + "drilldown" : "008" }, { "drilldown" : "009", - "y" : 68, - "name" : "#009" + "name" : "#009", + "y" : 68 }, { - "name" : "#010", "drilldown" : "010", + "name" : "#010", "y" : 60 }, { + "drilldown" : "011", "name" : "#011", - "y" : 79, - "drilldown" : "011" + "y" : 79 }, { "name" : "#012", @@ -940,49 +945,49 @@ "drilldown" : "012" }, { - "name" : "#013", "y" : 76, + "name" : "#013", "drilldown" : "013" }, { - "name" : "#014", "drilldown" : "014", + "name" : "#014", "y" : 96 }, { - "drilldown" : "015", + "name" : "#015", "y" : 93, - "name" : "#015" + "drilldown" : "015" }, { "y" : 66, - "drilldown" : "016", - "name" : "#016" + "name" : "#016", + "drilldown" : "016" }, { "drilldown" : "017", - "y" : 79, - "name" : "#017" + "name" : "#017", + "y" : 79 }, { - "name" : "#018", "y" : 76, + "name" : "#018", "drilldown" : "018" }, { - "name" : "#019", "drilldown" : "019", - "y" : 95 + "y" : 95, + "name" : "#019" }, { + "name" : "#020", "y" : 95, - "drilldown" : "020", - "name" : "#020" + "drilldown" : "020" }, { + "y" : 67, "name" : "#021", - "drilldown" : "021", - "y" : 67 + "drilldown" : "021" }, { "drilldown" : "022", @@ -991,18 +996,18 @@ }, { "y" : 91, - "drilldown" : "023", - "name" : "#023" + "name" : "#023", + "drilldown" : "023" }, { - "y" : 70, "drilldown" : "024", - "name" : "#024" + "name" : "#024", + "y" : 70 }, { + "drilldown" : "025", "name" : "#025", - "y" : 55, - "drilldown" : "025" + "y" : 55 }, { "name" : "#026", @@ -1010,9 +1015,9 @@ "drilldown" : "026" }, { - "name" : "#027", + "drilldown" : "027", "y" : 58, - "drilldown" : "027" + "name" : "#027" }, { "name" : "#028", @@ -1025,64 +1030,64 @@ "drilldown" : "029" }, { - "drilldown" : "030", + "name" : "#030", "y" : 115, - "name" : "#030" + "drilldown" : "030" }, { + "y" : 87, "name" : "#031", - "drilldown" : "031", - "y" : 87 + "drilldown" : "031" }, { - "drilldown" : "032", + "name" : "#032", "y" : 92, - "name" : "#032" + "drilldown" : "032" }, { - "name" : "#033", "drilldown" : "033", + "name" : "#033", "y" : 108 }, { "y" : 60, - "drilldown" : "034", - "name" : "#034" + "name" : "#034", + "drilldown" : "034" }, { - "name" : "#035", + "drilldown" : "035", "y" : 60, - "drilldown" : "035" + "name" : "#035" }, { + "name" : "#036", "y" : 61, - "drilldown" : "036", - "name" : "#036" + "drilldown" : "036" }, { - "y" : 63, "drilldown" : "037", - "name" : "#037" + "name" : "#037", + "y" : 63 }, { - "drilldown" : "038", + "name" : "#038", "y" : 60, - "name" : "#038" + "drilldown" : "038" }, { - "y" : 60, "drilldown" : "039", - "name" : "#039" + "name" : "#039", + "y" : 60 }, { + "drilldown" : "040", "name" : "#040", - "y" : 66, - "drilldown" : "040" + "y" : 66 }, { - "y" : 69, "drilldown" : "041", - "name" : "#041" + "name" : "#041", + "y" : 69 }, { "name" : "#042", @@ -1095,35 +1100,30 @@ "name" : "#043" }, { - "name" : "#044", "y" : 75, + "name" : "#044", "drilldown" : "044" }, { "drilldown" : "045", - "y" : 93, - "name" : "#045" + "name" : "#045", + "y" : 93 }, { - "name" : "#046", "drilldown" : "046", + "name" : "#046", "y" : 82 }, { - "y" : 11, "drilldown" : "047", + "y" : 13, "name" : "#047" } ], "name" : "Perl Weekly Challenge Languages" } ], - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "title" : { - "text" : "Perl Weekly Challenge Language" + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-02-10 16:59:20 GMT" } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index fb898b2d4d..d52ec21cfb 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -2,287 +2,29 @@ "xAxis" : { "type" : "category" }, - "title" : { - "text" : "Perl Weekly Challenge Leaders (TOP 50)" - }, - "chart" : { - "type" : "column" + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : "true", + "headerFormat" : "" }, "yAxis" : { "title" : { "text" : "Total Score" } }, - "series" : [ - { - "colorByPoint" : "true", - "data" : [ - { - "name" : "#1: Laurent Rosenfeld", - "drilldown" : "Laurent Rosenfeld", - "y" : 566 - }, - { - "y" : 366, - "drilldown" : "Jaldhar H. Vyas", - "name" : "#2: Jaldhar H. Vyas" - }, - { - "y" : 364, - "drilldown" : "Ruben Westerberg", - "name" : "#3: Ruben Westerberg" - }, - { - "y" : 334, - "drilldown" : "Joelle Maslak", - "name" : "#4: Joelle Maslak" - }, - { - "drilldown" : "Adam Russell", - "y" : 300, - "name" : "#5: Adam Russell" - }, - { - "y" : 286, - "drilldown" : "Arne Sommer", - "name" : "#6: Arne Sommer" - }, - { - "y" : 266, - "drilldown" : "Roger Bell West", - "name" : "#7: Roger Bell West" - }, - { - "name" : "#8: E. Choroba", - "drilldown" : "E. Choroba", - "y" : 248 - }, - { - "name" : "#9: Athanasius", - "y" : 214, - "drilldown" : "Athanasius" - }, - { - "name" : "#10: Andrezgz", - "drilldown" : "Andrezgz", - "y" : 186 - }, - { - "name" : "#11: Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 182 - }, - { - "drilldown" : "Javier Luque", - "y" : 170, - "name" : "#12: Javier Luque" - }, - { - "y" : 162, - "drilldown" : "Kian-Meng Ang", - "name" : "#13: Kian-Meng Ang" - }, - { - "drilldown" : "Ryan Thompson", - "y" : 162, - "name" : "#14: Ryan Thompson" - }, - { - "y" : 160, - "drilldown" : "Duncan C. White", - "name" : "#15: Duncan C. White" - }, - { - "name" : "#16: Dave Jacoby", - "drilldown" : "Dave Jacoby", - "y" : 156 - }, - { - "y" : 128, - "drilldown" : "Kevin Colyer", - "name" : "#17: Kevin Colyer" - }, - { - "name" : "#18: Steven Wilson", - "drilldown" : "Steven Wilson", - "y" : 128 - }, - { - "name" : "#19: Duane Powell", - "y" : 124, - "drilldown" : "Duane Powell" - }, - { - "y" : 116, - "drilldown" : "Colin Crain", - "name" : "#20: Colin Crain" - }, - { - "y" : 114, - "drilldown" : "Yet Ebreo", - "name" : "#21: Yet Ebreo" - }, - { - "name" : "#22: Burkhard Nickels", - "y" : 108, - "drilldown" : "Burkhard Nickels" - }, - { - "drilldown" : "Noud Aldenhoven", - "y" : 108, - "name" : "#23: Noud Aldenhoven" - }, - { - "name" : "#24: Francis Whittle", - "y" : 96, - "drilldown" : "Francis Whittle" - }, - { - "name" : "#25: Feng Chang", - "drilldown" : "Feng Chang", - "y" : 88 - }, - { - "drilldown" : "Daniel Mantovani", - "y" : 86, - "name" : "#26: Daniel Mantovani" - }, - { - "name" : "#27: Lubos Kolouch", - "y" : 84, - "drilldown" : "Lubos Kolouch" - }, - { - "name" : "#28: Ulrich Rieke", - "y" : 84, - "drilldown" : "Ulrich Rieke" - }, - { - "y" : 80, - "drilldown" : "Mark Senn", - "name" : "#29: Mark Senn" - }, - { - "drilldown" : "Gustavo Chaves", - "y" : 72, - "name" : "#30: Gustavo Chaves" - }, - { - "name" : "#31: Yozen Hernandez", - "y" : 70, - "drilldown" : "Yozen Hernandez" - }, - { - "y" : 64, - "drilldown" : "Guillermo Ramos", - "name" : "#32: Guillermo Ramos" - }, - { - "drilldown" : "Jo Christian Oterhals", - "y" : 60, - "name" : "#33: Jo Christian Oterhals" - }, - { - "name" : "#34: Markus Holzer", - "drilldown" : "Markus Holzer", - "y" : 60 - }, - { - "name" : "#35: Ozzy", - "y" : 56, - "drilldown" : "Ozzy" - }, - { - "drilldown" : "Dr James A. Smith", - "y" : 52, - "name" : "#36: Dr James A. Smith" - }, - { - "name" : "#37: Randy Lauen", - "drilldown" : "Randy Lauen", - "y" : 52 - }, - { - "name" : "#38: Dave Cross", - "y" : 50, - "drilldown" : "Dave Cross" - }, - { - "name" : "#39: Daniel Mita", - "drilldown" : "Daniel Mita", - "y" : 48 - }, - { - "name" : "#40: Saif Ahmed", - "drilldown" : "Saif Ahmed", - "y" : 46 - }, - { - "name" : "#41: Veesh Goldman", - "y" : 44, - "drilldown" : "Veesh Goldman" - }, - { - "name" : "#42: Alicia Bielsa", - "drilldown" : "Alicia Bielsa", - "y" : 40 - }, - { - "drilldown" : "Lars Balker", - "y" : 38, - "name" : "#43: Lars Balker" - }, - { - "y" : 38, - "drilldown" : "Mark Anderson", - "name" : "#44: Mark Anderson" - }, - { - "name" : "#45: Kivanc Yazan", - "drilldown" : "Kivanc Yazan", - "y" : 32 - }, - { - "name" : "#46: Nick Logan", - "drilldown" : "Nick Logan", - "y" : 32 - }, - { - "y" : 28, - "drilldown" : "Luca Ferrari", - "name" : "#47: Luca Ferrari" - }, - { - "name" : "#48: Nazareno Delucca", - "drilldown" : "Nazareno Delucca", - "y" : 28 - }, - { - "name" : "#49: Pete Houston", - "y" : 28, - "drilldown" : "Pete Houston" - }, - { - "name" : "#50: Rage311", - "y" : 28, - "drilldown" : "Rage311" - } - ], - "name" : "Perl Weekly Challenge Leaders" - } - ], "plotOptions" : { "series" : { + "borderWidth" : 0, "dataLabels" : { "format" : "{point.y}", "enabled" : 1 - }, - "borderWidth" : 0 + } } }, "drilldown" : { "series" : [ { + "id" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld", "data" : [ [ @@ -297,8 +39,7 @@ "Raku", 91 ] - ], - "id" : "Laurent Rosenfeld" + ] }, { "name" : "Jaldhar H. Vyas", @@ -329,11 +70,11 @@ 91 ] ], - "id" : "Ruben Westerberg", - "name" : "Ruben Westerberg" + "name" : "Ruben Westerberg", + "id" : "Ruben Westerberg" }, { - "id" : "Joelle Maslak", + "name" : "Joelle Maslak", "data" : [ [ "Blog", @@ -348,10 +89,9 @@ 81 ] ], - "name" : "Joelle Maslak" + "id" : "Joelle Maslak" }, { - "name" : "Adam Russell", "data" : [ [ "Blog", @@ -366,10 +106,12 @@ 9 ] ], + "name" : "Adam Russell", "id" : "Adam Russell" }, { "id" : "Arne Sommer", + "name" : "Arne Sommer", "data" : [ [ "Blog", @@ -383,11 +125,10 @@ "Raku", 92 ] - ], - "name" : "Arne Sommer" + ] }, { - "name" : "Roger Bell West", + "id" : "Roger Bell West", "data" : [ [ "Blog", @@ -402,11 +143,10 @@ 43 ] ], - "id" : "Roger Bell West" + "name" : "Roger Bell West" }, { "name" : "E. Choroba", - "id" : "E. Choroba", "data" : [ [ "Blog", @@ -416,10 +156,10 @@ "Perl", 85 ] - ] + ], + "id" : "E. Choroba" }, { - "id" : "Athanasius", "data" : [ [ "Blog", @@ -434,21 +174,20 @@ 38 ] ], - "name" : "Athanasius" + "name" : "Athanasius", + "id" : "Athanasius" }, { - "name" : "Andrezgz", + "id" : "Andrezgz", "data" : [ [ "Perl", 93 ] ], - "id" : "Andrezgz" + "name" : "Andrezgz" }, { - "name" : "Simon Proctor", - "id" : "Simon Proctor", "data" : [ [ "Blog", @@ -462,10 +201,12 @@ "Raku", 79 ] - ] + ], + "name" : "Simon Proctor", + "id" : "Simon Proctor" }, { - "name" : "Javier Luque", + "id" : "Javier Luque", "data" : [ [ "Blog", @@ -480,10 +221,11 @@ 34 ] ], - "id" : "Javier Luque" + "name" : "Javier Luque" }, { "id" : "Kian-Meng Ang", + "name" : "Kian-Meng Ang", "data" : [ [ "Blog", @@ -493,11 +235,11 @@ "Perl", 38 ] - ], - "name" : "Kian-Meng Ang" + ] }, { "id" : "Ryan Thompson", + "name" : "Ryan Thompson", "data" : [ [ "Blog", @@ -511,12 +253,11 @@ "Raku", 31 ] - ], - "name" : "Ryan Thompson" + ] }, { - "name" : "Duncan C. White", "id" : "Duncan C. White", + "name" : "Duncan C. White", "data" : [ [ "Blog", @@ -529,7 +270,7 @@ ] }, { - "id" : "Dave Jacoby", + "name" : "Dave Jacoby", "data" : [ [ "Blog", @@ -544,10 +285,20 @@ 1 ] ], - "name" : "Dave Jacoby" + "id" : "Dave Jacoby" + }, + { + "name" : "Duane Powell", + "data" : [ + [ + "Perl", + 64 + ] + ], + "id" : "Duane Powell" }, { - "id" : "Kevin Colyer", + "name" : "Kevin Colyer", "data" : [ [ "Blog", @@ -562,10 +313,9 @@ 61 ] ], - "name" : "Kevin Colyer" + "id" : "Kevin Colyer" }, { - "name" : "Steven Wilson", "id" : "Steven Wilson", "data" : [ [ @@ -580,20 +330,11 @@ "Raku", 1 ] - ] - }, - { - "name" : "Duane Powell", - "id" : "Duane Powell", - "data" : [ - [ - "Perl", - 62 - ] - ] + ], + "name" : "Steven Wilson" }, { - "id" : "Colin Crain", + "name" : "Colin Crain", "data" : [ [ "Perl", @@ -604,10 +345,9 @@ 11 ] ], - "name" : "Colin Crain" + "id" : "Colin Crain" }, { - "id" : "Yet Ebreo", "data" : [ [ "Blog", @@ -622,10 +362,12 @@ 21 ] ], - "name" : "Yet Ebreo" + "name" : "Yet Ebreo", + "id" : "Yet Ebreo" }, { "id" : "Burkhard Nickels", + "name" : "Burkhard Nickels", "data" : [ [ "Blog", @@ -639,8 +381,7 @@ "Raku", 8 ] - ], - "name" : "Burkhard Nickels" + ] }, { "name" : "Noud Aldenhoven", @@ -667,11 +408,12 @@ 39 ] ], - "id" : "Francis Whittle", - "name" : "Francis Whittle" + "name" : "Francis Whittle", + "id" : "Francis Whittle" }, { "id" : "Feng Chang", + "name" : "Feng Chang", "data" : [ [ "Perl", @@ -681,12 +423,11 @@ "Raku", 23 ] - ], - "name" : "Feng Chang" + ] }, { - "name" : "Daniel Mantovani", "id" : "Daniel Mantovani", + "name" : "Daniel Mantovani", "data" : [ [ "Perl", @@ -695,17 +436,17 @@ ] }, { + "name" : "Lubos Kolouch", "data" : [ [ "Perl", 42 ] ], - "id" : "Lubos Kolouch", - "name" : "Lubos Kolouch" + "id" : "Lubos Kolouch" }, { - "name" : "Ulrich Rieke", + "id" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -716,11 +457,11 @@ 26 ] ], - "id" : "Ulrich Rieke" + "name" : "Ulrich Rieke" }, { - "name" : "Mark Senn", "id" : "Mark Senn", + "name" : "Mark Senn", "data" : [ [ "Blog", @@ -733,8 +474,8 @@ ] }, { - "name" : "Gustavo Chaves", "id" : "Gustavo Chaves", + "name" : "Gustavo Chaves", "data" : [ [ "Blog", @@ -761,17 +502,16 @@ "name" : "Yozen Hernandez" }, { + "id" : "Guillermo Ramos", + "name" : "Guillermo Ramos", "data" : [ [ "Perl", 32 ] - ], - "id" : "Guillermo Ramos", - "name" : "Guillermo Ramos" + ] }, { - "name" : "Jo Christian Oterhals", "id" : "Jo Christian Oterhals", "data" : [ [ @@ -786,9 +526,11 @@ "Raku", 17 ] - ] + ], + "name" : "Jo Christian Oterhals" }, { + "id" : "Markus Holzer", "name" : "Markus Holzer", "data" : [ [ @@ -799,20 +541,20 @@ "Raku", 28 ] - ], - "id" : "Markus Holzer" + ] }, { + "id" : "Ozzy", + "name" : "Ozzy", "data" : [ [ "Raku", 28 ] - ], - "id" : "Ozzy", - "name" : "Ozzy" + ] }, { + "id" : "Dr James A. Smith", "name" : "Dr James A. Smith", "data" : [ [ @@ -823,11 +565,9 @@ "Raku", 10 ] - ], - "id" : "Dr James A. Smith" + ] }, { - "id" : "Randy Lauen", "data" : [ [ "Perl", @@ -838,11 +578,11 @@ 17 ] ], - "name" : "Randy Lauen" + "name" : "Randy Lauen", + "id" : "Randy Lauen" }, { "name" : "Dave Cross", - "id" : "Dave Cross", "data" : [ [ "Blog", @@ -852,7 +592,8 @@ "Perl", 23 ] - ] + ], + "id" : "Dave Cross" }, { "data" : [ @@ -865,12 +606,10 @@ 21 ] ], - "id" : "Daniel Mita", - "name" : "Daniel Mita" + "name" : "Daniel Mita", + "id" : "Daniel Mita" }, { - "name" : "Saif Ahmed", - "id" : "Saif Ahmed", "data" : [ [ "Blog", @@ -880,11 +619,13 @@ "Perl", 22 ] - ] + ], + "name" : "Saif Ahmed", + "id" : "Saif Ahmed" }, { - "name" : "Veesh Goldman", "id" : "Veesh Goldman", + "name" : "Veesh Goldman", "data" : [ [ "Blog", @@ -901,18 +642,16 @@ ] }, { + "id" : "Alicia Bielsa", "name" : "Alicia Bielsa", "data" : [ [ "Perl", 20 ] - ], - "id" : "Alicia Bielsa" + ] }, { - "name" : "Lars Balker", - "id" : "Lars Balker", "data" : [ [ "Perl", @@ -922,10 +661,11 @@ "Raku", 4 ] - ] + ], + "name" : "Lars Balker", + "id" : "Lars Balker" }, { - "id" : "Mark Anderson", "data" : [ [ "Perl", @@ -936,7 +676,8 @@ 5 ] ], - "name" : "Mark Anderson" + "name" : "Mark Anderson", + "id" : "Mark Anderson" }, { "data" : [ @@ -945,8 +686,8 @@ 16 ] ], - "id" : "Kivanc Yazan", - "name" : "Kivanc Yazan" + "name" : "Kivanc Yazan", + "id" : "Kivanc Yazan" }, { "data" : [ @@ -959,10 +700,11 @@ 8 ] ], - "id" : "Nick Logan", - "name" : "Nick Logan" + "name" : "Nick Logan", + "id" : "Nick Logan" }, { + "id" : "Luca Ferrari", "name" : "Luca Ferrari", "data" : [ [ @@ -973,50 +715,308 @@ "Raku", 10 ] - ], - "id" : "Luca Ferrari" + ] }, { + "id" : "Nazareno Delucca", + "name" : "Nazareno Delucca", "data" : [ [ "Perl", 14 ] - ], - "id" : "Nazareno Delucca", - "name" : "Nazareno Delucca" + ] }, { + "id" : "Pete Houston", "data" : [ [ "Perl", 14 ] ], - "id" : "Pete Houston", "name" : "Pete Houston" }, { "name" : "Rage311", - "id" : "Rage311", "data" : [ [ "Perl", 14 ] - ] + ], + "id" : "Rage311" } ] }, - "tooltip" : { - "headerFormat" : "", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : "true" + "chart" : { + "type" : "column" + }, + "title" : { + "text" : "Perl Weekly Challenge Leaders (TOP 50)" }, "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2020-02-10 11:51:55 GMT" + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2020-02-10 16:59:20 GMT" }, "legend" : { "enabled" : "false" - } + }, + "series" : [ + { + "colorByPoint" : "true", + "data" : [ + { + "drilldown" : "Laurent Rosenfeld", + "name" : "#1: Laurent Rosenfeld", + "y" : 566 + }, + { + "y" : 366, + "name" : "#2: Jaldhar H. Vyas", + "drilldown" : "Jaldhar H. Vyas" + }, + { + "y" : 364, + "name" : "#3: Ruben Westerberg", + "drilldown" : "Ruben Westerberg" + }, + { + "drilldown" : "Joelle Maslak", + "y" : 334, + "name" : "#4: Joelle Maslak" + }, + { + "y" : 300, + "name" : "#5: Adam Russell", + "drilldown" : "Adam Russell" + }, + { + "drilldown" : "Arne Sommer", + "name" : "#6: Arne Sommer", + "y" : 286 + }, + { + "drilldown" : "Roger Bell West", + "y" : 266, + "name" : "#7: Roger Bell West" + }, + { + "drilldown" : "E. Choroba", + "name" : "#8: E. Choroba", + "y" : 248 + }, + { + "drilldown" : "Athanasius", + "name" : "#9: Athanasius", + "y" : 214 + }, + { + "name" : "#10: Andrezgz", + "y" : 186, + "drilldown" : "Andrezgz" + }, + { + "drilldown" : "Simon Proctor", + "name" : "#11: Simon Proctor", + "y" : 182 + }, + { + "drilldown" : "Javier Luque", + "y" : 170, + "name" : "#12: Javier Luque" + }, + { + "drilldown" : "Kian-Meng Ang", + "name" : "#13: Kian-Meng Ang", + "y" : 162 + }, + { + "name" : "#14: Ryan Thompson", + "y" : 162, + "drilldown" : "Ryan Thompson" + }, + { + "drilldown" : "Duncan C. White", + "y" : 160, + "name" : "#15: Duncan C. White" + }, + { + "name" : "#16: Dave Jacoby", + "y" : 156, + "drilldown" : "Dave Jacoby" + }, + { + "drilldown" : "Duane Powell", + "name" : "#17: Duane Powell", + "y" : 128 + }, + { + "drilldown" : "Kevin Colyer", + "y" : 128, + "name" : "#18: Kevin Colyer" + }, + { + "drilldown" : "Steven Wilson", + "y" : 128, + "name" : "#19: Steven Wilson" + }, + { + "name" : "#20: Colin Crain", + "y" : 116, + "drilldown" : "Colin Crain" + }, + { + "drilldown" : "Yet Ebreo", + "y" : 114, + "name" : "#21: Yet Ebreo" + }, + { + "y" : 108, + "name" : "#22: Burkhard Nickels", + "drilldown" : "Burkhard Nickels" + }, + { + "drilldown" : "Noud Aldenhoven", + "y" : 108, + "name" : "#23: Noud Aldenhoven" + }, + { + "drilldown" : "Francis Whittle", + "y" : 96, + "name" : "#24: Francis Whittle" + }, + { + "name" : "#25: Feng Chang", + "y" : 88, + "drilldown" : "Feng Chang" + }, + { + "y" : 86, + "name" : "#26: Daniel Mantovani", + "drilldown" : "Daniel Mantovani" + }, + { + "drilldown" : "Lubos Kolouch", + "y" : 84, + "name" : "#27: Lubos Kolouch" + }, + { + "name" : "#28: Ulrich Rieke", + "y" : 84, + "drilldown" : "Ulrich Rieke" + }, + { + "name" : "#29: Mark Senn", + "y" : 80, + "drilldown" : "Mark Senn" + }, + { + "y" : 72, + "name" : "#30: Gustavo Chaves", + "drilldown" : "Gustavo Chaves" + }, + { + "y" : 70, + "name" : "#31: Yozen Hernandez", + "drilldown" : "Yozen Hernandez" + }, + { + "drilldown" : "Guillermo Ramos", + "y" : 64, + "name" : "#32: Guillermo Ramos" + }, + { + "y" : 60, + "name" : "#33: Jo Christian Oterhals", + "drilldown" : "Jo Christian Oterhals" + }, + { + "y" : 60, + "name" : "#34: Markus Holzer", + "drilldown" : "Markus Holzer" + }, + { + "drilldown" : "Ozzy", + "name" : "#35: Ozzy", + "y" : 56 + }, + { + "drilldown" : "Dr James A. Smith", + "y" : 52, + "name" : "#36: Dr James A. Smith" + }, + { + "drilldown" : "Randy Lauen", + "y" : 52, + "name" : "#37: Randy Lauen" + }, +