aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2022-01-30 04:09:52 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2022-01-30 04:09:52 +0000
commit6ebffe2b0337bed8105897fc00e20781194e08d7 (patch)
tree93225f45689f4f58410b9cf48474d0a2ee08a595
parent55bf45bd448354184f196a5c04404b3ff8c7db64 (diff)
downloadperlweeklychallenge-club-6ebffe2b0337bed8105897fc00e20781194e08d7.tar.gz
perlweeklychallenge-club-6ebffe2b0337bed8105897fc00e20781194e08d7.tar.bz2
perlweeklychallenge-club-6ebffe2b0337bed8105897fc00e20781194e08d7.zip
- Added solutions by Ulrich Rieke.
-rw-r--r--challenge-149/ulrich-rieke/cpp/ch-1.cpp46
-rw-r--r--challenge-149/ulrich-rieke/cpp/ch-2.cpp50
-rw-r--r--challenge-149/ulrich-rieke/perl/ch-1.pl38
-rw-r--r--challenge-149/ulrich-rieke/perl/ch-2.pl30
-rw-r--r--challenge-149/ulrich-rieke/raku/ch-1.raku28
-rw-r--r--stats/pwc-current.json209
-rw-r--r--stats/pwc-language-breakdown-summary.json72
-rw-r--r--stats/pwc-language-breakdown.json2096
-rw-r--r--stats/pwc-leaders.json760
-rw-r--r--stats/pwc-summary-1-30.json110
-rw-r--r--stats/pwc-summary-121-150.json102
-rw-r--r--stats/pwc-summary-151-180.json108
-rw-r--r--stats/pwc-summary-181-210.json104
-rw-r--r--stats/pwc-summary-211-240.json102
-rw-r--r--stats/pwc-summary-241-270.json24
-rw-r--r--stats/pwc-summary-31-60.json42
-rw-r--r--stats/pwc-summary-61-90.json46
-rw-r--r--stats/pwc-summary-91-120.json102
-rw-r--r--stats/pwc-summary.json538
19 files changed, 2409 insertions, 2198 deletions
diff --git a/challenge-149/ulrich-rieke/cpp/ch-1.cpp b/challenge-149/ulrich-rieke/cpp/ch-1.cpp
new file mode 100644
index 0000000000..9a370281ac
--- /dev/null
+++ b/challenge-149/ulrich-rieke/cpp/ch-1.cpp
@@ -0,0 +1,46 @@
+nclude <iostream>
+#include <vector>
+#include <cstdlib>
+#include <algorithm>
+
+int findDigitSum( int n ) {
+ int sum = 0 ;
+ while ( n != 0 ) {
+ sum += (n % 10) ;
+ n /= 10 ;
+ }
+ return sum ;
+}
+
+std::vector<int> findFibonaccis( ) {
+ std::vector<int> fibos { 0 , 1 } ;
+ while ( fibos.size( ) < 8 ) {
+ fibos.push_back( fibos.back( ) + fibos[ fibos.size( ) - 2 ] ) ;
+ }
+ return fibos ;
+}
+
+int main( int argc, char * argv[] ) {
+ std::vector<int> fiboDigitSums ;
+ int n = std::atoi( argv[1] ) ;
+ int current = -1 ;
+ std::vector<int> fibonaccis = findFibonaccis( ) ;
+ while ( fiboDigitSums.size( ) < n ) {
+ current++ ;
+ int digitSum = findDigitSum( current ) ;
+ if ( std::find( fibonaccis.begin( ) , fibonaccis.end( ) , digitSum )
+ != fibonaccis.end( ) )
+ fiboDigitSums.push_back( current ) ;
+ if ( digitSum > fibonaccis.back( ) ) {
+ do {
+ fibonaccis.push_back( fibonaccis.back( ) +
+ fibonaccis[ fibonaccis.size( ) - 2] ) ;
+ } while ( fibonaccis.back( ) < digitSum ) ;
+ }
+ }
+ for ( int num : fiboDigitSums ) {
+ std::cout << num << " " ;
+ }
+ std::cout << std::endl ;
+ return 0 ;
+}
diff --git a/challenge-149/ulrich-rieke/cpp/ch-2.cpp b/challenge-149/ulrich-rieke/cpp/ch-2.cpp
new file mode 100644
index 0000000000..abc278d886
--- /dev/null
+++ b/challenge-149/ulrich-rieke/cpp/ch-2.cpp
@@ -0,0 +1,50 @@
+#include <iostream>
+#include <string>
+#include <algorithm>
+#include <cstdlib>
+#include <cmath>
+#include <iterator>
+
+long parseBase( std::string numberstring , int base ) {
+ static std::string allBases {"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"} ;
+ long base10 = 0 ;
+ long current = 1 ;
+ auto start { allBases.begin( ) } ;
+ std::reverse( numberstring.begin( ) , numberstring.end( ) ) ;
+ for ( auto c : numberstring ) {
+ auto found = std::find( allBases.begin( ) , allBases.end( ) , c ) ;
+ long steps = static_cast<long>( std::distance(start , found )) ;
+ base10 += steps * current ;
+ current *= base ;
+ }
+ return base10 ;
+}
+
+bool isPerfectSquare( long number ) {
+ long double root = sqrtl( static_cast<long double>( number ) ) ;
+ return ( floorl( root ) == root ) ;
+}
+
+
+int main( int argc, char * argv[0] ) {
+ int n = std::atoi( argv[1] ) ;
+ std::string allBases {"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"} ;
+ std::string selection { allBases.substr( 0 , n ) } ;
+ reverse( selection.begin( ) , selection.end( ) ) ;
+ bool found = false ;
+ do {
+ long theNumber = 0 ;
+ if ( n == 10 )
+ theNumber = std::stoul( selection ) ;
+ else
+ theNumber = parseBase( selection , n ) ;
+ if ( isPerfectSquare( theNumber ) ) {
+ std::cout << selection << std::endl ;
+ found = true ;
+ break ;
+ }
+ } while ( std::prev_permutation( selection.begin( ) , selection.end( ) )) ;
+ if ( found == false )
+ std::cout << "no perfect square in base " << n << " was found!\n" ;
+ return 0 ;
+}
diff --git a/challenge-149/ulrich-rieke/perl/ch-1.pl b/challenge-149/ulrich-rieke/perl/ch-1.pl
new file mode 100644
index 0000000000..d4ce0365f9
--- /dev/null
+++ b/challenge-149/ulrich-rieke/perl/ch-1.pl
@@ -0,0 +1,38 @@
+#!/usr/bin/perl ;
+use strict ;
+use warnings ;
+use feature 'say' ;
+use List::Util qw( sum ) ;
+
+sub find {
+ my $num = shift ;
+ my $fibos = shift ;
+ for my $fibonum( @$fibos ) {
+ if ( $num == $fibonum ) {
+ return 1 ;
+ }
+ }
+ return 0 ;
+}
+
+my @fibonaccis = (0 , 1 ) ;
+while ( scalar( @fibonaccis ) < 8 ) {
+ push @fibonaccis , $fibonaccis[-1] + $fibonaccis[-2] ;
+}
+my $N = $ARGV[0] ;
+my @fiboDigitSums ;
+my $current = -1 ;
+my $sumOfDigits ;
+while ( scalar( @fiboDigitSums ) < $N ) {
+ $current++ ;
+ $sumOfDigits = sum( split( // , $current ) ) ;
+ if ( find( $sumOfDigits , \@fibonaccis ) ) {
+ push @fiboDigitSums, $current ;
+ }
+ if ( $sumOfDigits > $fibonaccis[-1] ) {
+ do {
+ push @fibonaccis, $fibonaccis[-1] + $fibonaccis[-2] ;
+ } while ( $sumOfDigits > $fibonaccis[-1] ) ;
+ }
+}
+say join( ',' , @fiboDigitSums ) ;
diff --git a/challenge-149/ulrich-rieke/perl/ch-2.pl b/challenge-149/ulrich-rieke/perl/ch-2.pl
new file mode 100644
index 0000000000..6ed54af361
--- /dev/null
+++ b/challenge-149/ulrich-rieke/perl/ch-2.pl
@@ -0,0 +1,30 @@
+#!/usr/bin/perl ;
+use strict ;
+use warnings ;
+use feature 'say' ;
+use Algorithm::Combinatorics qw ( permutations ) ;
+use Math::BigInt ;
+use Math::BigFloat ;
+
+sub isPerfectSquare {
+ my $number = shift ;
+ my $floater = Math::BigFloat->new( "$number" ) ;
+ $floater->bsqrt( ) ;
+ return ( $floater->is_int( ) ) ;
+}
+
+my $N = $ARGV[0] ;
+my @bases = ('0' .. '9') ;
+push @bases , ('A' .. 'Z') ;
+my @possibleDigits = @bases[0 .. $N - 1] ;
+my @reversed = reverse @possibleDigits ;
+my $iter = permutations( \@reversed ) ;
+while ( my $c = $iter->next ) {
+ my $num = join( '' , @$c ) ;
+ my $toBase10 = Math::BigInt->from_base( $num , $N ) ;
+ if ( isPerfectSquare( $toBase10 ) ) {
+ say $num ;
+ exit( 0 ) ;
+ }
+}
+say "No perfect square with different digits for this base!"
diff --git a/challenge-149/ulrich-rieke/raku/ch-1.raku b/challenge-149/ulrich-rieke/raku/ch-1.raku
new file mode 100644
index 0000000000..ce09c995fa
--- /dev/null
+++ b/challenge-149/ulrich-rieke/raku/ch-1.raku
@@ -0,0 +1,28 @@
+use v6 ;
+
+sub inFibo( $n , @numbers ) {
+ return $n == 0 || $n == 1 || $n (elem) @numbers[2..@numbers.elems - 1].Set ;
+}
+
+sub MAIN( Int $N ) {
+ my @fibonaccis = (0 , 1) ;
+ while ( @fibonaccis.elems < 8 ) {
+ @fibonaccis.push( @fibonaccis[*-1] + @fibonaccis[*-2] ) ;
+ }
+ my @fibonacciDigitSum ;
+ my $current = -1 ;
+ my $sumOfDigits ;
+ while ( @fibonacciDigitSum.elems < $N ) {
+ $current++ ;
+ $sumOfDigits = (~$current).comb.map( {.Int} ).sum ;
+ if ( inFibo( $sumOfDigits , @fibonaccis) ) {
+ @fibonacciDigitSum.push( $current ) ;
+ }
+ if ( $sumOfDigits > @fibonaccis[*-1] ) {
+ repeat {
+ @fibonaccis.push( @fibonaccis[*-1] + @fibonaccis[*-2] ) ;
+ } until ( $sumOfDigits < @fibonaccis[*-1] ) ;
+ }
+ }
+ say @fibonacciDigitSum.join( ',' ) ;
+}
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 2eee36d552..63d4da74b9 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,8 +1,37 @@
{
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Solutions"
+ }
+ },
+ "tooltip" : {
+ "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/>",
+ "followPointer" : 1
+ },
+ "title" : {
+ "text" : "The Weekly Challenge - 149"
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "subtitle" : {
+ "text" : "[Champions: 21] Last updated at 2022-01-30 04:06:45 GMT"
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "enabled" : 1,
+ "format" : "{point.y}"
+ },
+ "borderWidth" : 0
+ }
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
"series" : [
{
- "name" : "The Weekly Challenge - 149",
- "colorByPoint" : 1,
"data" : [
{
"drilldown" : "Abigail",
@@ -10,44 +39,44 @@
"name" : "Abigail"
},
{
- "drilldown" : "Alexander Pankoff",
"y" : 2,
- "name" : "Alexander Pankoff"
+ "name" : "Alexander Pankoff",
+ "drilldown" : "Alexander Pankoff"
},
{
- "drilldown" : "Cheok-Yin Fung",
"y" : 2,
- "name" : "Cheok-Yin Fung"
+ "name" : "Cheok-Yin Fung",
+ "drilldown" : "Cheok-Yin Fung"
},
{
+ "y" : 1,
"name" : "Colin Crain",
- "drilldown" : "Colin Crain",
- "y" : 1
+ "drilldown" : "Colin Crain"
},
{
"y" : 4,
- "drilldown" : "Dave Jacoby",
- "name" : "Dave Jacoby"
+ "name" : "Dave Jacoby",
+ "drilldown" : "Dave Jacoby"
},
{
- "y" : 2,
"drilldown" : "E. Choroba",
- "name" : "E. Choroba"
+ "name" : "E. Choroba",
+ "y" : 2
},
{
+ "drilldown" : "Flavio Poletti",
"name" : "Flavio Poletti",
- "y" : 6,
- "drilldown" : "Flavio Poletti"
+ "y" : 6
},
{
- "name" : "James Smith",
"drilldown" : "James Smith",
+ "name" : "James Smith",
"y" : 3
},
{
+ "name" : "Jorg Sommrey",
"y" : 2,
- "drilldown" : "Jorg Sommrey",
- "name" : "Jorg Sommrey"
+ "drilldown" : "Jorg Sommrey"
},
{
"drilldown" : "Laurent Rosenfeld",
@@ -55,14 +84,14 @@
"name" : "Laurent Rosenfeld"
},
{
- "y" : 1,
"drilldown" : "Lubos Kolouch",
- "name" : "Lubos Kolouch"
+ "name" : "Lubos Kolouch",
+ "y" : 1
},
{
- "y" : 4,
"drilldown" : "Luca Ferrari",
- "name" : "Luca Ferrari"
+ "name" : "Luca Ferrari",
+ "y" : 4
},
{
"drilldown" : "Mark Anderson",
@@ -80,66 +109,46 @@
"drilldown" : "Mohammad S Anwar"
},
{
+ "name" : "Niels van Dijke",
"y" : 1,
- "drilldown" : "Niels van Dijke",
- "name" : "Niels van Dijke"
+ "drilldown" : "Niels van Dijke"
},
{
- "drilldown" : "Peter Campbell Smith",
"y" : 3,
- "name" : "Peter Campbell Smith"
+ "name" : "Peter Campbell Smith",
+ "drilldown" : "Peter Campbell Smith"
},
{
- "name" : "Robert DiCicco",
"drilldown" : "Robert DiCicco",
+ "name" : "Robert DiCicco",
"y" : 1
},
{
"drilldown" : "Roger Bell_West",
- "y" : 5,
- "name" : "Roger Bell_West"
+ "name" : "Roger Bell_West",
+ "y" : 5
},
{
"y" : 3,
+ "name" : "Ulrich Rieke",
+ "drilldown" : "Ulrich Rieke"
+ },
+ {
"drilldown" : "W. Luis Mochan",
- "name" : "W. Luis Mochan"
+ "name" : "W. Luis Mochan",
+ "y" : 3
}
- ]
+ ],
+ "name" : "The Weekly Challenge - 149",
+ "colorByPoint" : 1
}
],
- "subtitle" : {
- "text" : "[Champions: 20] Last updated at 2022-01-30 03:46:35 GMT"
- },
- "xAxis" : {
- "type" : "category"
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
- },
- "yAxis" : {
- "title" : {
- "text" : "Total Solutions"
- }
- },
- "chart" : {
- "type" : "column"
- },
"legend" : {
"enabled" : 0
},
- "title" : {
- "text" : "The Weekly Challenge - 149"
- },
"drilldown" : {
"series" : [
{
- "id" : "Abigail",
"data" : [
[
"Perl",
@@ -150,20 +159,20 @@
2
]
],
+ "id" : "Abigail",
"name" : "Abigail"
},
{
- "name" : "Alexander Pankoff",
- "id" : "Alexander Pankoff",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "id" : "Alexander Pankoff",
+ "name" : "Alexander Pankoff"
},
{
- "id" : "Cheok-Yin Fung",
"data" : [
[
"Perl",
@@ -174,20 +183,20 @@
1
]
],
- "name" : "Cheok-Yin Fung"
+ "name" : "Cheok-Yin Fung",
+ "id" : "Cheok-Yin Fung"
},
{
+ "name" : "Colin Crain",
"id" : "Colin Crain",
"data" : [
[
"Blog",
1
]
- ],
- "name" : "Colin Crain"
+ ]
},
{
- "name" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -198,19 +207,21 @@
2
]
],
+ "name" : "Dave Jacoby",
"id" : "Dave Jacoby"
},
{
+ "name" : "E. Choroba",
"id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "E. Choroba"
+ ]
},
{
+ "name" : "Flavio Poletti",
"id" : "Flavio Poletti",
"data" : [
[
@@ -225,11 +236,11 @@
"Blog",
2
]
- ],
- "name" : "Flavio Poletti"
+ ]
},
{
"name" : "James Smith",
+ "id" : "James Smith",
"data" : [
[
"Perl",
@@ -239,18 +250,17 @@
"Blog",
1
]
- ],
- "id" : "James Smith"
+ ]
},
{
- "name" : "Jorg Sommrey",
- "id" : "Jorg Sommrey",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Jorg Sommrey",
+ "id" : "Jorg Sommrey"
},
{
"name" : "Laurent Rosenfeld",
@@ -271,13 +281,13 @@
]
},
{
- "name" : "Lubos Kolouch",
"data" : [
[
"Perl",
1
]
],
+ "name" : "Lubos Kolouch",
"id" : "Lubos Kolouch"
},
{
@@ -291,12 +301,12 @@
2
]
],
- "id" : "Luca Ferrari",
- "name" : "Luca Ferrari"
+ "name" : "Luca Ferrari",
+ "id" : "Luca Ferrari"
},
{
- "name" : "Mark Anderson",
"id" : "Mark Anderson",
+ "name" : "Mark Anderson",
"data" : [
[
"Raku",
@@ -305,14 +315,14 @@
]
},
{
+ "id" : "Matthew Neleigh",
+ "name" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Matthew Neleigh",
- "name" : "Matthew Neleigh"
+ ]
},
{
"data" : [
@@ -325,20 +335,21 @@
1
]
],
- "id" : "Mohammad S Anwar",
- "name" : "Mohammad S Anwar"
+ "name" : "Mohammad S Anwar",
+ "id" : "Mohammad S Anwar"
},
{
- "id" : "Niels van Dijke",
"data" : [
[
"Perl",
1
]
],
+ "id" : "Niels van Dijke",
"name" : "Niels van Dijke"
},
{
+ "name" : "Peter Campbell Smith",
"id" : "Peter Campbell Smith",
"data" : [
[
@@ -349,18 +360,17 @@
"Blog",
1
]
- ],
- "name" : "Peter Campbell Smith"
+ ]
},
{
- "name" : "Robert DiCicco",
"data" : [
[
"Perl",
1
]
],
- "id" : "Robert DiCicco"
+ "id" : "Robert DiCicco",
+ "name" : "Robert DiCicco"
},
{
"name" : "Roger Bell_West",
@@ -381,7 +391,22 @@
]
},
{
+ "data" : [
+ [
+ "Perl",
+ 2
+ ],
+ [
+ "Raku",
+ 1
+ ]
+ ],
+ "name" : "Ulrich Rieke",
+ "id" : "Ulrich Rieke"
+ },
+ {
"name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -391,14 +416,8 @@
"Blog",
1
]
- ],
- "id" : "W. Luis Mochan"
+ ]
}
]
- },
- "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/>"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index cad7c033a5..3135e28d23 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,22 +1,46 @@
{
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
+ "subtitle" : {
+ "text" : "Last updated at 2022-01-30 04:06:45 GMT"
},
"chart" : {
"type" : "column"
},
- "legend" : {
- "enabled" : "false"
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
},
"title" : {
"text" : "The Weekly Challenge Contributions [2019 - 2021]"
},
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
+ }
+ },
+ "xAxis" : {
+ "type" : "category",
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ }
+ },
"series" : [
{
"name" : "Contributions",
+ "dataLabels" : {
+ "color" : "#FFFFFF",
+ "style" : {
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
+ },
+ "rotation" : -90,
+ "enabled" : "true",
+ "align" : "right",
+ "y" : 10,
+ "format" : "{point.y:.0f}"
+ },
"data" : [
[
"Blog",
@@ -24,40 +48,16 @@
],
[
"Perl",
- 7180
+ 7182
],
[
"Raku",
- 4315
+ 4316
]
- ],
- "dataLabels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- },
- "format" : "{point.y:.0f}",
- "align" : "right",
- "rotation" : -90,
- "enabled" : "true",
- "color" : "#FFFFFF",
- "y" : 10
- }
+ ]
}
],
- "xAxis" : {
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
- },
- "type" : "category"
- },
- "subtitle" : {
- "text" : "Last updated at 2022-01-30 03:46:34 GMT"
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
+ "legend" : {
+ "enabled" : "false"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index f10cf19e48..aa188fea94 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,14 +1,775 @@
{
- "tooltip" : {
- "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style=\"font-size:11px\"></span>",
- "followPointer" : "true"
+ "series" : [
+ {
+ "colorByPoint" : "true",
+ "data" : [
+ {
+ "y" : 161,
+ "name" : "#001",
+ "drilldown" : "001"
+ },
+ {
+ "drilldown" : "002",
+ "name" : "#002",
+ "y" : 125
+ },
+ {
+ "drilldown" : "003",
+ "name" : "#003",
+ "y" : 83
+ },
+ {
+ "name" : "#004",
+ "y" : 99,
+ "drilldown" : "004"
+ },
+ {
+ "drilldown" : "005",
+ "y" : 78,
+ "name" : "#005"
+ },
+ {
+ "y" : 58,
+ "name" : "#006",
+ "drilldown" : "006"
+ },
+ {
+ "y" : 64,
+ "name" : "#007",
+ "drilldown" : "007"
+ },
+ {
+ "name" : "#008",
+ "y" : 78,
+ "drilldown" : "008"
+ },
+ {
+ "drilldown" : "009",
+ "y" : 76,
+ "name" : "#009"
+ },
+ {
+ "drilldown" : "010",
+ "name" : "#010",
+ "y" : 65
+ },
+ {
+ "name" : "#011",
+ "y" : 85,
+ "drilldown" : "011"
+ },
+ {
+ "name" : "#012",
+ "y" : 89,
+ "drilldown" : "012"
+ },
+ {
+ "drilldown" : "013",
+ "name" : "#013",
+ "y" : 85
+ },
+ {
+ "y" : 101,
+ "name" : "#014",
+ "drilldown" : "014"
+ },
+ {
+ "y" : 99,
+ "name" : "#015",
+ "drilldown" : "015"
+ },
+ {
+ "drilldown" : "016",
+ "y" : 71,
+ "name" : "#016"
+ },
+ {
+ "name" : "#017",
+ "y" : 84,
+ "drilldown" : "017"
+ },
+ {
+ "y" : 81,
+ "name" : "#018",
+ "drilldown" : "018"
+ },
+ {
+ "y" : 103,
+ "name" : "#019",
+ "drilldown" : "019"
+ },
+ {
+ "drilldown" : "020",
+ "y" : 101,
+ "name" : "#020"
+ },
+ {
+ "drilldown" : "021",
+ "y" : 72,
+ "name" : "#021"
+ },
+ {
+ "drilldown" : "022",
+ "name" : "#022",
+ "y" : 68
+ },
+ {
+ "drilldown" : "023",
+ "name" : "#023",
+ "y" : 97
+ },
+ {
+ "drilldown" : "024",
+ "name" : "#024",
+ "y" : 75
+ },
+ {
+ "name" : "#025",
+ "y" : 59,
+ "drilldown" : "025"
+ },
+ {
+ "drilldown" : "026",
+ "name" : "#026",
+ "y" : 74
+ },
+ {
+ "name" : "#027",
+ "y" : 62,
+ "drilldown" : "027"
+ },
+ {
+ "name" : "#028",
+ "y" : 82,
+ "drilldown" : "028"
+ },
+ {
+ "drilldown" : "029",
+ "y" : 81,
+ "name" : "#029"
+ },
+ {
+ "drilldown" : "030",
+ "name" : "#030",
+ "y" : 119
+ },
+ {
+ "name" : "#031",
+ "y" : 91,
+ "drilldown" : "031"
+ },
+ {
+ "drilldown" : "032",
+ "name" : "#032",
+ "y" : 96
+ },
+ {
+ "drilldown" : "033",
+ "y" : 112,
+ "name" : "#033"
+ },
+ {
+ "y" : 66,
+ "name" : "#034",
+ "drilldown" : "034"
+ },
+ {
+ "drilldown" : "035",
+ "name" : "#035",
+ "y" : 66
+ },
+ {
+ "drilldown" : "036",
+ "y" : 68,
+ "name" : "#036"
+ },
+ {
+ "name" : "#037",
+ "y" : 67,
+ "drilldown" : "037"
+ },
+ {
+ "name" : "#038",
+ "y" : 68,
+ "drilldown" : "038"
+ },
+ {
+ "y" : 62,
+ "name" : "#039",
+ "drilldown" : "039"
+ },
+ {
+ "drilldown" : "040",
+ "y" : 73,
+ "name" : "#040"
+ },
+ {
+ "drilldown" : "041",
+ "name" : "#041",
+ "y" : 76
+ },
+ {
+ "y" : 92,
+ "name" : "#042",
+ "drilldown" : "042"
+ },
+ {
+ "y" : 68,
+ "name" : "#043",
+ "drilldown" : "043"
+ },
+ {
+ "drilldown" : "044",
+ "name" : "#044",
+ "y" : 85
+ },
+ {
+ "y" : 96,
+ "name" : "#045",
+ "drilldown" : "045"
+ },
+ {
+ "