aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xchallenge-155/pete-houston/perl/ch-1.pl33
-rwxr-xr-xchallenge-155/pete-houston/perl/ch-2.pl66
-rw-r--r--stats/pwc-current.json399
-rw-r--r--stats/pwc-language-breakdown-summary.json66
-rw-r--r--stats/pwc-language-breakdown.json2146
-rw-r--r--stats/pwc-leaders.json754
-rw-r--r--stats/pwc-summary-1-30.json92
-rw-r--r--stats/pwc-summary-121-150.json60
-rw-r--r--stats/pwc-summary-151-180.json110
-rw-r--r--stats/pwc-summary-181-210.json106
-rw-r--r--stats/pwc-summary-211-240.json34
-rw-r--r--stats/pwc-summary-241-270.json52
-rw-r--r--stats/pwc-summary-31-60.json100
-rw-r--r--stats/pwc-summary-61-90.json126
-rw-r--r--stats/pwc-summary-91-120.json94
-rw-r--r--stats/pwc-summary.json42
16 files changed, 2197 insertions, 2083 deletions
diff --git a/challenge-155/pete-houston/perl/ch-1.pl b/challenge-155/pete-houston/perl/ch-1.pl
new file mode 100755
index 0000000000..8597d689f4
--- /dev/null
+++ b/challenge-155/pete-houston/perl/ch-1.pl
@@ -0,0 +1,33 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 15501.pl
+#
+# USAGE: ./15501.pl [ N ]
+#
+# DESCRIPTION: Output the first N fortunate numbers
+#
+# OPTIONS: If N is omitted, defaults to 8
+# REQUIREMENTS: Math::Prime::Util
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 09/03/22
+#===============================================================================
+
+use strict;
+use warnings;
+use Math::Prime::Util qw/pn_primorial next_prime/;
+
+my %fortunate;
+my $n = 1;
+my $max = shift // 8;
+
+while ($max > keys %fortunate) {
+ my $primorial = pn_primorial ($n);
+ my $m = next_prime ($primorial + 1) - $primorial;
+ $fortunate{$m} = 1;
+ $n++;
+}
+
+print join (', ', sort { $a <=> $b } keys %fortunate) . "\n";
diff --git a/challenge-155/pete-houston/perl/ch-2.pl b/challenge-155/pete-houston/perl/ch-2.pl
new file mode 100755
index 0000000000..82a44d46f5
--- /dev/null
+++ b/challenge-155/pete-houston/perl/ch-2.pl
@@ -0,0 +1,66 @@
+#!/usr/bin/env perl
+#===============================================================================
+#
+# FILE: 15502.pl
+#
+# USAGE: ./15502.pl [ N ]
+#
+# DESCRIPTION: Output the Nth Pisano period
+#
+# OPTIONS: If omitted, N defaults to 3
+# REQUIREMENTS: Perl 5.10.0 for 'state'
+# AUTHOR: Pete Houston (pete), cpan@openstrike.co.uk
+# ORGANIZATION: Openstrike
+# VERSION: 1.0
+# CREATED: 09/03/22
+#===============================================================================
+
+use strict;
+use warnings;
+use feature 'state';
+
+my $next_fib_digit = fib_digit_iterator (shift // 3);
+my (@seq, $pisper);
+
+do {
+ push @seq, $next_fib_digit->();
+ $pisper = pisano_period (@seq);
+} until $pisper > 0;
+
+print "$pisper\n";
+
+sub fib_digit_iterator {
+ my $mod = shift;
+ my @fib = (0, 1); # by definition
+ return sub {
+ my $digit = $fib[0] % $mod;
+ @fib = ($fib[1], $fib[0] + $fib[1]);
+ return $digit;
+ }
+}
+
+sub pisano_period {
+ state $min = 1;
+ # split the sequence into lots of $min, if it doesn't repeat up to
+ # length / 2 then update $min and return false.
+ return 0 if $min > @_ / 2;
+ my @f = splice @_, 0, $min;
+ my @g = splice @_, 0, $min;
+ if (arrdiff (\@f, \@g)) {
+ $min++;
+ return 0;
+ }
+ return $min;
+}
+
+# A modified lift from perlfaq4 with reversed logic
+# Returns 1 if the 2 arrayrefs are different, 0 otherwise
+sub arrdiff {
+ my ($first, $second) = @_;
+ no warnings 'uninitialized';
+ return 1 unless @$first == @$second;
+ for my $i (0 .. $#$first) {
+ return 1 if $first->[$i] ne $second->[$i];
+ }
+ return 0;
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index eebe45b4f6..17475ecc30 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,175 +1,35 @@
{
- "chart" : {
- "type" : "column"
+ "subtitle" : {
+ "text" : "[Champions: 25] Last updated at 2022-03-13 18:36:43 GMT"
},
- "series" : [
- {
- "colorByPoint" : 1,
- "data" : [
- {
- "name" : "Abigail",
- "y" : 2,
- "drilldown" : "Abigail"
- },
- {
- "drilldown" : "Athanasius",
- "name" : "Athanasius",
- "y" : 4
- },
- {
- "drilldown" : "Cheok-Yin Fung",
- "name" : "Cheok-Yin Fung",
- "y" : 3
- },
- {
- "name" : "Colin Crain",
- "y" : 2,
- "drilldown" : "Colin Crain"
- },
- {
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby",
- "y" : 3
- },
- {
- "drilldown" : "E. Choroba",
- "y" : 2,
- "name" : "E. Choroba"
- },
- {
- "y" : 6,
- "name" : "Flavio Poletti",
- "drilldown" : "Flavio Poletti"
- },
- {
- "name" : "James Smith",
- "y" : 3,
- "drilldown" : "James Smith"
- },
- {
- "name" : "Jan Krnavek",
- "y" : 1,
- "drilldown" : "Jan Krnavek"
- },
- {
- "y" : 2,
- "name" : "Jorg Sommrey",
- "drilldown" : "Jorg Sommrey"
- },
- {
- "drilldown" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld",
- "y" : 3
- },
- {
- "drilldown" : "Lubos Kolouch",
- "name" : "Lubos Kolouch",
- "y" : 2
- },
- {
- "y" : 6,
- "name" : "Luca Ferrari",
- "drilldown" : "Luca Ferrari"
- },
- {
- "y" : 2,
- "name" : "Mark Anderson",
- "drilldown" : "Mark Anderson"
- },
- {
- "y" : 4,
- "name" : "Mark Senn",
- "drilldown" : "Mark Senn"
- },
- {
- "y" : 2,
- "name" : "Marton Polgar",
- "drilldown" : "Marton Polgar"
- },
- {
- "y" : 2,
- "name" : "Matthew Neleigh",
- "drilldown" : "Matthew Neleigh"
- },
- {
- "y" : 2,
- "name" : "Niels van Dijke",
- "drilldown" : "Niels van Dijke"
- },
- {
- "name" : "Peter Campbell Smith",
- "y" : 3,
- "drilldown" : "Peter Campbell Smith"
- },
- {
- "drilldown" : "PokGoPun",
- "y" : 2,
- "name" : "PokGoPun"
- },
- {
- "name" : "Robert DiCicco",
- "y" : 2,
- "drilldown" : "Robert DiCicco"
- },
- {
- "drilldown" : "Roger Bell_West",
- "y" : 5,
- "name" : "Roger Bell_West"
- },
- {
- "drilldown" : "Ulrich Rieke",
- "y" : 4,
- "name" : "Ulrich Rieke"
- },
- {
- "y" : 3,
- "name" : "W. Luis Mochan",
- "drilldown" : "W. Luis Mochan"
- }
- ],
- "name" : "The Weekly Challenge - 155"
- }
- ],
"tooltip" : {
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "followPointer" : 1,
"pointFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>",
- "followPointer" : 1
- },
- "xAxis" : {
- "type" : "category"
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>"
},
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "subtitle" : {
- "text" : "[Champions: 24] Last updated at 2022-03-13 12:05:47 GMT"
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
+ "title" : {
+ "text" : "The Weekly Challenge - 155"
},
"drilldown" : {
"series" : [
{
+ "name" : "Abigail",
"data" : [
[
"Perl",
2
]
],
- "id" : "Abigail",
- "name" : "Abigail"
+ "id" : "Abigail"
},
{
- "id" : "Athanasius",
"name" : "Athanasius",
+ "id" : "Athanasius",
"data" : [
[
"Perl",
@@ -182,6 +42,7 @@
]
},
{
+ "id" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
@@ -192,8 +53,7 @@
1
]
],
- "name" : "Cheok-Yin Fung",
- "id" : "Cheok-Yin Fung"
+ "name" : "Cheok-Yin Fung"
},
{
"name" : "Colin Crain",
@@ -216,8 +76,8 @@
1
]
],
- "name" : "Dave Jacoby",
- "id" : "Dave Jacoby"
+ "id" : "Dave Jacoby",
+ "name" : "Dave Jacoby"
},
{
"data" : [
@@ -226,12 +86,10 @@
2
]
],
- "name" : "E. Choroba",
- "id" : "E. Choroba"
+ "id" : "E. Choroba",
+ "name" : "E. Choroba"
},
{
- "name" : "Flavio Poletti",
- "id" : "Flavio Poletti",
"data" : [
[
"Perl",
@@ -245,11 +103,11 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Flavio Poletti",
+ "name" : "Flavio Poletti"
},
{
- "name" : "James Smith",
- "id" : "James Smith",
"data" : [
[
"Perl",
@@ -259,21 +117,23 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "James Smith",
+ "name" : "James Smith"
},
{
+ "name" : "Jan Krnavek",
"data" : [
[
"Raku",
1
]
],
- "name" : "Jan Krnavek",
"id" : "Jan Krnavek"
},
{
- "id" : "Jorg Sommrey",
"name" : "Jorg Sommrey",
+ "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
@@ -282,8 +142,6 @@
]
},
{
- "id" : "Laurent Rosenfeld",
- "name" : "Laurent Rosenfeld",
"data" : [
[
"Perl",
@@ -297,19 +155,22 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld"
},
{
+ "name" : "Lubos Kolouch",
"data" : [
[
"Perl",
2
]
],
- "id" : "Lubos Kolouch",
- "name" : "Lubos Kolouch"
+ "id" : "Lubos Kolouch"
},
{
+ "id" : "Luca Ferrari",
"data" : [
[
"Raku",
@@ -320,22 +181,19 @@
4
]
],
- "id" : "Luca Ferrari",
"name" : "Luca Ferrari"
},
{
+ "id" : "Mark Anderson",
"data" : [
[
"Raku",
2
]
],
- "name" : "Mark Anderson",
- "id" : "Mark Anderson"
+ "name" : "Mark Anderson"
},
{
- "id" : "Mark Senn",
- "name" : "Mark Senn",
"data" : [
[
"Raku",
@@ -345,31 +203,33 @@
"Blog",
2
]
- ]
+ ],
+ "id" : "Mark Senn",
+ "name" : "Mark Senn"
},
{
+ "name" : "Marton Polgar",
"data" : [
[
"Raku",
2
]
],
- "name" : "Marton Polgar",
"id" : "Marton Polgar"
},
{
+ "id" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
],
- "id" : "Matthew Neleigh",
"name" : "Matthew Neleigh"
},
{
- "id" : "Niels van Dijke",
"name" : "Niels van Dijke",
+ "id" : "Niels van Dijke",
"data" : [
[
"Perl",
@@ -378,6 +238,16 @@
]
},
{
+ "id" : "Pete Houston",
+ "data" : [
+ [
+ "Perl",
+ 2
+ ]
+ ],
+ "name" : "Pete Houston"
+ },
+ {
"name" : "Peter Campbell Smith",
"id" : "Peter Campbell Smith",
"data" : [
@@ -393,27 +263,25 @@
},
{
"name" : "PokGoPun",
- "id" : "PokGoPun",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "PokGoPun"
},
{
+ "name" : "Robert DiCicco",
"data" : [
[
"Perl",
2
]
],
- "id" : "Robert DiCicco",
- "name" : "Robert DiCicco"
+ "id" : "Robert DiCicco"
},
{
- "name" : "Roger Bell_West",
- "id" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -427,7 +295,9 @@
"Blog",
1
]
- ]
+ ],
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West"
},
{
"data" : [
@@ -440,10 +310,12 @@
2
]
],
- "name" : "Ulrich Rieke",
- "id" : "Ulrich Rieke"
+ "id" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
},
{
+ "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -453,16 +325,159 @@
"Blog",
1
]
- ],
- "id" : "W. Luis Mochan",
- "name" : "W. Luis Mochan"
+ ]
}
]
},
- "title" : {
- "text" : "The Weekly Challenge - 155"
+ "chart" : {
+ "type" : "column"
+ },
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ }
+ }
+ },
+ "xAxis" : {
+ "type" : "category"
},
"legend" : {
"enabled" : 0
- }
+ },
+ "series" : [
+ {
+ "colorByPoint" : 1,
+ "name" : "The Weekly Challenge - 155",
+ "data" : [
+ {
+ "y" : 2,
+ "drilldown" : "Abigail",
+ "name" : "Abigail"
+ },
+ {
+ "drilldown" : "Athanasius",
+ "name" : "Athanasius",
+ "y" : 4
+ },
+ {
+ "y" : 3,
+ "name" : "Cheok-Yin Fung",
+ "drilldown" : "Cheok-Yin Fung"
+ },
+ {
+ "y" : 2,
+ "name" : "Colin Crain",
+ "drilldown" : "Colin Crain"
+ },
+ {
+ "drilldown" : "Dave Jacoby",
+ "name" : "Dave Jacoby",
+ "y" : 3
+ },
+ {
+ "y" : 2,
+ "name" : "E. Choroba",
+ "drilldown" : "E. Choroba"
+ },
+ {
+ "drilldown" : "Flavio Poletti",
+ "name" : "Flavio Poletti",
+ "y" : 6
+ },
+ {
+ "y" : 3,
+ "name" : "James Smith",
+ "drilldown" : "James Smith"
+ },
+ {
+ "name" : "Jan Krnavek",
+ "drilldown" : "Jan Krnavek",
+ "y" : 1
+ },
+ {
+ "drilldown" : "Jorg Sommrey",
+ "name" : "Jorg Sommrey",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld",
+ "y" : 3
+ },
+ {
+ "y" : 2,
+ "name" : "Lubos Kolouch",
+ "drilldown" : "Lubos Kolouch"
+ },
+ {
+ "drilldown" : "Luca Ferrari",
+ "name" : "Luca Ferrari",
+ "y" : 6
+ },
+ {
+ "y" : 2,
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson"
+ },
+ {
+ "y" : 4,
+ "name" : "Mark Senn",
+ "drilldown" : "Mark Senn"
+ },
+ {
+ "name" : "Marton Polgar",
+ "drilldown" : "Marton Polgar",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Matthew Neleigh",
+ "name" : "Matthew Neleigh",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Niels van Dijke",
+ "name" : "Niels van Dijke",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Pete Houston",
+ "name" : "Pete Houston",
+ "y" : 2
+ },
+ {
+ "y" : 3,
+ "name" : "Peter Campbell Smith",
+ "drilldown" : "Peter Campbell Smith"
+ },
+ {
+ "y" : 2,
+ "name" : "PokGoPun",
+ "drilldown" : "PokGoPun"
+ },
+ {
+ "name" : "Robert DiCicco",
+ "drilldown" : "Robert DiCicco",
+ "y" : 2
+ },
+ {
+ "name" : "Roger Bell_West",
+ "drilldown" : "Roger Bell_West",
+ "y" : 5
+ },
+ {
+ "drilldown" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke",
+ "y" : 4
+ },
+ {
+ "y" : 3,
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
+ }
+ ]
+ }
+ ]
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index c70fd1bd77..95cfd6a9b0 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,25 +1,6 @@
{
- "legend" : {
- "enabled" : "false"
- },
- "title" : {
- "text" : "The Weekly Challenge Contributions [2019 - 2022]"
- },
"series" : [
{
- "dataLabels" : {
- "enabled" : "true",
- "color" : "#FFFFFF",
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- },
- "align" : "right",
- "format" : "{point.y:.0f}",
- "rotation" : -90,
- "y" : 10
- },
- "name" : "Contributions",
"data" : [
[
"Blog",
@@ -27,17 +8,39 @@
],
[
"Perl",
- 7458
+ 7460
],
[
"Raku",
4482
]
- ]
+ ],
+ "name" : "Contributions",
+ "dataLabels" : {
+ "color" : "#FFFFFF",
+ "format" : "{point.y:.0f}",
+ "align" : "right",
+ "enabled" : "true",
+ "rotation" : -90,
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ },
+ "y" : 10
+ }
}
],
- "chart" : {
- "type" : "column"
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ },
+ "type" : "category"
+ },
+ "legend" : {
+ "enabled" : "false"
},
"yAxis" : {
"min" : 0,
@@ -45,19 +48,16 @@
"text" : null
}
},
- "subtitle" : {
- "text" : "Last updated at 2022-03-13 12:05:47 GMT"
+ "title" : {
+ "text" : "The Weekly Challenge Contributions [2019 - 2022]"
+ },
+ "chart" : {
+ "type" : "column"
},
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
- }
+ "subtitle" : {
+ "text" : "Last updated at 2022-03-13 18:36:42 GMT"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index d0156dd003..12552e7c78 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,4 +1,804 @@
{
+ "legend" : {
+ "enabled" : "false"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
+ "series" : [
+ {
+ "name" : "The Weekly Challenge Languages",
+ "colorByPoint" : "true",
+ "data" : [
+ {
+ "name" : "#001",
+ "drilldown" : "001",
+ "y" : 161
+ },
+ {
+ "drilldown" : "002",
+ "name" : "#002",
+ "y" : 125
+ },
+ {
+ "name" : "#003",
+ "drilldown" : "003",
+ "y" : 83
+ },
+ {
+ "name" : "#004",
+ "drilldown" : "004",
+ "y" : 99
+ },
+ {
+ "y" : 78,
+ "name" : "#005",
+ "drilldown" : "005"
+ },
+ {
+ "name" : "#006",
+ "drilldown" : "006",
+ "y" : 58
+ },
+ {
+ "y" : 64,
+ "name" : "#007",
+ "drilldown" : "007"
+ },
+ {
+ "y" : 78,
+ "name" : "#008",
+ "drilldown" : "008"
+ },
+ {
+ "name" : "#009",
+ "drilldown" : "009",
+ "y" : 76
+ },
+ {
+ "drilldown" : "010",
+ "name" : "#010",
+ "y" : 65
+ },
+ {
+ "y" : 85,
+ "name" : "#011",
+ "drilldown" : "011"
+ },
+ {
+ "drilldown" : "012",
+ "name" : "#012",
+ "y" : 89
+ },
+ {
+ "name" : "#013",
+ "drilldown" : "013",
+ "y" : 85
+ },
+ {
+ "y" : 101,
+ "drilldown" : "014",
+ "name" : "#014"
+ },
+ {
+ "name" : "#015",
+ "drilldown" : "015",
+ "y" : 99
+ },
+ {
+ "y" : 71,
+ "drilldown" : "016",
+ "name" : "#016"
+ },
+ {
+ "drilldown" : "017",
+ "name" : "#017",
+ "y" : 84
+ },
+ {
+ "y" : 81,
+ "drilldown" : "018",
+ "name" : "#018"
+ },
+ {
+ "drilldown" : "019",
+ "name" : "#019",
+ "y" : 103
+ },
+ {
+ "y" : 101,
+ "name" : "#020",
+ "drilldown" : "020"
+ },
+ {
+ "name" : "#021",
+ "drilldown" : "021",
+ "y" : 72
+ },
+ {
+ "name" : "#022",
+ "drilldown" : "022",
+ "y" : 68
+ },
+ {
+ "name" : "#023",
+ "drilldown" : "023",
+ "y" : 97
+ },
+ {
+ "y" : 75,
+ "name" : "#024",
+ "drilldown" : "024"
+ },
+ {
+ "name" : "#025",
+ "drilldown" : "025",
+ "y" : 59
+ },
+ {
+ "y" : 74,
+ "name" : "#026",
+ "drilldown" : "026"
+ },
+ {
+ "y" : 62,
+ "drilldown" : "027",
+ "name" : "#027"
+ },
+ {
+ "name" : "#028",
+ "drilldown" : "028",
+ "y" : 82
+ },
+ {
+ "drilldown" : "029",
+ "name" : "#029",
+ "y" : 81
+ },
+ {
+ "name" : "#030",
+ "drilldown" : "030",
+ "y" : 119
+ },
+ {
+ "y" : 91,
+ "drilldown" : "031",
+ "name" : "#031"
+ },
+ {
+ "drilldown" : "032",
+ "name" : "#032",
+ "y" : 96
+ },
+ {
+ "name" : "#033",
+ "drilldown" : "033",
+ "y" : 112
+ },
+ {
+ "name" : "#034",
+ "drilldown" : "034",
+ "y" : 66
+ },
+ {
+ "drilldown" : "035",
+ "name" : "#035",
+ "y" : 66
+ },
+ {
+ "name" : "#036",
+ "drilldown" : "036",
+ "y" : 68
+ },
+ {
+ "name" : "#037",
+ "drilldown" : "037",
+ "y" : 67
+ },
+ {
+ "name" : "#038",
+ "drilldown" : "038",
+ "y" : 68
+ },
+ {
+ "y" : 62,
+ "drilldown" : "039",
+ "name" : "#039"
+ },
+ {
+ "y" : 73,
+ "name" : "#040",
+ "drilldown" : "040"
+ },
+ {
+ "y" : 76,
+ "name" : "#041",
+ "drilldown" : "041"
+ },
+ {
+ "drilldown" : "042",
+ "name" : "#042",
+ "y" : 92
+ },
+ {
+ "y" : 68,
+ "name" : "#043",
+ "drilldown" : "043"
+ },
+ {
+ "drilldown" : "044",
+ "name" : "#044",
+ "y" : 85
+ },
+ {
+ "drilldown" : "045",
+ "name" : "#045",
+ "y" : 96
+ },
+ {
+ "y" : 87,
+ "drilldown" : "046",
+ "name" : "#046"
+ },
+ {
+ "y" : 84,
+ "drilldown" : "047",
+ "name" : "#047"
+ },
+ {
+ "drilldown" : "048",
+ "name" : "#048",
+ "y" : 108
+ },
+ {
+ "drilldown" : "049",
+ "name" : "#049",
+ "y" : 89
+ },
+ {
+ "y" : 98,
+ "drilldown" : "050",
+ "name" : "#050"
+ },
+ {
+ "name" : "#051",
+ "drilldown" : "051",
+ "y" : 89
+ },
+ {
+ "name" : "#052",
+ "drilldown" : "052",
+ "y" : 91
+ },
+ {
+ "name" : "#053",
+ "drilldown" : "053",
+ "y" : 101
+ },
+ {
+ "y" : 103,
+ "name" : "#054",
+ "drilldown" : "054"
+ },
+ {
+