aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2019-06-07 11:21:07 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2019-06-07 11:21:07 +0100
commite3d46091fdb8bf0c49294bf8a6d6d94502ed1be7 (patch)
tree7f0dda85a544f1086d60b14d2a17200f0d366d97
parentabbe03fdbb07cb0da906340a0216a93fda739498 (diff)
downloadperlweeklychallenge-club-e3d46091fdb8bf0c49294bf8a6d6d94502ed1be7.tar.gz
perlweeklychallenge-club-e3d46091fdb8bf0c49294bf8a6d6d94502ed1be7.tar.bz2
perlweeklychallenge-club-e3d46091fdb8bf0c49294bf8a6d6d94502ed1be7.zip
- Added solution by Maxim Nechaev.
-rwxr-xr-xchallenge-011/maxim-nechaev/perl5/ch-1.pl22
-rwxr-xr-xchallenge-011/maxim-nechaev/perl5/ch-2.pl13
-rw-r--r--stats/pwc-current.json131
-rw-r--r--stats/pwc-language-breakdown-summary.json80
-rw-r--r--stats/pwc-language-breakdown.json216
-rw-r--r--stats/pwc-leaders.json470
-rw-r--r--stats/pwc-summary-1-30.json22
-rw-r--r--stats/pwc-summary-31-60.json92
-rw-r--r--stats/pwc-summary-61-90.json92
-rw-r--r--stats/pwc-summary.json34
10 files changed, 611 insertions, 561 deletions
diff --git a/challenge-011/maxim-nechaev/perl5/ch-1.pl b/challenge-011/maxim-nechaev/perl5/ch-1.pl
new file mode 100755
index 0000000000..11735070d8
--- /dev/null
+++ b/challenge-011/maxim-nechaev/perl5/ch-1.pl
@@ -0,0 +1,22 @@
+#!/usr/bin/perl -w
+use strict;
+use feature 'say';
+
+# function to find root
+sub f {
+ my $c = shift; # celsius
+ my $f = 9*$c/5 + 32; # fahrenheit
+ return $c - $f;
+}
+
+# see https://en.wikipedia.org/wiki/Bisection_method
+my $a = -1000; # begin interval
+my $b = 1000; # end interval
+my $s = 1E-13; # accuracy
+my $x; # root to find
+do {
+ $x = ($a + $b)/2;
+ f($a) * f($x) < 0? $b = $x : $a = $x;
+} while abs f($x) > $s;
+
+say $x; # -40
diff --git a/challenge-011/maxim-nechaev/perl5/ch-2.pl b/challenge-011/maxim-nechaev/perl5/ch-2.pl
new file mode 100755
index 0000000000..c3430a1095
--- /dev/null
+++ b/challenge-011/maxim-nechaev/perl5/ch-2.pl
@@ -0,0 +1,13 @@
+#!/usr/bin/perl -w
+use strict;
+use Math::Matrix;
+
+my $size = 5;
+my $indentity = Math::Matrix->diagonal( (1) x $size );
+
+print $indentity;
+# 1.00000 0.00000 0.00000 0.00000 0.00000
+# 0.00000 1.00000 0.00000 0.00000 0.00000
+# 0.00000 0.00000 1.00000 0.00000 0.00000
+# 0.00000 0.00000 0.00000 1.00000 0.00000
+# 0.00000 0.00000 0.00000 0.00000 1.00000
diff --git a/stats/pwc-current.json b/stats/pwc-current.json
index e4aed317d8..b97667bb0d 100644
--- a/stats/pwc-current.json
+++ b/stats/pwc-current.json
@@ -1,27 +1,34 @@
{
+ "legend" : {
+ "enabled" : 0
+ },
+ "tooltip" : {
+ "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
+ "followPointer" : 1,
+ "pointerFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
"series" : [
{
- "colorByPoint" : 1,
"data" : [
{
- "drilldown" : "Aaron Sherman",
"y" : 2,
+ "drilldown" : "Aaron Sherman",
"name" : "Aaron Sherman"
},
{
"drilldown" : "Alicia Bielsa",
- "y" : 2,
- "name" : "Alicia Bielsa"
+ "name" : "Alicia Bielsa",
+ "y" : 2
},
{
"name" : "Andrezgz",
- "y" : 2,
- "drilldown" : "Andrezgz"
+ "drilldown" : "Andrezgz",
+ "y" : 2
},
{
+ "y" : 2,
"name" : "Dave Jacoby",
- "drilldown" : "Dave Jacoby",
- "y" : 2
+ "drilldown" : "Dave Jacoby"
},
{
"y" : 2,
@@ -29,13 +36,13 @@
"name" : "E. Choroba"
},
{
- "name" : "Francis Whittle",
"y" : 2,
+ "name" : "Francis Whittle",
"drilldown" : "Francis Whittle"
},
{
- "name" : "Gustavo Chaves",
"y" : 2,
+ "name" : "Gustavo Chaves",
"drilldown" : "Gustavo Chaves"
},
{
@@ -44,8 +51,8 @@
"name" : "Joelle Maslak"
},
{
- "name" : "Khalid",
"y" : 2,
+ "name" : "Khalid",
"drilldown" : "Khalid"
},
{
@@ -54,50 +61,53 @@
"y" : 2
},
{
- "name" : "Laurent Rosenfeld",
"drilldown" : "Laurent Rosenfeld",
+ "name" : "Laurent Rosenfeld",
"y" : 4
},
{
- "name" : "Pete Houston",
+ "drilldown" : "Maxim Nechaev",
+ "name" : "Maxim Nechaev",
+ "y" : 2
+ },
+ {
"drilldown" : "Pete Houston",
+ "name" : "Pete Houston",
"y" : 1
},
{
- "y" : 2,
"drilldown" : "Simon Proctor",
- "name" : "Simon Proctor"
+ "name" : "Simon Proctor",
+ "y" : 2
},
{
- "drilldown" : "Steven Wilson",
"y" : 3,
- "name" : "Steven Wilson"
+ "name" : "Steven Wilson",
+ "drilldown" : "Steven Wilson"
},
{
- "name" : "Yozen Hernandez",
"y" : 2,
+ "name" : "Yozen Hernandez",
"drilldown" : "Yozen Hernandez"
}
],
+ "colorByPoint" : 1,
"name" : "Champions"
}
],
- "chart" : {
- "type" : "column"
- },
- "legend" : {
- "enabled" : 0
+ "subtitle" : {
+ "text" : "[Champions: 16] Last updated at 2019-06-07 10:20:06 GMT"
},
"drilldown" : {
"series" : [
{
+ "id" : "Aaron Sherman",
"data" : [
[
"Perl 6",
2
]
],
- "id" : "Aaron Sherman",
"name" : "Aaron Sherman"
},
{
@@ -111,14 +121,14 @@
"name" : "Alicia Bielsa"
},
{
- "name" : "Andrezgz",
"id" : "Andrezgz",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "name" : "Andrezgz"
},
{
"name" : "Dave Jacoby",
@@ -131,38 +141,37 @@
]
},
{
+ "name" : "E. Choroba",
"data" : [
[
"Perl 5",
2
]
],
- "id" : "E. Choroba",
- "name" : "E. Choroba"
+ "id" : "E. Choroba"
},
{
- "name" : "Francis Whittle",
"id" : "Francis Whittle",
"data" : [
[
"Perl 6",
2
]
- ]
+ ],
+ "name" : "Francis Whittle"
},
{
- "name" : "Gustavo Chaves",
"id" : "Gustavo Chaves",
"data" : [
[
"Perl 5",
2
]
- ]
+ ],
+ "name" : "Gustavo Chaves"
},
{
"id" : "Joelle Maslak",
- "name" : "Joelle Maslak",
"data" : [
[
"Perl 5",
@@ -172,16 +181,17 @@
"Perl 6",
3
]
- ]
+ ],
+ "name" : "Joelle Maslak"
},
{
+ "name" : "Khalid",
"data" : [
[
"Perl 6",
2
]
],
- "name" : "Khalid",
"id" : "Khalid"
},
{
@@ -195,6 +205,7 @@
]
},
{
+ "id" : "Laurent Rosenfeld",
"data" : [
[
"Perl 5",
@@ -205,77 +216,81 @@
2
]
],
- "id" : "Laurent Rosenfeld",
"name" : "Laurent Rosenfeld"
},
{
"data" : [
[
"Perl 5",
- 1
+ 2
]
],
+ "id" : "Maxim Nechaev",
+ "name" : "Maxim Nechaev"
+ },
+ {
"id" : "Pete Houston",
+ "data" : [
+ [
+ "Perl 5",
+ 1
+ ]
+ ],
"name" : "Pete Houston"
},
{
"id" : "Simon Proctor",
- "name" : "Simon Proctor",
"data" : [
[
"Perl 6",
2
]
- ]
+ ],
+ "name" : "Simon Proctor"
},
{
"name" : "Steven Wilson",
- "id" : "Steven Wilson",
"data" : [
[
"Perl 5",
3
]
- ]
+ ],
+ "id" : "Steven Wilson"
},
{
+ "id" : "Yozen Hernandez",
"data" : [
[
"Perl 5",
2
]
],
- "name" : "Yozen Hernandez",
- "id" : "Yozen Hernandez"
+ "name" : "Yozen Hernandez"
}
]
},
+ "title" : {
+ "text" : "Perl Weekly Challenge - 011"
+ },
+ "xAxis" : {
+ "type" : "category"
+ },
"plotOptions" : {
"series" : {
"dataLabels" : {
- "format" : "{point.y}",
- "enabled" : 1
+ "enabled" : 1,
+ "format" : "{point.y}"
},
"borderWidth" : 0
}
},
- "title" : {
- "text" : "Perl Weekly Challenge - 011"
- },
- "subtitle" : {
- "text" : "[Champions: 15] Last updated at 2019-06-07 10:12:27 GMT"
- },
- "tooltip" : {
- "followPointer" : 1,
- "headerFormat" : "<span style='font-size:11px'>{series.name}</span><br/>",
- "pointerFormat" : "<span style='color:{point.color}'>{point.name}</span>: <b>{point.y:f}</b><br/>"
- },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
},
- "xAxis" : {
- "type" : "category"
+ "chart" : {
+ "type" : "column"
}
}
diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json
index 4f47d16071..5a6a093745 100644
--- a/stats/pwc-language-breakdown-summary.json
+++ b/stats/pwc-language-breakdown-summary.json
@@ -1,6 +1,43 @@
{
+ "yAxis" : {
+ "min" : 0,
+ "title" : {
+ "text" : null
+ }
+ },
+ "xAxis" : {
+ "type" : "category",
+ "labels" : {
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ }
+ }
+ },
+ "tooltip" : {
+ "pointFormat" : "<b>{point.y:.0f}</b>"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Contributions - 2019"
+ },
+ "chart" : {
+ "type" : "column"
+ },
"series" : [
{
+ "name" : "Contributions",
+ "dataLabels" : {
+ "enabled" : "true",
+ "color" : "#FFFFFF",
+ "rotation" : -90,
+ "y" : 10,
+ "align" : "right",
+ "style" : {
+ "fontSize" : "13px",
+ "fontFamily" : "Verdana, sans-serif"
+ },
+ "format" : "{point.y:.0f}"
+ },
"data" : [
[
"Blog",
@@ -8,56 +45,19 @@
],
[
"Perl 5",
- 425
+ 427
],
[
"Perl 6",
246
]
- ],
- "name" : "Contributions",
- "dataLabels" : {
- "y" : 10,
- "style" : {
- "fontSize" : "13px",
- "fontFamily" : "Verdana, sans-serif"
- },
- "color" : "#FFFFFF",
- "align" : "right",
- "enabled" : "true",
- "rotation" : -90,
- "format" : "{point.y:.0f}"
- }
+ ]
}
],
- "tooltip" : {
- "pointFormat" : "<b>{point.y:.0f}</b>"
- },
- "chart" : {
- "type" : "column"
- },
- "xAxis" : {
- "type" : "category",
- "labels" : {
- "style" : {
- "fontFamily" : "Verdana, sans-serif",
- "fontSize" : "13px"
- }
- }
- },
"subtitle" : {
- "text" : "Last updated at 2019-06-07 10:12:40 GMT"
+ "text" : "Last updated at 2019-06-07 10:20:24 GMT"
},
"legend" : {
"enabled" : "false"
- },
- "yAxis" : {
- "min" : 0,
- "title" : {
- "text" : null
- }
- },
- "title" : {
- "text" : "Perl Weekly Challenge Contributions - 2019"
}
}
diff --git a/stats/pwc-language-breakdown.json b/stats/pwc-language-breakdown.json
index 88323a65b6..d5d8e298e4 100644
--- a/stats/pwc-language-breakdown.json
+++ b/stats/pwc-language-breakdown.json
@@ -1,9 +1,85 @@
{
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-07 10:20:24 GMT"
+ },
+ "legend" : {
+ "enabled" : "false"
+ },
+ "plotOptions" : {
+ "series" : {
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ },
+ "borderWidth" : 0
+ }
+ },
+ "series" : [
+ {
+ "name" : "Perl Weekly Challenge Languages",
+ "data" : [
+ {
+ "y" : 113,
+ "drilldown" : "001",
+ "name" : "#001 [P5=76 P6=37]"
+ },
+ {
+ "y" : 95,
+ "drilldown" : "002",
+ "name" : "#002 [P5=63 P6=32]"
+ },
+ {
+ "y" : 58,
+ "drilldown" : "003",
+ "name" : "#003 [P5=32 P6=26]"
+ },
+ {
+ "name" : "#004 [P5=46 P6=29]",
+ "drilldown" : "004",
+ "y" : 75
+ },
+ {
+ "name" : "#005 [P5=33 P6=22]",
+ "y" : 55,
+ "drilldown" : "005"
+ },
+ {
+ "name" : "#006 [P5=27 P6=14]",
+ "drilldown" : "006",
+ "y" : 41
+ },
+ {
+ "name" : "#007 [P5=26 P6=20]",
+ "y" : 46,
+ "drilldown" : "007"
+ },
+ {
+ "drilldown" : "008",
+ "y" : 56,
+ "name" : "#008 [P5=36 P6=20]"
+ },
+ {
+ "name" : "#009 [P5=33 P6=18]",
+ "y" : 51,
+ "drilldown" : "009"
+ },
+ {
+ "drilldown" : "010",
+ "y" : 45,
+ "name" : "#010 [P5=30 P6=15]"
+ },
+ {
+ "name" : "#011 [P5=25 P6=13]",
+ "drilldown" : "011",
+ "y" : 38
+ }
+ ],
+ "colorByPoint" : "true"
+ }
+ ],
"drilldown" : {
"series" : [
{
- "id" : "001",
- "name" : "001",
"data" : [
[
"Perl 5",
@@ -13,9 +89,13 @@
"Perl 6",
37
]
- ]
+ ],
+ "name" : "001",
+ "id" : "001"
},
{
+ "id" : "002",
+ "name" : "002",
"data" : [
[
"Perl 5",
@@ -25,13 +105,9 @@
"Perl 6",
32
]
- ],
- "name" : "002",
- "id" : "002"
+ ]
},
{
- "name" : "003",
- "id" : "003",
"data" : [
[
"Perl 5",
@@ -41,7 +117,9 @@
"Perl 6",
26
]
- ]
+ ],
+ "id" : "003",
+ "name" : "003"
},
{
"id" : "004",
@@ -58,8 +136,6 @@
]
},
{
- "id" : "005",
- "name" : "005",
"data" : [
[
"Perl 5",
@@ -69,11 +145,13 @@
"Perl 6",
22
]
- ]
+ ],
+ "id" : "005",
+ "name" : "005"
},
{
- "id" : "006",
"name" : "006",
+ "id" : "006",
"data" : [
[
"Perl 5",
@@ -86,6 +164,8 @@
]
},
{
+ "id" : "007",
+ "name" : "007",
"data" : [
[
"Perl 5",
@@ -95,9 +175,7 @@
"Perl 6",
20
]
- ],
- "name" : "007",
- "id" : "007"
+ ]
},
{
"name" : "008",
@@ -114,6 +192,8 @@
]
},
{
+ "id" : "009",
+ "name" : "009",
"data" : [
[
"Perl 5",
@@ -123,9 +203,7 @@
"Perl 6",
18
]
- ],
- "id" : "009",
- "name" : "009"
+ ]
},
{
"data" : [
@@ -138,22 +216,22 @@
15
]
],
- "id" : "010",
- "name" : "010"
+ "name" : "010",
+ "id" : "010"
},
{
+ "id" : "011",
+ "name" : "011",
"data" : [
[
"Perl 5",
- 23
+ 25
],
[
"Perl 6",
13
]
- ],
- "id" : "011",
- "name" : "011"
+ ]
}
]
},
@@ -161,97 +239,19 @@
"type" : "category"
},
"tooltip" : {
- "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>",
"headerFormat" : "<span style=\"font-size:11px\"></span>",
- "followPointer" : "true"
- },
- "chart" : {
- "type" : "column"
+ "followPointer" : "true",
+ "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>"
},
- "series" : [
- {
- "data" : [
- {
- "y" : 113,
- "drilldown" : "001",
- "name" : "#001 [P5=76 P6=37]"
- },
- {
- "drilldown" : "002",
- "name" : "#002 [P5=63 P6=32]",
- "y" : 95
- },
- {
- "name" : "#003 [P5=32 P6=26]",
- "drilldown" : "003",
- "y" : 58
- },
- {
- "name" : "#004 [P5=46 P6=29]",
- "drilldown" : "004",
- "y" : 75
- },
- {
- "drilldown" : "005",
- "name" : "#005 [P5=33 P6=22]",
- "y" : 55
- },
- {
- "y" : 41,
- "drilldown" : "006",
- "name" : "#006 [P5=27 P6=14]"
- },
- {
- "y" : 46,
- "drilldown" : "007",
- "name" : "#007 [P5=26 P6=20]"
- },
- {
- "y" : 56,
- "drilldown" : "008",
- "name" : "#008 [P5=36 P6=20]"
- },
- {
- "y" : 51,
- "drilldown" : "009",
- "name" : "#009 [P5=33 P6=18]"
- },
- {
- "y" : 45,
- "name" : "#010 [P5=30 P6=15]",
- "drilldown" : "010"
- },
- {
- "y" : 36,
- "name" : "#011 [P5=23 P6=13]",
- "drilldown" : "011"
- }
- ],
- "name" : "Perl Weekly Challenge Languages",
- "colorByPoint" : "true"
- }
- ],
"title" : {
"text" : "Perl Weekly Challenge Language"
},
+ "chart" : {
+ "type" : "column"
+ },
"yAxis" : {
"title" : {
"text" : "Total Solutions"
}
- },
- "plotOptions" : {
- "series" : {
- "dataLabels" : {
- "enabled" : 1,
- "format" : "{point.y}"
- },
- "borderWidth" : 0
- }
- },
- "subtitle" : {
- "text" : "Click the columns to drilldown the language breakdown. Last updated at 2019-06-07 10:12:40 GMT"
- },
- "legend" : {
- "enabled" : "false"
}
}
diff --git a/stats/pwc-leaders.json b/stats/pwc-leaders.json
index 65ac2e40d9..edcd54939c 100644
--- a/stats/pwc-leaders.json
+++ b/stats/pwc-leaders.json
@@ -1,8 +1,34 @@
{
+ "yAxis" : {
+ "title" : {
+ "text" : "Total Score"
+ }
+ },
+ "subtitle" : {
+ "text" : "Click the columns to drilldown the score breakdown. Last updated at 2019-06-07 10:20:21 GMT"
+ },
+ "plotOptions" : {
+ "series" : {
+ "borderWidth" : 0,
+ "dataLabels" : {
+ "format" : "{point.y}",
+ "enabled" : 1
+ }
+ }
+ },
+ "chart" : {
+ "type" : "column"
+ },
+ "title" : {
+ "text" : "Perl Weekly Challenge Leaders (TOP 50)"
+ },
"tooltip" : {
- "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>",
"headerFormat" : "<span style=\"font-size:11px\"></span>",
- "followPointer" : "true"
+ "followPointer" : "true",
+ "pointFormat" : "<span style=\"color:{point.color}\">{point.name}</span>: <b>{point.y:f}</b><br/>"
+ },
+ "legend" : {
+ "enabled" : "false"
},
"series" : [
{
@@ -11,28 +37,28 @@
"data" : [
{
"drilldown" : "Laurent Rosenfeld",
- "name" : "#1: Laurent Rosenfeld",
- "y" : 112
+ "y" : 112,
+ "name" : "#1: Laurent Rosenfeld"
},
{
+ "drilldown" : "Joelle Maslak",
"name" : "#2: Joelle Maslak",
- "y" : 110,
- "drilldown" : "Joelle Maslak"
+ "y" : 110
},
{
- "drilldown" : "Jaldhar H. Vyas",
+ "name" : "#3: Jaldhar H. Vyas",
"y" : 80,
- "name" : "#3: Jaldhar H. Vyas"
+ "drilldown" : "Jaldhar H. Vyas"
},
{
- "drilldown" : "Ruben Westerberg",
+ "name" : "#4: Ruben Westerberg",
"y" : 68,
- "name" : "#4: Ruben Westerberg"
+ "drilldown" : "Ruben Westerberg"
},
{
- "y" : 60,
+ "drilldown" : "Adam Russell",
"name" : "#5: Adam Russell",
- "drilldown" : "Adam Russell"
+ "y" : 60
},
{
"drilldown" : "Simon Proctor",
@@ -40,9 +66,9 @@
"y" : 56
},
{
- "y" : 54,
+ "drilldown" : "Kian-Meng Ang",
"name" : "#7: Kian-Meng Ang",
- "drilldown" : "Kian-Meng Ang"
+ "y" : 54
},
{
"drilldown" : "Arne Sommer",
@@ -51,22 +77,22 @@
},
{
"drilldown" : "Gustavo Chaves",
- "y" : 46,
- "name" : "#9: Gustavo Chaves"
+ "name" : "#9: Gustavo Chaves",
+ "y" : 46
},
{
- "drilldown" : "Dr James A. Smith",
"y" : 44,
- "name" : "#10: Dr James A. Smith"
+ "name" : "#10: Dr James A. Smith",
+ "drilldown" : "Dr James A. Smith"
},
{
"drilldown" : "Francis Whittle",
- "y" : 44,
- "name" : "#11: Francis Whittle"
+ "name" : "#11: Francis Whittle",
+ "y" : 44
},
{
- "name" : "#12: Andrezgz",
"y" : 42,
+ "name" : "#12: Andrezgz",
"drilldown" : "Andrezgz"
},
{
@@ -76,48 +102,48 @@
},
{
"drilldown" : "Athanasius",
- "name" : "#14: Athanasius",
- "y" : 40
+ "y" : 40,
+ "name" : "#14: Athanasius"
},
{
- "drilldown" : "E. Choroba",
+ "y" : 40,
"name" : "#15: E. Choroba",
- "y" : 40
+ "drilldown" : "E. Choroba"
},
{
- "drilldown" : "Dave Jacoby",
+ "y" : 36,
"name" : "#16: Dave Jacoby",
- "y" : 36
+ "drilldown" : "Dave Jacoby"
},
{
- "name" : "#17: Nick Logan",
"y" : 32,
+ "name" : "#17: Nick Logan",
"drilldown" : "Nick Logan"
},
{
- "name" : "#18: Daniel Mantovani",
+ "drilldown" : "Daniel Mantovani",
"y" : 30,
- "drilldown" : "Daniel Mantovani"
+ "name" : "#18: Daniel Mantovani"
},
{
- "y" : 28,
"name" : "#19: Lars Balker",
+ "y" : 28,
"drilldown" : "Lars Balker"
},
{
+ "drilldown" : "Mark Senn",
"name" : "#20: Mark Senn",
- "y" : 26,
- "drilldown" : "Mark Senn"
+ "y" : 26
},
{
"drilldown" : "Yozen Hernandez",
- "y" : 22,
- "name" : "#21: Yozen Hernandez"
+ "name" : "#21: Yozen Hernandez",
+ "y" : 22
},
{
"drilldown" : "Doug Schrag",
- "y" : 20,
- "name" : "#22: Doug Schrag"
+ "name" : "#22: Doug Schrag",
+ "y" : 20
},
{
"name" : "#23: Duncan C. White",
@@ -125,13 +151,13 @@
"drilldown" : "Duncan C. White"
},
{
- "name" : "#24: Steven Wilson",
"y" : 20,
+ "name" : "#24: Steven Wilson",
"drilldown" : "Steven Wilson"
},
{
- "y" : 18,
"name" : "#25: Alicia Bielsa",
+ "y" : 18,
"drilldown" : "Alicia Bielsa"
},
{
@@ -140,44 +166,44 @@
"drilldown" : "Guillermo Ramos"
},
{
- "name" : "#27: Robert Gratza",
+ "drilldown" : "Maxim Nechaev",
+ "name" : "#27: Maxim Nechaev",
+ "y" : 18
+ },
+ {
"y" : 16,
+ "name" : "#28: Robert Gratza",
"drilldown" : "Robert Gratza"
},
{
- "drilldown" : "John Barrett",
"y" : 14,
- "name" : "#28: John Barrett"
+ "name" : "#29: John Barrett",
+ "drilldown" : "John Barrett"
},
{
- "name" : "#29: Khalid",
+ "name" : "#30: Khalid",
"y" : 14,
"drilldown" : "Khalid"
},
{
- "drilldown" : "Maxim Nechaev",
- "name" : "#30: Maxim Nechaev",
- "y" : 14
- },
- {
- "y" : 14,
+ "drilldown" : "Ozzy",
"name" : "#31: Ozzy",
- "drilldown" : "Ozzy"
+ "y" : 14
},
{
"drilldown" : "Kivanc Yazan",
- "name" : "#32: Kivanc Yazan",
- "y" : 12
+ "y" : 12,
+ "name" : "#32: Kivanc Yazan"
},
{
- "name" : "#33: Maxim Kolodyazhny",
+ "drilldown" : "Maxim Kolodyazhny",
"y" : 12,
- "drilldown" : "Maxim Kolodyazhny"
+ "name" : "#33: Maxim Kolodyazhny"
},
{
- "drilldown" : "Philippe Bruhat",
+ "name" : "#34: Philippe Bruhat",
"y" : 12,
- "name" : "#34: Philippe Bruhat"
+ "drilldown" : "Philippe Bruhat"
},
{
"name" : "#35: Sergio Iglesias",
@@ -185,59 +211,59 @@
"drilldown" : "Sergio Iglesias"
},
{
- "y" : 10,
"name" : "#36: Arpad Toth",
+ "y" : 10,
"drilldown" : "Arpad Toth"
},
{
- "y" : 10,
"name" : "#37: Steve Rogerson",
+ "y" : 10,
"drilldown" : "Steve Rogerson"
},
{
"drilldown" : "Veesh Goldman",