From ee130485b58015bc99aa597a24669956cd367640 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Thu, 16 Jan 2020 22:23:07 +0000 Subject: - Added solutions by Andrezgz and Saif Ahmed. --- challenge-043/saiftynet/perl/ch-1.pl | 66 +++ challenge-043/saiftynet/perl/ch-2.pl | 64 +++ challenge-043/saiftynet/perl5/ch-1.pl | 66 --- challenge-043/saiftynet/perl5/ch-2.pl | 64 --- stats/pwc-current.json | 170 ++++--- stats/pwc-language-breakdown-summary.json | 50 +- stats/pwc-language-breakdown.json | 340 +++++++------- stats/pwc-leaders.json | 736 +++++++++++++++--------------- stats/pwc-summary-1-30.json | 40 +- stats/pwc-summary-121-150.json | 52 +-- stats/pwc-summary-31-60.json | 34 +- stats/pwc-summary-61-90.json | 40 +- stats/pwc-summary-91-120.json | 98 ++-- stats/pwc-summary.json | 46 +- 14 files changed, 948 insertions(+), 918 deletions(-) create mode 100644 challenge-043/saiftynet/perl/ch-1.pl create mode 100644 challenge-043/saiftynet/perl/ch-2.pl delete mode 100644 challenge-043/saiftynet/perl5/ch-1.pl delete mode 100644 challenge-043/saiftynet/perl5/ch-2.pl diff --git a/challenge-043/saiftynet/perl/ch-1.pl b/challenge-043/saiftynet/perl/ch-1.pl new file mode 100644 index 0000000000..8148cab661 --- /dev/null +++ b/challenge-043/saiftynet/perl/ch-1.pl @@ -0,0 +1,66 @@ +#!/usr/env perl +# Perl Challenge Script +# Olympics 5 intersecting rings have some numbers allocated as below: +# Blue: 8, Yellow: 7, Green: 5, Red: 9, Back "?". Write a script to +# place numbers in the intersections and in the black ring so that +# the sum of numbers in each ring is exactly 11. + +# list of known numbers in a chain of rings. +my @list=(9,"?",5,"?","?","?",7,"?",8); + +# hash contains which positions in the chain correspond to which ring colour +my %rings=(red=>[0,1], + green=>[1,2,3], + black=>[3,4,5], + yellow=>[5,6,7], + blue=>[7,8], + ); + +print "Inital state:-\n"; +displayRings(); + +my $fixed=0; +my $pass=0; + +# this function solves in one pass if we fix in +# the sequence blue red green yellow black but +# that would be cheating + +while (not $fixed){ + $fixed=1; + foreach my $ring (keys %rings){ + my $sum=0; my @missing=(); + # count missing, sum known numbers + foreach my $pos (@{$rings{$ring}}){ + if ($list[$pos] eq"?"){ + push @missing,$pos + } + else { + $sum+=$list[$pos] + } + } + if (scalar @missing == 1){ + # if only one missing number then the missing + # number is 11 - the sum of known numbers + $list[$missing[0]]=11-$sum; + } + elsif (scalar @missing){ + # if still missing numbers then not yet fixed + $fixed=0 + } + } + $pass++; + print $fixed?"Final state:-\n":"Pass $pass\n"; + displayRings(); +} + +sub displayRings{ + printf ( +" RED %s BLACK %s BLUE %s + RedGrn %s GrnBlk %s BlkYel %s YelBlu %s + GREEN %s YELLOW %s\n", + @list[0,4,8,1,3,5,7,2,6] + ); + +} + diff --git a/challenge-043/saiftynet/perl/ch-2.pl b/challenge-043/saiftynet/perl/ch-2.pl new file mode 100644 index 0000000000..803bd874a5 --- /dev/null +++ b/challenge-043/saiftynet/perl/ch-2.pl @@ -0,0 +1,64 @@ +#!/usr/env perl +# Perl Challenge 043 Task 2 +# Write a script to generate Self-descriptive Numbers in a given base. +# In mathematics, a self-descriptive number is an integer m that in a +# given base b is b digits long in which each digit d at position n +# (the most significant digit being at position 0 and the least +# significant at position b - 1) counts how many instances of digit +# n are in m. +use strict; use warnings; + +# sets up array to simplify conversions of decimal to baseN +my @decToBase=(0..9,"A".."Z","?"); + +printf ("%-4s %-36s %-36s\n","base", "Derived","Cheating" ); +foreach (4,5,7..36){ + printf ("%4s %-36s %-36s\n",$_, getSelfDescriptive($_),cheatGetSelfDescriptive($_) ); +} + +# This method uses description that the count of instances of digit N is +# in position N. It uses a test that works by placing counts of digits for +# a starting number in respective positions, and keeps doing so until +# there is no more change. Assumes no prior knowledge of these numbers + +sub getSelfDescriptive{ + my $base=shift; + + #starts with a string of 0s of length $base + #can be any number...the algorithm converges rapidly + my $start= "0"x $base; + my $end=""; my $count=0; + + # keep updating until stabilises with the self-descriptive number + while ($end ne $start){ + # for numbers that do not converge, a little bit of nudging + # by inserting a random digit in a random positions may help + if ($count++>5){ + substr($start,rand()*$base,1)=$decToBase[rand()*$base]; + $count=0 + } + $end=$start; + $start=countAndPlace($end); + + } + return $start; + + # a single pass that counts occurences and puts that count in + # the respective positions within that string + sub countAndPlace{ + my ($string)=@_; + my @split=split //,$string; + foreach my $pos (0..$#split){ + $split[$pos]= $decToBase[ grep { $_ eq $decToBase[$pos] } @split]; + } + return join "",@split; + } +} + +# this method recognises that there is an obvious, observable pattern of +# self-descriptive numbers....does not work for 4 and 5 +sub cheatGetSelfDescriptive{ + my $base=shift; + return $decToBase[$base-4]."21".("0"x($base-7))."1000" if $base >6; + return "oops...failed!" +} diff --git a/challenge-043/saiftynet/perl5/ch-1.pl b/challenge-043/saiftynet/perl5/ch-1.pl deleted file mode 100644 index 8148cab661..0000000000 --- a/challenge-043/saiftynet/perl5/ch-1.pl +++ /dev/null @@ -1,66 +0,0 @@ -#!/usr/env perl -# Perl Challenge Script -# Olympics 5 intersecting rings have some numbers allocated as below: -# Blue: 8, Yellow: 7, Green: 5, Red: 9, Back "?". Write a script to -# place numbers in the intersections and in the black ring so that -# the sum of numbers in each ring is exactly 11. - -# list of known numbers in a chain of rings. -my @list=(9,"?",5,"?","?","?",7,"?",8); - -# hash contains which positions in the chain correspond to which ring colour -my %rings=(red=>[0,1], - green=>[1,2,3], - black=>[3,4,5], - yellow=>[5,6,7], - blue=>[7,8], - ); - -print "Inital state:-\n"; -displayRings(); - -my $fixed=0; -my $pass=0; - -# this function solves in one pass if we fix in -# the sequence blue red green yellow black but -# that would be cheating - -while (not $fixed){ - $fixed=1; - foreach my $ring (keys %rings){ - my $sum=0; my @missing=(); - # count missing, sum known numbers - foreach my $pos (@{$rings{$ring}}){ - if ($list[$pos] eq"?"){ - push @missing,$pos - } - else { - $sum+=$list[$pos] - } - } - if (scalar @missing == 1){ - # if only one missing number then the missing - # number is 11 - the sum of known numbers - $list[$missing[0]]=11-$sum; - } - elsif (scalar @missing){ - # if still missing numbers then not yet fixed - $fixed=0 - } - } - $pass++; - print $fixed?"Final state:-\n":"Pass $pass\n"; - displayRings(); -} - -sub displayRings{ - printf ( -" RED %s BLACK %s BLUE %s - RedGrn %s GrnBlk %s BlkYel %s YelBlu %s - GREEN %s YELLOW %s\n", - @list[0,4,8,1,3,5,7,2,6] - ); - -} - diff --git a/challenge-043/saiftynet/perl5/ch-2.pl b/challenge-043/saiftynet/perl5/ch-2.pl deleted file mode 100644 index 803bd874a5..0000000000 --- a/challenge-043/saiftynet/perl5/ch-2.pl +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/env perl -# Perl Challenge 043 Task 2 -# Write a script to generate Self-descriptive Numbers in a given base. -# In mathematics, a self-descriptive number is an integer m that in a -# given base b is b digits long in which each digit d at position n -# (the most significant digit being at position 0 and the least -# significant at position b - 1) counts how many instances of digit -# n are in m. -use strict; use warnings; - -# sets up array to simplify conversions of decimal to baseN -my @decToBase=(0..9,"A".."Z","?"); - -printf ("%-4s %-36s %-36s\n","base", "Derived","Cheating" ); -foreach (4,5,7..36){ - printf ("%4s %-36s %-36s\n",$_, getSelfDescriptive($_),cheatGetSelfDescriptive($_) ); -} - -# This method uses description that the count of instances of digit N is -# in position N. It uses a test that works by placing counts of digits for -# a starting number in respective positions, and keeps doing so until -# there is no more change. Assumes no prior knowledge of these numbers - -sub getSelfDescriptive{ - my $base=shift; - - #starts with a string of 0s of length $base - #can be any number...the algorithm converges rapidly - my $start= "0"x $base; - my $end=""; my $count=0; - - # keep updating until stabilises with the self-descriptive number - while ($end ne $start){ - # for numbers that do not converge, a little bit of nudging - # by inserting a random digit in a random positions may help - if ($count++>5){ - substr($start,rand()*$base,1)=$decToBase[rand()*$base]; - $count=0 - } - $end=$start; - $start=countAndPlace($end); - - } - return $start; - - # a single pass that counts occurences and puts that count in - # the respective positions within that string - sub countAndPlace{ - my ($string)=@_; - my @split=split //,$string; - foreach my $pos (0..$#split){ - $split[$pos]= $decToBase[ grep { $_ eq $decToBase[$pos] } @split]; - } - return join "",@split; - } -} - -# this method recognises that there is an obvious, observable pattern of -# self-descriptive numbers....does not work for 4 and 5 -sub cheatGetSelfDescriptive{ - my $base=shift; - return $decToBase[$base-4]."21".("0"x($base-7))."1000" if $base >6; - return "oops...failed!" -} diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 72237f1179..692fc927eb 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,65 +1,22 @@ { - "xAxis" : { - "type" : "category" - }, - "series" : [ - { - "colorByPoint" : 1, - "data" : [ - { - "y" : 2, - "name" : "Duane Powell", - "drilldown" : "Duane Powell" - }, - { - "drilldown" : "E. Choroba", - "name" : "E. Choroba", - "y" : 3 - }, - { - "name" : "Javier Luque", - "y" : 5, - "drilldown" : "Javier Luque" - }, - { - "name" : "Markus Holzer", - "y" : 2, - "drilldown" : "Markus Holzer" - }, - { - "drilldown" : "Roger Bell West", - "y" : 4, - "name" : "Roger Bell West" - }, - { - "y" : 2, - "name" : "Simon Proctor", - "drilldown" : "Simon Proctor" - } - ], - "name" : "Perl Weekly Challenge - 043" - } - ], - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } + "chart" : { + "type" : "column" }, "title" : { "text" : "Perl Weekly Challenge - 043" }, - "legend" : { - "enabled" : 0 - }, - "chart" : { - "type" : "column" - }, "drilldown" : { "series" : [ + { + "name" : "Andrezgz", + "data" : [ + [ + "Perl", + 2 + ] + ], + "id" : "Andrezgz" + }, { "id" : "Duane Powell", "data" : [ @@ -71,7 +28,6 @@ "name" : "Duane Powell" }, { - "name" : "E. Choroba", "data" : [ [ "Perl", @@ -82,10 +38,12 @@ 1 ] ], - "id" : "E. Choroba" + "id" : "E. Choroba", + "name" : "E. Choroba" }, { "name" : "Javier Luque", + "id" : "Javier Luque", "data" : [ [ "Perl", @@ -99,21 +57,21 @@ "Blog", 1 ] - ], - "id" : "Javier Luque" + ] }, { "id" : "Markus Holzer", - "name" : "Markus Holzer", "data" : [ [ "Raku", 2 ] - ] + ], + "name" : "Markus Holzer" }, { "name" : "Roger Bell West", + "id" : "Roger Bell West", "data" : [ [ "Perl", @@ -123,12 +81,21 @@ "Raku", 2 ] - ], - "id" : "Roger Bell West" + ] + }, + { + "name" : "Saif Ahmed", + "id" : "Saif Ahmed", + "data" : [ + [ + "Perl", + 2 + ] + ] }, { - "id" : "Simon Proctor", "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ [ "Raku", @@ -138,17 +105,80 @@ } ] }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + } } }, "subtitle" : { - "text" : "[Champions: 6] Last updated at 2020-01-16 09:24:32 GMT" + "text" : "[Champions: 8] Last updated at 2020-01-16 22:22:38 GMT" + }, + "series" : [ + { + "name" : "Perl Weekly Challenge - 043", + "colorByPoint" : 1, + "data" : [ + { + "drilldown" : "Andrezgz", + "y" : 2, + "name" : "Andrezgz" + }, + { + "y" : 2, + "name" : "Duane Powell", + "drilldown" : "Duane Powell" + }, + { + "drilldown" : "E. Choroba", + "name" : "E. Choroba", + "y" : 3 + }, + { + "drilldown" : "Javier Luque", + "y" : 5, + "name" : "Javier Luque" + }, + { + "y" : 2, + "name" : "Markus Holzer", + "drilldown" : "Markus Holzer" + }, + { + "y" : 4, + "name" : "Roger Bell West", + "drilldown" : "Roger Bell West" + }, + { + "drilldown" : "Saif Ahmed", + "name" : "Saif Ahmed", + "y" : 2 + }, + { + "name" : "Simon Proctor", + "y" : 2, + "drilldown" : "Simon Proctor" + } + ] + } + ], + "legend" : { + "enabled" : 0 + }, + "xAxis" : { + "type" : "category" }, "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", "followPointer" : 1, - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
" + "headerFormat" : "{series.name}
" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index f67a521245..918b365885 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,33 +1,24 @@ { - "legend" : { - "enabled" : "false" - }, "chart" : { "type" : "column" }, + "title" : { + "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" + }, + "subtitle" : { + "text" : "Last updated at 2020-01-16 22:22:38 GMT" + }, "yAxis" : { - "min" : 0, "title" : { "text" : null - } + }, + "min" : 0 }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, - "subtitle" : { - "text" : "Last updated at 2020-01-16 09:24:32 GMT" - }, - "xAxis" : { - "labels" : { - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - } - }, - "type" : "category" - }, - "title" : { - "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" + "legend" : { + "enabled" : "false" }, "series" : [ { @@ -36,13 +27,13 @@ "align" : "right", "enabled" : "true", "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" }, "format" : "{point.y:.0f}", "rotation" : -90, - "color" : "#FFFFFF", - "y" : 10 + "y" : 10, + "color" : "#FFFFFF" }, "data" : [ [ @@ -51,7 +42,7 @@ ], [ "Perl", - 1743 + 1747 ], [ "Raku", @@ -59,5 +50,14 @@ ] ] } - ] + ], + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } + } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index ad00570988..87bc53c0a5 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,27 +1,16 @@ { + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-01-16 22:22:38 GMT" + }, "chart" : { "type" : "column" }, - "legend" : { - "enabled" : "false" - }, - "tooltip" : { - "followPointer" : "true", - "headerFormat" : "", - "pointFormat" : "Challenge {point.name}: {point.y:f}
" - }, - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2020-01-16 09:24:32 GMT" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } + "title" : { + "text" : "Perl Weekly Challenge Language" }, "drilldown" : { "series" : [ { - "id" : "001", "name" : "001", "data" : [ [ @@ -36,11 +25,12 @@ "Blog", 11 ] - ] + ], + "id" : "001" }, { - "id" : "002", "name" : "002", + "id" : "002", "data" : [ [ "Perl", @@ -57,7 +47,7 @@ ] }, { - "name" : "003", + "id" : "003", "data" : [ [ "Perl", @@ -72,10 +62,10 @@ 9 ] ], - "id" : "003" + "name" : "003" }, { - "id" : "004", + "name" : "004", "data" : [ [ "Perl", @@ -90,9 +80,11 @@ 10 ] ], - "name" : "004" + "id" : "004" }, { + "name" : "005", + "id" : "005", "data" : [ [ "Perl", @@ -106,9 +98,7 @@ "Blog", 12 ] - ], - "name" : "005", - "id" : "005" + ] }, { "id" : "006", @@ -130,6 +120,7 @@ }, { "name" : "007", + "id" : "007", "data" : [ [ "Perl", @@ -143,11 +134,9 @@ "Blog", 10 ] - ], - "id" : "007" + ] }, { - "id" : "008", "name" : "008", "data" : [ [ @@ -162,11 +151,11 @@ "Blog", 12 ] - ] + ], + "id" : "008" }, { "id" : "009", - "name" : "009", "data" : [ [ "Perl", @@ -180,9 +169,11 @@ "Blog", 13 ] - ] + ], + "name" : "009" }, { + "id" : "010", "data" : [ [ "Perl", @@ -197,12 +188,9 @@ 11 ] ], - "name" : "010", - "id" : "010" + "name" : "010" }, { - "id" : "011", - "name" : "011", "data" : [ [ "Perl", @@ -216,10 +204,11 @@ "Blog", 10 ] - ] + ], + "id" : "011", + "name" : "011" }, { - "id" : "012", "data" : [ [ "Perl", @@ -234,6 +223,7 @@ 11 ] ], + "id" : "012", "name" : "012" }, { @@ -251,11 +241,10 @@ 13 ] ], - "name" : "013", - "id" : "013" + "id" : "013", + "name" : "013" }, { - "name" : "014", "data" : [ [ "Perl", @@ -270,11 +259,11 @@ 15 ] ], - "id" : "014" + "id" : "014", + "name" : "014" }, { "id" : "015", - "name" : "015", "data" : [ [ "Perl", @@ -288,10 +277,11 @@ "Blog", 15 ] - ] + ], + "name" : "015" }, { - "id" : "016", + "name" : "016", "data" : [ [ "Perl", @@ -306,9 +296,10 @@ 12 ] ], - "name" : "016" + "id" : "016" }, { + "id" : "017", "data" : [ [ "Perl", @@ -323,8 +314,7 @@ 12 ] ], - "name" : "017", - "id" : "017" + "name" : "017" }, { "data" : [ @@ -341,10 +331,12 @@ 14 ] ], - "name" : "018", - "id" : "018" + "id" : "018", + "name" : "018" }, { + "name" : "019", + "id" : "019", "data" : [ [ "Perl", @@ -358,9 +350,7 @@ "Blog", 13 ] - ], - "name" : "019", - "id" : "019" + ] }, { "name" : "020", @@ -395,10 +385,12 @@ 10 ] ], - "name" : "021", - "id" : "021" + "id" : "021", + "name" : "021" }, { + "name" : "022", + "id" : "022", "data" : [ [ "Perl", @@ -412,12 +404,9 @@ "Blog", 10 ] - ], - "name" : "022", - "id" : "022" + ] }, { - "id" : "023", "data" : [ [ "Perl", @@ -432,11 +421,11 @@ 12 ] ], + "id" : "023", "name" : "023" }, { "id" : "024", - "name" : "024", "data" : [ [ "Perl", @@ -450,11 +439,10 @@ "Blog", 11 ] - ] + ], + "name" : "024" }, { - "id" : "025", - "name" : "025", "data" : [ [ "Perl", @@ -468,11 +456,12 @@ "Blog", 12 ] - ] + ], + "id" : "025", + "name" : "025" }, { "id" : "026", - "name" : "026", "data" : [ [ "Perl", @@ -486,9 +475,12 @@ "Blog", 10 ] - ] + ], + "name" : "026" }, { + "name" : "027", + "id" : "027", "data" : [ [ "Perl", @@ -502,13 +494,9 @@ "Blog", 9 ] - ], - "name" : "027", - "id" : "027" + ] }, { - "id" : "028", - "name" : "028", "data" : [ [ "Perl", @@ -522,10 +510,11 @@ "Blog", 9 ] - ] + ], + "id" : "028", + "name" : "028" }, { - "id" : "029", "data" : [ [ "Perl", @@ -540,10 +529,10 @@ 12 ] ], + "id" : "029", "name" : "029" }, { - "id" : "030", "data" : [ [ "Perl", @@ -558,11 +547,10 @@ 10 ] ], + "id" : "030", "name" : "030" }, { - "id" : "031", - "name" : "031", "data" : [ [ "Perl", @@ -576,11 +564,11 @@ "Blog", 9 ] - ] + ], + "id" : "031", + "name" : "031" }, { - "id" : "032", - "name" : "032", "data" : [ [ "Perl", @@ -594,7 +582,9 @@ "Blog", 10 ] - ] + ], + "id" : "032", + "name" : "032" }, { "id" : "033", @@ -615,8 +605,8 @@ "name" : "033" }, { - "id" : "034", "name" : "034", + "id" : "034", "data" : [ [ "Perl", @@ -634,6 +624,7 @@ }, { "name" : "035", + "id" : "035", "data" : [ [ "Perl", @@ -647,10 +638,10 @@ "Blog", 9 ] - ], - "id" : "035" + ] }, { + "name" : "036", "id" : "036", "data" : [ [ @@ -665,8 +656,7 @@ "Blog", 10 ] - ], - "name" : "036" + ] }, { "id" : "037", @@ -687,8 +677,6 @@ "name" : "037" }, { - "id" : "038", - "name" : "038", "data" : [ [ "Perl", @@ -702,10 +690,12 @@ "Blog", 11 ] - ] + ], + "id" : "038", + "name" : "038" }, { - "id" : "039", + "name" : "039", "data" : [ [ "Perl", @@ -720,9 +710,10 @@ 12 ] ], - "name" : "039" + "id" : "039" }, { + "name" : "040", "data" : [ [ "Perl", @@ -737,10 +728,10 @@ 9 ] ], - "name" : "040", "id" : "040" }, { + "id" : "041", "data" : [ [ "Perl", @@ -755,8 +746,7 @@ 7 ] ], - "name" : "041", - "id" : "041" + "name" : "041" }, { "data" : [ @@ -773,14 +763,15 @@ 9 ] ], - "name" : "042", - "id" : "042" + "id" : "042", + "name" : "042" }, { + "name" : "043", "data" : [ [ "Perl", - 8 + 12 ], [ "Raku", @@ -791,32 +782,41 @@ 2 ] ], - "name" : "043", "id" : "043" } ] }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, "xAxis" : { "type" : "category" }, "series" : [ { "name" : "Perl Weekly Challenge Languages", + "colorByPoint" : "true", "data" : [ { - "y" : 140, "name" : "#001", + "y" : 140, "drilldown" : "001" }, { + "drilldown" : "002", "y" : 109, - "name" : "#002", - "drilldown" : "002" + "name" : "#002" }, { - "drilldown" : "003", "name" : "#003", - "y" : 71 + "y" : 71, + "drilldown" : "003" }, { "drilldown" : "004", @@ -824,19 +824,19 @@ "name" : "#004" }, { + "drilldown" : "005", "name" : "#005", - "y" : 71, - "drilldown" : "005" + "y" : 71 }, { - "y" : 48, "name" : "#006", + "y" : 48, "drilldown" : "006" }, { + "drilldown" : "007", "y" : 56, - "name" : "#007", - "drilldown" : "007" + "name" : "#007" }, { "drilldown" : "008", @@ -864,9 +864,9 @@ "name" : "#012" }, { + "drilldown" : "013", "y" : 76, - "name" : "#013", - "drilldown" : "013" + "name" : "#013" }, { "name" : "#014", @@ -874,34 +874,34 @@ "drilldown" : "014" }, { - "drilldown" : "015", + "y" : 93, "name" : "#015", - "y" : 93 + "drilldown" : "015" }, { - "drilldown" : "016", "y" : 66, - "name" : "#016" + "name" : "#016", + "drilldown" : "016" }, { - "drilldown" : "017", "y" : 79, - "name" : "#017" + "name" : "#017", + "drilldown" : "017" }, { "drilldown" : "018", - "y" : 76, - "name" : "#018" + "name" : "#018", + "y" : 76 }, { + "drilldown" : "019", "y" : 95, - "name" : "#019", - "drilldown" : "019" + "name" : "#019" }, { "drilldown" : "020", - "y" : 95, - "name" : "#020" + "name" : "#020", + "y" : 95 }, { "drilldown" : "021", @@ -909,49 +909,49 @@ "name" : "#021" }, { - "drilldown" : "022", + "name" : "#022", "y" : 63, - "name" : "#022" + "drilldown" : "022" }, { - "drilldown" : "023", + "y" : 91, "name" : "#023", - "y" : 91 + "drilldown" : "023" }, { - "drilldown" : "024", + "y" : 70, "name" : "#024", - "y" : 70 + "drilldown" : "024" }, { "drilldown" : "025", - "y" : 55, - "name" : "#025" + "name" : "#025", + "y" : 55 }, { - "drilldown" : "026", "name" : "#026", - "y" : 70 + "y" : 70, + "drilldown" : "026" }, { - "drilldown" : "027", + "y" : 58, "name" : "#027", - "y" : 58 + "drilldown" : "027" }, { "drilldown" : "028", - "name" : "#028", - "y" : 78 + "y" : 78, + "name" : "#028" }, { "drilldown" : "029", - "y" : 77, - "name" : "#029" + "name" : "#029", + "y" : 77 }, { - "name" : "#030", + "drilldown" : "030", "y" : 115, - "drilldown" : "030" + "name" : "#030" }, { "name" : "#031", @@ -959,24 +959,24 @@ "drilldown" : "031" }, { - "name" : "#032", + "drilldown" : "032", "y" : 92, - "drilldown" : "032" + "name" : "#032" }, { - "drilldown" : "033", + "y" : 108, "name" : "#033", - "y" : 108 + "drilldown" : "033" }, { - "drilldown" : "034", + "name" : "#034", "y" : 60, - "name" : "#034" + "drilldown" : "034" }, { - "drilldown" : "035", "y" : 60, - "name" : "#035" + "name" : "#035", + "drilldown" : "035" }, { "y" : 61, @@ -984,54 +984,54 @@ "drilldown" : "036" }, { + "drilldown" : "037", "name" : "#037", - "y" : 63, - "drilldown" : "037" + "y" : 63 }, { + "drilldown" : "038", "name" : "#038", - "y" : 60, - "drilldown" : "038" + "y" : 60 }, { - "drilldown" : "039", + "name" : "#039", "y" : 60, - "name" : "#039" + "drilldown" : "039" }, { + "drilldown" : "040", "name" : "#040", - "y" : 66, - "drilldown" : "040" + "y" : 66 }, { - "drilldown" : "041", + "name" : "#041", "y" : 68, - "name" : "#041" + "drilldown" : "041" }, { "drilldown" : "042", - "y" : 86, - "name" : "#042" + "name" : "#042", + "y" : 86 }, { "drilldown" : "043", - "y" : 18, + "y" : 22, "name" : "#043" } - ], - "colorByPoint" : "true" + ] } ], - "title" : { - "text" : "Perl Weekly Challenge Language" + "legend" : { + "enabled" : "false" }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "format" : "{point.y}", - "enabled" : 1 - }, - "borderWidth" : 0 + "tooltip" : { + "headerFormat" : "", + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "followPointer" : "true" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" } } } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index a813bfe6c0..52edf2ffeb 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,20 +1,292 @@ { - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2020-01-16 09:24:32 GMT" - }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "", - "followPointer" : "true" + "xAxis" : { + "type" : "category" }, + "series" : [ + { + "name" : "Perl Weekly Challenge Leaders", + "colorByPoint" : "true", + "data" : [ + { + "y" : 524, + "name" : "#1: Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld" + }, + { + "y" : 336, + "name" : "#2: Jaldhar H. Vyas", + "drilldown" : "Jaldhar H. Vyas" + }, + { + "drilldown" : "Joelle Maslak", + "y" : 334, + "name" : "#3: Joelle Maslak" + }, + { + "name" : "#4: Ruben Westerberg", + "y" : 332, + "drilldown" : "Ruben Westerberg" + }, + { + "drilldown" : "Adam Russell", + "y" : 280, + "name" : "#5: Adam Russell" + }, + { + "drilldown" : "Arne Sommer", + "name" : "#6: Arne Sommer", + "y" : 258 + }, + { + "y" : 236, + "name" : "#7: Roger Bell West", + "drilldown" : "Roger Bell West" + }, + { + "drilldown" : "E. Choroba", + "name" : "#8: E. Choroba", + "y" : 230 + }, + { + "drilldown" : "Athanasius", + "name" : "#9: Athanasius", + "y" : 208 + }, + { + "drilldown" : "Andrezgz", + "y" : 174, + "name" : "#10: Andrezgz" + }, + { + "drilldown" : "Simon Proctor", + "name" : "#11: Simon Proctor", + "y" : 166 + }, + { + "drilldown" : "Kian-Meng Ang", + "name" : "#12: Kian-Meng Ang", + "y" : 162 + }, + { + "drilldown" : "Duncan C. White", + "y" : 148, + "name" : "#13: Duncan C. White" + }, + { + "drilldown" : "Dave Jacoby", + "y" : 136, + "name" : "#14: Dave Jacoby" + }, + { + "name" : "#15: Javier Luque", + "y" : 130, + "drilldown" : "Javier Luque" + }, + { + "y" : 128, + "name" : "#16: Steven Wilson", + "drilldown" : "Steven Wilson" + }, + { + "drilldown" : "Kevin Colyer", + "y" : 116, + "name" : "#17: Kevin Colyer" + }, + { + "y" : 114, + "name" : "#18: Ryan Thompson", + "drilldown" : "Ryan Thompson" + }, + { + "drilldown" : "Yet Ebreo", + "name" : "#19: Yet Ebreo", + "y" : 114 + }, + { + "y" : 112, + "name" : "#20: Duane Powell", + "drilldown" : "Duane Powell" + }, + { + "drilldown" : "Francis Whittle", + "name" : "#21: Francis Whittle", + "y" : 96 + }, + { + "name" : "#22: Noud Aldenhoven", + "y" : 94, + "drilldown" : "Noud Aldenhoven" + }, + { + "name" : "#23: Burkhard Nickels", + "y" : 92, + "drilldown" : "Burkhard Nickels" + }, + { + "drilldown" : "Colin Crain", + "name" : "#24: Colin Crain", + "y" : 92 + }, + { + "drilldown" : "Feng Chang", + "name" : "#25: Feng Chang", + "y" : 88 + }, + { + "y" : 84, + "name" : "#26: Lubos Kolouch", + "drilldown" : "Lubos Kolouch" + }, + { + "name" : "#27: Daniel Mantovani", + "y" : 82, + "drilldown" : "Daniel Mantovani" + }, + { + "name" : "#28: Mark Senn", + "y" : 80, + "drilldown" : "Mark Senn" + }, + { + "drilldown" : "Gustavo Chaves", + "y" : 72, + "name" : "#29: Gustavo Chaves" + }, + { + "y" : 70, + "name" : "#30: Yozen Hernandez", + "drilldown" : "Yozen Hernandez" + }, + { + "y" : 64, + "name" : "#31: Guillermo Ramos", + "drilldown" : "Guillermo Ramos" + }, + { + "drilldown" : "Ulrich Rieke", + "y" : 64, + "name" : "#32: Ulrich Rieke" + }, + { + "drilldown" : "Jo Christian Oterhals", + "y" : 60, + "name" : "#33: Jo Christian Oterhals" + }, + { + "name" : "#34: Ozzy", + "y" : 56, + "drilldown" : "Ozzy" + }, + { + "drilldown" : "Dr James A. Smith", + "name" : "#35: Dr James A. Smith", + "y" : 52 + }, + { + "drilldown" : "Randy Lauen", + "name" : "#36: Randy Lauen", + "y" : 52 + }, + { + "y" : 48, + "name" : "#37: Daniel Mita", + "drilldown" : "Daniel Mita" + }, + { + "drilldown" : "Markus Holzer", + "name" : "#38: Markus Holzer", + "y" : 48 + }, + { + "drilldown" : "Dave Cross", + "name" : "#39: Dave Cross", + "y" : 46 + }, + { + "y" : 44, + "name" : "#40: Veesh Goldman", + "drilldown" : "Veesh Goldman" + }, + { + "name" : "#41: Lars Balker", + "y" : 38, + "drilldown" : "Lars Balker" + }, + { + "drilldown" : "Saif Ahmed", + "y" : 34, + "name" : "#42: Saif Ahmed" + }, + { + "drilldown" : "Kivanc Yazan", + "name" : "#43: Kivanc Yazan", + "y" : 32 + }, + { + "y" : 32, + "name" : "#44: Mark Anderson", + "drilldown" : "Mark Anderson" + }, + { + "y" : 32, + "name" : "#45: Nick Logan", + "drilldown" : "Nick Logan" + }, + { + "name" : "#46: Pete Houston", + "y" : 28, + "drilldown" : "Pete Houston" + }, + { + "drilldown" : "Alicia Bielsa", + "name" : "#47: Alicia Bielsa", + "y" : 26 + }, + { + "drilldown" : "Walt Mankowski", + "name" : "#48: Walt Mankowski", + "y" : 26 + }, + { + "drilldown" : "Jaime Corchado", + "y" : 24, + "name" : "#49: Jaime Corchado" + }, + { + "drilldown" : "Lars Thegler", + "name" : "#50: Lars Thegler", + "y" : 24 + } + ] + } + ], "yAxis" : { "title" : { "text" : "Total Score" } }, + "legend" : { + "enabled" : "false" + }, + "tooltip" : { + "followPointer" : "true", + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "format" : "{point.y}", + "enabled" : 1 + }, + "borderWidth" : 0 + } + }, "drilldown" : { "series" : [ { + "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld", "data" : [ [ "Blog", @@ -28,12 +300,9 @@ "Raku", 83 ] - ], - "name" : "Laurent Rosenfeld", - "id" : "Laurent Rosenfeld" + ] }, { - "id" : "Jaldhar H. Vyas", "data" : [ [ "Blog", @@ -48,9 +317,11 @@ 72 ] ], + "id" : "Jaldhar H. Vyas", "name" : "Jaldhar H. Vyas" }, { + "id" : "Joelle Maslak", "data" : [ [ "Blog", @@ -65,11 +336,9 @@ 81 ] ], - "name" : "Joelle Maslak", - "id" : "Joelle Maslak" + "name" : "Joelle Maslak" }, { - "id" : "Ruben Westerberg", "name" : "Ruben Westerberg", "data" : [ [ @@ -80,10 +349,10 @@ "Raku", 83 ] - ] + ], + "id" : "Ruben Westerberg" }, { - "id" : "Adam Russell", "data" : [ [ "Blog", @@ -98,9 +367,11 @@ 9 ] ], + "id" : "Adam Russell", "name" : "Adam Russell" }, { + "name" : "Arne Sommer", "data" : [ [ "Blog", @@ -115,11 +386,9 @@ 84 ] ], - "name" : "Arne Sommer", "id" : "Arne Sommer" }, { - "id" : "Roger Bell West", "data" : [ [ "Blog", @@ -134,6 +403,7 @@ 37 ] ], + "id" : "Roger Bell West", "name" : "Roger Bell West" }, { @@ -169,17 +439,18 @@ "id" : "Athanasius" }, { - "id" : "Andrezgz", "name" : "Andrezgz", + "id" : "Andrezgz", "data" : [ [ "Perl", - 85 + 87 ] ] }, { "name" : "Simon Proctor", + "id" : "Simon Proctor", "data" : [ [ "Blog", @@ -193,11 +464,9 @@ "Raku", 71 ] - ], - "id" : "Simon Proctor" + ] }, { - "id" : "Kian-Meng Ang", "name" : "Kian-Meng Ang", "data" : [ [ @@ -208,10 +477,11 @@ "Perl", 38 ] - ] + ], + "id" : "Kian-Meng Ang" }, { - "name" : "Duncan C. White", + "id" : "Duncan C. White", "data" : [ [ "Blog", @@ -222,7 +492,7 @@ 73 ] ], - "id" : "Duncan C. White" + "name" : "Duncan C. White" }, { "id" : "Dave Jacoby", @@ -244,7 +514,6 @@ }, { "id" : "Javier Luque", - "name" : "Javier Luque", "data" : [ [ "Blog", @@ -258,9 +527,11 @@ "Raku", 26 ] - ] + ], + "name" : "Javier Luque" }, { + "id" : "Steven Wilson", "data" : [ [ "Blog", @@ -275,10 +546,10 @@ 1 ] ], - "name" : "Steven Wilson", - "id" : "Steven Wilson" + "name" : "Steven Wilson" }, { + "id" : "Kevin Colyer", "data" : [ [ "Blog", @@ -293,10 +564,11 @@ 55 ] ], - "name" : "Kevin Colyer", - "id" : "Kevin Colyer" + "name" : "Kevin Colyer" }, { + "name" : "Ryan Thompson", + "id" : "Ryan Thompson", "data" : [ [ "Blog", @@ -310,11 +582,10 @@ "Raku", 23 ] - ], - "name" : "Ryan Thompson", - "id" : "Ryan Thompson" + ] }, { + "name" : "Yet Ebreo", "data" : [ [ "Blog", @@ -329,17 +600,16 @@ 21 ] ], - "name" : "Yet Ebreo", "id" : "Yet Ebreo" }, { + "name" : "Duane Powell", "data" : [ [ "Perl", 56 ] ], - "name" : "Duane Powell", "id" : "Duane Powell" }, { @@ -357,18 +627,17 @@ "name" : "Francis Whittle" }, { + "name" : "Noud Aldenhoven", "data" : [ [ "Raku", 47 ] ], - "name" : "Noud Aldenhoven", "id" : "Noud Aldenhoven" }, { "id" : "Burkhard Nickels", - "name" : "Burkhard Nickels", "data" : [ [ "Blog", @@ -382,10 +651,12 @@ "Raku", 4 ] - ] + ], + "name" : "Burkhard Nickels" }, { "name" : "Colin Crain", + "id" : "Colin Crain", "data" : [ [ "Perl", @@ -395,8 +666,7 @@ "Raku", 6 ] - ], - "id" : "Colin Crain" + ] }, { "data" : [ @@ -409,8 +679,8 @@ 23 ] ], - "name" : "Feng Chang", - "id" : "Feng Chang" + "id" : "Feng Chang", + "name" : "Feng Chang" }, { "data" : [ @@ -419,8 +689,8 @@ 42 ] ], - "name" : "Lubos Kolouch", - "id" : "Lubos Kolouch" + "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch" }, { "id" : "Daniel Mantovani", @@ -433,7 +703,6 @@ "name" : "Daniel Mantovani" }, { - "id" : "Mark Senn", "name" : "Mark Senn", "data" : [ [ @@ -444,10 +713,12 @@ "Raku", 30 ] - ] + ], + "id" : "Mark Senn" }, { "name" : "Gustavo Chaves", + "id" : "Gustavo Chaves", "data" : [ [ "Blog", @@ -457,12 +728,11 @@ "Perl", 32 ] - ], - "id" : "Gustavo Chaves" + ] }, { - "id" : "Yozen Hernandez", "name" : "Yozen Hernandez", + "id" : "Yozen Hernandez", "data" : [ [ "Blog", @@ -475,17 +745,16 @@ ] }, { - "id" : "Guillermo Ramos", - "name" : "Guillermo Ramos", "data" : [ [ "Perl", 32 ] - ] + ], + "id" : "Guillermo Ramos", + "name" : "Guillermo Ramos" }, { - "id" : "Ulrich Rieke", "data" : [ [ "Perl", @@ -496,9 +765,11 @@ 20 ] ], + "id" : "Ulrich Rieke", "name" : "Ulrich Rieke" }, { + "id" : "Jo Christian Oterhals", "data" : [ [ "Blog", @@ -513,20 +784,20 @@ 17 ] ], - "name" : "Jo Christian Oterhals", - "id" : "Jo Christian Oterhals" + "name" : "Jo Christian Oterhals" }, { - "id" : "Ozzy", "name" : "Ozzy", "data" : [ [ "Raku", 28 ] - ] + ], + "id" : "Ozzy" }, { + "id" : "Dr James A. Smith", "data" : [ [ "Perl", @@ -537,8 +808,7 @@ 10 ] ], - "name" : "Dr James A. Smith", - "id" : "Dr James A. Smith" + "name" : "Dr James A. Smith" }, { "id" : "Randy Lauen", @@ -597,6 +867,7 @@ "name" : "Dave Cross" }, { + "name" : "Veesh Goldman", "id" : "Veesh Goldman", "data" : [ [ @@ -611,11 +882,10 @@ "Raku", 2 ] - ], - "name" : "Veesh Goldman" + ] }, { - "name" : "Lars Balker", + "id" : "Lars Balker", "data" : [ [ "Perl", @@ -626,11 +896,25 @@ 4 ] ], - "id" : "Lars Balker" + "name" : "Lars Balker" + }, + { + "name" : "Saif Ahmed", + "data" : [ + [ + "Blog", + 1 + ], + [ + "Perl", + 16 + ] + ], + "id" : "Saif Ahmed" }, { - "id" : "Kivanc Yazan", "name" : "Kivanc Yazan", + "id" : "Kivanc Yazan", "data" : [ [ "Perl", @@ -639,6 +923,8 @@ ] }, { + "name" : "Mark Anderson", + "id" : "Mark Anderson", "data" : [ [ "Perl", @@ -648,11 +934,10 @@ "Raku", 2 ] - ], - "name" : "Mark Anderson", - "id" : "Mark Anderson" + ] }, { + "id" : "Nick Logan", "data" : [ [ "Perl", @@ -663,26 +948,11 @@ 8 ] ], - "name" : "Nick Logan", - "id" : "Nick Logan" - }, - { - "name" : "Saif Ahmed", - "data" : [ - [ - "Blog", - 1 - ], - [ - "Perl", - 14 - ] - ], - "id" : "Saif Ahmed" + "name" : "Nick Logan" }, { - "id" : "Pete Houston", "name" : "Pete Houston", + "id" : "Pete Houston", "data" : [ [ "Perl", @@ -691,38 +961,38 @@ ] }, { - "id" : "Alicia Bielsa", + "name" : "Alicia Bielsa", "data" : [ [ "Perl", 13 ] ], - "name" : "Alicia Bielsa" + "id" : "Alicia Bielsa" }, { + "name" : "Walt Mankowski", + "id" : "Walt Mankowski", "data" : [ [ "Perl", 13 ] - ], - "name" : "Walt Mankowski", - "id" : "Walt Mankowski" + ] }, { "name" : "Jaime Corchado", + "id" : "Jaime Corchado", "data" : [ [ "Perl", 12 ] - ], - "id" : "Jaime Corchado" + ] }, { - "id" : "Lars Thegler", "name" : "Lars Thegler", + "id" : "Lars Thegler", "data" : [ [ "Perl", @@ -732,283 +1002,13 @@ } ] }, - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : "false" - }, - "series" : [ - { - "colorByPoint" : "true", - "data" : [ - { - "drilldown" : "Laurent Rosenfeld", - "y" : 524, - "name" : "#1: Laurent Rosenfeld" - }, - { - "drilldown" : "Jaldhar H. Vyas", - "y" : 336, - "name" : "#2: Jaldhar H. Vyas" - }, - { - "y" : 334, - "name" : "#3: Joelle Maslak", - "drilldown" : "Joelle Maslak" - }, - { - "name" : "#4: Ruben Westerberg", - "y" : 332, - "drilldown" : "Ruben Westerberg" - }, - { - "drilldown" : "Adam Russell", - "y" : 280, - "name" : "#5: Adam Russell" - }, - { - "drilldown" : "Arne Sommer", - "y" : 258, - "name" : "#6: Arne Sommer" - }, - { - "drilldown" : "Roger Bell West", - "y" : 236, - "name" : "#7: Roger Bell West" - }, - { - "drilldown" : "E. Choroba", - "name" : "#8: E. Choroba", - "y" : 230 - }, - { - "y" : 208, - "name" : "#9: Athanasius", - "drilldown" : "Athanasius" - }, - { - "name" : "#10: Andrezgz", - "y" : 170, - "drilldown" : "Andrezgz" - }, - { - "drilldown" : "Simon Proctor", - "y" : 166, - "name" : "#11: Simon Proctor" - }, - { - "drilldown" : "Kian-Meng Ang", - "name" : "#12: Kian-Meng Ang", - "y" : 162 - }, - { - "name" : "#13: Duncan C. White", - "y" : 148, - "drilldown" : "Duncan C. White" - }, - { - "drilldown" : "Dave Jacoby", - "name" : "#14: Dave Jacoby", - "y" : 136 - }, - { - "y" : 130, - "name" : "#15: Javier Luque", - "drilldown" : "Javier Luque" - }, - { - "name" : "#16: Steven Wilson", - "y" : 128, - "drilldown" : "Steven Wilson" - }, - { - "drilldown" : "Kevin Colyer", - "name" : "#17: Kevin Colyer", - "y" : 116 - }, - { - "name" : "#18: Ryan Thompson", - "y" : 114, - "drilldown" : "Ryan Thompson" - }, - { - "name" : "#19: Yet Ebreo", - "y" : 114, - "drilldown" : "Yet Ebreo" - }, - { - "y" : 112, - "name" : "#20: Duane Powell", - "drilldown" : "Duane Powell" - }, - { - "drilldown" : "Francis Whittle", - "y" : 96, - "name" : "#21: Francis Whittle" - }, - { - "name" : "#22: Noud Aldenhoven", - "y" : 94, - "drilldown" : "Noud Aldenhoven" - }, - { - "y" : 92, - "name" : "#23: Burkhard Nickels", - "drilldown" : "Burkhard Nickels" - }, - { - "y" : 92, - "name" : "#24: Colin Crain", - "drilldown" : "Colin Crain" - }, - { - "drilldown" : "Feng Chang", - "y" : 88, - "name" : "#25: Feng Chang" - }, - { - "name" : "#26: Lubos Kolouch", - "y" : 84, - "drilldown" : "Lubos Kolouch" - }, - { - "y" : 82, - "name" : "#27: Daniel Mantovani", - "drilldown" : "Daniel Mantovani" - }, - { - "drilldown" : "Mark Senn", - "name" : "#28: Mark Senn", - "y" : 80 - }, - { - "drilldown" : "Gustavo Chaves", - "y" : 72, - "name" : "#29: Gustavo Chaves" - }, - {