aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-013/guillermo-ramos/perl5/ch-1.pl24
-rw-r--r--challenge-013/guillermo-ramos/perl5/ch-2.pl38
-rw-r--r--challenge-013/guillermo-ramos/perl5/ch-3.pl88
-rw-r--r--stats/pwc-current.json209
-rw-r--r--stats/pwc-language-breakdown-summary.json74
-rw-r--r--stats/pwc-language-breakdown.json140
-rw-r--r--stats/pwc-leaders.json892
-rw-r--r--stats/pwc-summary-1-30.json102
-rw-r--r--stats/pwc-summary-31-60.json48
-rw-r--r--stats/pwc-summary-61-90.json110
-rw-r--r--stats/pwc-summary-91-120.json50
-rw-r--r--stats/pwc-summary.json52
12 files changed, 996 insertions, 831 deletions
diff --git a/challenge-013/guillermo-ramos/perl5/ch-1.pl b/challenge-013/guillermo-ramos/perl5/ch-1.pl
new file mode 100644
index 0000000000..4a436cb6f8
--- /dev/null
+++ b/challenge-013/guillermo-ramos/perl5/ch-1.pl
@@ -0,0 +1,24 @@
+#!/usr/bin/env perl
+#
+# Write a script to print the date of last Friday of every month of a given year
+################################################################################
+
+use strict;
+use warnings;
+
+use Time::Local qw<timelocal>;
+
+die "Usage: $0 <year>\n" unless @ARGV == 1;
+my $year = shift;
+
+my %last_dom = (
+ 0 => 31, 1 => 28, 2 => 31, 3 => 30, 4 => 31, 5 => 30,
+ 6 => 31, 7 => 31, 8 => 30, 9 => 31, 10 => 30, 11 => 31
+ );
+
+foreach my $month (0..11) {
+ my $last_day = $last_dom{$month};
+ my $last_wday = (localtime timelocal(0, 0, 0, $last_day, $month, $year))[6];
+ my $last_friday = $last_day - $last_wday + ($last_wday >= 5 ? 5 : -2);
+ printf "%d/%02d/%d\n", $year, $month+1, $last_friday;
+}
diff --git a/challenge-013/guillermo-ramos/perl5/ch-2.pl b/challenge-013/guillermo-ramos/perl5/ch-2.pl
new file mode 100644
index 0000000000..89091aeb32
--- /dev/null
+++ b/challenge-013/guillermo-ramos/perl5/ch-2.pl
@@ -0,0 +1,38 @@
+#!/usr/bin/env perl
+#
+# Write a script to demonstrate Mutually Recursive methods. Two methods are
+# mutually recursive if the first method calls the second and the second calls
+# first in turn. Using the mutually recursive methods, generate Hofstadter
+# Female and Male sequences.
+# (https://en.wikipedia.org/wiki/Hofstadter_sequence#Hofstadter_Female_and_Male_sequences)
+################################################################################
+
+use strict;
+use warnings;
+
+use Memoize qw<memoize>;
+
+# Cache the results of previous computations
+memoize('M');
+memoize('F');
+
+sub M {
+ my $n = shift;
+ return $n == 0
+ ? 0
+ : $n - F(M($n-1));
+}
+
+sub F {
+ my $n = shift;
+ return $n == 0
+ ? 1
+ : $n - M(F($n-1));
+}
+
+die "Usage: $0 <iterations>\n" unless @ARGV == 1;
+
+print "M\tF\n-\t-\n";
+foreach my $n (0 .. shift) {
+ printf "%d\t%d\n", M($n), F($n);
+}
diff --git a/challenge-013/guillermo-ramos/perl5/ch-3.pl b/challenge-013/guillermo-ramos/perl5/ch-3.pl
new file mode 100644
index 0000000000..5c9be21021
--- /dev/null
+++ b/challenge-013/guillermo-ramos/perl5/ch-3.pl
@@ -0,0 +1,88 @@
+#!/usr/bin/env perl
+#
+# Find the details of a given word using the Words API
+# (https://www.wordsapi.com/docs/)
+#
+# Dependencies: HTTP-Message, LWP, JSON
+################################################################################
+
+use strict;
+use warnings;
+use open ':std', ':encoding(UTF-8)'; # To correctly display pronunciations
+
+use HTTP::Request;
+use LWP::UserAgent;
+use JSON qw<decode_json>;
+
+# API key read from environment
+my $WORDSAPI_KEY = $ENV{'WORDSAPI_KEY'} or die "WORDSAPI_KEY not defined";
+my $WORD = shift or die "Usage: $0 <word>\n";
+
+my $ua = LWP::UserAgent->new;
+$ua->agent("gramos's script for perlweeklychallenge.org");
+my $uri = "https://wordsapiv1.p.mashape.com/words/$WORD";
+my @headers = ("X-Mashape-Key", $WORDSAPI_KEY);
+my $response = $ua->request(HTTP::Request->new("GET", $uri, \@headers));
+
+# Check for errors in API request
+if ($response->is_error()) {
+ if ($response->code == 404) {
+ die "Word '$WORD' not found\n";
+ } else {
+ die "Unknown error: " . $response->message;
+ }
+}
+
+my $json_resp = decode_json $response->content;
+
+my $syllables = $json_resp->{'syllables'};
+if ($syllables && $syllables->{'count'} > 1) {
+ printf "Word: '$WORD' (%s)\n", join("-", @{$syllables->{'list'}});
+} else {
+ print "Word: '$WORD'\n";
+}
+
+my $pronunciation = $json_resp->{'pronunciation'};
+if (ref($pronunciation) eq "HASH") {
+ my %pronunciations = %{$pronunciation};
+ if ($pronunciations{'all'}) {
+ print "Pronunciation: /$pronunciations{'all'}/\n";
+ } else {
+ print "Pronunciation:\n";
+ foreach my $k (keys %pronunciations) {
+ print " as $k: /$pronunciations{$k}/\n";
+ }
+ }
+} elsif ($pronunciation) {
+ # This case is not documented, thanks WordsAPI.
+ print "Pronunciation: /$pronunciation/\n";
+}
+
+my $frequency = $json_resp->{'frequency'};
+if ($frequency) {
+ print "Frequency: ";
+ print $frequency > 5 ? "frequently used"
+ : $frequency > 3 ? "occasionally used"
+ : $frequency > 1 ? "rarely used"
+ : "never used";
+ print "\n";
+}
+
+my $results = $json_resp->{'results'};
+if ($results) {
+ print "Definitions:\n";
+ foreach my $res (@$results) {
+ printf " - (%s) %s\n", $res->{'partOfSpeech'}, $res->{'definition'};
+ my $synonyms = $res->{'synonyms'};
+ if ($synonyms) {
+ printf " synonyms: %s\n", join(", ", @$synonyms);
+ }
+ my $examples = $res->{'examples'};
+ if ($examples) {
+ foreach my $example (@$examples) {
+ print qq' "$example"\n';
+ }
+ }
+ print "\n";
+ }
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 5c40b026c6..7b12a894aa 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,118 +1,83 @@
{
- "xAxis" : {
- "type" : "category"
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "subtitle" : {
+ "text" : "[Champions: 11] Last updated at 2019-06-19 14:10:54 GMT"
},
"chart" : {
"type" : "column"
},
- "subtitle" : {
- "text" : "[Champions: 10] Last updated at 2019-06-19 14:05:52 GMT"
+ "title" : {
+ "text" : "Perl Weekly Challenge - 013"
},
"tooltip" : {
- "followPointer" : 1,
"headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
+ "pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
+ "followPointer" : 1
},
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ }
}
},
- "title" : {
- "text" : "Perl Weekly Challenge - 013"
+ "xAxis" : {
+ "type" : "category"
+ },
+ "legend" : {
+ "enabled" : 0
},
- "series" : [
- {
- "data" : [
- {
- "drilldown" : "Andrezgz",
- "name" : "Andrezgz",
- "y" : 2
- },
- {
- "drilldown" : "Dave Jacoby",
- "y" : 2,
- "name" : "Dave Jacoby"
- },
- {
- "drilldown" : "Gustavo Chaves",
- "y" : 2,
- "name" : "Gustavo Chaves"
- },
- {
- "drilldown" : "Joelle Maslak",
- "name" : "Joelle Maslak",
- "y" : 4
- },
- {
- "y" : 2,
- "name" : "Kevin Colyer",
- "drilldown" : "Kevin Colyer"
- },
- {
- "name" : "Laurent Rosenfeld",
- "y" : 5,
- "drilldown" : "Laurent Rosenfeld"
- },
- {
- "drilldown" : "Ozzy",
- "name" : "Ozzy",
- "y" : 1
- },
- {
- "drilldown" : "Pete Houston",
- "name" : "Pete Houston",
- "y" : 1
- },
- {
- "drilldown" : "Simon Proctor",
- "y" : 3,
- "name" : "Simon Proctor"
- },
- {
- "name" : "Steven Wilson",
- "y" : 2,
- "drilldown" : "Steven Wilson"
- }
- ],
- "name" : "Perl Weekly Challenge - 013",
- "colorByPoint" : 1
- }
- ],
"drilldown" : {
"series" : [
{
- "id" : "Andrezgz",
"data" : [
[
"Perl 5",
2
]
],
+ "id" : "Andrezgz",
"name" : "Andrezgz"
},
{
- "name" : "Dave Jacoby",
- "id" : "Dave Jacoby",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "id" : "Dave Jacoby",
+ "name" : "Dave Jacoby"
},
{
"data" : [
[
"Perl 5",
- 2
+ 3
]
],
+ "id" : "Guillermo Ramos",
+ "name" : "Guillermo Ramos"
+ },
+ {
+ "name" : "Gustavo Chaves",
"id" : "Gustavo Chaves",
- "name" : "Gustavo Chaves"
+ "data" : [
+ [
+ "Perl 5",
+ 2
+ ]
+ ]
},
{
"name" : "Joelle Maslak",
+ "id" : "Joelle Maslak",
"data" : [
[
"Perl 5",
@@ -122,8 +87,7 @@
"Perl 6",
2
]
- ],
- "id" : "Joelle Maslak"
+ ]
},
{
"data" : [
@@ -132,11 +96,10 @@
2
]
],
- "id" : "Kevin Colyer",
- "name" : "Kevin Colyer"
+ "name" : "Kevin Colyer",
+ "id" : "Kevin Colyer"
},
{
- "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl 5",
@@ -151,30 +114,30 @@
1
]
],
- "id" : "Laurent Rosenfeld"
+ "id" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld"
},
{
- "id" : "Ozzy",
"data" : [
[
"Perl 6",
1
]
],
+ "id" : "Ozzy",
"name" : "Ozzy"
},
{
"id" : "Pete Houston",
+ "name" : "Pete Houston",
"data" : [
[
"Perl 5",
1
]
- ],
- "name" : "Pete Houston"
+ ]
},
{
- "name" : "Simon Proctor",
"data" : [
[
"Perl 6",
@@ -185,30 +148,82 @@
1
]
],
+ "name" : "Simon Proctor",
"id" : "Simon Proctor"
},
{
- "id" : "Steven Wilson",
"data" : [
[
"Perl 5",
2
]
],
+ "id" : "Steven Wilson",
"name" : "Steven Wilson"
}
]
},
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
+ "series" : [
+ {
+ "data" : [
+ {
+ "drilldown" : "Andrezgz",
+ "name" : "Andrezgz",
+ "y" : 2
+ },
+ {
+ "name" : "Dave Jacoby",
+ "y" : 2,
+ "drilldown" : "Dave Jacoby"
+ },
+ {
+ "drilldown" : "Guillermo Ramos",
+ "y" : 3,
+ "name" : "Guillermo Ramos"
+ },
+ {
+ "y" : 2,
+ "name" : "Gustavo Chaves",
+ "drilldown" : "Gustavo Chaves"
+ },
+ {
+ "drilldown" : "Joelle Maslak",
+ "y" : 4,
+ "name" : "Joelle Maslak"
+ },
+ {
+ "y" : 2,
+ "name" : "Kevin Colyer",
+ "drilldown" : "Kevin Colyer"
+ },
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld",
+ "y" : 5
+ },
+ {
+ "drilldown" : "Ozzy",
+ "y" : 1,
+ "name" : "Ozzy"
+ },
+ {
+ "y" : 1,
+ "name" : "Pete Houston",
+ "drilldown" : "Pete Houston"
+ },
+ {
+ "drilldown" : "Simon Proctor",
+ "name" : "Simon Proctor",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Steven Wilson",
+ "name" : "Steven Wilson",
+ "y" : 2
+ }
+ ],
+ "colorByPoint" : 1,
+ "name" : "Perl Weekly Challenge - 013"
}
- },
- "legend" : {
- "enabled" : 0
- }
+ ]
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 298f2eb163..3383e0259f 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,40 +1,7 @@
{
- "chart" : {
- "type" : "column"
- },
- "subtitle" : {
- "text" : "Last updated at 2019-06-19 14:05:58 GMT"
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "yAxis" : {
- "title" : {
- "text" : null
- },
- "min" : 0
- },
- "title" : {
- "text" : "Perl Weekly Challenge Contributions - 2019"
- },
- "legend" : {
- "enabled" : "false"
- },
"series" : [
{
"name" : "Contributions",
- "dataLabels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- },
- "color" : "#FFFFFF",
- "format" : "{point.y:.0f}",
- "rotation" : -90,
- "align" : "right",
- "y" : 10,
- "enabled" : "true"
- },
"data" : [
[
"Blog",
@@ -42,22 +9,55 @@
],
[
"Perl 5",
- 503
+ 506
],
[
"Perl 6",
298
]
- ]
+ ],
+ "dataLabels" : {
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ },
+ "format" : "{point.y:.0f}",
+ "y" : 10,
+ "rotation" : -90,
+ "align" : "right",
+ "color" : "#FFFFFF",
+ "enabled" : "true"
+ }
}
],
+ "chart" : {
+ "type" : "column"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Contributions - 2019"
+ },
"xAxis" : {
"type" : "category",
"labels" : {
"style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
}
}
+ },
+ "subtitle" : {
+ "text" : "Last updated at 2019-06-19 14:11:07 GMT"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : null
+ },
+ "min" : 0
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index d25f8f5c14..f3a8185604 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,17 +1,48 @@
{
+ "tooltip" : {
+ "headerFormat" : "<span style=\"font-size:11px\"></span>",
+ "followPointer" : "true",
+ "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
+ },
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-19 14:11:07 GMT"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Language"
+ },
"series" : [
{
- "name" : "Perl Weekly Challenge Languages",
+ "colorByPoint" : "true",
"data" : [
{
"name" : "#001",
- "drilldown" : "001",
- "y" : 123
+ "y" : 123,
+ "drilldown" : "001"
},
{
- "name" : "#002",
"drilldown" : "002",
- "y" : 104
+ "y" : 104,
+ "name" : "#002"
},
{
"drilldown" : "003",
@@ -19,14 +50,14 @@
"name" : "#003"
},
{
- "name" : "#004",
"drilldown" : "004",
- "y" : 84
+ "y" : 84,
+ "name" : "#004"
},
{
- "drilldown" : "005",
+ "name" : "#005",
"y" : 66,
- "name" : "#005"
+ "drilldown" : "005"
},
{
"name" : "#006",
@@ -39,18 +70,18 @@
"name" : "#007"
},
{
- "y" : 67,
+ "name" : "#008",
"drilldown" : "008",
- "name" : "#008"
+ "y" : 67
},
{
"name" : "#009",
- "drilldown" : "009",
- "y" : 62
+ "y" : 62,
+ "drilldown" : "009"
},
{
- "y" : 58,
"drilldown" : "010",
+ "y" : 58,
"name" : "#010"
},
{
@@ -59,48 +90,27 @@
"y" : 75
},
{
- "y" : 80,
+ "name" : "#012",
"drilldown" : "012",
- "name" : "#012"
+ "y" : 80
},
{
- "y" : 24,
- "drilldown" : "013",
- "name" : "#013"
+ "name" : "#013",
+ "y" : 27,
+ "drilldown" : "013"
}
],
- "colorByPoint" : "true"
+ "name" : "Perl Weekly Challenge Languages"
}
],
- "xAxis" : {
- "type" : "category"
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "tooltip" : {
- "headerFormat" : "<span style=\"font-size:11px\"></span>",
- "followPointer" : "true",
- "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>"
- },
- "legend" : {
- "enabled" : "false"
- },
- "title" : {
- "text" : "Perl Weekly Challenge Language"
- },
"chart" : {
"type" : "column"
},
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-19 14:05:58 GMT"
- },
"drilldown" : {
"series" : [
{
"id" : "001",
+ "name" : "001",
"data" : [
[
"Perl 5",
@@ -114,8 +124,7 @@
"Blog",
10
]
- ],
- "name" : "001"
+ ]
},
{
"data" : [
@@ -132,12 +141,10 @@
9
]
],
- "id" : "002",
- "name" : "002"
+ "name" : "002",
+ "id" : "002"
},
{
- "name" : "003",
- "id" : "003",
"data" : [
[
"Perl 5",
@@ -151,7 +158,9 @@
"Blog",
8
]
- ]
+ ],
+ "name" : "003",
+ "id" : "003"
},
{
"name" : "004",
@@ -190,7 +199,6 @@
"id" : "005"
},
{
- "name" : "006",
"data" : [
[
"Perl 5",
@@ -205,10 +213,10 @@
6
]
],
+ "name" : "006",
"id" : "006"
},
{
- "name" : "007",
"id" : "007",
"data" : [
[
@@ -223,10 +231,10 @@
"Blog",
8
]
- ]
+ ],
+ "name" : "007"
},
{
- "id" : "008",
"data" : [
[
"Perl 5",
@@ -241,11 +249,12 @@
9
]
],
- "name" : "008"
+ "name" : "008",
+ "id" : "008"
},
{
- "name" : "009",
"id" : "009",
+ "name" : "009",
"data" : [
[
"Perl 5",
@@ -262,6 +271,8 @@
]
},
{
+ "id" : "010",
+ "name" : "010",
"data" : [
[
"Perl 5",
@@ -275,9 +286,7 @@
"Blog",
9
]
- ],
- "id" : "010",
- "name" : "010"
+ ]
},
{
"id" : "011",
@@ -298,6 +307,7 @@
"name" : "011"
},
{
+ "name" : "012",
"data" : [
[
"Perl 5",
@@ -312,15 +322,14 @@
9
]
],
- "id" : "012",
- "name" : "012"
+ "id" : "012"
},
{
"id" : "013",
"data" : [
[
"Perl 5",
- 13
+ 16
],
[
"Perl 6",
@@ -334,14 +343,5 @@
"name" : "013"
}
]
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
}
}
diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json
index bba9c18385..aefca66f69 100644
--- a/stats/pwc-leaders.json
+++ b/stats/pwc-leaders.json
@@ -1,55 +1,347 @@
{
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Score"
+ }
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "series" : [
+ {
+ "colorByPoint" : "true",
+ "data" : [
+ {
+ "name" : "#1: Joelle Maslak",
+ "drilldown" : "Joelle Maslak",
+ "y" : 132
+ },
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "y" : 132,
+ "name" : "#2: Laurent Rosenfeld"
+ },
+ {
+ "drilldown" : "Jaldhar H. Vyas",
+ "y" : 96,
+ "name" : "#3: Jaldhar H. Vyas"
+ },
+ {
+ "y" : 84,
+ "drilldown" : "Ruben Westerberg",
+ "name" : "#4: Ruben Westerberg"
+ },
+ {
+ "y" : 72,
+ "drilldown" : "Adam Russell",
+ "name" : "#5: Adam Russell"
+ },
+ {
+ "name" : "#6: Simon Proctor",
+ "y" : 66,
+ "drilldown" : "Simon Proctor"
+ },
+ {
+ "name" : "#7: Arne Sommer",
+ "y" : 64,
+ "drilldown" : "Arne Sommer"
+ },
+ {
+ "y" : 64,
+ "drilldown" : "Kian-Meng Ang",
+ "name" : "#8: Kian-Meng Ang"
+ },
+ {
+ "name" : "#9: Athanasius",
+ "y" : 56,
+ "drilldown" : "Athanasius"
+ },
+ {
+ "name" : "#10: Gustavo Chaves",
+ "y" : 54,
+ "drilldown" : "Gustavo Chaves"
+ },
+ {
+ "drilldown" : "Andrezgz",
+ "y" : 50,
+ "name" : "#11: Andrezgz"
+ },
+ {
+ "name" : "#12: Francis Whittle",
+ "y" : 50,
+ "drilldown" : "Francis Whittle"
+ },
+ {
+ "name" : "#13: Dave Jacoby",
+ "drilldown" : "Dave Jacoby",
+ "y" : 48
+ },
+ {
+ "y" : 48,
+ "drilldown" : "E. Choroba",
+ "name" : "#14: E. Choroba"
+ },
+ {
+ "y" : 48,
+ "drilldown" : "Jo Christian Oterhals",
+ "name" : "#15: Jo Christian Oterhals"
+ },
+ {
+ "name" : "#16: Dr James A. Smith",
+ "drilldown" : "Dr James A. Smith",
+ "y" : 44
+ },
+ {
+ "name" : "#17: Daniel Mantovani",
+ "drilldown" : "Daniel Mantovani",
+ "y" : 36
+ },
+ {
+ "y" : 36,
+ "drilldown" : "Duncan C. White",
+ "name" : "#18: Duncan C. White"
+ },
+ {
+ "name" : "#19: Mark Senn",
+ "drilldown" : "Mark Senn",
+ "y" : 32
+ },
+ {
+ "y" : 32,
+ "drilldown" : "Nick Logan",
+ "name" : "#20: Nick Logan"
+ },
+ {
+ "y" : 30,
+ "drilldown" : "Steven Wilson",
+ "name" : "#21: Steven Wilson"
+ },
+ {
+ "drilldown" : "Lars Balker",
+ "y" : 28,
+ "name" : "#22: Lars Balker"
+ },
+ {
+ "name" : "#23: Yozen Hernandez",
+ "y" : 28,
+ "drilldown" : "Yozen Hernandez"
+ },
+ {
+ "name" : "#24: Guillermo Ramos",
+ "y" : 24,
+ "drilldown" : "Guillermo Ramos"
+ },
+ {
+ "drilldown" : "Ozzy",
+ "y" : 24,
+ "name" : "#25: Ozzy"
+ },
+ {
+ "name" : "#26: Alicia Bielsa",
+ "drilldown" : "Alicia Bielsa",
+ "y" : 22
+ },
+ {
+ "name" : "#27: Feng Chang",
+ "y" : 22,
+ "drilldown" : "Feng Chang"
+ },
+ {
+ "drilldown" : "Doug Schrag",
+ "y" : 20,
+ "name" : "#28: Doug Schrag"
+ },
+ {
+ "drilldown" : "Maxim Nechaev",
+ "y" : 20,
+ "name" : "#29: Maxim Nechaev"
+ },
+ {
+ "name" : "#30: Robert Gratza",
+ "drilldown" : "Robert Gratza",
+ "y" : 16
+ },
+ {
+ "drilldown" : "John Barrett",
+ "y" : 14,
+ "name" : "#31: John Barrett"
+ },
+ {
+ "name" : "#32: Khalid",
+ "y" : 14,
+ "drilldown" : "Khalid"
+ },
+ {
+ "name" : "#33: Jaime Corchado",
+ "y" : 12,
+ "drilldown" : "Jaime Corchado"
+ },
+ {
+ "name" : "#34: Kevin Colyer",
+ "drilldown" : "Kevin Colyer",
+ "y" : 12
+ },
+ {
+ "y" : 12,
+ "drilldown" : "Kivanc Yazan",
+ "name" : "#35: Kivanc Yazan"
+ },
+ {
+ "name" : "#36: Maxim Kolodyazhny",
+ "drilldown" : "Maxim Kolodyazhny",
+ "y" : 12
+ },
+ {
+ "y" : 12,
+ "drilldown" : "Philippe Bruhat",
+ "name" : "#37: Philippe Bruhat"
+ },
+ {
+ "name" : "#38: Sergio Iglesias",
+ "y" : 12,
+ "drilldown" : "Sergio Iglesias"
+ },
+ {
+ "name" : "#39: Arpad Toth",
+ "y" : 10,
+ "drilldown" : "Arpad Toth"
+ },
+ {
+ "name" : "#40: Pete Houston",
+ "drilldown" : "Pete Houston",
+ "y" : 10
+ },
+ {
+ "y" : 10,
+ "drilldown" : "Steve Rogerson",
+ "name" : "#41: Steve Rogerson"
+ },
+ {
+ "drilldown" : "Veesh Goldman",
+ "y" : 10,
+ "name" : "#42: Veesh Goldman"
+ },
+ {
+