aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-147/laurent-rosenfeld/julia/ch-1.jl16
-rw-r--r--challenge-148/laurent-rosenfeld/blog.txt1
-rw-r--r--challenge-148/laurent-rosenfeld/perl/ch-1.pl6
-rw-r--r--challenge-148/laurent-rosenfeld/perl/ch-2.pl26
-rw-r--r--challenge-148/laurent-rosenfeld/raku/ch-1.raku2
-rw-r--r--challenge-148/laurent-rosenfeld/raku/ch-2.raku23
-rw-r--r--stats/pwc-current.json329
-rw-r--r--stats/pwc-language-breakdown-summary.json62
-rw-r--r--stats/pwc-language-breakdown.json1058
-rw-r--r--stats/pwc-leaders.json738
-rw-r--r--stats/pwc-summary-1-30.json126
-rw-r--r--stats/pwc-summary-121-150.json40
-rw-r--r--stats/pwc-summary-151-180.json52
-rw-r--r--stats/pwc-summary-181-210.json98
-rw-r--r--stats/pwc-summary-211-240.json106
-rw-r--r--stats/pwc-summary-241-270.json42
-rw-r--r--stats/pwc-summary-31-60.json108
-rw-r--r--stats/pwc-summary-61-90.json46
-rw-r--r--stats/pwc-summary-91-120.json42
-rw-r--r--stats/pwc-summary.json62
20 files changed, 1540 insertions, 1443 deletions
diff --git a/challenge-147/laurent-rosenfeld/julia/ch-1.jl b/challenge-147/laurent-rosenfeld/julia/ch-1.jl
new file mode 100644
index 0000000000..7db040e813
--- /dev/null
+++ b/challenge-147/laurent-rosenfeld/julia/ch-1.jl
@@ -0,0 +1,16 @@
+max = 4000
+pentanums = map((x) -> Int(x * (3 * x -1)/2), 1:max)
+penta_h = Dict(map((x) -> Int(x * (3 * x -1)/2) => x, 1:max))
+for i in 1:4000-1
+ for j in (i + 1):4000-1
+ sum = pentanums[i] + pentanums[j]
+ if (haskey(penta_h, Int(sum)) == 0)
+ continue
+ end
+ diff = pentanums[i] - pentanums[j]
+ # if (haskey(penta_h, Int(diff)) == 0)
+ # continue
+ # end
+ println(i, " ", j, " ", pentanums[i], " ", pentanums[j], " ", sum)
+ end
+end
diff --git a/challenge-148/laurent-rosenfeld/blog.txt b/challenge-148/laurent-rosenfeld/blog.txt
new file mode 100644
index 0000000000..63e56b27eb
--- /dev/null
+++ b/challenge-148/laurent-rosenfeld/blog.txt
@@ -0,0 +1 @@
+http://blogs.perl.org/users/laurent_r/2022/01/perl-weekly-challenge-148-eban-numbers-and-cardano-triplets.html
diff --git a/challenge-148/laurent-rosenfeld/perl/ch-1.pl b/challenge-148/laurent-rosenfeld/perl/ch-1.pl
new file mode 100644
index 0000000000..4732c2cc52
--- /dev/null
+++ b/challenge-148/laurent-rosenfeld/perl/ch-1.pl
@@ -0,0 +1,6 @@
+use strict;
+use warnings;
+use feature "say";
+
+my @ebans = grep { ! /[135789]$/ and ! /[12789]\d/ } 1..99;
+say "@ebans";
diff --git a/challenge-148/laurent-rosenfeld/perl/ch-2.pl b/challenge-148/laurent-rosenfeld/perl/ch-2.pl
new file mode 100644
index 0000000000..482c47f6c2
--- /dev/null
+++ b/challenge-148/laurent-rosenfeld/perl/ch-2.pl
@@ -0,0 +1,26 @@
+use strict;
+use warnings;
+use feature "say";
+use constant MAX => 5;
+
+sub is_cardano_triplet {
+ my ($a, $b, $c) = @_;
+ return 0 if $a - $b * sqrt($c) > 0;
+ my $val = (($a + $b * sqrt($c)) ** (1/3)) - ((- $a + $b * sqrt($c)) ** (1/3));
+ # say $val;
+ return abs($val - 1) < 0.000001;
+}
+
+my @values = 1..100;
+my $count = 0;
+OUT: for my $i (@values) {
+ for my $j (@values) {
+ for my $k (@values) {
+ if (is_cardano_triplet $i, $j, $k) {
+ say "$i $j $k";
+ $count++;
+ last OUT if $count >= MAX;
+ }
+ }
+ }
+}
diff --git a/challenge-148/laurent-rosenfeld/raku/ch-1.raku b/challenge-148/laurent-rosenfeld/raku/ch-1.raku
new file mode 100644
index 0000000000..757005256d
--- /dev/null
+++ b/challenge-148/laurent-rosenfeld/raku/ch-1.raku
@@ -0,0 +1,2 @@
+my @ebans = grep { ! /<[135789]>$/ and ! /<[12789]>\d/ }, 1..99;
+say @ebans;
diff --git a/challenge-148/laurent-rosenfeld/raku/ch-2.raku b/challenge-148/laurent-rosenfeld/raku/ch-2.raku
new file mode 100644
index 0000000000..40c527bd7a
--- /dev/null
+++ b/challenge-148/laurent-rosenfeld/raku/ch-2.raku
@@ -0,0 +1,23 @@
+use v6;
+constant MAX = 5;
+
+sub is-cardano-triplet (\a, \b, \c) {
+ return False if a - b * c.sqrt > 0;
+ my $val = ((a + b * c.sqrt) ** (1/3)) - ((- a + b * c.sqrt) ** (1/3));
+ return $val =~= 1
+}
+
+my @values = 1..100;
+my $count = 0;
+OUT: for @values -> $i {
+ for @values -> $j {
+ for @values -> $k {
+ if is-cardano-triplet $i, $j, $k {
+ say "$i $j $k";
+ $count++;
+ last OUT if $count >= MAX;
+ }
+ }
+ }
+}
+say "Duration: ", now - INIT now;
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index 4d0c956334..df02d2880e 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,108 +1,9 @@
{
- "series" : [
- {
- "name" : "The Weekly Challenge - 148",
- "colorByPoint" : 1,
- "data" : [
- {
- "drilldown" : "Athanasius",
- "y" : 4,
- "name" : "Athanasius"
- },
- {
- "y" : 1,
- "name" : "Colin Crain",
- "drilldown" : "Colin Crain"
- },
- {
- "drilldown" : "Dave Jacoby",
- "y" : 3,
- "name" : "Dave Jacoby"
- },
- {
- "name" : "E. Choroba",
- "y" : 2,
- "drilldown" : "E. Choroba"
- },
- {
- "drilldown" : "Flavio Poletti",
- "name" : "Flavio Poletti",
- "y" : 6
- },
- {
- "y" : 3,
- "name" : "James Smith",
- "drilldown" : "James Smith"
- },
- {
- "drilldown" : "Luca Ferrari",
- "y" : 6,
- "name" : "Luca Ferrari"
- },
- {
- "y" : 1,
- "name" : "Mark Anderson",
- "drilldown" : "Mark Anderson"
- },
- {
- "drilldown" : "Marton Polgar",
- "name" : "Marton Polgar",
- "y" : 2
- },
- {
- "name" : "Matthew Neleigh",
- "y" : 2,
- "drilldown" : "Matthew Neleigh"
- },
- {
- "name" : "Niels van Dijke",
- "y" : 2,
- "drilldown" : "Niels van Dijke"
- },
- {
- "y" : 3,
- "name" : "Peter Campbell Smith",
- "drilldown" : "Peter Campbell Smith"
- },
- {
- "y" : 2,
- "name" : "Robert DiCicco",
- "drilldown" : "Robert DiCicco"
- },
- {
- "name" : "Roger Bell_West",
- "y" : 5,
- "drilldown" : "Roger Bell_West"
- },
- {
- "drilldown" : "Steven Wilson",
- "y" : 2,
- "name" : "Steven Wilson"
- },
- {
- "drilldown" : "Ulrich Rieke",
- "y" : 3,
- "name" : "Ulrich Rieke"
- },
- {
- "drilldown" : "W. Luis Mochan",
- "name" : "W. Luis Mochan",
- "y" : 3
- },
- {
- "name" : "Walt Mankowski",
- "y" : 3,
- "drilldown" : "Walt Mankowski"
- }
- ]
- }
- ],
- "legend" : {
- "enabled" : 0
- },
"drilldown" : {
"series" : [
{
+ "id" : "Athanasius",
+ "name" : "Athanasius",
"data" : [
[
"Perl",
@@ -112,9 +13,7 @@
"Raku",
2
]
- ],
- "id" : "Athanasius",
- "name" : "Athanasius"
+ ]
},
{
"id" : "Colin Crain",
@@ -127,6 +26,8 @@
]
},
{
+ "name" : "Dave Jacoby",
+ "id" : "Dave Jacoby",
"data" : [
[
"Perl",
@@ -136,19 +37,17 @@
"Blog",
1
]
- ],
- "name" : "Dave Jacoby",
- "id" : "Dave Jacoby"
+ ]
},
{
- "name" : "E. Choroba",
- "id" : "E. Choroba",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "E. Choroba",
+ "id" : "E. Choroba"
},
{
"data" : [
@@ -165,8 +64,8 @@
2
]
],
- "name" : "Flavio Poletti",
- "id" : "Flavio Poletti"
+ "id" : "Flavio Poletti",
+ "name" : "Flavio Poletti"
},
{
"data" : [
@@ -179,26 +78,44 @@
1
]
],
- "id" : "James Smith",
- "name" : "James Smith"
+ "name" : "James Smith",
+ "id" : "James Smith"
},
{
+ "name" : "Laurent Rosenfeld",
+ "id" : "Laurent Rosenfeld",
"data" : [
[
+ "Perl",
+ 2
+ ],
+ [
"Raku",
2
],
[
"Blog",
- 4
+ 1
]
- ],
+ ]
+ },
+ {
"id" : "Luca Ferrari",
- "name" : "Luca Ferrari"
+ "name" : "Luca Ferrari",
+ "data" : [
+ [
+ "Raku",
+ 2
+ ],
+ [
+ "Blog",
+ 4
+ ]
+ ]
},
{
- "name" : "Mark Anderson",
"id" : "Mark Anderson",
+ "name" : "Mark Anderson",
"data" : [
[
"Raku",
@@ -213,30 +130,32 @@
2
]
],
- "name" : "Marton Polgar",
- "id" : "Marton Polgar"
+ "id" : "Marton Polgar",
+ "name" : "Marton Polgar"
},
{
+ "id" : "Matthew Neleigh",
+ "name" : "Matthew Neleigh",
"data" : [
[
"Perl",
2
]
- ],
- "name" : "Matthew Neleigh",
- "id" : "Matthew Neleigh"
+ ]
},
{
- "name" : "Niels van Dijke",
- "id" : "Niels van Dijke",
"data" : [
[
"Perl",
2
]
- ]
+ ],
+ "name" : "Niels van Dijke",
+ "id" : "Niels van Dijke"
},
{
+ "id" : "Peter Campbell Smith",
+ "name" : "Peter Campbell Smith",
"data" : [
[
"Perl",
@@ -246,21 +165,21 @@
"Blog",
1
]
- ],
- "name" : "Peter Campbell Smith",
- "id" : "Peter Campbell Smith"
+ ]
},
{
+ "id" : "Robert DiCicco",
+ "name" : "Robert DiCicco",
"data" : [
[
"Perl",
2
]
- ],
- "id" : "Robert DiCicco",
- "name" : "Robert DiCicco"
+ ]
},
{
+ "id" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
"data" : [
[
"Perl",
@@ -274,9 +193,7 @@
"Blog",
1
]
- ],
- "id" : "Roger Bell_West",
- "name" : "Roger Bell_West"
+ ]
},
{
"name" : "Steven Wilson",
@@ -303,8 +220,6 @@
]
},
{
- "id" : "W. Luis Mochan",
- "name" : "W. Luis Mochan",
"data" : [
[
"Perl",
@@ -314,11 +229,11 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "W. Luis Mochan",
+ "id" : "W. Luis Mochan"
},
{
- "id" : "Walt Mankowski",
- "name" : "Walt Mankowski",
"data" : [
[
"Perl",
@@ -328,39 +243,147 @@
"Blog",
1
]
- ]
+ ],
+ "name" : "Walt Mankowski",
+ "id" : "Walt Mankowski"
}
]
},
"xAxis" : {
"type" : "category"
},
+ "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/>"
+ },
"plotOptions" : {
"series" : {
"dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
+ "format" : "{point.y}",
+ "enabled" : 1
},
"borderWidth" : 0
}
},
- "subtitle" : {
- "text" : "[Champions: 18] Last updated at 2022-01-23 13:24:12 GMT"
- },
"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
+ "chart" : {
+ "type" : "column"
+ },
+ "series" : [
+ {
+ "name" : "The Weekly Challenge - 148",
+ "colorByPoint" : 1,
+ "data" : [
+ {
+ "y" : 4,
+ "drilldown" : "Athanasius",
+ "name" : "Athanasius"
+ },
+ {
+ "y" : 1,
+ "drilldown" : "Colin Crain",
+ "name" : "Colin Crain"
+ },
+ {
+ "drilldown" : "Dave Jacoby",
+ "name" : "Dave Jacoby",
+ "y" : 3
+ },
+ {
+ "y" : 2,
+ "drilldown" : "E. Choroba",
+ "name" : "E. Choroba"
+ },
+ {
+ "y" : 6,
+ "drilldown" : "Flavio Poletti",
+ "name" : "Flavio Poletti"
+ },
+ {
+ "y" : 3,
+ "name" : "James Smith",
+ "drilldown" : "James Smith"
+ },
+ {
+ "y" : 5,
+ "name" : "Laurent Rosenfeld",
+ "drilldown" : "Laurent Rosenfeld"
+ },
+ {
+ "y" : 6,
+ "name" : "Luca Ferrari",
+ "drilldown" : "Luca Ferrari"
+ },
+ {
+ "drilldown" : "Mark Anderson",
+ "name" : "Mark Anderson",
+ "y" : 1
+ },
+ {
+ "name" : "Marton Polgar",
+ "drilldown" : "Marton Polgar",
+ "y" : 2
+ },
+ {
+ "y" : 2,
+ "name" : "Matthew Neleigh",
+ "drilldown" : "Matthew Neleigh"
+ },
+ {
+ "name" : "Niels van Dijke",
+ "drilldown" : "Niels van Dijke",
+ "y" : 2
+ },
+ {
+ "name" : "Peter Campbell Smith",
+ "drilldown" : "Peter Campbell Smith",
+ "y" : 3
+ },
+ {
+ "drilldown" : "Robert DiCicco",
+ "name" : "Robert DiCicco",
+ "y" : 2
+ },
+ {
+ "drilldown" : "Roger Bell_West",
+ "name" : "Roger Bell_West",
+ "y" : 5
+ },
+ {
+ "name" : "Steven Wilson",
+ "drilldown" : "Steven Wilson",
+ "y" : 2
+ },
+ {
+ "y" : 3,
+ "drilldown" : "Ulrich Rieke",
+ "name" : "Ulrich Rieke"
+ },
+ {
+ "y" : 3,
+ "drilldown" : "W. Luis Mochan",
+ "name" : "W. Luis Mochan"
+ },
+ {
+ "y" : 3,
+ "name" : "Walt Mankowski",
+ "drilldown" : "Walt Mankowski"
+ }
+ ]
+ }
+ ],
+ "legend" : {
+ "enabled" : 0
+ },
+ "subtitle" : {
+ "text" : "[Champions: 19] Last updated at 2022-01-23 13:43:06 GMT"
},
"title" : {
"text" : "The Weekly Challenge - 148"
- },
- "chart" : {
- "type" : "column"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 667586be34..34bd516f07 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,63 +1,63 @@
{
- "chart" : {
- "type" : "column"
- },
"title" : {
"text" : "The Weekly Challenge Contributions [2019 - 2021]"
},
- "yAxis" : {
- "title" : {
- "text" : null
+ "xAxis" : {
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
},
- "min" : 0
- },
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
+ "type" : "category"
},
"subtitle" : {
- "text" : "Last updated at 2022-01-23 13:24:12 GMT"
+ "text" : "Last updated at 2022-01-23 13:43:06 GMT"
},
- "legend" : {
- "enabled" : "false"
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
},
"series" : [
{
"data" : [
[
"Blog",
- 2207
+ 2208
],
[
"Perl",
- 7134
+ 7136
],
[
"Raku",
- 4292
+ 4294
]
],
+ "name" : "Contributions",
"dataLabels" : {
- "y" : 10,
- "rotation" : -90,
- "color" : "#FFFFFF",
- "enabled" : "true",
"align" : "right",
+ "enabled" : "true",
"format" : "{point.y:.0f}",
+ "color" : "#FFFFFF",
+ "rotation" : -90,
+ "y" : 10,
"style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
+ "fontFamily" : "Verdana, sans-serif",
+ "fontSize" : "13px"
}
- },
- "name" : "Contributions"
+ }
}
],
- "xAxis" : {
- "labels" : {
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- }
+ "legend" : {
+ "enabled" : "false"
+ },
+ "yAxis" : {
+ "title" : {
+ "text" : null
},
- "type" : "category"
+ "min" : 0
+ },
+ "chart" : {
+ "type" : "column"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index bd4a9d887c..a6fe963f34 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,93 +1,76 @@
{
- "title" : {
- "text" : "The Weekly Challenge Language"
- },
"chart" : {
"type" : "column"
},
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2022-01-23 13:24:12 GMT"
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
- },
- "borderWidth" : 0
- }
- },
- "tooltip" : {
- "followPointer" : "true",
- "pointFormat" : "<span style=\"color:{point.color}\">Challenge {point.name}</span>: <b>{point.y:f}</b><br/>",
- "headerFormat" : "<span style=\"font-size:11px\"></span>"
- },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
+ "legend" : {
+ "enabled" : "false"
+ },
"series" : [
{
"data" : [
{
+ "y" : 161,
"drilldown" : "001",
- "name" : "#001",
- "y" : 161
+ "name" : "#001"
},
{
+ "drilldown" : "002",
"name" : "#002",
- "y" : 125,
- "drilldown" : "002"
+ "y" : 125
},
{
"y" : 83,
- "name" : "#003",
- "drilldown" : "003"
+ "drilldown" : "003",
+ "name" : "#003"
},
{
"name" : "#004",
- "y" : 99,
- "drilldown" : "004"
+ "drilldown" : "004",
+ "y" : 99
},
{
- "name" : "#005",
"y" : 78,
- "drilldown" : "005"
+ "drilldown" : "005",
+ "name" : "#005"
},
{
- "drilldown" : "006",
"y" : 58,
- "name" : "#006"
+ "name" : "#006",
+ "drilldown" : "006"
},
{
- "name" : "#007",
"y" : 64,
+ "name" : "#007",
"drilldown" : "007"
},
{
+ "drilldown" : "008",
"name" : "#008",
- "y" : 78,
- "drilldown" : "008"
+ "y" : 78
},
{
- "drilldown" : "009",
"y" : 76,
- "name" : "#009"
+ "name" : "#009",
+ "drilldown" : "009"
},
{
"drilldown" : "010",
- "y" : 65,
- "name" : "#010"
+ "name" : "#010",
+ "y" : 65
},
{
- "drilldown" : "011",
+ "y" : 85,
"name" : "#011",
- "y" : 85
+ "drilldown" : "011"
},
{
- "name" : "#012",
"y" : 89,
+ "name" : "#012",
"drilldown" : "012"
},
{
@@ -96,9 +79,9 @@
"y" : 85
},
{
+ "name" : "#014",
"drilldown" : "014",
- "y" : 101,
- "name" : "#014"
+ "y" : 101
},
{
"drilldown" : "015",
@@ -111,9 +94,9 @@
"y" : 71
},
{
- "drilldown" : "017",
+ "y" : 84,
"name" : "#017",
- "y" : 84
+ "drilldown" : "017"
},
{
"drilldown" : "018",
@@ -121,9 +104,9 @@
"y" : 81
},
{
- "y" : 103,
+ "drilldown" : "019",
"name" : "#019",
- "drilldown" : "019"
+ "y" : 103
},
{
"y" : 101,
@@ -131,184 +114,184 @@
"drilldown" : "020"
},
{
- "drilldown" : "021",
"y" : 72,
+ "drilldown" : "021",
"name" : "#021"
},
{
"y" : 68,
- "name" : "#022",
- "drilldown" : "022"
+ "drilldown" : "022",
+ "name" : "#022"
},
{
- "name" : "#023",
"y" : 97,
+ "name" : "#023",
"drilldown" : "023"
},
{
- "name" : "#024",
"y" : 75,
+ "name" : "#024",
"drilldown" : "024"
},
{
- "name" : "#025",
"y" : 59,
- "drilldown" : "025"
+ "drilldown" : "025",
+ "name" : "#025"
},
{
- "drilldown" : "026",
"y" : 74,
- "name" : "#026"
+ "name" : "#026",
+ "drilldown" : "026"
},
{
- "drilldown" : "027",
"y" : 62,
+ "drilldown" : "027",
"name" : "#027"
},
{
- "name" : "#028",
"y" : 82,
+ "name" : "#028",
"drilldown" : "028"
},
{
+ "name" : "#029",
"drilldown" : "029",
- "y" : 81,
- "name" : "#029"
+ "y" : 81
},
{
"drilldown" : "030",
- "y" : 119,
- "name" : "#030"
+ "name" : "#030",
+ "y" : 119
},
{
- "name" : "#031",
"y" : 91,
+ "name" : "#031",
"drilldown" : "031"
},
{
- "y" : 96,
+ "drilldown" : "032",
"name" : "#032",
- "drilldown" : "032"
+ "y" : 96
},
{
- "drilldown" : "033",
"y" : 112,
- "name" : "#033"
+ "name" : "#033",
+ "drilldown" : "033"
},
{
+ "y" : 66,
"drilldown" : "034",
- "name" : "#034",
- "y" : 66
+ "name" : "#034"
},
{
- "drilldown" : "035",
"name" : "#035",
+ "drilldown" : "035",
"y" : 66
},
{
- "name" : "#036",
"y" : 68,
- "drilldown" : "036"
+ "drilldown" : "036",
+ "name" : "#036"
},
{
"y" : 67,
- "name" : "#037",
- "drilldown" : "037"
+ "drilldown" : "037",
+ "name" : "#037"
},
{
- "y" : 68,
+ "drilldown" : "038",
"name" : "#038",
- "drilldown" : "038"
+ "y" : 68
},
{
- "y" : 62,
+ "drilldown" : "039",
"name" : "#039",
- "drilldown" : "039"
+ "y" : 62
},
{
+ "name" : "#040",
"drilldown" : "040",
- "y" : 73,
- "name" : "#040"
+ "y" : 73
},
{
- "name" : "#041",
"y" : 76,
- "drilldown" : "041"
+ "drilldown" : "041",
+ "name" : "#041"
},
{
- "y" : 92,
+ "drilldown" : "042",
"name" : "#042",
- "drilldown" : "042"
+ "y" : 92
},
{
"name" : "#043",
- "y" : 68,
- "drilldown" : "043"
+ "drilldown" : "043",
+ "y" : 68
},
{
+ "y" : 85,
"drilldown" : "044",
- "name" : "#044",
- "y" : 85
+ "name" : "#044"
},
{
- "y" : 96,
+ "drilldown" : "045",
"name" : "#045",
- "drilldown" : "045"
+ "y" : 96
},
{
- "drilldown" : "046",
"y" : 87,
- "name" : "#046"
+ "name" : "#046",
+ "drilldown" : "046"
},
{
- "drilldown" : "047",
+ "y" : 84,
"name" : "#047",
- "y" : 84
+ "drilldown" : "047"
},
{
- "drilldown" : "048",
"y" : 108,
- "name" : "#048"
+