From 9248cd8275c6547fa2f43a8b438b9cd8abdbe543 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Thu, 31 Oct 2019 12:33:48 +0000 Subject: - Added solutions by Fabrizio Poggi. --- challenge-032/fabrizio-poggi/README | 1 + challenge-032/fabrizio-poggi/perl5/ch-1.pl | 31 ++ challenge-032/fabrizio-poggi/perl5/ch-1a.pl | 22 ++ challenge-032/fabrizio-poggi/perl5/ch-2.pl | 30 ++ challenge-032/fabrizio-poggi/perl5/fruits.pl | 56 +++ challenge-032/fabrizio-poggi/perl5/fruits.txt | 220 +++++++++++ members.json | 1 + stats/pwc-current.json | 285 +++++++------- stats/pwc-language-breakdown-summary.json | 56 +-- stats/pwc-language-breakdown.json | 268 ++++++------- stats/pwc-leaders.json | 538 +++++++++++++------------- stats/pwc-summary-1-30.json | 36 +- stats/pwc-summary-121-150.json | 80 ++-- stats/pwc-summary-31-60.json | 126 +++--- stats/pwc-summary-61-90.json | 50 +-- stats/pwc-summary-91-120.json | 70 ++-- stats/pwc-summary.json | 44 ++- 17 files changed, 1149 insertions(+), 765 deletions(-) create mode 100644 challenge-032/fabrizio-poggi/README create mode 100644 challenge-032/fabrizio-poggi/perl5/ch-1.pl create mode 100644 challenge-032/fabrizio-poggi/perl5/ch-1a.pl create mode 100644 challenge-032/fabrizio-poggi/perl5/ch-2.pl create mode 100644 challenge-032/fabrizio-poggi/perl5/fruits.pl create mode 100644 challenge-032/fabrizio-poggi/perl5/fruits.txt diff --git a/challenge-032/fabrizio-poggi/README b/challenge-032/fabrizio-poggi/README new file mode 100644 index 0000000000..3c17b29182 --- /dev/null +++ b/challenge-032/fabrizio-poggi/README @@ -0,0 +1 @@ +Solutions by Fabrizio Poggi. diff --git a/challenge-032/fabrizio-poggi/perl5/ch-1.pl b/challenge-032/fabrizio-poggi/perl5/ch-1.pl new file mode 100644 index 0000000000..3479984608 --- /dev/null +++ b/challenge-032/fabrizio-poggi/perl5/ch-1.pl @@ -0,0 +1,31 @@ +use strict; +use warnings; + +my $filename = 'fruits.txt'; + +open(my $fh, $filename) + or die "Could not open file '$filename' $!"; +chomp(my @lines = <$fh>); +close $fh; + +my $count = 0; +my $line = ""; +my $comma = ","; +my $sep = "|"; +my $hashtag = ""; + +my $temp = "@lines"; +print "Weekly Challenge 32"; +print "\n--- Fruits -----------\n"; + +for $line (@lines) { +if ($count = $temp =~ s/($line)//g) { +format FRUITS = +@>>>>>>>>>>>>>>>>>>> @### +$line, $count +. +select(STDOUT); +$~ = "FRUITS"; +write; + } +} diff --git a/challenge-032/fabrizio-poggi/perl5/ch-1a.pl b/challenge-032/fabrizio-poggi/perl5/ch-1a.pl new file mode 100644 index 0000000000..be79b8ad59 --- /dev/null +++ b/challenge-032/fabrizio-poggi/perl5/ch-1a.pl @@ -0,0 +1,22 @@ +use strict; +use warnings; + +my $filename = 'fruits.txt'; + +open(my $fh, $filename) + or die "Could not open file '$filename' $!"; +chomp(my @lines = <$fh>); +close $fh; + +my $count = 0; +my $line = ""; + +my $temp = "@lines"; +print "Weekly Challenge 32"; +print "\n--- Fruits cvs -------\n"; + +for $line (@lines) { +if ($count = $temp =~ s/($line)//g) { +printf("%s,%s\n", $line, $count); + } +} diff --git a/challenge-032/fabrizio-poggi/perl5/ch-2.pl b/challenge-032/fabrizio-poggi/perl5/ch-2.pl new file mode 100644 index 0000000000..6e21514a41 --- /dev/null +++ b/challenge-032/fabrizio-poggi/perl5/ch-2.pl @@ -0,0 +1,30 @@ +use strict; +use warnings; + +my $filename = 'fruits.txt'; + +open(my $fh, $filename) + or die "Could not open file '$filename' $!"; +chomp(my @lines = <$fh>); +close $fh; + +my $count = 0; +my $line = ""; +my $sep = "|"; +my $hashtag = ""; + +my $temp = "@lines"; +print "\n--- Fruits hashtag ---\n"; + +for $line (@lines) { +if ($count = $temp =~ s/($line)//g) { +$hashtag = "#"x$count; +format HASHES = +@<<<<<<<<<<< @| @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< +$line, $sep, $hashtag +. +select(STDOUT); +$~ = "HASHES"; +write; + } +} diff --git a/challenge-032/fabrizio-poggi/perl5/fruits.pl b/challenge-032/fabrizio-poggi/perl5/fruits.pl new file mode 100644 index 0000000000..379b4e8222 --- /dev/null +++ b/challenge-032/fabrizio-poggi/perl5/fruits.pl @@ -0,0 +1,56 @@ +use strict; +use warnings; + +my $filename = 'fruits.txt'; + +open(my $fh, $filename) + or die "Could not open file '$filename' $!"; +chomp(my @lines = <$fh>); +close $fh; + +my $count = 0; +my $line = ""; +my $comma = ","; +my $sep = "|"; +my $hashtag = ""; + +my $temp = "@lines"; +print "Weekly Challenge 32"; +print "\n--- Fruits -----------\n"; + +for $line (@lines) { +if ($count = $temp =~ s/($line)//g) { +format FRUITS = +@>>>>>>>>>>>>>>>>>>> @### +$line, $count +. +select(STDOUT); +$~ = "FRUITS"; +write; + } +} + +$temp = "@lines"; +print "\n--- Fruits cvs -------\n"; + +for $line (@lines) { +if ($count = $temp =~ s/($line)//g) { +printf("%s%s%s\n", $line, ",", $count); + } +} + +$temp = "@lines"; +print "\n--- Fruits hashtag ---\n"; + +for $line (@lines) { +if ($count = $temp =~ s/($line)//g) { +$hashtag = "#"x$count; +format HASHES = +@<<<<<<<<<<< @| @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< +$line, $sep, $hashtag +. +select(STDOUT); +$~ = "HASHES"; +write; + } +} \ No newline at end of file diff --git a/challenge-032/fabrizio-poggi/perl5/fruits.txt b/challenge-032/fabrizio-poggi/perl5/fruits.txt new file mode 100644 index 0000000000..2d12c15bc1 --- /dev/null +++ b/challenge-032/fabrizio-poggi/perl5/fruits.txt @@ -0,0 +1,220 @@ +Watermelon +Acerola +Apple +Apricots +Avocado +Banana +Blackberries +Apple +Apricots +Blackcurrant +Banana +Blueberries +Apple +Apricots +Grapefruit +Apple +Apricots +Carambola +Breadfruit +Banana +Cantaloupe +Carambola +Cherimoya +Cherries +Clementine +Banana +Coconut +Cranberries +Apple +Apricots +Custard-Apple +DateFruit +Banana +Durian +Grapefruit +Apple +Apricots +Carambola +Apple +Apricots +Elderberries +Feijoa +Figs +Gooseberries +Banana +Grapefruit +Apple +Apricots +Carambola +Cherimoya +Cherries +Clementine +Banana +Coconut +Cranberries +Grapes +Guava +Grapefruit +Apple +Apricots +Carambola +Honeydew-Melon +Banana +Apple +Apricots +Jackfruit +Java-Plum +Banana +Jujube-Fruit +Kiwifruit +Banana +Grapefruit +Apple +Apricots +Carambola +Kumquat +Lemon +Lime +Longan +Banana +Loquat +Apple +Apricots +Lychee +Banana +Grapefruit +Apple +Apricots +Carambola +Mandarin +Mango +Apple +Apricots +Banana +Mangosteen +Mulberries +Nectarine +Banana +Olives +Orange +Banana +Apple +Apricots +Papaya +Mandarin +Mango +Apple +Apricots +Banana +Mangosteen +Mulberries +Nectarine +Banana +Olives +Orange +Banana +Apple +Apricots +Mandarin +Mango +Apple +Apricots +Banana +Mangosteen +Mulberries +Nectarine +Banana +Olives +Orange +Banana +Apple +Apricots +Mandarin +Mango +Apple +Apricots +Banana +Mangosteen +Mulberries +Nectarine +Banana +Olives +Orange +Banana +Apple +Apricots +Mandarin +Mango +Apple +Apricots +Banana +Mangosteen +Mulberries +Nectarine +Banana +Olives +Orange +Banana +Apple +Apricots +Mandarin +Mango +Apple +Apricots +Banana +Mangosteen +Mulberries +Nectarine +Banana +Olives +Orange +Banana +Apple +Apricots +Passion-Fruit +Peaches +Banana +Pear +Persimmon +Pitaya +Banana +Pineapple +Pitanga +Plantain +Plums +Banana +Pomegranate +Prickly-Pear +Prunes +Banana +Pummelo +Quince +Mandarin +Mango +Apple +Apricots +Banana +Mangosteen +Mulberries +Nectarine +Banana +Olives +Orange +Banana +Apple +Apricots +Raspberries +Banana +Rhubarb +Rose-Apple +Sapodilla +Sapote-Mamey +Banana +Soursop +Strawberries +Sugar-Apple +Banana +Tamarind +Tangerine +Watermelon \ No newline at end of file diff --git a/members.json b/members.json index d04e9f6578..d2be715f95 100644 --- a/members.json +++ b/members.json @@ -35,6 +35,7 @@ "duncan-c-white" : "Duncan C. White", "e-choroba" : "E. Choroba", "eddy-hs" : "Eddy HS", + "fabrizio-poggi" : "Fabrizio Poggi", "feng-chang" : "Feng Chang", "finley" : "Finley", "fjwhittle" : "Francis Whittle", diff --git a/stats/pwc-current.json b/stats/pwc-current.json index b9e20c22c8..5b3807ab8e 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,57 +1,169 @@ { + "legend" : { + "enabled" : 0 + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "chart" : { + "type" : "column" + }, + "series" : [ + { + "colorByPoint" : 1, + "data" : [ + { + "name" : "Andrezgz", + "y" : 2, + "drilldown" : "Andrezgz" + }, + { + "y" : 2, + "drilldown" : "Dave Cross", + "name" : "Dave Cross" + }, + { + "name" : "Dave Jacoby", + "y" : 2, + "drilldown" : "Dave Jacoby" + }, + { + "y" : 2, + "drilldown" : "Duane Powell", + "name" : "Duane Powell" + }, + { + "name" : "E. Choroba", + "y" : 2, + "drilldown" : "E. Choroba" + }, + { + "name" : "Fabrizio Poggi", + "y" : 2, + "drilldown" : "Fabrizio Poggi" + }, + { + "y" : 4, + "drilldown" : "Joelle Maslak", + "name" : "Joelle Maslak" + }, + { + "y" : 2, + "drilldown" : "Lars Balker", + "name" : "Lars Balker" + }, + { + "name" : "Lars Thegler", + "drilldown" : "Lars Thegler", + "y" : 2 + }, + { + "name" : "Markus Holzer", + "y" : 2, + "drilldown" : "Markus Holzer" + }, + { + "name" : "Nazareno Delucca", + "y" : 2, + "drilldown" : "Nazareno Delucca" + }, + { + "drilldown" : "Prajith P", + "y" : 2, + "name" : "Prajith P" + }, + { + "name" : "Rage311", + "drilldown" : "Rage311", + "y" : 2 + }, + { + "name" : "Roger Bell West", + "y" : 2, + "drilldown" : "Roger Bell West" + }, + { + "y" : 2, + "drilldown" : "Simon Proctor", + "name" : "Simon Proctor" + }, + { + "name" : "Steven Wilson", + "y" : 2, + "drilldown" : "Steven Wilson" + }, + { + "name" : "Yet Ebreo", + "y" : 2, + "drilldown" : "Yet Ebreo" + } + ], + "name" : "Perl Weekly Challenge - 032" + } + ], + "xAxis" : { + "type" : "category" + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "headerFormat" : "{series.name}
", + "followPointer" : 1 + }, + "subtitle" : { + "text" : "[Champions: 17] Last updated at 2019-10-31 12:32:57 GMT" + }, "plotOptions" : { "series" : { "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" + "format" : "{point.y}", + "enabled" : 1 }, "borderWidth" : 0 } }, - "xAxis" : { - "type" : "category" - }, "drilldown" : { "series" : [ { + "name" : "Andrezgz", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Andrezgz", "id" : "Andrezgz" }, { + "name" : "Dave Cross", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Dave Cross", "id" : "Dave Cross" }, { + "id" : "Dave Jacoby", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Dave Jacoby", "name" : "Dave Jacoby" }, { "name" : "Duane Powell", - "id" : "Duane Powell", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Duane Powell" }, { "name" : "E. Choroba", @@ -64,6 +176,17 @@ ] }, { + "id" : "Fabrizio Poggi", + "data" : [ + [ + "Perl 5", + 2 + ] + ], + "name" : "Fabrizio Poggi" + }, + { + "id" : "Joelle Maslak", "data" : [ [ "Perl 5", @@ -74,18 +197,17 @@ 2 ] ], - "name" : "Joelle Maslak", - "id" : "Joelle Maslak" + "name" : "Joelle Maslak" }, { "id" : "Lars Balker", - "name" : "Lars Balker", "data" : [ [ "Perl 5", 2 ] - ] + ], + "name" : "Lars Balker" }, { "data" : [ @@ -94,28 +216,28 @@ 2 ] ], - "name" : "Lars Thegler", - "id" : "Lars Thegler" + "id" : "Lars Thegler", + "name" : "Lars Thegler" }, { "id" : "Markus Holzer", - "name" : "Markus Holzer", "data" : [ [ "Perl 6", 2 ] - ] + ], + "name" : "Markus Holzer" }, { + "name" : "Nazareno Delucca", + "id" : "Nazareno Delucca", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Nazareno Delucca", - "name" : "Nazareno Delucca" + ] }, { "name" : "Prajith P", @@ -138,155 +260,48 @@ ] }, { + "name" : "Roger Bell West", "data" : [ [ "Perl 5", 2 ] ], - "name" : "Roger Bell West", "id" : "Roger Bell West" }, { + "name" : "Simon Proctor", "data" : [ [ "Perl 6", 2 ] ], - "name" : "Simon Proctor", "id" : "Simon Proctor" }, { + "name" : "Steven Wilson", "data" : [ [ "Perl 5", 2 ] ], - "id" : "Steven Wilson", - "name" : "Steven Wilson" + "id" : "Steven Wilson" }, { - "id" : "Yet Ebreo", - "name" : "Yet Ebreo", "data" : [ [ "Perl 5", 2 ] - ] + ], + "id" : "Yet Ebreo", + "name" : "Yet Ebreo" } ] }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "chart" : { - "type" : "column" - }, - "subtitle" : { - "text" : "[Champions: 16] Last updated at 2019-10-31 11:18:34 GMT" - }, - "legend" : { - "enabled" : 0 - }, "title" : { "text" : "Perl Weekly Challenge - 032" - }, - "series" : [ - { - "name" : "Perl Weekly Challenge - 032", - "colorByPoint" : 1, - "data" : [ - { - "y" : 2, - "drilldown" : "Andrezgz", - "name" : "Andrezgz" - }, - { - "y" : 2, - "drilldown" : "Dave Cross", - "name" : "Dave Cross" - }, - { - "drilldown" : "Dave Jacoby", - "y" : 2, - "name" : "Dave Jacoby" - }, - { - "name" : "Duane Powell", - "drilldown" : "Duane Powell", - "y" : 2 - }, - { - "name" : "E. Choroba", - "drilldown" : "E. Choroba", - "y" : 2 - }, - { - "name" : "Joelle Maslak", - "drilldown" : "Joelle Maslak", - "y" : 4 - }, - { - "name" : "Lars Balker", - "y" : 2, - "drilldown" : "Lars Balker" - }, - { - "name" : "Lars Thegler", - "drilldown" : "Lars Thegler", - "y" : 2 - }, - { - "drilldown" : "Markus Holzer", - "y" : 2, - "name" : "Markus Holzer" - }, - { - "name" : "Nazareno Delucca", - "drilldown" : "Nazareno Delucca", - "y" : 2 - }, - { - "drilldown" : "Prajith P", - "y" : 2, - "name" : "Prajith P" - }, - { - "name" : "Rage311", - "drilldown" : "Rage311", - "y" : 2 - }, - { - "drilldown" : "Roger Bell West", - "y" : 2, - "name" : "Roger Bell West" - }, - { - "y" : 2, - "drilldown" : "Simon Proctor", - "name" : "Simon Proctor" - }, - { - "name" : "Steven Wilson", - "y" : 2, - "drilldown" : "Steven Wilson" - }, - { - "name" : "Yet Ebreo", - "y" : 2, - "drilldown" : "Yet Ebreo" - } - ] - } - ], - "tooltip" : { - "headerFormat" : "{series.name}
", - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : 1 } } diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index 5ee908f63d..e6c4c1c9cb 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,9 +1,22 @@ { - "subtitle" : { - "text" : "Last updated at 2019-10-31 11:18:50 GMT" + "chart" : { + "type" : "column" }, "series" : [ { + "name" : "Contributions", + "dataLabels" : { + "color" : "#FFFFFF", + "rotation" : -90, + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + }, + "format" : "{point.y:.0f}", + "align" : "right", + "enabled" : "true", + "y" : 10 + }, "data" : [ [ "Blog", @@ -11,53 +24,40 @@ ], [ "Perl 5", - 1333 + 1335 ], [ "Perl 6", 784 ] - ], - "name" : "Contributions", - "dataLabels" : { - "y" : 10, - "format" : "{point.y:.0f}", - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - }, - "enabled" : "true", - "color" : "#FFFFFF", - "rotation" : -90, - "align" : "right" - } + ] } ], "legend" : { "enabled" : "false" }, - "chart" : { - "type" : "column" + "title" : { + "text" : "Perl Weekly Challenge Contributions - 2019" }, "tooltip" : { "pointFormat" : "{point.y:.0f}" }, - "title" : { - "text" : "Perl Weekly Challenge Contributions - 2019" - }, "yAxis" : { - "min" : 0, "title" : { "text" : null - } + }, + "min" : 0 + }, + "subtitle" : { + "text" : "Last updated at 2019-10-31 12:33:42 GMT" }, "xAxis" : { + "type" : "category", "labels" : { "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" } - }, - "type" : "category" + } } } diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json index 69234b3e33..82a1302eca 100644 --- a/stats/pwc-language-breakdown.json +++ b/stats/pwc-language-breakdown.json @@ -1,22 +1,23 @@ { - "subtitle" : { - "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-10-31 11:18:50 GMT" - }, - "legend" : { - "enabled" : "false" + "xAxis" : { + "type" : "category" }, "plotOptions" : { "series" : { + "borderWidth" : 0, "dataLabels" : { "enabled" : 1, "format" : "{point.y}" - }, - "borderWidth" : 0 + } } }, + "subtitle" : { + "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-10-31 12:33:42 GMT" + }, "drilldown" : { "series" : [ { + "name" : "001", "data" : [ [ "Perl 5", @@ -31,7 +32,6 @@ 11 ] ], - "name" : "001", "id" : "001" }, { @@ -53,7 +53,6 @@ "id" : "002" }, { - "id" : "003", "name" : "003", "data" : [ [ @@ -68,11 +67,10 @@ "Blog", 9 ] - ] + ], + "id" : "003" }, { - "name" : "004", - "id" : "004", "data" : [ [ "Perl 5", @@ -86,10 +84,11 @@ "Blog", 9 ] - ] + ], + "name" : "004", + "id" : "004" }, { - "name" : "005", "id" : "005", "data" : [ [ @@ -104,9 +103,12 @@ "Blog", 11 ] - ] + ], + "name" : "005" }, { + "id" : "006", + "name" : "006", "data" : [ [ "Perl 5", @@ -120,13 +122,11 @@ "Blog", 7 ] - ], - "id" : "006", - "name" : "006" + ] }, { - "name" : "007", "id" : "007", + "name" : "007", "data" : [ [ "Perl 5", @@ -143,8 +143,8 @@ ] }, { - "name" : "008", "id" : "008", + "name" : "008", "data" : [ [ "Perl 5", @@ -162,7 +162,6 @@ }, { "id" : "009", - "name" : "009", "data" : [ [ "Perl 5", @@ -176,11 +175,12 @@ "Blog", 13 ] - ] + ], + "name" : "009" }, { - "name" : "010", "id" : "010", + "name" : "010", "data" : [ [ "Perl 5", @@ -197,6 +197,8 @@ ] }, { + "id" : "011", + "name" : "011", "data" : [ [ "Perl 5", @@ -210,11 +212,10 @@ "Blog", 9 ] - ], - "name" : "011", - "id" : "011" + ] }, { + "name" : "012", "data" : [ [ "Perl 5", @@ -229,11 +230,9 @@ 11 ] ], - "name" : "012", "id" : "012" }, { - "id" : "013", "name" : "013", "data" : [ [ @@ -248,11 +247,12 @@ "Blog", 13 ] - ] + ], + "id" : "013" }, { - "name" : "014", "id" : "014", + "name" : "014", "data" : [ [ "Perl 5", @@ -269,6 +269,8 @@ ] }, { + "id" : "015", + "name" : "015", "data" : [ [ "Perl 5", @@ -282,9 +284,7 @@ "Blog", 15 ] - ], - "id" : "015", - "name" : "015" + ] }, { "id" : "016", @@ -305,7 +305,6 @@ ] }, { - "name" : "017", "id" : "017", "data" : [ [ @@ -320,7 +319,8 @@ "Blog", 12 ] - ] + ], + "name" : "017" }, { "data" : [ @@ -337,8 +337,8 @@ 14 ] ], - "id" : "018", - "name" : "018" + "name" : "018", + "id" : "018" }, { "data" : [ @@ -355,10 +355,11 @@ 13 ] ], - "id" : "019", - "name" : "019" + "name" : "019", + "id" : "019" }, { + "id" : "020", "data" : [ [ "Perl 5", @@ -373,12 +374,9 @@ 13 ] ], - "name" : "020", - "id" : "020" + "name" : "020" }, { - "name" : "021", - "id" : "021", "data" : [ [ "Perl 5", @@ -392,10 +390,11 @@ "Blog", 10 ] - ] + ], + "name" : "021", + "id" : "021" }, { - "name" : "022", "id" : "022", "data" : [ [ @@ -410,10 +409,10 @@ "Blog", 10 ] - ] + ], + "name" : "022" }, { - "name" : "023", "id" : "023", "data" : [ [ @@ -428,9 +427,12 @@ "Blog", 12 ] - ] + ], + "name" : "023" }, { + "id" : "024", + "name" : "024", "data" : [ [ "Perl 5", @@ -444,9 +446,7 @@ "Blog", 11 ] - ], - "id" : "024", - "name" : "024" + ] }, { "data" : [ @@ -467,8 +467,6 @@ "id" : "025" }, { - "name" : "026", - "id" : "026", "data" : [ [ "Perl 5", @@ -482,11 +480,12 @@ "Blog", 10 ] - ] + ], + "name" : "026", + "id" : "026" }, { "id" : "027", - "name" : "027", "data" : [ [ "Perl 5", @@ -500,9 +499,11 @@ "Blog", 9 ] - ] + ], + "name" : "027" }, { + "id" : "028", "data" : [ [ "Perl 5", @@ -517,11 +518,9 @@ 9 ] ], - "id" : "028", "name" : "028" }, { - "id" : "029", "name" : "029", "data" : [ [ @@ -536,11 +535,10 @@ "Blog", 11 ] - ] + ], + "id" : "029" }, { - "name" : "030", - "id" : "030", "data" : [ [ "Perl 5", @@ -554,11 +552,12 @@ "Blog", 9 ] - ] + ], + "name" : "030", + "id" : "030" }, { "id" : "031", - "name" : "031", "data" : [ [ "Perl 5", @@ -572,7 +571,8 @@ "Blog", 6 ] - ] + ], + "name" : "031" }, { "id" : "032", @@ -580,7 +580,7 @@ "data" : [ [ "Perl 5", - 29 + 31 ], [ "Perl 6", @@ -594,6 +594,25 @@ } ] }, + "tooltip" : { + "pointFormat" : "Challenge {point.name}: {point.y:f}
", + "followPointer" : "true", + "headerFormat" : "" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "title" : { + "text" : "Perl Weekly Challenge Language" + }, + "legend" : { + "enabled" : "false" + }, + "chart" : { + "type" : "column" + }, "series" : [ { "name" : "Perl Weekly Challenge Languages", @@ -604,24 +623,24 @@ "name" : "#001" }, { - "name" : "#002", + "y" : 104, "drilldown" : "002", - "y" : 104 + "name" : "#002" }, { + "name" : "#003", "y" : 67, - "drilldown" : "003", - "name" : "#003" + "drilldown" : "003" }, { - "drilldown" : "004", "y" : 86, + "drilldown" : "004", "name" : "#004" }, { - "drilldown" : "005", + "name" : "#005", "y" : 66, - "name" : "#005" + "drilldown" : "005" }, { "y" : 48, @@ -629,33 +648,33 @@ "name" : "#006" }, { - "drilldown" : "007", "y" : 56, + "drilldown" : "007", "name" : "#007" }, { - "name" : "#008", + "drilldown" : "008", "y" : 70, - "drilldown" : "008" + "name" : "#008" }, { "name" : "#009", - "y" : 68, - "drilldown" : "009" + "drilldown" : "009", + "y" : 68 }, { - "drilldown" : "010", + "name" : "#010", "y" : 60, - "name" : "#010" + "drilldown" : "010" }, { - "y" : 78, + "name" : "#011", "drilldown" : "011", - "name" : "#011" + "y" : 78 }, { - "y" : 83, "drilldown" : "012", + "y" : 83, "name" : "#012" }, { @@ -669,116 +688,97 @@ "name" : "#014" }, { - "name" : "#015", + "drilldown" : "015", "y" : 93, - "drilldown" : "015" + "name" : "#015" }, { - "drilldown" : "016", "y" : 66, + "drilldown" : "016", "name" : "#016" }, { - "name" : "#017", + "y" : 79, "drilldown" : "017", - "y" : 79 + "name" : "#017" }, { - "y" : 76, + "name" : "#018", "drilldown" : "018", - "name" : "#018" + "y" : 76 }, { - "name" : "#019", "y" : 95, - "drilldown" : "019" + "drilldown" : "019", + "name" : "#019" }, { - "name" : "#020", + "drilldown" : "020", "y" : 95, - "drilldown" : "020" + "name" : "#020" }, { "name" : "#021", - "drilldown" : "021", - "y" : 67 + "y" : 67, + "drilldown" : "021" }, { - "name" : "#022", + "drilldown" : "022", "y" : 63, - "drilldown" : "022" + "name" : "#022" }, { - "name" : "#023", "drilldown" : "023", - "y" : 91 + "y" : 91, + "name" : "#023" }, { - "name" : "#024", "y" : 70, - "drilldown" : "024" + "drilldown" : "024", + "name" : "#024" }, { - "drilldown" : "025", "y" : 55, + "drilldown" : "025", "name" : "#025" }, { - "name" : "#026", "y" : 70, - "drilldown" : "026" + "drilldown" : "026", + "name" : "#026" }, { + "name" : "#027", "y" : 58, - "drilldown" : "027", - "name" : "#027" + "drilldown" : "027" }, { - "drilldown" : "028", "y" : 78, + "drilldown" : "028", "name" : "#028" }, { - "name" : "#029", + "y" : 76, "drilldown" : "029", - "y" : 76 + "name" : "#029" }, { + "name" : "#030", "drilldown" : "030", - "y" : 114, - "name" : "#030" + "y" : 114 }, { + "name" : "#031", "drilldown" : "031", - "y" : 84, - "name" : "#031" + "y" : 84 }, { "drilldown" : "032", - "y" : 35, + "y" : 37, "name" : "#032" } ], "colorByPoint" : "true" } - ], - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "tooltip" : { - "pointFormat" : "Challenge {point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" - }, - "title" : { - "text" : "Perl Weekly Challenge Language" - }, - "xAxis" : { - "type" : "category" - }, - "chart" : { - "type" : "column" - } + ] } diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json index 54f31d0efd..b118d965a4 100644 --- a/stats/pwc-leaders.json +++ b/stats/pwc-leaders.json @@ -1,44 +1,61 @@ { + "chart" : { + "type" : "column" + }, + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : "true", + "headerFormat" : "" + }, + "subtitle" : { + "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-10-31 12:33:38 GMT" + }, + "legend" : { + "enabled" : "false" + }, "plotOptions" : { "series" : { - "borderWidth" : 0, "dataLabels" : { "format" : "{point.y}", "enabled" : 1 - } + }, + "borderWidth" : 0 } }, - "chart" : { - "type" : "column" + "yAxis" : { + "title" : { + "text" : "Total Score" + } }, - "tooltip" : { - "pointFormat" : "{point.name}: {point.y:f}
", - "followPointer" : "true", - "headerFormat" : "" + "xAxis" : { + "type" : "category" }, "drilldown" : { "series" : [ { - "id" : "Laurent Rosenfeld", "name" : "Laurent Rosenfeld", + "id" : "Laurent Rosenfeld", "data" : [ [ "Perl 5", 61 ], - [ - "Blog", - 73 - ], [ "Perl 6", 61 + ], + [ + "Blog", + 73 ] ] }, { - "name" : "Joelle Maslak", "data" : [ + [ + "Perl 6", + 78 + ], [ "Perl 5", 78 @@ -46,33 +63,32 @@ [ "Blog", 5 - ], - [ - "Perl 6", - 78 ] ], - "id" : "Joelle Maslak" + "id" : "Joelle Maslak", + "name" : "Joelle Maslak" }, { + "name" : "Jaldhar H. Vyas", + "id" : "Jaldhar H. Vyas", "data" : [ [ "Blog", 18 ], - [ - "Perl 5", - 62 - ], [ "Perl 6", 61 + ], + [ + "Perl 5", + 62 ] - ], - "name" : "Jaldhar H. Vyas", - "id" : "Jaldhar H. Vyas" + ] }, { + "id" : "Ruben Westerberg", + "name" : "Ruben Westerberg", "data" : [ [ "Perl 5", @@ -82,13 +98,14 @@ "Perl 6", 59 ] - ], - "name" : "Ruben Westerberg", - "id" : "Ruben Westerberg" + ] }, { - "name" : "Adam Russell", "data" : [ + [ + "Blog", + 34 + ], [ "Perl 6", 5 @@ -96,35 +113,37 @@ [ "Perl 5", 63 - ], - [ - "Blog", - 34 ] ], + "name" : "Adam Russell", "id" : "Adam Russell" }, { - "id" : "Arne Sommer", - "name" : "Arne Sommer", "data" : [ - [ - "Perl 6", - 62 - ], [ "Blog", 31 ], + [ + "Perl 6", + 62 + ], [ "Perl 5", 3 ] - ] + ], + "id" : "Arne Sommer", + "name" : "Arne Sommer" }, { "id" : "Athanasius", + "name" : "Athanasius", "data" : [ + [ + "Perl 6", + 34 + ], [ "Perl 5", 59 @@ -132,16 +151,10 @@ [ "Blog", 3 - ], - [ - "Perl 6", - 34 ] - ], - "name" : "Athanasius" + ] }, { - "id" : "E. Choroba", "data" : [ [ "Blog", @@ -152,9 +165,12 @@ 56 ] ], - "name" : "E. Choroba" + "name" : "E. Choroba", + "id" : "E. Choroba" }, { + "id" : "Kian-Meng Ang", + "name" : "Kian-Meng Ang", "data" : [ [ "Perl 5", @@ -164,17 +180,10 @@ "Blog", 34 ] - ], - "name" : "Kian-Meng Ang", - "id" : "Kian-Meng Ang" + ] }, { - "id" : "Roger Bell West", "data" : [ - [ - "Perl 6", - 15 - ], [ "Blog", 14 @@ -182,16 +191,19 @@ [ "Perl 5", 36 + ], + [ + "Perl 6", + 15 ] ], + "id" : "Roger Bell West", "name" : "Roger Bell West" }, { + "id" : "Simon Proctor", + "name" : "Simon Proctor", "data" : [ - [ - "Perl 6", - 51 - ], [ "Blog", 7 @@ -199,27 +211,27 @@ [ "Perl 5", 5 + ], + [ + "Perl 6", + 51 ] - ], - "name" : "Simon Proctor", - "id" : "Simon Proctor" + ] }, { - "name" : "Andrezgz", "data" : [ [ "Perl 5", 62 ] ], + "name" : "Andrezgz", "id" : "Andrezgz" }, { + "id" : "Dave Jacoby", + "name" : "Dave Jacoby", "data" : [ - [ - "Blog", - 21 - ], [ "Perl 5", 36 @@ -227,27 +239,28 @@ [ "Perl 6", 1 + ], + [ + "Blog", + 21 ] - ], - "name" : "Dave Jacoby", - "id" : "Dave Jacoby" + ] }, { "id" : "Duncan C. White", + "name" : "Duncan C. White", "data" : [ - [ - "Perl 5", - 56 - ], [ "Blog", 1 + ], + [ + "Perl 5", + 56 ] - ], - "name" : "Duncan C. White" + ] }, { - "name" : "Yet Ebreo", "data" : [ [ "Blog", @@ -262,21 +275,22 @@ 21 ] ], - "id" : "Yet Ebreo" + "id" : "Yet Ebreo", + "name" : "Yet Ebreo" }, { + "id" : "Francis Whittle", "name" : "Francis Whittle", "data" : [ - [ - "Blog", - 9 - ], [ "Perl 6", 39 + ], + [ + "Blog", + 9 ] - ], - "id" : "Francis Whittle" + ] }, { "data" : [ @@ -294,6 +308,7 @@ }, { "id" : "Feng Chang", + "name" : "Feng Chang", "data" : [ [ "Perl 6", @@ -303,30 +318,31 @@ "Perl 5", 21 ] - ], - "name" : "Feng Chang" + ] }, { "id" : "Daniel Mantovani", + "name" : "Daniel Mantovani", "data" : [ [ "Perl 5", 41 ] - ], - "name" : "Daniel Mantovani" + ] }, { - "name" : "Duane Powell", "data" : [ [ "Perl 5", 37 ] ], + "name" : "Duane Powell", "id" : "Duane Powell" }, { + "name" : "Kevin Colyer", + "id" : "Kevin Colyer", "data" : [ [ "Perl 6", @@ -336,11 +352,10 @@ "Perl 5", 2 ] - ], - "name" : "Kevin Colyer", - "id" : "Kevin Colyer" + ] }, { + "id" : "Gustavo Chaves", "name" : "Gustavo Chaves", "data" : [ [ @@ -351,10 +366,11 @@ "Blog", 4 ] - ], - "id" : "Gustavo Chaves" + ] }, { + "id" : "Mark Senn", + "name" : "Mark Senn", "data" : [ [ "Perl 6", @@ -364,27 +380,25 @@ "Blog", 10 ] - ], - "name" : "Mark Senn", - "id" : "Mark Senn" + ] }, { + "name" : "Yozen Hernandez", "id" : "Yozen Hernandez", "data" : [ - [ - "Blog", - 14 - ], [ "Perl 5", 21 + ], + [ + "Blog", + 14 ] - ], - "name" : "Yozen Hernandez" + ] }, { - "id" : "Guillermo Ramos", "name" : "Guillermo Ramos", + "id" : "Guillermo Ramos", "data" : [ [ "Perl 5", @@ -394,53 +408,55 @@ }, { "name" : "Lubos Kolouch", + "id" : "Lubos Kolouch", "data" : [ [ "Perl 5", 32 ] - ], - "id" : "Lubos Kolouch" + ] }, { + "id" : "Noud", + "name" : "Noud", "data" : [ [ "Perl 6", 30 ] - ], - "name" : "Noud", - "id" : "Noud" + ] }, { "name" : "Jo Christian Oterhals", + "id" : "Jo Christian Oterhals", "data" : [ [ - "Perl 6", - 15 + "Blog", + 7 ], [ "Perl 5", 6 ], [ - "Blog", - 7 + "Perl 6", + 15 ] - ], - "id" : "Jo Christian Oterhals" + ] }, { - "id" : "Ozzy", "data" : [ [ "Perl 6", 28 ] ], - "name" : "Ozzy" + "name" : "Ozzy", + "id" : "Ozzy" }, { + "name" : "Randy Lauen", + "id" : "Randy Lauen", "data" : [ [ "Perl 5", @@ -450,12 +466,9 @@ "Perl 6", 17 ] - ], - "name" : "Randy Lauen", - "id" : "Randy Lauen" + ] }, { - "name" : "Dr James A. Smith", "data" : [ [ "Perl 6", @@ -466,15 +479,13 @@ 14 ] ], - "id" : "Dr James A. Smith" + "id" : "Dr James A. Smith", + "name" : "Dr James A. Smith" }, { + "id" : "Veesh Goldman", "name" : "Veesh Goldman", "data" : [ - [ - "Perl 5", - 17 - ], [ "Blog", 3 @@ -482,9 +493,12 @@ [ "Perl 6", 2 + ], + [ + "Perl 5", + 17 ] - ], - "id" : "Veesh Goldman" + ] }, { "data" : [ @@ -497,144 +511,144 @@ 2 ] ], - "name" : "Dave Cross", - "id" : "Dave Cross" + "id" : "Dave Cross", + "name" : "Dave Cross" }, { "id" : "Lars Balker", "name" : "Lars Balker", "data" : [ - [ - "Perl 6", - 4 - ], [ "Perl 5", 15 + ], + [ + "Perl 6", + 4 ] ] }, { - "id" : "Colin Crain", "data" : [ [ "Perl 5", 18 ] ], - "name" : "Colin Crain" + "name" : "Colin Crain", + "id" : "Colin Crain" }, { - "name" : "Markus Holzer", "data" : [ - [ - "Perl 6", - 14 - ], [ "Perl 5", 2 + ], + [ + "Perl 6", + 14 ] ], - "id" : "Markus Holzer" + "id" : "Markus Holzer", + "name" : "Markus Holzer" }, { + "id" : "Nick Logan", + "name" : "Nick Logan", "data" : [ [ - "Perl 5", + "Perl 6", 8 ], [ - "Perl 6", + "Perl 5", 8 ] - ], - "name" : "Nick Logan", - "id" : "Nick Logan" + ] }, { "name" : "Jaime Corchado", + "id" : "Jaime Corchado", "data" : [ [ "Perl 5", 12 ] - ], - "id" : "Jaime Corchado" + ] }, { + "name" : "Kivanc Yazan", + "id" : "Kivanc Yazan", "data" : [ [ "Perl 5", 12 ] - ], - "name" : "Kivanc Yazan", - "id" : "Kivanc Yazan" + ] }, { + "name" : "Maxim Nechaev", "id" : "Maxim Nechaev", "data" : [ [ "Perl 5", 12 ] - ], - "name" : "Maxim Nechaev" + ] }, { + "id" : "Pete Houston", + "name" : "Pete Houston", "data" : [ [ "Perl 5", 12 ] - ], - "name" : "Pete Houston", - "id" : "Pete Houston" + ] }, { - "name" : "Alicia Bielsa", "data" : [ [ "Perl 5", 11 ] ], - "id" : "Alicia Bielsa" + "id" : "Alicia Bielsa", + "name" : "Alicia Bielsa" }, { "data" : [ - [ - "Perl 5", - 2 - ], [ "Perl 6", 8 + ], + [ + "Perl 5", + 2 ] ], - "name" : "Daniel Mita", - "id" : "Daniel Mita" + "id" : "Daniel Mita", + "name" : "Daniel Mita" }, { "name" : "Doug Schrag", + "id" : "Doug Schrag", "data" : [ [ "Perl 6", 10 ] - ], - "id" : "Doug Schrag" + ] }, { - "name" : "Lars Thegler", "data" : [ [ "Perl 5", 10 ] ], - "id" : "Lars Thegler" + "id" : "Lars Thegler", + "name" : "Lars Thegler" }, { "data" : [ @@ -648,27 +662,27 @@ }, { "name" : "Maxim Kolodyazhny", + "id" : "Maxim Kolodyazhny", "data" : [ [ "Perl 5", 9 ] - ], - "id" : "Maxim Kolodyazhny" + ] }, { + "name" : "Neil Bowers", + "id" : "Neil Bowers", "data" : [ - [ - "Blog", - 3 - ], [ "Perl 5", 6 + ], + [ + "Blog", + 3 ] - ], - "name" : "Neil Bowers", - "id" : "Neil Bowers" + ] }, { "id" : "Prajith P", @@ -681,52 +695,45 @@ ] }, { - "name" : "Walt Mankowski", "data" : [ [ "Perl 5", 9 ] ], + "name" : "Walt Mankowski", "id" : "Walt Mankowski" } ] }, - "subtitle" : { - "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-10-31 11:18:47 GMT" - }, - "legend" : { - "enabled" : "false" - }, "series" : [ { - "colorByPoint" : "true", "name" : "Perl Weekly Challenge Leaders", "data" : [ { "y" : 390, - "drilldown" : "Laurent Rosenfeld", - "name" : "#1: Laurent Rosenfeld" + "name" : "#1: Laurent Rosenfeld", + "drilldown" : "Laurent Rosenfeld" }, { - "y" : 322, "drilldown" : "Joelle Maslak", + "y" : 322, "name" : "#2: Joelle Maslak" }, { "name" : "#3: Jaldhar H. Vyas", - "drilldown" : "Jaldhar H. Vyas", - "y" : 282 + "y" : 282, + "drilldown" : "Jaldhar H. Vyas" }, { - "name" : "#4: Ruben Westerberg", "drilldown" : "Ruben Westerberg", + "name" : "#4: Ruben Westerberg", "y" : 236 }, { - "y" : 204, "drilldown" : "Adam Russell", - "name" : "#5: Adam Russell" + "name" : "#5: Adam Russell", + "y" : 204 }, { "name" : "#6: Arne Sommer", @@ -734,9 +741,9 @@ "drilldown" : "Arne Sommer" }, { - "drilldown" : "Athanasius", "y" : 192, - "name" : "#7: Athanasius" + "name" : "#7: Athanasius", + "drilldown" : "Athanasius" }, { "drilldown" : "E. Choroba", @@ -745,18 +752,18 @@ }, { "drilldown" : "Kian-Meng Ang", - "y" : 144, - "name" : "#9: Kian-Meng Ang" + "name" : "#9: Kian-Meng Ang", + "y" : 144 }, { - "name" : "#10: Roger Bell West", "drilldown" : "Roger Bell West", - "y" : 130 + "y" : 130, + "name" : "#10: Roger Bell West" }, { "name" : "#11: Simon Proctor", - "drilldown" : "Simon Proctor", - "y" : 126 + "y" : 126, + "drilldown" : "Simon Proctor" }, { "drilldown" : "Andrezgz", @@ -764,9 +771,9 @@ "name" : "#12: Andrezgz" }, { - "name" : "#13: Dave Jacoby", + "drilldown" : "Dave Jacoby", "y" : 116, - "drilldown" : "Dave Jacoby" + "name" : "#13: Dave Jacoby" }, { "drilldown" : "Duncan C. White", @@ -779,24 +786,24 @@ "name" : "#15: Yet Ebreo" }, { - "y" : 96, "drilldown" : "Francis Whittle", - "name" : "#16: Francis Whittle" + "name" : "#16: Francis Whittle", + "y" : 96 }, { - "drilldown" : "Steven Wilson", + "name" : "#17: Steven Wilson", "y" : 96, - "name" : "#17: Steven Wilson" + "drilldown" : "Steven Wilson" }, { - "name" : "#18: Feng Chang", "drilldown" : "Feng Chang", - "y" : 88 + "y" : 88, + "name" : "#18: Feng Chang" }, { + "name" : "#19: Daniel Mantovani", "y" : 82, - "drilldown" : "Daniel Mantovani", - "name" : "#19: Daniel Mantovani" + "drilldown" : "Daniel Mantovani" }, { "drilldown" : "Duane Powell", @@ -804,24 +811,24 @@ "name" : "#20: Duane Powell" }, { - "name" : "#21: Kevin Colyer", "drilldown" : "Kevin Colyer", + "name" : "#21: Kevin Colyer", "y" : 74 }, { "name" : "#22: Gustavo Chaves", - "drilldown" : "Gustavo Chaves", - "y" : 72 + "y" : 72, + "drilldown" : "Gustavo Chaves" }, { "drilldown" : "Mark Senn", - "y" : 72, - "name" : "#23: Mark Senn" + "name" : "#23: Mark Senn", + "y" : 72 }, { - "name" : "#24: Yozen Hernandez", "drilldown" : "Yozen Hernandez", - "y" : 70 + "y" : 70, + "name" : "#24: Yozen Hernandez" }, { "name" : "#25: Guillermo Ramos", @@ -829,19 +836,19 @@ "drilldown" : "Guillermo Ramos" }, { - "drilldown" : "Lubos Kolouch", "y" : 64, - "name" : "#26: Lubos Kolouch" + "name" : "#26: Lubos Kolouch", + "drilldown" : "Lubos Kolouch" }, { - "drilldown" : "Noud", + "name" : "#27: Noud", "y" : 60, - "name" : "#27: Noud" + "drilldown" : "Noud" }, { "drilldown" : "Jo Christian Oterhals", - "y" : 56, - "name" : "#28: Jo Christian Oterhals" + "name" : "#28: Jo Christian Oterhals", + "y" : 56 }, { "name" : "#29: Ozzy", @@ -850,27 +857,27 @@ }, { "drilldown" : "Randy Lauen", - "y" : 52, - "name" : "#30: Randy Lauen" + "name" : "#30: Randy Lauen", + "y" : 52 }, { "y" : 48, - "drilldown" : "Dr James A. Smith", - "name" : "#31: Dr James A. Smith" + "name" : "#31: Dr James A. Smith", + "drilldown" : "Dr James A. Smith" }, { - "y" : 44, "drilldown" : "Veesh Goldman", - "name" : "#32: Veesh Goldman" + "name" : "#32: Veesh Goldman", + "y" : 44 }, { + "drilldown" : "Dave Cross", "name" : "#33: Dave Cross", - "y" : 38, - "drilldown" : "Dave Cross" + "y" : 38 }, { - "y" : 38, "drilldown" : "Lars Balker", + "y" : 38, "name" : "#34: Lars Balker" }, { @@ -880,28 +887,28 @@ }, { "name" : "#36: Markus Holzer", - "drilldown" : "Markus Holzer", - "y" : 32 + "y" : 32, + "drilldown" : "Markus Holzer" }, { + "drilldown" : "Nick Logan", "name" : "#37: Nick Logan", - "y" : 32, - "drilldown" : "Nick Logan" + "y" : 32 }, { - "y" : 24, "drilldown" : "Jaime Corchado", + "y" : 24, "name" : "#38: Jaime Corchado" }, { - "name" : "#39: Kivanc Yazan", "drilldown" : "Kivanc Yazan", - "y" : 24 + "y" : 24, + "name" : "#39: Kivanc Yazan" }, { + "name" : "#40: Maxim Nechaev", "y" : 24, - "drilldown" : "Maxim Nechaev", - "name" : "#40: Maxim Nechaev" + "drilldown" : "Maxim Nechaev" }, { "drilldown" : "Pete Houston", @@ -909,34 +916,34 @@ "name" : "#41: Pete Houston"